/**
 * LEELOO - Master Stylesheet
 * Consolidated from all pages
 */

/* ===== FROM index.php ===== */

        :root {
            /* Dark palette */
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            
            /* Light palette */
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            
            /* Gold accent */
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            
            /* Text */
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            
            /* Borders */
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            
            /* Typography */
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            
            /* Spacing */
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html {
            font-size: 18px;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* =====================================================
           NAVIGATION - ORIGINAL STYLE (from screenshot)
        ===================================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* =====================================================
           COMMON
        ===================================================== */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        .section-light .btn-primary,
        .section-light-alt .btn-primary { background: var(--space); color: var(--text-pure); }
        .section-light .btn-primary:hover,
        .section-light-alt .btn-primary:hover { background: var(--gold); }
        
        /* Image placeholder */
        .img-placeholder {
            background: linear-gradient(135deg, var(--mist) 0%, var(--silver) 100%);
            border: 2px dashed var(--border-light-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-dark-tertiary);
            font-size: 12px;
            text-align: center;
            padding: 16px;
        }
        
        .img-placeholder.dark {
            background: linear-gradient(135deg, var(--graphite) 0%, var(--slate) 100%);
            border-color: var(--border-medium);
            color: var(--text-tertiary);
        }
        
        .img-placeholder-label {
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        
        .img-placeholder-size {
            font-size: 11px;
            opacity: 0.7;
        }
        
        /* =====================================================
           HERO
        ===================================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 140px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            margin-bottom: 40px;
        }
        
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
        }
        
        .hero-badge-text {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(48px, 8vw, 88px);
            font-weight: 300;
            line-height: 1.05;
            color: var(--text-pure);
            max-width: 900px;
            margin-bottom: 28px;
        }
        
        .hero-title em { font-style: italic; color: var(--gold); }
        
        .hero-subtitle {
            font-size: 21px;
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 48px;
        }
        
        .hero-ctas {
            display: flex;
            gap: 16px;
        }
        
        /* =====================================================
           DISRUPTION SECTION
        ===================================================== */
        .disruption-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .disruption-visual {
            display: flex;
            justify-content: center;
        }
        
        .disruption-stat {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 3px solid var(--gold);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .disruption-stat::before {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px dashed var(--border-light-medium);
        }
        
        .disruption-number {
            font-family: var(--font-display);
            font-size: 72px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }
        
        .disruption-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }
        
        .disruption-sub {
            font-size: 14px;
            color: var(--text-dark-tertiary);
            margin-top: 4px;
        }
        
        .disruption-content h3 {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
        }
        
        .disruption-content p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-dark-secondary);
            margin-bottom: 28px;
        }
        
        .disruption-content strong {
            color: var(--text-dark);
        }
        
        /* =====================================================
           THREE OPTIONS - TABLE ALIGNED INFOGRAPHIC
        ===================================================== */
        .options-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border-light-medium);
            background: var(--white);
        }
        
        .option-col {
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--border-light-medium);
        }
        
        .option-col:last-child {
            border-right: none;
        }
        
        /* Highlight the Leeloo column */
        .option-col.recommended {
            background: var(--gold-bg);
            border-color: var(--border-gold);
            position: relative;
        }
        
        .option-col.recommended::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--space);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding: 4px 16px;
        }
        
        /* Header row - FIXED HEIGHT */
        .option-header {
            padding: 32px 28px;
            text-align: center;
            border-bottom: 1px solid var(--border-light-medium);
            background: var(--mist);
            min-height: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .option-col.recommended .option-header {
            background: rgba(201, 169, 98, 0.15);
        }
        
        .option-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
        }
        
        .option-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .option-tagline {
            font-family: var(--font-display);
            font-size: 16px;
            font-style: italic;
            color: var(--text-dark-tertiary);
        }
        
        /* Content cells - FIXED HEIGHTS */
        .option-cell {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-light);
            min-height: 85px;
            height: 85px;
            display: flex;
            align-items: flex-start;
        }
        
        .option-point {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            line-height: 1.5;
            color: var(--text-dark-secondary);
        }
        
        .option-point-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }
        
        .point-bad .option-point-icon { color: var(--text-dark-tertiary); }
        .point-warn .option-point-icon { color: var(--text-dark-secondary); }
        .point-good { color: var(--text-dark); font-weight: 500; }
        .point-good .option-point-icon { color: var(--gold); }
        
        /* Analogy row - VERY PROMINENT */
        .option-analogy {
            padding: 40px 28px;
            background: var(--space);
            text-align: center;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .option-col:not(.recommended) .option-analogy {
            background: var(--graphite);
        }
        
        .option-col.recommended .option-analogy {
            background: var(--gold);
        }
        
        .analogy-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .option-col:not(.recommended) .analogy-label {
            color: var(--text-tertiary);
        }
        
        .option-col.recommended .analogy-label {
            color: var(--space);
            opacity: 0.7;
        }
        
        .analogy-text {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            color: var(--text-pure);
            line-height: 1.35;
        }
        
        .option-col.recommended .analogy-text {
            color: var(--space);
            font-weight: 500;
        }
        
        /* =====================================================
           UNCOMFORTABLE TRUTH (dark section)
        ===================================================== */
        .truth-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: start;
        }
        
        .truth-content h3 {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .truth-intro {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }
        
        .truth-intro strong {
            color: var(--text-pure);
        }
        
        .truth-facts {
            list-style: none;
        }
        
        .truth-fact {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .truth-fact:last-child {
            border-bottom: none;
        }
        
        .truth-fact-icon {
            width: 56px;
            height: 56px;
        }
        
        .truth-fact h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 6px;
        }
        
        .truth-fact p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Stats - only bad ones */
        .truth-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .truth-stat {
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
            padding: 32px 24px;
            text-align: center;
        }
        
        .truth-stat-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--text-secondary);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .truth-stat-label {
            font-size: 13px;
            color: var(--text-tertiary);
            line-height: 1.4;
        }
        
        /* Positive CTA at end */
        .truth-cta {
            margin-top: 48px;
            padding: 32px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            text-align: center;
        }
        
        .truth-cta-text {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        /* =====================================================
           THE EDGE (3 pillars)
        ===================================================== */
        .edge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-light-medium);
        }
        
        .edge-card {
            padding: 48px 36px;
            text-align: center;
            border-right: 1px solid var(--border-light-medium);
            background: var(--white);
        }
        
        .edge-card:last-child {
            border-right: none;
        }
        
        .edge-card:nth-child(2) {
            background: var(--mist);
        }
        
        .edge-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
        }
        
        .edge-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .edge-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        
        .edge-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark-secondary);
            margin-bottom: 24px;
        }
        
        .edge-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--gold);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .edge-link:hover { gap: 12px; }
        
        .edge-link svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }
        
        /* =====================================================
           COMPARISON TABLE
        ===================================================== */
        .compare-table {
            border: 1px solid var(--border-light-medium);
            background: var(--white);
        }
        
        .compare-header-row,
        .compare-row {
            display: grid;
            grid-template-columns: 180px repeat(3, 1fr);
        }
        
        .compare-header-row {
            background: var(--mist);
            border-bottom: 2px solid var(--border-light-medium);
        }
        
        .compare-header-cell {
            padding: 20px 16px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            border-right: 1px solid var(--border-light);
        }
        
        .compare-header-cell:last-child {
            border-right: none;
        }
        
        .compare-header-cell.winner {
            background: var(--gold-bg);
            color: var(--gold);
        }
        
        .compare-label-cell {
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            background: var(--snow);
            border-right: 1px solid var(--border-light);
            display: flex;
            align-items: center;
        }
        
        .compare-cell {
            padding: 16px 20px;
            font-size: 14px;
            text-align: center;
            border-right: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .compare-cell:last-child {
            border-right: none;
        }
        
        .compare-row:last-child .compare-cell,
        .compare-row:last-child .compare-label-cell {
            border-bottom: none;
        }
        
        .compare-cell.good {
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .compare-cell.bad {
            color: var(--text-dark-tertiary);
        }
        
        .compare-cell.neutral {
            color: var(--text-dark-secondary);
        }
        
        .compare-cell.winner {
            background: var(--gold-subtle);
        }
        
        .compare-cell.winner.good {
            color: var(--gold);
            font-weight: 600;
        }
        
        .compare-row.highlight {
            background: rgba(201, 169, 98, 0.03);
        }
        
        .compare-row.highlight .compare-label-cell {
            background: rgba(201, 169, 98, 0.08);
            font-weight: 600;
        }
        
        /* =====================================================
           HOW IT WORKS (3 steps)
        ===================================================== */
        .steps-container {
            position: relative;
        }
        
        .steps-line {
            position: absolute;
            top: 64px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--border-light-medium) 0%, var(--gold) 50%, var(--border-light-medium) 100%);
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            position: relative;
        }
        
        .step {
            text-align: center;
        }
        
        .step-circle {
            width: 128px;
            height: 128px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            position: relative;
        }
        
        .step-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--gold);
        }
        
        .step-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        
        .step-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark-secondary);
            max-width: 300px;
            margin: 0 auto;
        }
        
        /* =====================================================
           WHO WE SERVE (3 segments)
        ===================================================== */
        .serve-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .serve-card {
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
            padding: 40px 32px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .serve-card:hover {
            border-color: var(--border-gold);
        }
        
        .serve-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
        }
        
        .serve-title {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .serve-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .serve-link {
            font-size: 13px;
            font-weight: 500;
            color: var(--gold);
            text-decoration: none;
        }
        
        /* =====================================================
           CTA
        ===================================================== */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        /* =====================================================
           FOOTER
        ===================================================== */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        
        .footer-legal a {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
        }
        
        /* =====================================================
           RESPONSIVE
        ===================================================== */
        @media (max-width: 1024px) {
            .disruption-grid,
            .truth-grid { grid-template-columns: 1fr; gap: 48px; }
            .options-table { grid-template-columns: 1fr; }
            .option-col { border-right: none; border-bottom: 1px solid var(--border-light-medium); }
            .option-col:last-child { border-bottom: none; }
            .option-col.recommended::before { top: 0; }
            .option-header { height: auto; min-height: auto; }
            .option-cell { height: auto; min-height: auto; }
            .option-analogy { min-height: auto; padding: 32px 24px; }
            .edge-grid { grid-template-columns: 1fr; }
            .edge-card { border-right: none; border-bottom: 1px solid var(--border-light-medium); }
            .steps-line { display: none; }
            .steps-grid { grid-template-columns: 1fr; gap: 48px; }
            .serve-grid { grid-template-columns: 1fr; }
            .compare-header-row, .compare-row { grid-template-columns: 120px repeat(3, 1fr); }
            .compare-label-cell { font-size: 12px; padding: 12px; }
            .compare-cell { font-size: 12px; padding: 12px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .hero, .section { padding-left: 24px; padding-right: 24px; }
            .hero { padding-top: 120px; padding-bottom: 80px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .hero-ctas { flex-direction: column; width: 100%; }
            .btn { width: 100%; }
            .truth-stats { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        
        /* Hamburger Menu Button */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }
        .nav-hamburger-line {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }
        .nav-hamburger.active .nav-hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-hamburger.active .nav-hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.active .nav-hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        @media (max-width: 768px) {
            .nav-hamburger {
                display: flex;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--space);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 80px 24px 40px;
            gap: 24px;
        }
        .mobile-menu-link {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 400;
            color: var(--text-secondary);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        .mobile-menu-link:hover,
        .mobile-menu-link.active {
            color: var(--gold);
        }
        .mobile-menu-link.mobile-menu-cta {
            margin-top: 16px;
            padding: 14px 32px;
            background: var(--gold);
            color: var(--space);
            font-weight: 500;
        }
        .mobile-menu-lang {
            margin-top: 32px;
            text-align: center;
        }
        .mobile-menu-lang-label {
            display: block;
            font-size: 11px;
            color: var(--text-secondary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .mobile-menu-lang-options {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        .mobile-menu-lang-option {
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 12px;
            border: 1px solid var(--border-medium);
            transition: all 0.3s ease;
        }
        .mobile-menu-lang-option:hover,
        .mobile-menu-lang-option.active {
            color: var(--gold);
            border-color: var(--gold);
        }
        
        body.menu-open {
            overflow: hidden;
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM engage.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        .section-light .btn-primary { background: var(--space); color: var(--text-pure); }
        .section-light .btn-primary:hover { background: var(--gold); }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Engagement Models Grid */
        .engage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-light-medium);
        }
        
        .engage-card {
            padding: 48px 40px;
            background: var(--white);
            border-right: 1px solid var(--border-light-medium);
            display: flex;
            flex-direction: column;
        }
        
        .engage-card:last-child {
            border-right: none;
        }
        
        .engage-card.featured {
            background: var(--gold-bg);
            position: relative;
        }
        
        .engage-card.featured::before {
            content: 'MOST COMMON';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--space);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding: 4px 16px;
        }
        
        .engage-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            background: var(--gold-subtle);
            border: 1px dashed var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--gold);
        }
        
        .engage-name {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .engage-tagline {
            font-size: 15px;
            color: var(--text-dark-tertiary);
            font-style: italic;
            margin-bottom: 24px;
        }
        
        .engage-description {
            font-size: 16px;
            color: var(--text-dark-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        
        .engage-includes {
            margin-bottom: 32px;
            flex-grow: 1;
        }
        
        .engage-includes-title {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 16px;
        }
        
        .engage-includes-list {
            list-style: none;
        }
        
        .engage-includes-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 15px;
            color: var(--text-dark-secondary);
        }
        
        .engage-includes-list li:last-child {
            border-bottom: none;
        }
        
        .engage-includes-list .check {
            color: var(--gold);
            font-weight: 600;
        }
        
        .engage-ideal {
            padding: 20px;
            background: var(--mist);
            margin-bottom: 24px;
        }
        
        .engage-card.featured .engage-ideal {
            background: rgba(201, 169, 98, 0.15);
        }
        
        .engage-ideal-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 8px;
        }
        
        .engage-ideal-text {
            font-size: 14px;
            color: var(--text-dark);
        }
        
        .engage-cta {
            margin-top: auto;
        }
        
        .engage-cta .btn {
            width: 100%;
        }
        
        /* Process Section */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid var(--border-subtle);
            position: relative;
        }
        
        .process-step {
            padding: 48px 32px;
            text-align: center;
            border-right: 1px solid var(--border-subtle);
            background: var(--graphite);
            position: relative;
        }
        
        .process-step:last-child {
            border-right: none;
        }
        
        .process-step::after {
            content: '→';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 20px;
            z-index: 1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-number {
            width: 48px;
            height: 48px;
            margin: 0 auto 20px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--gold);
        }
        
        .process-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .process-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Pricing Philosophy */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .pricing-content h3 {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
        }
        
        .pricing-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-dark-secondary);
            margin-bottom: 20px;
        }
        
        .pricing-principles {
            list-style: none;
            margin-top: 32px;
        }
        
        .pricing-principles li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
        }
        
        .pricing-principles li:last-child {
            border-bottom: none;
        }
        
        .pricing-principles .icon {
            width: 32px;
            height: 32px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .pricing-principles strong {
            display: block;
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .pricing-principles span {
            font-size: 15px;
            color: var(--text-dark-secondary);
        }
        
        .pricing-visual {
            background: var(--mist);
            padding: 48px;
            border: 1px solid var(--border-light-medium);
        }
        
        .pricing-visual-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 24px;
            text-align: center;
        }
        
        .pricing-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .pricing-bar {
            text-align: center;
        }
        
        .pricing-bar-label {
            font-size: 14px;
            color: var(--text-dark-secondary);
            margin-bottom: 12px;
        }
        
        .pricing-bar-visual {
            height: 200px;
            background: var(--white);
            border: 1px solid var(--border-light);
            position: relative;
            display: flex;
            align-items: flex-end;
        }
        
        .pricing-bar-fill {
            width: 100%;
            background: var(--text-dark-tertiary);
            transition: height 0.3s ease;
        }
        
        .pricing-bar-fill.leeloo {
            background: var(--gold);
        }
        
        .pricing-bar-value {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--text-dark);
            margin-top: 12px;
        }
        
        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .faq-item {
            padding: 32px;
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
        }
        
        .faq-question {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 16px;
        }
        
        .faq-answer {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .engage-grid { grid-template-columns: 1fr; }
            .engage-card { border-right: none; border-bottom: 1px solid var(--border-light-medium); }
            .engage-card:last-child { border-bottom: none; }
            .process-grid { grid-template-columns: 1fr 1fr; }
            .process-step { border-bottom: 1px solid var(--border-subtle); }
            .process-step::after { display: none; }
            .pricing-grid { grid-template-columns: 1fr; gap: 48px; }
            .faq-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .process-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM solutions.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        .btn-sm {
            padding: 12px 24px;
            font-size: 13px;
        }
        
        .section-light .btn-outline {
            color: var(--text-dark);
            border-color: var(--border-light-medium);
        }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Industry Navigation */
        .industry-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .industry-nav-link {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark-secondary);
            text-decoration: none;
            border: 1px solid var(--border-light-medium);
            transition: all 0.3s ease;
        }
        
        .industry-nav-link:hover,
        .industry-nav-link.active {
            border-color: var(--gold);
            color: var(--gold);
            background: var(--gold-subtle);
        }
        
        /* Industry Blueprint Cards */
        .blueprint {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--border-light-medium);
            margin-bottom: 80px;
        }
        
        .blueprint:last-child {
            margin-bottom: 0;
        }
        
        .blueprint:nth-child(even) .blueprint-content {
            order: 2;
        }
        
        .blueprint:nth-child(even) .blueprint-visual {
            order: 1;
        }
        
        .blueprint-content {
            padding: 64px 56px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .blueprint-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
            align-self: flex-start;
        }
        
        .blueprint-title {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .blueprint-tagline {
            font-size: 18px;
            color: var(--text-dark-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .blueprint-challenges {
            margin-bottom: 32px;
        }
        
        .blueprint-challenges-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 16px;
        }
        
        .blueprint-challenges-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .blueprint-challenges-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-dark-secondary);
        }
        
        .blueprint-challenges-list .bullet {
            color: var(--gold);
            font-weight: 600;
        }
        
        .blueprint-usecases {
            padding: 24px;
            background: var(--mist);
            margin-bottom: 32px;
        }
        
        .blueprint-usecases-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 12px;
        }
        
        .blueprint-usecases-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .blueprint-usecase {
            padding: 6px 12px;
            background: var(--white);
            border: 1px solid var(--border-light);
            font-size: 13px;
            color: var(--text-dark-secondary);
        }
        
        .blueprint-cta {
            display: flex;
            gap: 12px;
        }
        
        .blueprint-visual {
            background: var(--mist);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }
        
        .blueprint-visual-placeholder {
            width: 80%;
            height: 80%;
            border: 2px dashed var(--border-light-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-dark-tertiary);
            font-size: 14px;
            text-align: center;
            padding: 24px;
        }
        
        /* Stats Row */
        .industry-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid var(--border-subtle);
        }
        
        .industry-stat {
            padding: 48px 32px;
            text-align: center;
            border-right: 1px solid var(--border-subtle);
            background: var(--graphite);
        }
        
        .industry-stat:last-child {
            border-right: none;
        }
        
        .industry-stat-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 12px;
        }
        
        .industry-stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        
        /* Compliance Grid */
        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .compliance-card {
            padding: 32px 24px;
            background: var(--white);
            border: 1px solid var(--border-light-medium);
            text-align: center;
        }
        
        .compliance-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: var(--gold-subtle);
            border: 1px dashed var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--gold);
        }
        
        .compliance-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .compliance-desc {
            font-size: 13px;
            color: var(--text-dark-tertiary);
            line-height: 1.5;
        }
        
        /* Other Industries */
        .other-industries {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .other-industry-card {
            padding: 40px 32px;
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .other-industry-card:hover {
            border-color: var(--border-gold);
        }
        
        .other-industry-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--gold-subtle);
            border: 1px dashed var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--gold);
        }
        
        .other-industry-name {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .other-industry-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .other-industry-link {
            font-size: 13px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .blueprint { grid-template-columns: 1fr; }
            .blueprint:nth-child(even) .blueprint-content,
            .blueprint:nth-child(even) .blueprint-visual { order: unset; }
            .blueprint-visual { min-height: 300px; }
            .blueprint-challenges-list { grid-template-columns: 1fr; }
            .industry-stats { grid-template-columns: 1fr 1fr; }
            .industry-stat { border-bottom: 1px solid var(--border-subtle); }
            .industry-stat:nth-child(2) { border-right: none; }
            .compliance-grid { grid-template-columns: 1fr 1fr; }
            .other-industries { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .blueprint-content { padding: 40px 24px; }
            .industry-stats { grid-template-columns: 1fr; }
            .industry-stat { border-right: none; }
            .compliance-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM sovereignty.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        .section-light .btn-primary,
        .section-light-alt .btn-primary { background: var(--space); color: var(--text-pure); }
        .section-light .btn-primary:hover,
        .section-light-alt .btn-primary:hover { background: var(--gold); }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Definition Section */
        .definition-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .definition-content h3 {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
        }
        
        .definition-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-dark-secondary);
            margin-bottom: 20px;
        }
        
        .definition-visual {
            display: flex;
            justify-content: center;
        }
        
        .definition-diagram {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            background: var(--mist);
            border: 2px dashed var(--border-light-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-dark-tertiary);
            text-align: center;
            padding: 24px;
        }
        
        /* Seven Non-Negotiables */
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .principle-card {
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .principle-card:hover {
            border-color: var(--border-gold);
        }
        
        .principle-card:first-child {
            grid-column: span 2;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px;
        }
        
        .principle-number {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 300;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .principle-card:first-child .principle-number {
            font-size: 64px;
        }
        
        .principle-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 8px;
        }
        
        .principle-card:first-child .principle-title {
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .principle-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .principle-card:first-child .principle-text {
            font-size: 17px;
        }
        
        /* Sovereignty Levels */
        .levels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-light-medium);
        }
        
        .level-card {
            padding: 48px 36px;
            border-right: 1px solid var(--border-light-medium);
            background: var(--white);
            display: flex;
            flex-direction: column;
        }
        
        .level-card:last-child {
            border-right: none;
        }
        
        .level-card.featured {
            background: var(--gold-bg);
            position: relative;
        }
        
        .level-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--space);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding: 4px 16px;
        }
        
        .level-badge {
            display: inline-block;
            padding: 6px 12px;
            background: var(--mist);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: var(--text-dark-tertiary);
            margin-bottom: 20px;
            align-self: flex-start;
        }
        
        .level-card.featured .level-badge {
            background: var(--gold);
            color: var(--space);
        }
        
        .level-name {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .level-tagline {
            font-size: 15px;
            color: var(--text-dark-tertiary);
            margin-bottom: 24px;
            font-style: italic;
        }
        
        .level-description {
            font-size: 16px;
            color: var(--text-dark-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        
        .level-features {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }
        
        .level-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 15px;
            color: var(--text-dark-secondary);
        }
        
        .level-features li:last-child {
            border-bottom: none;
        }
        
        .level-features .check {
            color: var(--gold);
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .level-ideal {
            padding: 20px;
            background: var(--mist);
            margin-top: auto;
        }
        
        .level-card.featured .level-ideal {
            background: rgba(201, 169, 98, 0.15);
        }
        
        .level-ideal-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark-tertiary);
            margin-bottom: 8px;
        }
        
        .level-ideal-text {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        /* Comparison Table */
        .sovereignty-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border: 1px solid var(--border-light-medium);
        }
        
        .sovereignty-table th,
        .sovereignty-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        
        .sovereignty-table th {
            background: var(--mist);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-dark-secondary);
        }
        
        .sovereignty-table th:first-child {
            background: var(--snow);
        }
        
        .sovereignty-table td {
            font-size: 15px;
            color: var(--text-dark-secondary);
        }
        
        .sovereignty-table td:first-child {
            font-weight: 500;
            color: var(--text-dark);
            background: var(--snow);
        }
        
        .sovereignty-table .check {
            color: var(--gold);
            font-weight: 600;
        }
        
        .sovereignty-table .partial {
            color: var(--text-dark-tertiary);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .definition-grid { grid-template-columns: 1fr; gap: 48px; }
            .principles-grid { grid-template-columns: 1fr 1fr; }
            .principle-card:first-child { grid-column: span 2; grid-row: span 1; }
            .levels-grid { grid-template-columns: 1fr; }
            .level-card { border-right: none; border-bottom: 1px solid var(--border-light-medium); }
            .level-card:last-child { border-bottom: none; }
            .sovereignty-table { font-size: 14px; }
            .sovereignty-table th, .sovereignty-table td { padding: 12px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .principles-grid { grid-template-columns: 1fr; }
            .principle-card:first-child { grid-column: span 1; }
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM stack.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Stack Stats */
        .stack-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid var(--border-subtle);
            margin-top: 60px;
        }
        
        .stack-stat {
            padding: 40px 32px;
            text-align: center;
            border-right: 1px solid var(--border-subtle);
            background: var(--graphite);
        }
        
        .stack-stat:last-child {
            border-right: none;
        }
        
        .stack-stat-number {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stack-stat-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        /* Stack Overview */
        .stack-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .stack-overview-content h3 {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
        }
        
        .stack-overview-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-dark-secondary);
            margin-bottom: 20px;
        }
        
        .stack-diagram {
            width: 100%;
            aspect-ratio: 1;
            background: var(--mist);
            border: 2px dashed var(--border-light-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-dark-tertiary);
            text-align: center;
            padding: 24px;
        }
        
        /* Category Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .category-card {
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
            padding: 32px 24px;
            transition: all 0.3s ease;
        }
        
        .category-card:hover {
            border-color: var(--border-gold);
        }
        
        .category-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            background: var(--gold-subtle);
            border: 1px dashed var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--gold);
        }
        
        .category-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 8px;
        }
        
        .category-count {
            font-size: 13px;
            color: var(--gold);
            margin-bottom: 12px;
        }
        
        .category-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Layer Sections */
        .layer-section {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-light);
        }
        
        .layer-section:last-child {
            border-bottom: none;
        }
        
        .layer-header {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: start;
        }
        
        .layer-badge {
            padding: 12px 20px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            text-align: center;
        }
        
        .layer-badge-name {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 4px;
        }
        
        .layer-badge-count {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 300;
            color: var(--text-dark);
        }
        
        .layer-info h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        
        .layer-info p {
            font-size: 16px;
            color: var(--text-dark-secondary);
            line-height: 1.7;
        }
        
        .layer-components {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        
        .component-card {
            padding: 20px;
            background: var(--white);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .component-card:hover {
            border-color: var(--gold);
            background: var(--gold-subtle);
        }
        
        .component-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .component-desc {
            font-size: 13px;
            color: var(--text-dark-tertiary);
        }
        
        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-subtle);
        }
        
        .benefit-card {
            padding: 48px 36px;
            border-right: 1px solid var(--border-subtle);
            background: var(--graphite);
            text-align: center;
        }
        
        .benefit-card:last-child {
            border-right: none;
        }
        
        .benefit-number {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .benefit-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .stack-stats { grid-template-columns: 1fr 1fr; }
            .stack-stat { border-bottom: 1px solid var(--border-subtle); }
            .stack-stat:nth-child(2) { border-right: none; }
            .stack-overview { grid-template-columns: 1fr; gap: 48px; }
            .category-grid { grid-template-columns: 1fr 1fr; }
            .layer-header { grid-template-columns: 1fr; gap: 24px; }
            .layer-components { grid-template-columns: 1fr 1fr; }
            .benefits-grid { grid-template-columns: 1fr; }
            .benefit-card { border-right: none; border-bottom: 1px solid var(--border-subtle); }
            .benefit-card:last-child { border-bottom: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .stack-stats { grid-template-columns: 1fr; }
            .stack-stat { border-right: none; }
            .category-grid { grid-template-columns: 1fr; }
            .layer-components { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM about.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        .container-narrow { max-width: 800px; margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        .btn-outline { background: transparent; color: var(--text-pure); border: 1px solid var(--border-medium); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Story Section */
        .story-content {
            max-width: 800px;
        }
        
        .story-content p {
            font-size: 18px;
            line-height: 1.9;
            color: var(--text-dark-secondary);
            margin-bottom: 28px;
        }
        
        .story-content p:last-child {
            margin-bottom: 0;
        }
        
        .story-content strong {
            color: var(--text-dark);
        }
        
        .story-quote {
            padding: 40px 48px;
            background: var(--gold-subtle);
            border-left: 4px solid var(--gold);
            margin: 48px 0;
        }
        
        .story-quote p {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-subtle);
        }
        
        .value-card {
            padding: 48px 36px;
            border-right: 1px solid var(--border-subtle);
            background: var(--graphite);
        }
        
        .value-card:last-child {
            border-right: none;
        }
        
        .value-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .value-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .value-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* TSI Relationship */
        .tsi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .tsi-content h3 {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
        }
        
        .tsi-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-dark-secondary);
            margin-bottom: 20px;
        }
        
        .tsi-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            margin-top: 24px;
        }
        
        .tsi-badge-icon {
            width: 48px;
            height: 48px;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--space);
        }
        
        .tsi-badge-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .tsi-badge-sub {
            font-size: 12px;
            color: var(--text-dark-tertiary);
            margin-top: 2px;
        }
        
        .tsi-visual {
            background: var(--mist);
            border: 2px dashed var(--border-light-medium);
            padding: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
        
        .tsi-placeholder {
            text-align: center;
            color: var(--text-dark-tertiary);
        }
        
        /* Location */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--border-subtle);
        }
        
        .location-info {
            padding: 64px 56px;
            background: var(--graphite);
        }
        
        .location-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 24px;
        }
        
        .location-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }
        
        .location-details {
            list-style: none;
        }
        
        .location-details li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 15px;
            color: var(--text-secondary);
        }
        
        .location-details li:last-child {
            border-bottom: none;
        }
        
        .location-details .label {
            color: var(--text-tertiary);
            min-width: 120px;
        }
        
        .location-map {
            background: var(--mist);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark-tertiary);
            font-size: 14px;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--carbon);
            padding: var(--section-pad) 48px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 20px;
        }
        
        .cta-title em { color: var(--gold); font-style: italic; }
        
        .cta-text {
            font-size: 19px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .values-grid { grid-template-columns: 1fr; }
            .value-card { border-right: none; border-bottom: 1px solid var(--border-subtle); }
            .value-card:last-child { border-bottom: none; }
            .tsi-grid { grid-template-columns: 1fr; gap: 48px; }
            .location-grid { grid-template-columns: 1fr; }
            .location-map { min-height: 300px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== FROM contact.php ===== */

        :root {
            --space: #0a0a0f;
            --carbon: #111118;
            --graphite: #1a1a24;
            --slate: #252532;
            --white: #ffffff;
            --snow: #fafafa;
            --mist: #f5f5f7;
            --silver: #e8e8ec;
            --gold: #c9a962;
            --gold-dim: rgba(201, 169, 98, 0.6);
            --gold-subtle: rgba(201, 169, 98, 0.08);
            --gold-bg: rgba(201, 169, 98, 0.12);
            --border-gold: rgba(201, 169, 98, 0.3);
            --text-pure: #ffffff;
            --text-primary: rgba(255, 255, 255, 0.92);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --text-muted: rgba(255, 255, 255, 0.3);
            --text-dark: #0a0a0f;
            --text-dark-secondary: rgba(10, 10, 15, 0.7);
            --text-dark-tertiary: rgba(10, 10, 15, 0.5);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-light: rgba(10, 10, 15, 0.08);
            --border-light-medium: rgba(10, 10, 15, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;
            --section-pad: 120px;
            --container-max: 1200px;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 18px; scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--space);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            background: var(--space);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }
        
        .nav-wordmark {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-transform: uppercase;
        }
        
        .nav-divider {
            width: 1px;
            height: 16px;
            background: var(--border-medium);
        }
        
        .nav-tagline {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--text-pure);
        }
        
        .nav-cta {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--space);
            background: var(--gold);
            padding: 10px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--text-pure);
        }
        
        /* Common */
        .section { padding: var(--section-pad) 48px; }
        .section-light { background: var(--white); color: var(--text-dark); }
        .section-light-alt { background: var(--mist); color: var(--text-dark); }
        .section-dark { background: var(--space); color: var(--text-primary); }
        
        .container { max-width: var(--container-max); margin: 0 auto; }
        
        .section-header { margin-bottom: 64px; }
        .section-header.centered { text-align: center; }
        
        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .section-light .section-title,
        .section-light-alt .section-title { color: var(--text-dark); }
        .section-title em { color: var(--gold); font-style: italic; }
        
        .section-subtitle {
            font-size: 19px;
            line-height: 1.7;
            max-width: 700px;
        }
        
        .section-light .section-subtitle,
        .section-light-alt .section-subtitle { color: var(--text-dark-secondary); }
        .section-header.centered .section-subtitle { margin: 0 auto; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary { background: var(--gold); color: var(--space); }
        .btn-primary:hover { background: var(--text-pure); }
        
        /* Page Hero */
        .page-hero {
            padding: 180px 48px 100px;
            background: var(--space);
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .page-hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .page-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .page-hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 6vw, 72px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-pure);
            max-width: 800px;
            margin-bottom: 24px;
        }
        
        .page-hero-title em {
            color: var(--gold);
            font-style: italic;
        }
        
        .page-hero-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        
        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--border-light-medium);
        }
        
        /* Contact Form */
        .contact-form-section {
            padding: 64px 56px;
            background: var(--white);
        }
        
        .contact-form-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .contact-form-subtitle {
            font-size: 15px;
            color: var(--text-dark-tertiary);
            margin-bottom: 40px;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark-secondary);
            margin-bottom: 8px;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 16px;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--text-dark);
            background: var(--snow);
            border: 1px solid var(--border-light-medium);
            transition: all 0.3s ease;
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
        }
        
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--text-dark-tertiary);
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            cursor: pointer;
        }
        
        .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        .form-submit {
            width: 100%;
            padding: 18px 32px;
            background: var(--gold);
            color: var(--space);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-submit:hover {
            background: var(--space);
            color: var(--text-pure);
        }
        
        .form-note {
            margin-top: 16px;
            font-size: 13px;
            color: var(--text-dark-tertiary);
            text-align: center;
        }
        
        /* Contact Info */
        .contact-info-section {
            padding: 64px 56px;
            background: var(--graphite);
        }
        
        .contact-info-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 400;
            color: var(--text-pure);
            margin-bottom: 8px;
        }
        
        .contact-info-subtitle {
            font-size: 15px;
            color: var(--text-tertiary);
            margin-bottom: 48px;
        }
        
        .contact-method {
            padding: 24px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .contact-method:last-child {
            border-bottom: none;
        }
        
        .contact-method-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }
        
        .contact-method-value {
            font-size: 18px;
            color: var(--text-pure);
        }
        
        .contact-method-value a {
            color: var(--text-pure);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-method-value a:hover {
            color: var(--gold);
        }
        
        .contact-method-note {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-top: 4px;
        }
        
        /* Expect Section */
        .expect-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border-light-medium);
        }
        
        .expect-card {
            padding: 48px 36px;
            border-right: 1px solid var(--border-light-medium);
            background: var(--white);
            text-align: center;
        }
        
        .expect-card:last-child {
            border-right: none;
        }
        
        .expect-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .expect-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        
        .expect-text {
            font-size: 15px;
            color: var(--text-dark-secondary);
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .faq-item {
            padding: 32px;
            background: var(--graphite);
            border: 1px solid var(--border-subtle);
        }
        
        .faq-question {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .faq-answer {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Footer */
        .footer {
            background: var(--space);
            border-top: 1px solid var(--border-subtle);
            padding: 64px 48px 32px;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand { max-width: 280px; }
        
        .footer-logo {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-pure);
            margin-bottom: 12px;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-gold);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }
        
        .footer-section h5 {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            font-size: 14px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--text-pure); }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copy { font-size: 13px; color: var(--text-muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .contact-grid { grid-template-columns: 1fr; }
            .expect-grid { grid-template-columns: 1fr; }
            .expect-card { border-right: none; border-bottom: 1px solid var(--border-light-medium); }
            .expect-card:last-child { border-bottom: none; }
            .faq-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            html { font-size: 16px; }
            .nav { padding: 0 24px; }
            .nav-menu { display: none; }
            .page-hero, .section { padding-left: 24px; padding-right: 24px; }
            .page-hero { padding-top: 120px; padding-bottom: 60px; }
            .section { padding-top: 80px; padding-bottom: 80px; }
            .contact-form-section, .contact-info-section { padding: 40px 24px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Language Switcher */
        .nav-lang { position: relative; margin-left: 12px; }
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
        .nav-lang-toggle svg { transition: transform 0.2s ease; }
        .nav-lang.active .nav-lang-toggle svg { transform: rotate(180deg); }
        .nav-lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--graphite);
            border: 1px solid var(--border-medium);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
        }
        .nav-lang.active .nav-lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-lang-option {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-lang-option:hover { background: var(--slate); color: var(--text-pure); }
        .nav-lang-option.active { color: var(--gold); }
    
/* ===== GLOBAL MOBILE MENU STYLES ===== */
/* These override any conflicting styles from page-specific sections */

.nav-hamburger {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary, #fff);
    transition: all 0.3s ease;
}
.nav-hamburger.active .nav-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active .nav-hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active .nav-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--space, #0a0a0f);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px 24px 40px;
    gap: 24px;
}
.mobile-menu-link {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--gold, #c9a962);
}
.mobile-menu-link.mobile-menu-cta {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--gold, #c9a962);
    color: var(--space, #0a0a0f);
    font-weight: 500;
}
.mobile-menu-lang {
    margin-top: 32px;
    text-align: center;
}
.mobile-menu-lang-label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mobile-menu-lang-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.mobile-menu-lang-option {
    font-size: 13px;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--border-medium, rgba(255,255,255,0.1));
    transition: all 0.3s ease;
}
.mobile-menu-lang-option:hover,
.mobile-menu-lang-option.active {
    color: var(--gold, #c9a962);
    border-color: var(--gold, #c9a962);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex !important;
    }
}

/* ===== BUTTON OUTLINE FIX ===== */
.btn-outline {
    background: transparent !important;
    color: var(--text-pure, #fff) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
}
.btn-outline:hover {
    border-color: var(--gold, #c9a962) !important;
    color: var(--gold, #c9a962) !important;
    background: rgba(201, 169, 98, 0.08) !important;
}
