 /* ============================================
     PACKAGES (Dark Charcoal)
  ============================================ */
  #packages { padding: 140px 0; background: var(--om-charcoal); border-top: 1px solid var(--rule-light); color: var(--light); }
  .packages-header { text-align: center; margin-bottom: 64px; max-width: 800px; margin-left: auto; margin-right: auto; }
  #packages .section-heading { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.02em; color: var(--light); line-height: 1.12; margin-bottom: 24px; }
  #packages .section-sub { font-size: 1.05rem; color: var(--light-2); line-height: 1.8; margin-bottom: 16px; text-align: justify;}
  #packages .pricing-note { font-size: 0.85rem; color: var(--light-3); font-style: italic; text-align: justify;}

  .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-bottom: 48px; }

  .pkg-card {
    background: var(--om-brown); border: 1px solid var(--rule-light); border-radius: var(--radius-lg);
    padding: 48px 36px; position: relative; transition: all var(--transition); display: flex; flex-direction: column;
  }
  .pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
  
  .pkg-card.featured {
    background: var(--gold); border-color: var(--gold); color: var(--om-charcoal);
    transform: translateY(-8px); box-shadow: 0 24px 60px rgba(195, 164, 120, 0.15);
  }
  .pkg-card.featured:hover { transform: translateY(-12px); }

  .pkg-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--om-charcoal); color: var(--gold-light); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 30px;
    white-space: nowrap; border: 1px solid var(--rule-light);
  }

  .pkg-tier { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .pkg-card.featured .pkg-tier { color: var(--om-brown); }

  .pkg-name { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.1; color: var(--light); }
  .pkg-card.featured .pkg-name { color: var(--om-charcoal); }

  .pkg-pos { font-size: 0.9rem; line-height: 1.6; color: var(--light-2); margin-bottom: 24px; min-height: 70px; }
  .pkg-card.featured .pkg-pos { color: var(--om-charcoal); opacity: 0.85; }

  .pkg-price-wrap { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--rule-light); }
  .pkg-card.featured .pkg-price-wrap { border-bottom-color: rgba(0,0,0,0.1); }
  .pkg-price { font-family: var(--font-display); font-size: 2.4rem; color: var(--light); margin-bottom: 4px; }
  .pkg-card.featured .pkg-price { color: var(--om-charcoal); }
  .pkg-det { font-size: 0.85rem; font-weight: 500; color: var(--gold-light); letter-spacing: 0.05em; text-transform: uppercase; }
  .pkg-card.featured .pkg-det { color: var(--om-navy); }

  .pkg-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
  .pkg-features li {
    font-size: 0.9rem; color: var(--light-2); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 12px;
  }
  .pkg-card.featured .pkg-features li { color: var(--om-charcoal); border-bottom-color: rgba(0,0,0,0.05); }
  .pkg-features li:last-child { border-bottom: none; }
  .pkg-features li::before {
    content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin-top: 10px; flex-shrink: 0;
  }
  .pkg-card.featured .pkg-features li::before { background: var(--om-charcoal); }

  .pkg-card .btn { width: 100%; border-color: var(--rule-light); color: var(--light); }
  .pkg-card .btn:hover { background: var(--light); color: var(--om-charcoal); border-color: var(--light); }
  .pkg-card.featured .btn { background: var(--om-charcoal); color: var(--gold-light); border-color: var(--om-charcoal); }
  .pkg-card.featured .btn:hover { background: var(--om-navy); color: var(--light); border-color: var(--om-navy); }

  .packages-footer-note { max-width: 700px; margin: 0 auto; text-align: justify; }
  .packages-footer-note p { font-size: 0.9rem; color: var(--light-3); line-height: 1.7; }
  .packages-footer-note p.small { font-size: 0.8rem; margin-top: 8px; opacity: 0.7; }

  @media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-card.featured { transform: none; }
    .pkg-card.featured:hover { transform: translateY(-4px); }
  }
  @media (max-width: 768px) {
    .packages-grid { grid-template-columns: 1fr; }
    .pkg-pos { min-height: auto; }
  }
  /* ============================================
     RESET & BASE
  ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    /* Old Money Dark Tones */
    --om-green: #1d2621;
    --om-brown: #2a211a;
    --om-charcoal: #1c1c1c;
    --om-navy: #182026;

    /* Old Money Light/Pastel Elite Tones */
    --om-taupe: #cfc5b8;
    --om-cream: #e8e3d9;

    /* Accents */
    --gold: #c3a478;
    --gold-light: #dfcba9;
    
    /* Inks for Light Backgrounds */
    --ink: #161616;
    --ink-2: #2b2b2b;
    --ink-3: #4a4a4a;
    
    /* Inks for Dark Backgrounds */
    --light: #fdfdfd;
    --light-2: #d1d1d1;
    --light-3: #9e9e9e;

    /* Rules */
    --rule-light: rgba(255, 255, 255, 0.1);
    --rule-dark: rgba(0, 0, 0, 0.1);

    /* UI Variables */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 2px;
    --radius-lg: 6px;
    --shadow: 0 4px 24px rgba(0,0,0,0.2);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.3);
    --shadow-lg: 0 24px 80px rgba(0,0,0,0.4);
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --max-w: 1200px;
    --header-h: 80px;
  }

  html { scroll-behavior: smooth; font-size: 16px; }
  
  body {
    background: var(--om-green);
    color: var(--light);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--gold); color: var(--om-charcoal); }

  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
  }

  section { position: relative; }

  /* ============================================
     SCROLL ANIMATIONS
  ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ============================================
     HEADER
  ============================================ */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(29, 38, 33, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  }
  #header.scrolled {
    border-bottom-color: var(--rule-light);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
  }

  .logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--light);
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .logo span { color: var(--gold); }

  nav.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  nav.main-nav a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-2);
    transition: color var(--transition);
    white-space: nowrap;
  }
  nav.main-nav a:hover { color: var(--gold-light); }

  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  /* Language Switcher */
  .lang-switcher { position: relative; }
  .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-2);
    background: none;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
  }
  .lang-btn:hover { color: var(--gold-light); }
  .lang-btn svg { width: 10px; height: 10px; transition: transform var(--transition); }
  .lang-btn.open svg { transform: rotate(180deg); }
  
.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--om-charcoal);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  
  /* FIXED: Fade out opacity/transform, but wait 0.3s before applying visibility: hidden */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
  .lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  
  /* FIXED: Make visibility instant (0s delay), then smoothly animate opacity/transform */
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
  .lang-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-2);
    transition: background var(--transition), color var(--transition);
  }
  .lang-dropdown a:hover { background: var(--om-green); color: var(--gold-light); }
  .lang-dropdown a.active { color: var(--gold); }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    padding: 14px 28px;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--om-charcoal);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(195, 164, 120, 0.2);
  }
  .btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
  }
  .btn-outline:hover {
    background: var(--gold);
    color: var(--om-charcoal);
  }

  /* Burger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .burger span {
    display: block;
    height: 1px;
    background: var(--light);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--om-green);
    border-bottom: 1px solid var(--rule-light);
    padding: 32px;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
.mobile-nav a.m-link {
  display: block;
  padding: 16px 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light); /* <--- Make sure this says var(--light) */
  border-bottom: 1px solid var(--rule-light);
}
  .mobile-nav a.m-link:hover { color: var(--gold); }
  .mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

  /* ============================================
     HERO (Dark Green)
  ============================================ */
  #hero {
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 120px;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 24px;
  }
  .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

  .hero-headline {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--light);
    margin-bottom: 32px;
  }
  .hero-headline em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--light-2);
    font-weight: 300;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 24px;
    text-align: justify; 
  }

  .hero-note {
    font-size: 0.85rem;
    color: var(--light-3);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 48px;
    padding-left: 16px;
    border-left: 1px solid var(--gold);
     text-align: justify; 
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  /* Abstract Hero Visual */
  .hero-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual-layer {
    position: absolute;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
  }
  .layer-1 {
    width: 360px; height: 400px; padding: 40px;
    z-index: 1; top: 0px; right: 0px;
    background: var(--om-brown);
    color: var(--light);
    border: 1px solid var(--rule-light);
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .layer-1::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.03) 0%, transparent 60%);
  }
  .layer-title { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; position: relative; z-index: 2; }
  .layer-heading { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.25; margin-bottom: 24px; color: var(--light); position: relative; z-index: 2; }
  .layer-line { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 20px; position: relative; z-index: 2; }
  .layer-line::after { content:''; position:absolute; left:0; top:0; height:100%; width: 40%; background: var(--gold); }
  
  .layer-2 {
    width: 320px; padding: 32px;
    z-index: 2; bottom: 20px; left: -20px;
    backdrop-filter: blur(10px);
    background: rgba(232, 227, 217, 0.95); /* matching --om-cream */
    border: 1px solid var(--rule-dark);
  }
  .layer-2 .item { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .layer-2 .item:last-child { margin-bottom: 0; }
  .layer-2 .icon { width: 8px; height: 8px; border: 1px solid var(--gold); border-radius: 50%; }
  .layer-2 .icon.filled { background: var(--gold); }
  .layer-2 .text { font-size: 0.8rem; color: var(--ink); letter-spacing: 0.05em; text-transform: uppercase; }

  /* ============================================
     TRUST BAR (Charcoal)
  ============================================ */
  #trust {
    border-top: 1px solid var(--rule-light);
    border-bottom: 1px solid var(--rule-light);
    background: var(--om-charcoal);
    padding: 28px 0;
  }
  .trust-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .trust-item {
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2); white-space: nowrap;
  }
  .trust-divider { width: 1px; height: 16px; background: var(--rule-light); flex-shrink: 0; }

  /* ============================================
     THE PROBLEM (Taupe Pastel - Light)
  ============================================ */
  #problem { padding: 140px 0; background: var(--om-taupe); color: var(--ink); }
  .problem-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  .problem-heading { font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin-bottom: 32px; color: var(--ink); line-height: 1.15; }
  .problem-text { font-size: 1.15rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 32px; text-align: justify;}
  .problem-list { text-align: left; display: inline-block; margin: 0 auto 40px; }
  .problem-list li {
    font-size: 1rem; color: var(--ink); margin-bottom: 12px; padding-left: 24px; position: relative; list-style: none;
  }
  .problem-list li::before {
    content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 1px; background: var(--gold-dark);
  }
  .problem-conclusion { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); font-style: italic; }
  #problem .section-label { color: var(--ink); }
  #problem .section-label::before { background: var(--ink); }

  /* ============================================
     WHAT WE BUILD INSTEAD (Dark Brown)
  ============================================ */
  #build { padding: 120px 0; background: var(--om-brown); color: var(--light); border-top: 1px solid var(--rule-light); }
  .section-header { margin-bottom: 80px; max-width: 600px; }
  #build .section-heading { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.02em; color: var(--light); line-height: 1.12; margin-bottom: 24px; }
  #build .section-sub { font-size: 1.05rem; color: var(--light-2); line-height: 1.8; text-align: justify; }

  .build-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .build-card {
    background: var(--om-charcoal); border: 1px solid var(--rule-light); padding: 48px 32px;
    border-radius: var(--radius); transition: all var(--transition);
  }
  .build-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
  .build-card-icon { color: var(--gold); margin-bottom: 24px; width: 24px; height: 24px; }
  .build-card h3 { font-size: 1.4rem; color: var(--light); margin-bottom: 16px; }
  .build-card p { font-size: 0.9rem; color: var(--light-2); line-height: 1.7; text-align: justify; }

  /* ============================================
     SECTORS (Deep Navy)
  ============================================ */
  #sectors { padding: 120px 0; background: var(--om-navy); border-top: 1px solid var(--rule-light); }
  #sectors .section-heading { color: var(--light); }
  #sectors .section-sub { color: var(--light-2); }

  .sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .sector-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--rule-light);
    padding: 40px 32px; border-radius: var(--radius); transition: all var(--transition);
  }
  .sector-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
  .sector-card h4 { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; color: var(--gold-light); }
  .sector-card p { font-size: 0.9rem; color: var(--light-2); line-height: 1.6; margin-bottom: 24px; text-align: justify;}
  .sector-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .sector-tags span {
    font-size: 0.7rem; color: var(--light-3); border: 1px solid var(--rule-light);
    padding: 4px 10px; border-radius: 20px;
  }

  /* ============================================
     FRAMEWORK (Cream Pastel - Light)
  ============================================ */
  #framework { padding: 140px 0; background: var(--om-cream); border-top: 1px solid var(--rule-dark); color: var(--ink); }
  #framework .section-heading { color: var(--ink); }
  #framework .section-sub { color: var(--ink-2); text-align: justify;}
  #framework .section-label { color: var(--ink); }
  #framework .section-label::before { background: var(--ink); }

  .framework-inner { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
  .framework-list { display: flex; flex-direction: column; gap: 40px; }
  .fw-step { display: flex; gap: 24px; }
  .fw-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-dark); line-height: 1; margin-top: -4px; }
  .fw-content h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
  .fw-content p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; text-align: justify;}

  /* ============================================
     EXAMPLES (Dark Green)
  ============================================ */
  #examples { padding: 120px 0; background: var(--om-green); border-top: 1px solid var(--rule-light); }
  #examples .section-heading { color: var(--light); }
  #examples .section-sub { color: var(--light-2); text-align: justify;}

  .examples-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ex-card { border: 1px solid var(--rule-light); background: var(--om-charcoal); padding: 48px; border-radius: var(--radius); }
  .ex-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .ex-card h3 { font-size: 1.8rem; color: var(--light); margin-bottom: 24px; }
  .ex-card p { font-size: 0.9rem; color: var(--light-2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
  .ex-list { list-style: none; }
  .ex-list li {
    font-size: 0.95rem; color: var(--light-2); padding: 8px 0; border-bottom: 1px solid var(--rule-light); display: flex; align-items: center; gap: 12px;
  }
  .ex-list li:last-child { border-bottom: none; }
  .ex-list li::before { content:''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

  /* ============================================
     OUTCOMES & FOUNDER (Dark Brown)
  ============================================ */
  #outcomes-founder { padding: 140px 0; background: var(--om-brown); border-top: 1px solid var(--rule-light); }
  .of-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
  
  #outcomes-founder .section-heading { color: var(--light); }
  .outcome-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .outcome-item { display: flex; align-items: flex-start; gap: 16px; }
  .outcome-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
  .outcome-item p { font-size: 1rem; color: var(--light-2); line-height: 1.6; }

  .founder-box { background: var(--om-taupe); border: 1px solid var(--rule-dark); padding: 56px; border-radius: var(--radius); position: relative; }
  .founder-quote-mark { font-family: var(--font-display); font-size: 6rem; color: rgba(0,0,0,0.05); line-height: 0; position: absolute; top: 60px; left: 40px; }
  .founder-box h3 { font-size: 2rem; color: var(--ink); margin-bottom: 24px; position: relative; z-index: 2; }
  .founder-box p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 2; text-align: justify; }
  .founder-name { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-top: 32px; font-weight: 500; }

  /* ============================================
     FAQ (Taupe Pastel - Light)
  ============================================ */
  #faq { padding: 120px 0; background: var(--om-taupe); border-top: 1px solid var(--rule-dark); color: var(--ink); }
  #faq .section-heading { color: var(--ink); }
  #faq .section-label { color: var(--ink); }
  #faq .section-label::before { background: var(--ink); }

  .faq-inner { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
  .faq-sidebar { position: sticky; top: calc(var(--header-h) + 40px); }
  .faq-item { border-bottom: 1px solid var(--rule-dark); overflow: hidden; }
  .faq-q {
    width: 100%; background: none; border: none; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); transition: color var(--transition);
  }
  .faq-q:hover, .faq-q.active { color: var(--ink-3); }
  .faq-icon {
    width: 24px; height: 24px; flex-shrink: 0; border: 1px solid var(--rule-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition);
  }
  .faq-q.active .faq-icon { background: var(--ink); border-color: var(--ink); transform: rotate(45deg); }
  .faq-icon svg { width: 10px; height: 10px; color: var(--ink-2); }
  .faq-q.active .faq-icon svg { color: var(--om-taupe); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-a-inner { padding: 0 0 28px; font-size: 0.95rem; color: var(--ink-2); line-height: 1.8; text-align: justify;}

  /* ============================================
     CONSULTATION FORM (Dark Charcoal)
  ============================================ */
  #consultation { padding: 120px 0; background: var(--om-charcoal); border-top: 1px solid var(--rule-light); }
  .consult-inner { max-width: 800px; margin: 0 auto; }
  .consult-header { text-align: center; margin-bottom: 64px; }
  #consultation .section-heading { color: var(--light); }
  #consultation .section-sub { color: var(--light-2); }
  
  .form-wrap { background: var(--om-brown); border: 1px solid var(--rule-light); padding: 56px; border-radius: var(--radius); box-shadow: var(--shadow); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .form-group { margin-bottom: 24px; }
  
  label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2); margin-bottom: 10px; }
  .required-mark { color: var(--gold); }
  
  input, select, textarea {
    width: 100%; background: var(--om-charcoal); border: 1px solid var(--rule-light); border-radius: var(--radius);
    padding: 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--light); transition: all var(--transition);
    appearance: none; outline: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--om-navy); box-shadow: 0 0 0 3px rgba(195, 164, 120, 0.15); }
  input::placeholder, textarea::placeholder { color: var(--light-3); }
  textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d1d1d1' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; cursor: pointer;
  }

  .field-error { display: none; font-size: 0.75rem; color: #ff8b8b; margin-top: 6px; }
  .form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #ff8b8b; }
  .form-group.error .field-error { display: block; }

  .checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 0.85rem; color: var(--light-2); line-height: 1.5; margin-bottom: 16px; }
  .checkbox-label input { width: 18px; height: 18px; min-width: 18px; padding: 0; margin-top: 2px; cursor: pointer; accent-color: var(--gold); border: 1px solid var(--rule-light); }

  .btn-submit {
    width: 100%; padding: 20px; background: var(--gold); color: var(--om-charcoal); border: none; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all var(--transition); margin-top: 16px;
  }
  .btn-submit:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }

  .form-success { display: none; text-align: center; padding: 60px 20px; }
  .form-success.visible { display: block; }
  .success-icon { width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
  .form-success h3 { font-size: 1.8rem; color: var(--light); margin-bottom: 16px; }
  .form-success p { font-size: 1rem; color: var(--light-2); }

  /* ============================================
     FOOTER
  ============================================ */
  #footer { background: #131916; color: rgba(255,255,255,0.6); padding: 80px 0 40px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand .logo { color: var(--light); margin-bottom: 16px; display: block; }
  .footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
  .footer-col-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
  .footer-nav { display: flex; flex-direction: column; gap: 12px; }
  .footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
  .footer-nav a:hover { color: white; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 16px; }

  /* ============================================
     RESPONSIVE
  ============================================ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { height: 400px; }
    .layer-1 { right: auto; left: 50%; transform: translateX(-50%); width: 90%; }
    .layer-2 { left: 10%; bottom: 20px; }
    .build-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .framework-inner { grid-template-columns: 1fr; gap: 48px; }
    .of-inner { grid-template-columns: 1fr; gap: 80px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  }

  @media (max-width: 768px) {
    :root { --header-h: 70px; }
    .container { padding: 0 24px; }
    nav.main-nav, .header-right .btn { display: none; }
    .lang-switcher { display: block; }
    .lang-dropdown { right: -15px; }
    .burger { display: flex; }
    .mobile-nav { display: block; }
    .hero-headline { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .trust-inner { justify-content: left; gap: 20px; }
    .trust-divider { display: none; }
    .build-grid, .sectors-grid, .examples-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-sidebar { position: relative; top: 0; }
    .form-row { grid-template-columns: 1fr; }
    .form-wrap { padding: 32px 24px; }
    .footer-top { grid-template-columns: 1fr; }
    #problem, #build, #sectors, #framework, #examples, #outcomes-founder, #faq, #consultation { padding: 80px 0; }
  }

  /* ============================================
   DUBAI CAMPAIGNS SECTION
============================================ */
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.camp-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 60px 40px;
  text-align: left;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.camp-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.camp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.camp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.camp-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  flex-grow: 1; /* Pushes the button to the bottom */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  .camp-card {
    padding: 40px 25px;
  }
}