:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E6B8;
    --dark: #0B1629;
    --dark-2: #0E1C35;
    --dark-3: #132040;
    --dark-card: #0D1A30;
    --white: #FFFFFF;
    --off-white: #E8EEF8;
    --text-muted: #7A90B0;
    --green: #4CAF6E;
    --navy-glow: rgba(30, 80, 180, 0.12);
    --blue-accent: #1E50B4;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(30,80,180,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,80,180,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  body > * { position: relative; z-index: 1; }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    background-image:
      radial-gradient(ellipse 80% 50% at 20% 10%, rgba(30,80,180,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(14,28,53,0.9) 0%, transparent 100%);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: rgba(11,22,41,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    box-shadow: 0 4px 40px rgba(0,0,0,0.3);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
  }
  .nav-logo span { color: var(--white); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 120px 60px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30,80,180,0.15) 0%, transparent 65%),
                radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 90% 10%, rgba(201,168,76,0.04) 0%, transparent 55%);
  }
  /* Decorative diagonal lines */
  .hero-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(30,80,180,0.04) 60px,
        rgba(30,80,180,0.04) 61px
      );
  }
  /* Large decorative number */
  .hero-deco {
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(200px, 28vw, 400px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
  }

  .hero-content { position: relative; max-width: 680px; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 540px;
    font-weight: 400;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid rgba(201,168,76,0.5);
    color: var(--gold);
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex; gap: 48px;
    margin-top: 64px; padding-top: 48px;
    border-top: 1px solid rgba(30,80,180,0.2);
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .stat-item {}
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.3px; }

  /* ── INTRO SECTION ── */
  .intro {
    padding: 100px 60px;
    background: var(--dark-2);
    position: relative;
  }
  .intro::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), rgba(30,80,180,0.6), transparent);
  }
  .intro-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
  }
  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .intro-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--off-white);
  }
  .intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 660px; margin: 0 auto;
  }
  .intro-text strong { color: var(--white); font-weight: 600; }

  /* ── ABOUT ── */
  .about {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-visual {
    position: relative;
  }
  .about-card {
    background: linear-gradient(135deg, #0D1A30 0%, #0B2040 100%);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .about-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  }
  .about-card-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -16px;
  }
  .about-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--off-white);
    font-style: italic;
  }
  .about-floating {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--dark);
    width: 100px; height: 100px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    border: 4px solid var(--dark);
  }
  .about-floating-num { font-size: 1.6rem; line-height: 1; }
  .about-floating-label { font-size: 0.55rem; font-family: 'DM Sans', sans-serif; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .about-tags {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
  }
  .tag {
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  /* ── OFFER ── */
  .offer-section {
    padding: 100px 60px;
    background: var(--dark-2);
    position: relative;
  }
  .offer-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .section-header { text-align: center; margin-bottom: 64px; }
  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .section-header p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

  .offer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    max-width: 900px; margin: 0 auto;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px; overflow: hidden;
  }
  .offer-item {
    background: linear-gradient(160deg, #0D1A30 0%, #0B1E38 100%);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
  }
  .offer-item:hover { background: linear-gradient(160deg, #0F2040 0%, #122545 100%); }
  .offer-item:not(:last-child) { border-right: 1px solid rgba(201,168,76,0.08); }
  .offer-check {
    width: 40px; height: 40px;
    background: rgba(76,175,110,0.12);
    border: 1px solid rgba(76,175,110,0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .offer-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--off-white);
  }
  .offer-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

  /* ── WHY CHOOSE ── */
  .why-section { padding: 100px 60px; }
  .why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    max-width: 1000px; margin: 0 auto;
  }
  .why-card {
    background: linear-gradient(145deg, #0D1A30 0%, #0B1E38 100%);
    border: 1px solid rgba(30,80,180,0.12);
    border-radius: 12px;
    padding: 40px 36px;
    display: flex; gap: 24px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(30,80,180,0.6), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .why-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(30,80,180,0.1); }
  .why-card:hover::after { transform: scaleX(1); }
  .why-icon {
    font-size: 2rem;
    width: 56px; height: 56px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
  .why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

  /* Profit highlight card */
  .why-card.highlight {
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
    border-color: rgba(201,168,76,0.25);
    grid-column: span 1;
  }
  .profit-pill {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    padding: 4px 16px;
    border-radius: 4px;
    margin-top: 6px;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 60px;
    background: var(--dark-2);
    position: relative;
  }
  .how-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .steps-track {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .steps-track::before {
    content: '';
    position: absolute; left: 28px; top: 40px; bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
  }
  .step {
    display: flex; gap: 32px; align-items: flex-start;
    padding: 28px 0;
    position: relative;
  }
  .step-num {
    width: 56px; height: 56px; flex-shrink: 0;
    background: var(--dark-2);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    position: relative; z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(30,80,180,0.15);
  }
  .step:hover .step-num {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
  }
  .step-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; padding-top: 14px; }
  .step-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

  /* ── WHO CAN APPLY ── */
  .who-section { padding: 100px 60px; }
  .who-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    max-width: 1100px; margin: 0 auto;
  }
  .who-card {
    background: linear-gradient(145deg, #0D1A30 0%, #0B1E38 100%);
    border: 1px solid rgba(30,80,180,0.12);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
  }
  .who-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(30,80,180,0.1);
  }
  .who-icon { font-size: 2.4rem; margin-bottom: 16px; }
  .who-card h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; }

  /* ── CTA ── */
  .cta-section {
    padding: 100px 60px;
    background: var(--dark-2);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(30,80,180,0.1) 0%, rgba(201,168,76,0.04) 50%, transparent 70%);
  }
  .cta-inner { text-align: center; position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
  .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 44px; line-height: 1.7; }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* ── CONTACT ── */
  .contact-section { padding: 100px 60px; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1000px; margin: 0 auto; align-items: center;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
  }
  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
  }
  .contact-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .contact-item-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
  .contact-item-value { font-size: 0.95rem; color: var(--off-white); font-weight: 500; line-height: 1.5; }
  .contact-item-value a { color: var(--gold); text-decoration: none; }
  .contact-item-value a:hover { text-decoration: underline; }

  .contact-form-card {
    background: linear-gradient(145deg, #0D1A30 0%, #0B2040 100%);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 44px 40px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(30,80,180,0.08);
  }
  .contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--gold);
  }
  .form-group { margin-bottom: 20px; }
  .form-group input, .form-group textarea {
    width: 100%;
    background: rgba(30,80,180,0.06);
    border: 1px solid rgba(30,80,180,0.2);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: #4a6080; }
  .form-group input:focus, .form-group textarea:focus {
    border-color: rgba(201,168,76,0.45);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
  }
  .form-group textarea { min-height: 110px; }
  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: linear-gradient(90deg, #070F1F, #0B1629, #070F1F);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: center; gap: 60px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.3px;
  }
  .trust-item-icon {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.06); }

  /* ── FOOTER ── */
  footer {
    padding: 40px 60px;
    background: #050D1A;
    border-top: 1px solid rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
  }
  .footer-copy { font-size: 0.8rem; color: var(--text-muted); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── DIVIDER ── */
  .gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    max-width: 400px; margin: 0 auto;
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; cursor: pointer;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px; padding: 8px; transition: background 0.2s;
  }
  .nav-hamburger:hover { background: rgba(201,168,76,0.15); }
  .nav-hamburger span {
    display: block; height: 1.5px; background: var(--gold);
    border-radius: 2px; transition: all 0.3s ease; transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-drawer {
    display: none; position: fixed; inset: 0;
    background: rgba(7,13,26,0.97); backdrop-filter: blur(24px);
    z-index: 99; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  .nav-drawer.open { opacity: 1; pointer-events: all; }
  .nav-drawer a {
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
    color: var(--off-white); text-decoration: none; padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08); width: 240px; text-align: center;
    transition: color 0.2s;
  }
  .nav-drawer a:hover { color: var(--gold); }
  .nav-drawer .drawer-cta {
    margin-top: 24px; background: var(--gold); color: var(--dark);
    padding: 14px 40px; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  }
  .drawer-close {
    position: absolute; top: 24px; right: 24px;
    width: 40px; height: 40px; cursor: pointer;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.2rem;
  }

  /* ── TABLET ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 32px; }
    .hero { padding: 120px 40px 80px; }
    .intro, .offer-section, .why-section, .how-section,
    .who-section, .cta-section, .contact-section { padding: 80px 40px; }
    .about { padding: 80px 40px; gap: 60px; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-content { max-width: 100%; }
    .hero-deco { display: none; }
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 1rem; margin-bottom: 32px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }
    .hero-stats { gap: 20px; margin-top: 40px; padding-top: 32px; flex-wrap: wrap; }
    .stat-num { font-size: 1.6rem; }

    .intro { padding: 60px 20px; }
    .intro-headline { font-size: clamp(1.4rem, 5vw, 2rem); }

    #about { padding: 60px 0 !important; }
    .about { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; }
    .about-card { padding: 32px 24px; }
    .about-floating { width: 80px; height: 80px; bottom: -16px; right: -12px; }
    .about-content h2 { font-size: 1.8rem; }

    .offer-section { padding: 60px 20px; }
    .offer-grid { grid-template-columns: 1fr; border-radius: 10px; }
    .offer-item { padding: 32px 24px; }
    .offer-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.08); }

    .why-section { padding: 60px 20px; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 28px 24px; gap: 16px; }
    .why-card[style*="span 2"] { grid-column: span 1 !important; }
    .why-icon { width: 44px; height: 44px; font-size: 1.4rem; }

    .how-section { padding: 60px 20px; }
    .steps-track::before { left: 22px; }
    .step { gap: 20px; padding: 20px 0; }
    .step-num { width: 44px; height: 44px; font-size: 0.95rem; }

    .who-section { padding: 60px 20px; }
    .who-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .who-card { padding: 24px 16px; }
    .who-card h3 { font-size: 0.85rem; }

    .cta-section { padding: 60px 20px; }
    .cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
    .cta-btns .btn-primary, .cta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

    .contact-section { padding: 60px 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-info h2 { font-size: 1.8rem; }
    .contact-form-card { padding: 28px 20px; }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    .trust-strip { padding: 20px 16px; gap: 16px; flex-direction: column; align-items: flex-start; }
    .trust-divider { display: none; }

    footer { flex-direction: column; text-align: center; padding: 28px 20px; gap: 12px; }
    .footer-links { justify-content: center; }
  }

  @media (max-width: 400px) {
    .who-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .about-floating { display: none; }
    h1 { font-size: 1.9rem; }
  }
