    :root {
      --navy: #0D1F3C;
      --orange: #E8916A;
      --orange-light: #f2a882;
      --orange-pale: #fdf0e8;
      --white: #ffffff;
      --off-white: #f8f6f3;
      --text: #1a1a2e;
      --muted: #6b7280;
      --border: #e5e0d8;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(13,31,60,0.97);
      backdrop-filter: blur(8px);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      border-bottom: 1px solid rgba(232,145,106,0.2);
    }

    .nav-logo img { height: 88px; width: auto; }

    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--orange); }

    .nav-cta {
      background: var(--orange) !important;
      color: white !important;
      padding: 9px 22px;
      border-radius: 4px;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--orange-light) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: white; border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 120px 5% 80px;
    }

    .hero::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 0; height: 0;
      border-top: 55vw solid var(--orange);
      border-left: 55vw solid transparent;
      opacity: 0.15;
    }

    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 6px;
      background: var(--orange);
    }

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

    .hero-label {
      display: inline-block;
      background: rgba(232,145,106,0.15);
      border: 1px solid rgba(232,145,106,0.4);
      color: var(--orange);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--orange); }

    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
    }

    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--orange);
      color: white;
      padding: 14px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.3px;
      transition: all 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,145,106,0.35); }

    .btn-secondary {
      background: transparent;
      color: white;
      padding: 14px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: all 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

    /* Hero right  –  trust card */
    .hero-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 40px;
      backdrop-filter: blur(10px);
    }

    .hero-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--orange);
      margin-bottom: 24px;
      font-weight: 600;
    }

    .pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .pain-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      line-height: 1.5;
    }
    .pain-list li::before {
      content: '✓';
      flex-shrink: 0;
      width: 22px; height: 22px;
      background: var(--orange);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      margin-top: 1px;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--orange);
      padding: 20px 5%;
    }

    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
    }

    .trust-icon { font-size: 20px; }

    .trust-text strong { display: block; font-size: 14px; font-weight: 700; }
    .trust-text span { font-size: 12px; opacity: 0.85; }

    /* ── SECTIONS ── */
    section { padding: 90px 5%; }

    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      display: inline-block;
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-title span { color: var(--orange); }

    .section-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 56px;
    }

    /* ── WHO WE HELP ── */
    .who { background: var(--off-white); }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .audience-card {
      background: white;
      border-radius: 12px;
      padding: 36px 30px;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .audience-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--orange);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .audience-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,31,60,0.1); }
    .audience-card:hover::before { transform: scaleX(1); }

    .audience-icon {
      width: 52px; height: 52px;
      background: var(--orange-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .audience-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .audience-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .audience-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .audience-points li {
      font-size: 13px;
      color: var(--text);
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
    }
    .audience-points li::before {
      content: '→';
      position: absolute; left: 0;
      color: var(--orange);
      font-weight: 700;
    }

    /* ── PAIN POINTS ── */
    .pain { background: var(--navy); }

    .pain .section-title { color: white; }
    .pain .section-sub { color: rgba(255,255,255,0.65); }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .pain-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 28px 24px;
      transition: all 0.3s;
    }

    .pain-card:hover {
      background: rgba(232,145,106,0.1);
      border-color: rgba(232,145,106,0.3);
      transform: translateY(-4px);
    }

    .pain-q {
      font-size: 28px;
      color: var(--orange);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .pain-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px 28px;
      background: white;
      transition: all 0.3s;
    }

    .service-card:hover {
      border-color: var(--orange);
      box-shadow: 0 12px 40px rgba(232,145,106,0.15);
      transform: translateY(-4px);
    }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--orange);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── WHY US ── */
    .why { background: var(--off-white); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .why-points { display: flex; flex-direction: column; gap: 24px; }

    .why-point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .why-num {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: var(--orange);
      color: white;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
    }

    .why-point h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .why-point p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* right panel */
    .why-panel {
      background: var(--navy);
      border-radius: 16px;
      padding: 48px 40px;
      text-align: center;
    }

    .why-panel-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: white;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-panel-sub {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      margin-bottom: 32px;
    }

    .stat-row { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
    }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

    .stat-divider { height: 1px; background: rgba(255,255,255,0.1); }

    .aat-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(232,145,106,0.15);
      border: 1px solid rgba(232,145,106,0.3);
      border-radius: 8px;
      padding: 12px 20px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 600;
    }

    /* ── CTA BANNER ── */
    .cta-band {
      background: var(--orange);
      padding: 60px 5%;
      text-align: center;
    }

    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }

    .cta-band p {
      color: rgba(255,255,255,0.85);
      font-size: 17px;
      margin-bottom: 32px;
    }

    .btn-white {
      background: white;
      color: var(--orange);
      padding: 14px 34px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      display: inline-block;
      transition: all 0.2s;
      margin: 6px;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

    .btn-outline-white {
      background: transparent;
      color: white;
      padding: 14px 34px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.2s;
      margin: 6px;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

    /* ── CONTACT ── */
    .contact { background: white; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: start;
    }

    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .contact-details { display: flex; flex-direction: column; gap: 16px; }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .contact-icon {
      width: 42px; height: 42px;
      background: var(--orange-pale);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
    .contact-item a, .contact-item span {
      font-size: 15px; color: var(--muted);
      text-decoration: none;
    }
    .contact-item a:hover { color: var(--orange); }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-group { display: flex; flex-direction: column; gap: 6px; }

    .form-group label {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: white;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--orange); }

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

    .form-submit {
      background: var(--navy);
      color: white;
      padding: 14px 30px;
      border: none;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.3px;
    }
    .form-submit:hover { background: var(--orange); transform: translateY(-1px); }

    .form-note {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 40px 5%;
      border-top: 4px solid var(--orange);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-logo img { height: 76px; }

    .footer-text {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      text-align: center;
    }

    .footer-text a { color: rgba(255,255,255,0.5); text-decoration: none; }
    .footer-text a:hover { color: var(--orange); }

    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
    }
    .footer-links a:hover { color: var(--orange); }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 100px; left: 0; right: 0;
        background: var(--navy);
        z-index: 150;
        padding: 24px 5%;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .hamburger { display: flex; }

      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-card { display: none; }

      .audience-grid { grid-template-columns: 1fr; }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }

      .trust-bar-inner { justify-content: center; }
      .footer-inner { flex-direction: column; text-align: center; }
    }

    @media (max-width: 600px) {
      .pain-grid { grid-template-columns: 1fr; }
      section { padding: 60px 5%; }
    }
