:root {
            --navy: #0d1b3e;
            --navy2: #142251;
            --navy3: #1c2f6a;
            --gold: #c9a84c;
            --gold2: #e2c068;
            --gold-light: #f0d98a;
            --gold-soft: rgba(201,168,76,0.10);
            --gold-border: rgba(201,168,76,0.25);
            --cream: #faf8f3;
            --cream2: #f2ede3;
            --white: #ffffff;
            --text-dark: #0d1b3e;
            --text-mid: #4a5578;
            --text-light: #8892b0;
            --border-light: rgba(13,27,62,0.10);
            --border-mid: rgba(13,27,62,0.18);
            --shadow-sm: 0 4px 16px rgba(13,27,62,0.08);
            --shadow-md: 0 12px 40px rgba(13,27,62,0.12);
            --shadow-lg: 0 30px 80px rgba(13,27,62,0.18);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ===== SELECTION COLOR ===== */
        ::selection { background: var(--gold); color: var(--navy); }

        /* ===== PROGRESS BAR ===== */
        #progressBar {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--navy), var(--gold));
            z-index: 9999;
            transition: width 0.1s;
        }

        /* ===== TOPBAR ===== */
        .topbar {
            background: var(--navy);
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.04em;
        }
        .topbar-left { display: flex; gap: 28px; }
        .topbar-left a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
            display: flex; align-items: center; gap: 7px;
        }
        .topbar-left a:hover { color: var(--gold2); }
        .topbar-left i { color: var(--gold); font-size: 10px; }
        .topbar-right { display: flex; gap: 14px; }
        .topbar-right a {
            width: 28px; height: 28px;
            border-radius: 6px;
            border: 1px solid rgba(201,168,76,0.2);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.4);
            font-size: 12px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .topbar-right a:hover { border-color: var(--gold); color: var(--gold); }

        /* ===== NAV ===== */
        nav {
            position: sticky; top: 0; z-index: 900;
            background: rgba(250,248,243,0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            padding: 0 60px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
        }
        nav.scrolled {
            background: rgba(250,248,243,0.99);
            box-shadow: 0 4px 24px rgba(13,27,62,0.1);
        }
        .nav-logo img {
            height: 50px;
        }
        .nav-logo-fallback {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
        }
        .nav-logo-fallback span { color: var(--gold); }

        .nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
        .nav-links a {
            text-decoration: none;
            color: #000000;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .nav-links a:hover { color: var(--navy); background: var(--cream2); }
        .nav-links a.active { color: var(--navy); }
        .nav-cta {
            background: var(--navy) !important;
            color: var(--gold) !important;
            border: 1px solid transparent !important;
        }
        .nav-cta:hover {
            background: var(--navy2) !important;
            color: var(--gold2) !important;
            box-shadow: var(--shadow-sm) !important;
        }

        .dropdown { position: relative; }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px); left: 0;
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            min-width: 210px;
            padding: 8px;
            z-index: 999;
            box-shadow: var(--shadow-md);
        }
        .dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { list-style: none; }
        .dropdown-menu a {
            display: block !important;
            padding: 10px 14px !important;
            border-radius: 8px;
            font-size: 13px !important;
            letter-spacing: 0.02em !important;
        }

        .burger-btn {
            display: none;
            flex-direction: column; gap: 5px;
            background: none; border: none;
            cursor: pointer; padding: 8px;
        }
        .burger-btn span {
            width: 24px; height: 1.5px;
            background: var(--navy);
            display: block; transition: all 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            background: var(--navy);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Geometric pattern bg */
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
        }
        /* Grid dots */
        .hero-dots {
            position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(201,168,76,0.15) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.6;
        }
        /* Diagonal divider */
        .hero::after {
            content: '';
            position: absolute;
            right: -1px; top: 0; bottom: 0;
            width: 120px;
            background: var(--cream);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            z-index: 3;
        }

        .hero-layout {
            position: relative; z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            width: 100%;
            align-items: center;
            padding: 0 60px 0 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-left { padding-right: 60px; }

        .hero-dept {
            display: inline-flex; align-items: center; gap: 12px;
            border: 1px solid var(--gold-border);
            background: rgba(201,168,76,0.07);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold2);
            margin-bottom: 32px;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.2s;
        }
        .hero-dept::before {
            content: '✦';
            font-size: 10px;
            color: var(--gold);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 5vw, 5rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.35s;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-tagline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.4rem, 2.5vw, 2.2rem);
            font-weight: 400;
            font-style: italic;
            color: var(--gold-light);
            margin-bottom: 28px;
            opacity: 0.75;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.5s;
        }

        .hero-desc {
            font-size: 15px;
            font-weight: 300;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 44px;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.65s;
        }

        .hero-actions {
            display: flex; gap: 14px; align-items: center;
            animation: fadeUp 0.7s ease both;
            animation-delay: 0.8s;
        }

        .btn-gold {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--gold);
            color: var(--navy);
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            border: none; cursor: pointer;
            transition: all 0.3s;
        }
        .btn-gold:hover {
            background: var(--gold2);
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(201,168,76,0.35);
        }
        .btn-ghost {
            display: inline-flex; align-items: center; gap: 10px;
            border: 1px solid rgba(201,168,76,0.35);
            color: rgba(255,255,255,0.7);
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201,168,76,0.06);
        }

        /* Hero Right - Document card stack */
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            animation: fadeUp 1s ease both;
            animation-delay: 0.9s;
        }
        .doc-stack {
            position: relative;
            width: 340px;
            height: 400px;
        }
        .doc-card {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        }
        .doc-card.back {
            width: 300px;
            height: 360px;
            top: 30px; left: 30px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            transform: rotate(-4deg);
        }
        .doc-card.mid {
            width: 310px;
            height: 370px;
            top: 15px; left: 15px;
            background: rgba(255,255,255,0.25);
            border: 1px solid rgba(255,255,255,0.2);
            transform: rotate(-2deg);
        }
        .doc-card.front {
            width: 320px;
            height: 380px;
            top: 0; left: 0;
            transform: rotate(1deg);
        }
        .doc-header {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }
        .doc-logo-circle {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--navy);
            display: flex; align-items: center; justify-content: center;
        }
        .doc-logo-circle span {
            font-family: 'Playfair Display', serif;
            font-size: 13px;
            font-weight: 800;
            color: var(--gold);
        }
        .doc-title-block h4 {
            font-size: 11px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 0.05em;
        }
        .doc-title-block p { font-size: 10px; color: var(--text-light); }
        .doc-field {
            margin-bottom: 12px;
        }
        .doc-field label {
            display: block;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 4px;
        }
        .doc-field-value {
            font-size: 12px;
            color: var(--text-dark);
            font-weight: 500;
            background: var(--cream);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            padding: 7px 12px;
        }
        .doc-stamp {
            position: absolute;
            bottom: 28px; right: 28px;
            width: 64px; height: 64px;
            border-radius: 50%;
            border: 3px solid var(--gold);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            transform: rotate(-15deg);
        }
        .doc-stamp span {
            font-family: 'Playfair Display', serif;
            font-size: 8px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.08em;
            text-align: center;
            line-height: 1.4;
            text-transform: uppercase;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(26px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== STATS ===== */
        .stats-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            max-width: 1200px;
            margin: 0 auto;
        }
        .stat-item {
            padding: 44px 40px;
            border-right: 1px solid var(--border-light);
            text-align: left;
            transition: background 0.3s;
        }
        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: var(--cream); }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }
        .stat-num .gold { color: var(--gold); }
        .stat-label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-light);
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .stat-icon {
            font-size: 20px;
            margin-bottom: 12px;
            opacity: 0.6;
        }

        /* ===== SECTIONS ===== */
        .section { padding: 100px 80px; }
        .max-w { max-width: 1200px; margin: 0 auto; }

        .eyebrow {
            display: inline-flex; align-items: center; gap: 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .eyebrow::before {
            content: '';
            width: 30px; height: 1px;
            background: var(--gold);
        }

        .big-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            font-weight: 800;
            color: var(--navy);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        .big-title em { font-style: italic; color: var(--gold); }

        .body-text {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.8;
            font-weight: 300;
        }

        /* ===== FILIERES ===== */
        .filieres-section {
            background: var(--cream);
        }
        .filieres-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }
        .filter-tabs { display: flex; gap: 8px; }
        .filter-tab {
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: 1px solid var(--border-mid);
            background: transparent;
            color: var(--text-mid);
            cursor: pointer;
            transition: all 0.25s;
            font-family: 'Outfit', sans-serif;
        }
        .filter-tab:hover, .filter-tab.active {
            border-color: var(--navy);
            color: var(--white);
            background: var(--navy);
        }

        .filieres-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .filiere-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
                        box-shadow 0.35s,
                        border-color 0.3s;
            position: relative;
        }
        .filiere-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold-border);
        }

        /* Large featured card */
        .filiere-card.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
        }

        .card-accent {
            background: var(--navy);
            padding: 44px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 260px;
            position: relative;
            overflow: hidden;
        }
        .card-accent::before {
            content: '';
            position: absolute;
            width: 200px; height: 200px;
            top: -80px; right: -80px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.2);
        }
        .card-accent::after {
            content: '';
            position: absolute;
            width: 150px; height: 150px;
            bottom: -60px; left: -40px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.15);
        }
        .card-accent-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid var(--gold-border);
            background: rgba(201,168,76,0.1);
            padding: 5px 14px;
            border-radius: 100px;
            align-self: flex-start;
            z-index: 1;
            position: relative;
        }
        .card-accent-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            position: relative; z-index: 1;
        }
        .card-accent-title em { color: var(--gold); font-style: italic; }

        .card-body {
            padding: 36px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }
        .card-body-simple { padding: 32px; }

        .card-skills {
            display: flex; flex-wrap: wrap; gap: 8px;
        }
        .skill-pill {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            background: var(--cream2);
            color: var(--navy);
            border: 1px solid var(--border-light);
            transition: all 0.2s;
        }
        .filiere-card:hover .skill-pill {
            background: var(--gold-soft);
            border-color: var(--gold-border);
            color: var(--navy);
        }

        .card-icon-wrap {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: var(--cream2);
            border: 1px solid var(--border-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        .filiere-card:hover .card-icon-wrap {
            background: var(--gold-soft);
            border-color: var(--gold-border);
        }

        .card-title-s {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }
        .card-desc-s {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.65;
            margin-bottom: 20px;
        }
        .card-footer-row {
            display: flex; align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-light);
            padding-top: 18px;
        }
        .card-meta {
            font-size: 12px;
            color: var(--text-light);
            display: flex; align-items: center; gap: 6px;
        }
        .card-arrow {
            width: 36px; height: 36px;
            border-radius: 10px;
            border: 1px solid var(--border-mid);
            display: flex; align-items: center; justify-content: center;
            color: var(--text-light);
            font-size: 14px;
            transition: all 0.25s;
        }
        .filiere-card:hover .card-arrow {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--gold);
            transform: rotate(-45deg);
        }

        /* ===== OBJECTIFS ===== */
        .objectifs-section {
            background: var(--white);
            border-top: 1px solid var(--border-light);
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }
        .steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
        .step-item {
            display: flex;
            gap: 24px;
            padding: 28px 0;
            border-bottom: 1px solid var(--border-light);
            transition: padding-left 0.3s;
        }
        .step-item:first-child { border-top: 1px solid var(--border-light); }
        .step-item:hover { padding-left: 8px; }
        .step-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold);
            opacity: 0.35;
            line-height: 1;
            min-width: 52px;
        }
        .step-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        .step-content p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

        /* Right info panel */
        .info-panels { display: flex; flex-direction: column; gap: 20px; }
        .info-panel {
            background: var(--cream);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 28px 32px;
            transition: border-color 0.3s, transform 0.3s;
        }
        .info-panel:hover { border-color: var(--gold-border); transform: translateX(6px); }
        .panel-head {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 16px;
        }
        .panel-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
        }
        .panel-icon.navy-bg { background: var(--navy); }
        .panel-icon.gold-bg { background: var(--gold); }
        .panel-icon.cream-bg { background: var(--cream2); border: 1px solid var(--border-mid); }
        .panel-head h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
        }
        .info-panel p, .info-panel li {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.7;
        }
        .info-panel ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .info-panel li { display: flex; align-items: flex-start; gap: 10px; }
        .info-panel li::before {
            content: '✦';
            color: var(--gold);
            font-size: 9px;
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* ===== DEBOUCHES ===== */
        .debouches-section { background: var(--navy); padding: 100px 80px; }
        .debouches-header { text-align: center; margin-bottom: 64px; }
        .debouches-header .eyebrow { color: var(--gold); justify-content: center; }
        .debouches-header .big-title { color: var(--white); }
        .debouches-header .big-title em { color: var(--gold); }
        .debouches-header p { color: rgba(255,255,255,0.5); max-width: 520px; margin: 20px auto 0; }

        .debouches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .debouche-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(201,168,76,0.15);
            border-radius: 18px;
            padding: 32px;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }
        .debouche-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }
        .debouche-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(201,168,76,0.3);
            transform: translateY(-6px);
        }
        .debouche-card:hover::before { transform: scaleX(1); }
        .debouche-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(201,168,76,0.12);
            line-height: 1;
            margin-bottom: 8px;
        }
        .debouche-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }
        .debouche-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
        .debouche-tag {
            display: inline-block;
            margin-top: 20px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold2);
            border: 1px solid var(--gold-border);
            background: rgba(201,168,76,0.08);
            padding: 4px 12px;
            border-radius: 100px;
        }

        /* ===== TEMOIGNAGES ===== */
        .testimonials-section { background: var(--cream2); border-top: 1px solid var(--border-light); }
        .testi-header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testi-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.3s;
            position: relative;
        }
        .testi-card::before {
            content: '"';
            position: absolute;
            top: 16px; right: 24px;
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.12;
            line-height: 1;
        }
        .testi-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
            border-color: var(--gold-border);
        }
        .testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
        .testi-text {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 28px;
        }
        .testi-author { display: flex; align-items: center; gap: 14px; }
        .testi-avatar {
            width: 46px; height: 46px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 15px;
            background: var(--navy);
            color: var(--gold);
        }
        .testi-name {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--navy);
        }
        .testi-role { font-size: 12px; color: var(--text-light); }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--white);
            padding: 120px 80px;
            text-align: center;
            border-top: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px; height: 500px;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid var(--gold-border);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            width: 750px; height: 750px;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.08);
        }
        .cta-inner { position: relative; z-index: 1; }
        .cta-inner .big-title { font-size: clamp(2.5rem, 5vw, 4.2rem); }
        .cta-inner p {
            font-size: 16px; color: var(--text-mid);
            max-width: 500px; margin: 20px auto 44px; line-height: 1.75;
        }
        .cta-actions { display: flex; gap: 16px; justify-content: center; }

        /* ===== FOOTER ===== */
        footer {
            background: var(--navy);
            padding: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }
        .footer-about p {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            line-height: 1.75;
            margin-top: 16px;
        }
        .footer-about img { height: 50px; }
        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
        }
        .footer-logo-text span { color: var(--gold); }
        .footer-col h4 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(201,168,76,0.2);
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-col a {
            font-size: 13px; color: rgba(255,255,255,0.5);
            text-decoration: none; transition: color 0.2s;
            display: flex; align-items: center; gap: 8px;
        }
        .footer-col a:hover { color: var(--gold2); }
        .footer-col a i { font-size: 9px; opacity: 0.4; }
        .footer-contact-item {
            display: flex; gap: 12px; margin-bottom: 14px;
        }
        .footer-contact-item i { color: var(--gold); font-size: 13px; margin-top: 2px; min-width: 16px; }
        .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

        .footer-bottom {
            border-top: 1px solid rgba(201,168,76,0.15);
            padding-top: 32px;
            display: flex; align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
        .social-links { display: flex; gap: 10px; }
        .social-link {
            width: 38px; height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(201,168,76,0.2);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.35);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

        /* ===== FLOATING ===== */
        .whatsapp-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 56px; height: 56px;
            border-radius: 16px;
            background: #25D366;
            color: white;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            z-index: 999;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37,211,102,0.35);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 16px 40px rgba(37,211,102,0.45); }

        #topBtn {
            position: fixed; bottom: 96px; right: 28px;
            width: 46px; height: 46px;
            border-radius: 12px;
            border: 1px solid var(--border-mid);
            background: var(--white);
            color: var(--navy);
            font-size: 16px;
            cursor: pointer;
            display: none; z-index: 998;
            transition: all 0.2s;
            box-shadow: var(--shadow-sm);
        }
        #topBtn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0; transform: translateY(28px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-left {
            opacity: 0; transform: translateX(-28px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .hero-layout { grid-template-columns: 1fr; padding: 60px; }
            .hero-right { display: none; }
            .hero::after { display: none; }
            .filieres-grid { grid-template-columns: 1fr; }
            .filiere-card.featured { grid-column: span 1; display: block; }
            .two-col { grid-template-columns: 1fr; gap: 50px; }
        }
        @media (max-width: 900px) {
            .section, .debouches-section, .cta-section, footer { padding: 70px 28px; }
            nav { padding: 0 24px; }
            .topbar { padding: 10px 20px; }
            .nav-links { display: none; }
            .burger-btn { display: flex; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .debouches-grid { grid-template-columns: 1fr; }
            .testi-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .filieres-top { flex-direction: column; align-items: flex-start; gap: 20px; }
            .cta-actions { flex-direction: column; align-items: center; }
            .hero-actions { flex-direction: column; align-items: flex-start; }
        }
