/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette - Blue/Purple with Red accents */
    --primary-color: #4A90E2;
    --secondary-color: #6B46C1;
    --accent-color: #EF4444;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-dark: #0f1419;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --gradient-premium: linear-gradient(135deg, #4A90E2 0%, #6B46C1 50%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
}

body {
    font-family: 'Playfair Display', Georgia, serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--gradient-dark);
    overflow-x: hidden;
    position: relative;
}

/* Floating abstract shapes background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--bg-white);
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: var(--primary-color);
}

.cookie-btn {
    background: var(--gradient-premium);
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Header - Glassmorphism with Sticky */
.header {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    pointer-events: none;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Premium with Parallax */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: -1;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(15, 15, 15, 0.95) 100%);
    z-index: 1;
}

/* Floating elements */
.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 60%;
    margin-bottom: 80px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #4A90E2 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 8s ease infinite;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards, gradientText 8s ease infinite 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-premium);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

/* Hero Accordion - Glassmorphism */
.hero-accordion {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    max-width: 70%;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-premium);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.accordion-item.active::before {
    transform: scaleY(1);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
    transform: translateX(10px);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 30px 25px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Services Section - Organic Asymmetric Layout */
.services-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-left: 3px solid transparent;
    padding: 60px 50px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-100px);
    margin-left: 0;
    margin-right: 0;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.service-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(100px);
    border-left: none;
    border-right: 3px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-premium);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:nth-child(even)::before {
    left: auto;
    right: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateX(0) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--accent-color);
    margin-left: 30px;
    margin-right: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -20px 0 60px rgba(74, 144, 226, 0.15), 20px 0 60px rgba(107, 70, 193, 0.15);
}

.service-card:nth-child(even):hover {
    border-left-color: transparent;
    border-right-color: var(--accent-color);
}

.service-icon {
    width: 120px;
    height: 120px;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 30px;
    background: transparent;
    border: none;
    transition: all 0.5s;
    position: relative;
    transform: rotate(-5deg);
}

.service-card:nth-child(even) .service-icon {
    transform: rotate(5deg);
    margin-left: auto;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.15);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 70, 193, 0.2));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(74, 144, 226, 0.3);
    transition: all 0.5s;
}

.service-card:hover .service-icon img {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: width 0.5s;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    font-size: 17px;
    max-width: 90%;
    font-weight: 300;
}

.service-card:nth-child(even) p {
    margin-left: auto;
    text-align: right;
}

/* Process Section - Diagonal Zigzag Flow */
.process-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(15, 15, 15, 0.95) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(74, 144, 226, 0.02) 100px,
            rgba(74, 144, 226, 0.02) 200px
        );
    pointer-events: none;
    z-index: 0;
}

.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(74, 144, 226, 0.3) 20%,
        rgba(107, 70, 193, 0.3) 50%,
        rgba(74, 144, 226, 0.3) 80%,
        transparent 100%
    );
    transform: translateY(-50%) rotate(-2deg);
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(80px) rotate(-1deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr 200px;
    transform: translateY(80px) rotate(1deg);
}

.timeline-item:nth-child(even) .timeline-number {
    order: 2;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-number {
    font-size: 120px;
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.8;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.5s;
}

.timeline-item:nth-child(even) .timeline-number {
    transform: rotate(5deg);
}

.timeline-item:hover .timeline-number {
    transform: rotate(0deg) scale(1.1);
}

.timeline-number::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.timeline-item:hover .timeline-number::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 50px 45px;
    border-radius: 0;
    border: none;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.timeline-item:nth-child(even) .timeline-content {
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
}

.timeline-item:nth-child(even) .timeline-content::before {
    transform-origin: right;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px) scale(1.02);
    border-top-color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.timeline-item:hover .timeline-content h3::after {
    transform: scaleX(1);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    font-size: 18px;
    font-weight: 300;
}

/* Tech Section - Scattered Organic Layout */
.tech-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 60px 0;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 0;
    text-align: left;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    flex: 0 1 calc(33.333% - 20px);
    margin: 10px;
    transform: rotate(-1deg);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.tech-item:nth-child(2n) {
    transform: rotate(1deg);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    margin-top: 40px;
}

.tech-item:nth-child(3n) {
    transform: rotate(-0.5deg);
    margin-top: -20px;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
}

.tech-item:hover::before {
    transform: scaleX(1);
}

.tech-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--accent-color);
    opacity: 0;
    transition: opacity 0.5s;
}

.tech-item:hover::after {
    opacity: 1;
}

.tech-item:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(74, 144, 226, 0.25);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 10;
}

.tech-item h4 {
    font-size: 26px;
    margin-bottom: 15px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.tech-item h4::after {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
    color: var(--accent-color);
}

.tech-item:hover h4::after {
    opacity: 1;
    transform: translateX(0);
}

.tech-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

/* Features Section - Diagonal Stacked Cards */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.feature-item {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    opacity: 0;
    transform: translateX(-150px) rotate(-2deg);
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:nth-child(2) {
    transform: translateX(150px) rotate(2deg);
    margin-left: 100px;
    z-index: 2;
}

.feature-item:nth-child(3) {
    transform: translateX(-100px) rotate(-1deg);
    margin-left: 50px;
    z-index: 3;
}

.feature-item.reverse {
    flex-direction: row-reverse;
    transform: translateX(150px) rotate(2deg);
}

.feature-item.reverse:nth-child(2) {
    transform: translateX(-150px) rotate(-2deg);
}

.feature-item.reverse:nth-child(3) {
    transform: translateX(100px) rotate(1deg);
}

.feature-image {
    flex: 0 0 50%;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    transition: all 0.6s;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    z-index: 2;
}

.feature-item.reverse .feature-image {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-premium);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
    filter: blur(20px);
}

.feature-item:hover .feature-image::before {
    opacity: 0.3;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.feature-item:hover .feature-image::after {
    opacity: 1;
}

.feature-item:hover .feature-image {
    transform: scale(1.08) rotate(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.6s;
}

.feature-item:hover .feature-image img {
    filter: grayscale(0%) contrast(1.2);
}

.feature-content {
    flex: 0 0 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.6s;
    z-index: 1;
}

.feature-item.reverse .feature-content {
    border-left: none;
    border-right: 4px solid transparent;
}

.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-premium);
    transition: height 0.6s;
}

.feature-item.reverse .feature-content::before {
    left: auto;
    right: 0;
}

.feature-item:hover .feature-content {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--accent-color);
    transform: translateX(20px);
}

.feature-item.reverse:hover .feature-content {
    border-left-color: transparent;
    border-right-color: var(--accent-color);
    transform: translateX(-20px);
}

.feature-item:hover .feature-content::before {
    height: 100%;
}

.feature-content h3 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 30px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    position: relative;
    padding-left: 30px;
}

.feature-item.reverse .feature-content h3 {
    padding-left: 0;
    padding-right: 30px;
    text-align: right;
}

.feature-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.5s;
}

.feature-item.reverse .feature-content h3::before {
    left: auto;
    right: 0;
}

.feature-item:hover .feature-content h3::before {
    width: 40px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 2;
    font-weight: 300;
}

/* About Section - Overlapping Split */
.about-section {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--bg-dark) 50%, rgba(15, 15, 15, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(74, 144, 226, 0.02) 50px,
        rgba(74, 144, 226, 0.02) 100px
    );
    pointer-events: none;
    z-index: 0;
}

.about-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.about-text {
    flex: 0 0 60%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 80px 70px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    border-right: 3px solid transparent;
    transition: all 0.6s;
    z-index: 2;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-premium);
    transition: height 0.6s;
}

.about-text:hover::before {
    height: 100%;
}

.about-text:hover {
    background: rgba(255, 255, 255, 0.06);
    border-right-color: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(-20px);
}

.about-text h2 {
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 40px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    position: relative;
    padding-bottom: 20px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
}

.about-text:hover h2::after {
    transform: scaleX(1);
}

.about-text p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
    line-height: 2.2;
    font-size: 19px;
    font-weight: 300;
    max-width: 95%;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid transparent;
    transition: all 0.4s;
}

.stat-item:hover {
    border-left-color: var(--accent-color);
    transform: translateX(10px);
}

.stat-number {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--accent-color);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover .stat-number::before {
    opacity: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.about-image {
    flex: 0 0 50%;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    transition: all 0.6s;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -100px;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: var(--gradient-premium);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
    filter: blur(30px);
}

.about-image:hover::before {
    opacity: 0.4;
}

.about-image:hover {
    transform: scale(1.05) translateX(-30px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -40px 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.6s;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1.2);
}

/* Contact Section - Asymmetric Split */
.contact-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 60px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 0;
    border: none;
    border-left: 4px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: -20px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-premium);
    transition: height 0.5s;
    z-index: 1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(25px);
    border-left-color: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -15px 0 40px rgba(74, 144, 226, 0.15);
    z-index: 2;
}

.contact-item:hover::before {
    height: 100%;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 25px;
    transition: color 0.3s;
}

.contact-item:hover h3 {
    color: var(--accent-color);
}

.contact-item h3::before {
    content: '▸';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
    color: var(--accent-color);
}

.contact-item:hover h3::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    font-size: 15px;
    font-weight: 300;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.contact-item a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-form {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 0;
    border: none;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    position: relative;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -50px;
    transition: all 0.6s;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-premium);
    transition: height 0.6s;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.07);
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(-30px);
    box-shadow: 20px -20px 60px rgba(74, 144, 226, 0.2);
}

.contact-form:hover::before {
    height: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: white;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Policy Pages Styles */
.policy-page {
    padding: 140px 0 100px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-dark);
    min-height: 100vh;
}

.policy-page h1 {
    font-size: clamp(42px, 5vw, 56px);
    margin-bottom: 30px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.policy-page h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.policy-page h3 {
    font-size: clamp(22px, 2vw, 26px);
    margin-top: 35px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
}

.policy-page p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-page ul,
.policy-page ol {
    margin-left: 30px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
}

.policy-page li {
    margin-bottom: 10px;
}

.policy-page a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-page a:hover {
    color: var(--primary-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: var(--bg-dark);
}

.thanks-content h1 {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 30px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.thanks-content p {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 70%;
    }
    
    .hero-accordion {
        max-width: 80%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
        transform: translateY(80px) rotate(0deg) !important;
        margin-bottom: 60px;
    }
    
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr !important;
        transform: translateY(80px) rotate(0deg) !important;
    }
    
    .timeline-item:nth-child(even) .timeline-number,
    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
        text-align: left;
    }
    
    .timeline-number {
        font-size: 80px;
        text-align: center;
        transform: rotate(0deg) !important;
    }
    
    .timeline-content {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .timeline-item:hover .timeline-content {
        transform: translateY(-10px) scale(1.02);
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .burger-menu {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-accordion {
        max-width: 100%;
        margin-top: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .tech-grid {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .tech-item {
        flex: 1 1 100%;
        margin: 15px 0;
        transform: rotate(0deg) !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .tech-item:nth-child(2n),
    .tech-item:nth-child(3n) {
        transform: rotate(0deg) !important;
        margin-top: 15px;
    }
    
    .tech-item:hover {
        transform: translateY(-15px) scale(1.05) !important;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .services-grid {
        gap: 0;
    }
    
    .service-card {
        padding: 40px 30px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .service-card:nth-child(even) {
        margin-left: 0 !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .service-card:hover {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .service-card p {
        max-width: 100%;
        text-align: left;
    }
    
    .service-card:nth-child(even) p {
        text-align: left;
    }
    
    .service-card:nth-child(even) .service-icon {
        margin-left: 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-info {
        flex: 1 1 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-item {
        margin-left: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        padding: 25px 20px;
    }
    
    .contact-item:hover {
        transform: translateX(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        margin-left: 0;
    }
    
    .contact-form {
        flex: 1 1 100%;
        padding: 40px 30px;
        margin-left: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        border-right: none;
    }
    
    .contact-form:hover {
        transform: translateX(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .about-content {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }
    
    .about-text {
        flex: 1 1 100%;
        padding: 50px 30px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        border-right: none;
    }
    
    .about-text:hover {
        transform: translateX(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .about-image {
        flex: 1 1 100%;
        margin-left: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        margin-top: -50px;
    }
    
    .about-image:hover {
        transform: scale(1.05) translateX(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .about-stats {
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }
    
    .feature-item {
        flex-direction: column !important;
        gap: 0;
        transform: translateX(0) rotate(0deg) !important;
        margin-bottom: 40px;
        margin-left: 0 !important;
    }
    
    .feature-item:nth-child(2),
    .feature-item:nth-child(3) {
        transform: translateX(0) rotate(0deg) !important;
        margin-left: 0 !important;
    }
    
    .feature-item.reverse {
        flex-direction: column !important;
        transform: translateX(0) rotate(0deg) !important;
    }
    
    .feature-image {
        flex: 1 1 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .feature-item.reverse .feature-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }
    
    .feature-content {
        flex: 1 1 100%;
        padding: 50px 30px;
        border-left: none !important;
        border-right: none !important;
        border-top: 4px solid transparent;
    }
    
    .feature-item.reverse .feature-content {
        border-right: none !important;
        border-top: 4px solid transparent;
    }
    
    .feature-item:hover .feature-content {
        transform: translateX(0) !important;
    }
    
    .feature-item.reverse:hover .feature-content {
        transform: translateX(0) !important;
    }
    
    .feature-content h3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .feature-content h3::before {
        display: none;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .service-card,
    .contact-form {
        padding: 25px 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .policy-page {
        padding: 120px 0 60px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .accordion-header h3 {
        font-size: 18px;
    }
    
    .accordion-content {
        font-size: 14px;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .contact-item {
        padding: 25px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
