/* ===== RESET ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a2e;
            background: #fdfdfd;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible,
        .btn-primary:focus-visible,
        .btn-outline:focus-visible {
            outline: 3px solid rgba(201,168,76,0.45);
            outline-offset: 3px;
            box-shadow: 0 0 0 6px rgba(201,168,76,0.16);
            border-radius: 10px;
        }

        /* ===== VARIABLES ===== */
        :root {
            --gold: #c9a84c;
            --gold-light: #e8d48b;
            --gold-dark: #a8872e;
            --navy: #1a1a2e;
            --navy-light: #2d2d44;
            --bg-cream: #faf8f5;
            --bg-white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-700: #374151;
            --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
            --shadow-gold: 0 10px 40px rgba(201,168,76,0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ===== UTILITY ===== */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .section-padding { padding: 100px 0; }
        #services,
        #advantages,
        #process,
        #contact {
            scroll-margin-top: 96px;
        }
        .gradient-text {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .section-label::before {
            content: '';
            width: 30px; height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 2px;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--navy);
            margin-bottom: 20px;
        }
        .section-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            color: var(--gray-500);
            line-height: 1.7;
            max-width: 620px;
        }
        .bg-glow {
            position: absolute;
            border-radius: 50%;
    filter: blur(90px);
            pointer-events: none;
            z-index: 0;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
        }
        .header.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 30px rgba(0,0,0,0.06);
            padding: 10px 0;
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--navy);
            flex-shrink: 0;
        }
        .logo-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 1rem;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .logo-text span {
            display: block;
            font-size: 0.65rem;
            font-weight: 400;
            color: var(--gray-400);
            letter-spacing: 1px;
            margin-top: 1px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a:not(.btn-primary) {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--gray-700);
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:not(.btn-primary)::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gold);
            transition: var(--transition);
            border-radius: 2px;
        }
        .nav-links a:not(.btn-primary):hover { color: var(--gold); }
        .nav-links a:not(.btn-primary):hover::after { width: 100%; }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-gold);
            white-space: nowrap;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(201,168,76,0.35);
        }
        .btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: var(--navy);
            font-weight: 600;
            font-size: 0.9rem;
            border: 2px solid var(--gray-200);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Burger */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
        }
        .burger span {
            width: 24px; height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: var(--transition);
            display: block;
        }
        .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, #ffffff 0%, var(--bg-cream) 50%, #f5f0e8 100%);
            overflow: hidden;
            padding-top: 80px;
        }
.hero .bg-glow.glow-1 { width: 480px; height: 480px; background: rgba(201,168,76,0.08); top: -70px; right: -70px; }
.hero .bg-glow.glow-2 { width: 320px; height: 320px; background: rgba(74,108,247,0.05); bottom: -30px; left: -70px; }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content { padding: 40px 0; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,168,76,0.1);
            border: 1px solid rgba(201,168,76,0.2);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold-dark);
            margin-bottom: 28px;
        }
        .hero-badge .dot {
            width: 8px; height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 24px;
        }
        .hero-desc {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.8;
            color: var(--gray-500);
            margin-bottom: 40px;
            max-width: 500px;
        }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid var(--gray-200);
            flex-wrap: wrap;
        }
        .hero-stat h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); }
        .hero-stat h3 span { color: var(--gold); }
        .hero-stat p { font-size: 0.85rem; color: var(--gray-400); margin: 0; }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-card-main {
            background: var(--bg-white);
            border-radius: 24px;
            padding: clamp(24px, 4vw, 40px);
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(0,0,0,0.04);
            width: 100%;
            max-width: 440px;
            position: relative;
            z-index: 2;
        }
        .hero-card-main .card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }
        .card-icon-lg {
            width: 52px; height: 52px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .card-header-text h4 { font-weight: 700; font-size: 1rem; }
        .card-header-text p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }

        .card-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .card-col h5 {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .card-col ul { display: flex; flex-direction: column; gap: 6px; }
        .card-col ul li {
            font-size: 0.78rem;
            color: var(--gray-500);
            line-height: 1.5;
            padding-left: 14px;
            position: relative;
        }
        .card-col ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 0.7rem;
        }

        .hero-float-card {
            position: absolute;
            background: var(--bg-white);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0,0,0,0.04);
            z-index: 3;
            animation: float 4s ease-in-out infinite;
        }
        .hero-float-card.card-top { top: -15px; right: -20px; }
        .hero-float-card.card-bottom { bottom: -45px; left: -20px; animation-delay: 2s; }
        .float-card-inner { display: flex; align-items: center; gap: 10px; }
        .float-icon {
            width: 38px; height: 38px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; flex-shrink: 0;
        }
        .float-icon.green { background: #e8f5e9; }
        .float-icon.blue { background: #e3f2fd; }
        .float-card-text h5 { font-size: 0.8rem; font-weight: 700; }
        .float-card-text p { font-size: 0.7rem; color: var(--gray-400); margin: 0; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* ===== SERVICES ===== */
        .services { background: var(--bg-white); position: relative; }
        .services-header { text-align: center; margin-bottom: 60px; }
        .services-header .section-subtitle { margin: 0 auto; }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--bg-white);
            border: 1px solid var(--gray-100);
            border-radius: var(--radius);
            padding: 32px 24px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            opacity: 0;
            transition: var(--transition);
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .service-card:hover::before { opacity: 1; }
        .service-icon {
            width: 56px; height: 56px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; margin-bottom: 20px;
            background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
        }
        .service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
        .service-card p { font-size: 0.88rem; line-height: 1.7; color: var(--gray-500); }

        /* ===== ADVANTAGES ===== */
        .advantages {
            background: linear-gradient(160deg, var(--bg-cream) 0%, #f5f0e8 100%);
            position: relative; overflow: hidden;
        }
        .advantages .bg-glow {
            width: 500px; height: 500px;
            background: rgba(201,168,76,0.06);
            top: 50%; right: -150px;
            transform: translateY(-50%);
        }
        .adv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative; z-index: 1;
        }
        .adv-list { display: flex; flex-direction: column; gap: 24px; }
        .adv-item {
            display: flex; gap: 16px; padding: 20px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.8);
            transition: var(--transition);
        }
        .adv-item:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateX(6px); }
        .adv-number {
            flex-shrink: 0; width: 42px; height: 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 0.95rem;
        }
        .adv-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
        .adv-text p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

        .showcase-card {
            background: var(--navy); border-radius: 24px;
            padding: clamp(28px, 4vw, 48px);
            color: #fff; position: relative; overflow: hidden;
        }
        .showcase-card::before {
            content: '';
            position: absolute;
            top: -50%; right: -50%;
            width: 100%; height: 100%;
            background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
        }
        .showcase-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-bottom: 12px;
            position: relative;
        }
        .showcase-card .showcase-sub {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 32px;
            position: relative;
        }
        .showcase-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            position: relative;
        }
        .showcase-stat {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
        }
        .showcase-stat a {
            display: block;
            transition: var(--transition);
        }
        .showcase-stat a:hover { transform: scale(1.03); }
        .showcase-stat h4 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 800;
            color: var(--gold-light);
        }
        .showcase-stat p {
            font-size: clamp(0.68rem, 1.2vw, 0.78rem);
            color: rgba(255,255,255,0.5);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* ===== PARTNERS ===== */
        .partners { background: var(--bg-white); }
        .partners-header { text-align: center; margin-bottom: 50px; }
        .partners-header .section-subtitle { margin: 0 auto; }
        .partners-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 30px;
        }
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .partner-logo {
            padding: 18px 28px;
            background: var(--gray-50);
            border-radius: var(--radius-sm);
            border: 1px solid var(--gray-100);
            font-size: clamp(0.85rem, 1.5vw, 1.05rem);
            font-weight: 700;
            color: var(--gray-400);
            transition: var(--transition);
            white-space: nowrap;
        }
        .partner-logo:hover {
            color: var(--gold);
            border-color: var(--gold);
            background: rgba(201,168,76,0.04);
            transform: translateY(-3px);
        }

        /* ===== PROCESS ===== */
        .process { background: linear-gradient(160deg, #ffffff 0%, var(--bg-cream) 100%); }
        .process-header { text-align: center; margin-bottom: 60px; }
        .process-header .section-subtitle { margin: 0 auto; }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 52px;
            left: 15%; right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
            z-index: 0;
        }
        .process-step { text-align: center; position: relative; z-index: 1; }
        .step-circle {
            width: 60px; height: 60px; margin: 0 auto 20px;
            background: var(--bg-white);
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 1.1rem; color: var(--gold);
            box-shadow: var(--shadow-md); transition: var(--transition);
        }
        .process-step:hover .step-circle { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
        .process-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
        .process-step p {
            font-size: 0.82rem; color: var(--gray-500); line-height: 1.6;
            max-width: 240px; margin: 0 auto;
        }

        /* ===== CTA ===== */
        .cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            position: relative; overflow: hidden;
        }
        .cta .bg-glow { width: 600px; height: 600px; background: rgba(201,168,76,0.08); top: -200px; left: 50%; transform: translateX(-50%); }
        .cta-inner { text-align: center; position: relative; z-index: 1; }
        .cta .section-label { color: var(--gold-light); }
        .cta .section-label::before { background: var(--gold-light); }
        .cta .section-title { color: #fff; }
        .cta .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto 40px; }
        .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .cta .btn-outline { border-color: rgba(255,255,255,0.2); color: #fff; }
        .cta .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        .cta-trust { margin-top: 50px; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .cta-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.82rem; }
        .cta-trust-item span.icon { font-size: 1.1rem; }

        /* ===== CONTACT ===== */
        .contact { background: var(--bg-white); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        .contact-info .section-subtitle { margin-bottom: 36px; }
        .contact-details { display: flex; flex-direction: column; gap: 20px; }
        .contact-item { display: flex; gap: 14px; align-items: flex-start; }
        .contact-icon {
            width: 46px; height: 46px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
        }
        .contact-text h4 {
            font-size: 0.75rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px;
            color: var(--gray-400); margin-bottom: 3px;
        }
        .contact-text p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
        .contact-text a { color: var(--navy); transition: var(--transition); }
        .contact-text a:hover { color: var(--gold); }

        /* Form */
        .contact-form-wrapper {
            background: var(--gray-50);
            border-radius: 24px;
            padding: clamp(28px, 4vw, 44px);
            border: 1px solid var(--gray-100);
        }
        .contact-form-wrapper h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
        .contact-form-wrapper > p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.6; }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 13px 16px;
            background: var(--bg-white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 0.92rem;
            color: var(--navy);
            transition: var(--transition);
            outline: none;
            -webkit-appearance: none;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: var(--gray-400); }
        .form-group textarea { resize: vertical; min-height: 90px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-consent {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 14px;
            margin-bottom: 4px;
        }
        .form-consent input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            flex-shrink: 0;
            accent-color: var(--gold);
        }
        .form-consent label {
            font-size: 0.8rem;
            line-height: 1.5;
            color: var(--gray-500);
            margin: 0;
        }
        .form-consent a {
            color: var(--gold-dark);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .form-submit { width: 100%; padding: 15px; margin-top: 6px; justify-content: center; }

        /* Toast */
        .toast {
            position: fixed; top: 24px; right: 24px;
            padding: 16px 24px; border-radius: 14px;
            font-size: 0.88rem; font-weight: 600;
            color: #fff; z-index: 9999;
            transform: translateX(calc(100% + 40px));
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            display: flex; align-items: center; gap: 8px;
            max-width: calc(100vw - 48px);
        }
        .toast.show { transform: translateX(0); }
        .toast.success { background: linear-gradient(135deg, #2ecc71, #27ae60); }
        .toast.error { background: linear-gradient(135deg, #e74c3c, #c0392b); }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--navy);
            color: rgba(255,255,255,0.5);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-brand .logo { color: #fff; margin-bottom: 16px; }
        .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
        .footer-col h4 {
            color: #fff; font-size: 0.8rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px;
        }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
        .footer-col ul li a:hover { color: var(--gold-light); }
        .footer-bottom {
            padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.8rem; flex-wrap: wrap; gap: 16px;
        }
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 36px; height: 36px; border-radius: 10px;
            background: rgba(255,255,255,0.06);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.5); transition: var(--transition); font-size: 0.85rem;
        }
        .footer-socials a:hover { background: var(--gold); color: #fff; }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed; bottom: 32px; right: 32px;
            width: 52px; height: 52px; border: none; border-radius: 16px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 30px rgba(201,168,76,0.3);
            z-index: 900;
            opacity: 0; visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: opacity 0.4s ease, visibility 0.4s ease,
                        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
        .scroll-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(201,168,76,0.45); }
        .scroll-top:active { transform: translateY(0) scale(0.95); }
        .scroll-top svg { transition: transform 0.3s ease; }
        .scroll-top:hover svg { transform: translateY(-2px); }

        /* ===== MOBILE STICKY CTA ===== */
        .mobile-cta {
            position: fixed;
            left: 12px;
            right: 12px;
            bottom: max(12px, env(safe-area-inset-bottom));
            z-index: 950;
            display: none;
            gap: 10px;
            padding: 10px;
            border-radius: 16px;
            background: rgba(26,26,46,0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.24);
        }
        .mobile-cta a {
            flex: 1;
            min-height: 46px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .mobile-cta .mobile-cta-call {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff;
        }
        .mobile-cta .mobile-cta-chat {
            background: rgba(255,255,255,0.12);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.18);
        }

        /* ===== ANIMATIONS ===== */
        .reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ============================================================
           RESPONSIVE
           ============================================================ */

        /* Tablet landscape */
        @media (max-width: 1100px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .nav-links { gap: 24px; }
        }

        /* Tablet portrait */
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }         
            .hero-card-main { max-width: 400px; margin: 0 auto; }
            .hero-content { text-align: center; padding: 0 0 20px; }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-float-card.card-top { top: -10px; right: 0; }
            .hero-float-card.card-bottom { bottom: -10px; left: 0; }
            .adv-grid { grid-template-columns: 1fr; gap: 40px; }
            .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .process-steps::before { display: none; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .section-padding { padding: 70px 0; }
            .container { padding: 0 20px; }
            #services,
            #advantages,
            #process,
            #contact {
                scroll-margin-top: 80px;
            }

            /* NAV */
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 20px;
                z-index: 999;
            }
            .nav-links.active { display: flex; }
            .nav-links.active a:not(.btn-primary) { font-size: 1.2rem; }
            .nav-links.active .btn-primary { margin-top: 10px; }
            .burger { display: flex; }

            /* HERO */
            .hero { min-height: auto; padding: 100px 0 60px; }
            .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
            .hero-stats { gap: 20px; }
            .hero-stat { min-width: 80px; }
            .hero-float-card { display: none; }
            .card-columns { grid-template-columns: 1fr; gap: 16px; }

            /* SERVICES */
            .services-grid { grid-template-columns: 1fr; }

            /* PROCESS */
            .process-steps { grid-template-columns: 1fr; gap: 28px; }

            /* FORM */
            .form-row { grid-template-columns: 1fr; }
            .contact-form-wrapper { padding: 24px 20px; }

            /* FOOTER */
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { justify-content: center; text-align: center; }

            /* SCROLL TOP */
            .scroll-top { bottom: 92px; right: 20px; width: 46px; height: 46px; border-radius: 14px; }

            /* MOBILE CTA */
            .mobile-cta { display: flex; }
        }

        /* Small phones */
        @media (max-width: 400px) {
            .container { padding: 0 16px; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-outline { width: 100%; justify-content: center; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-buttons .btn-primary,
            .cta-buttons .btn-outline { width: 100%; justify-content: center; }
            .partners-logos { gap: 12px; }
            .partner-logo { padding: 14px 20px; font-size: 0.82rem; }
            .showcase-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
            .showcase-stat { padding: 16px 10px; }
        }
