  :root {
    --navy: #0f2240;
    --navy-light: #1a3460;
    --orange: #f4632a;
    --yellow: #f9c846;
    --green: #4cba6e;
    --blue-light: #e8f4fd;
    --gray: #f5f6f8;
    --text: #1a1a2e;
    --white: #ffffff;
  }

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

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

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0 solid transparent;
    border-bottom: 1px solid rgba(15,34,64,0.08);
    border-radius: 0;
    box-shadow: none;
    transition:
      top 0.32s ease,
      width 0.32s ease,
      padding 0.32s ease,
      border-radius 0.32s ease,
      box-shadow 0.32s ease,
      background 0.32s ease,
      border-color 0.32s ease,
      border-width 0.32s ease,
      backdrop-filter 0.32s ease;
  }
  body.nav-scrolled nav {
    top: 10px;
    width: min(1210px, calc(100% - 86px));
    padding: 14px 28px;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(15,34,64,0.10);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15,34,64,0.12);
  }
  .logo {
    font-family: 'Gochi Hand', cursive;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1px;
  }
  .nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a.nav-news-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 14px 7px 12px;
    border: 1px solid rgba(244, 99, 42, 0.24);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(249, 200, 70, 0.34), rgba(244, 99, 42, 0.13)),
      rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(244, 99, 42, 0.12);
    color: var(--navy);
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .nav-links a.nav-news-link::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(244, 99, 42, 0.12);
  }
  .nav-links a.nav-news-link:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 99, 42, 0.38);
    box-shadow: 0 12px 26px rgba(244, 99, 42, 0.18);
  }
  .nav-cta {
    background: var(--orange);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(244,99,42,0.35);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,99,42,0.4); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(circle at 15% 20%, rgba(249, 200, 70, 0.14), transparent 35%),
      radial-gradient(circle at 85% 15%, rgba(244, 99, 42, 0.16), transparent 45%),
      radial-gradient(circle at 10% 80%, rgba(76, 186, 110, 0.14), transparent 25%),
      linear-gradient(135deg, #050b18 0%, #0f2240 52%, #162c55 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }

  /* Left — illustration card: title top, buildings + notecard bottom */
  .hero-illustration {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background: white;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    border: 2px solid #b8e8ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 24px 0;
  }
  .hero-illustration-title {
    position: relative;
    z-index: 3;
    max-width: 420px;
    margin: 48px 0 36px;
    padding: 0 16px;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--navy);
    flex-shrink: 0;
  }
  .hero-buildings {
    position: absolute;
    left: -12%;
    bottom: -5%;
    width: min(58%, 320px);
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    object-fit: contain;
    object-position: left bottom;
  }
  .hero-notecard-link {
    position: absolute;
    right: -6%;
    bottom: -4%;
    width: min(78%, 460px);
    z-index: 2;
    transform: rotate(-8deg);
    transform-origin: right bottom;
    transition: transform 0.25s ease;
    display: block;
    cursor: pointer;
  }
  .hero-notecard-link:hover {
    transform: translateY(-12px) rotate(-4deg);
  }
  .hero-notecard {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    object-fit: contain;
    object-position: right bottom;
  }

  /* Right — form card */
  .hero-form-card {
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    border: 2px solid #b8e8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-form-card h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 36px;
  }
  .form-field {
    width: 100%;
    background: #f0f2f5;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 16px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field:focus { border-color: #b8e8ff; background: white; }
  .form-field::placeholder { color: #aaa; }
  .form-privacy {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    text-align: center;
    margin: 16px 0 24px;
    line-height: 1.6;
  }
  .form-privacy a { color: var(--navy); }
  .btn-form {
    width: 100%;
    background: var(--orange);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(244,99,42,0.4);
  }
  .btn-form:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244,99,42,0.5); }

  .lead-status {
    margin-top: 12px;
    min-height: 44px;
    border-radius: 14px;
    padding: 11px 13px;
    display: none;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
  }
  .lead-status.show { display: flex; }
  .lead-status.loading {
    background: #eef5ff;
    border: 1px solid #cfe3ff;
    color: #214f86;
  }
  .lead-status.error {
    background: #fff2f2;
    border: 1px solid #ffd2d2;
    color: #a92e2e;
  }
  .lead-status.success {
    background: linear-gradient(135deg, rgba(76,186,110,0.13), rgba(76,186,110,0.06));
    border: 1px solid rgba(76,186,110,0.35);
    color: #216840;
  }
  .lead-status .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 900;
    margin-top: 1px;
  }
  .lead-status.loading .icon { background: #dbe9ff; color: #2761a0; }
  .lead-status.error .icon { background: #ffdede; color: #b53030; }
  .lead-status.success .icon {
    background: #2fbe6c;
    color: #fff;
    animation: statusPop 0.35s ease-out, statusPulse 1.1s ease-out 0.35s 1;
  }
  .lead-capture-form.success .form-field,
  .lead-capture-form.success .form-privacy,
  .lead-capture-form.success .btn-form {
    display: none;
  }
  .lead-capture-form.success .lead-status {
    margin-top: 0;
  }
  .lead-social-success {
    display: none;
    margin-top: 14px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15,34,64,0.05), rgba(15,34,64,0.02));
    border: 1px solid rgba(15,34,64,0.12);
  }
  .lead-capture-form.success .lead-social-success {
    display: block;
    animation: fadeUp 0.35s ease-out;
  }
  .lead-social-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .lead-social-text {
    font-size: 13px;
    font-weight: 700;
    color: #5f6676;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .lead-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .lead-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .lead-social-links a:hover {
    transform: translateY(-1px);
  }
  .lead-social-links a.telegram {
    color: #0f6d9f;
    background: #e9f7ff;
    border: 1px solid rgba(30,155,229,0.35);
    box-shadow: 0 5px 14px rgba(30,155,229,0.14);
  }
  .lead-social-links a.instagram {
    color: #7a2f67;
    background: #fff0fa;
    border: 1px solid rgba(204,55,141,0.28);
    box-shadow: 0 5px 14px rgba(204,55,141,0.12);
  }
  @keyframes statusPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(47,190,108,0.38); }
    100% { box-shadow: 0 0 0 14px rgba(47,190,108,0); }
  }

  .lead-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 18px;
  }
  .lead-modal.open { display: flex; }
  .lead-modal-card {
    width: min(560px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    border: 2px solid #b8e8ff;
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
    padding: 30px 24px 24px;
    position: relative;
  }
  .lead-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: #eef2f7;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
  }
  .lead-modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.15;
    margin: 2px 0 24px;
  }
  body.modal-open { overflow: hidden; }

  .btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(244,99,42,0.45);
    text-decoration: none;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244,99,42,0.5); }
  .btn-ghost {
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 1; }

  /* Stars decoration on hero bg */
  .hero-star {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(249,200,70,0.4);
    border-radius: 50%;
  }

  .stat-num { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
  .stat-label { font-size: 13px; color: #888; font-weight: 600; margin-top: 4px; }

  /* SECTION */
  section { padding: 100px 48px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  .section-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-heading-with-tooltip {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .path-word {
    cursor: pointer;
    position: relative;
    color: var(--orange);
  }
  .path-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: rgba(244, 99, 42, 0.35);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.8);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .path-word:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
  .path-tooltip {
    max-width: 380px;
    background: #0f2240;
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    border-left: 4px solid var(--yellow);
    opacity: 0;
    transform: translateX(8px) translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    display: none;
  }
  .path-tooltip.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
    display: block;
  }
  .section-sub {
    font-size: 17px;
    color: #666;
    font-weight: 600;
    line-height: 1.7;
    max-width: 560px;
    margin-top: 8px;
    margin-bottom: 0;
  }

  /* HOW IT WORKS */
  .how-bg { background: var(--gray); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .step {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
  }
  .step:hover { border-color: var(--orange); transform: translateY(-4px); }
  .step-num {
    width: 48px; height: 48px;
    background: var(--navy);
    color: white;
    font-size: 20px;
    font-weight: 900;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .step p { font-size: 14px; color: #777; font-weight: 600; line-height: 1.6; }

  /* FEATURES BENTO */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 60px;
  }
  .bento-card {
    background: var(--navy);
    border-radius: 28px;
    padding: 36px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }
  .bento-card:hover { transform: scale(1.02); }
  .bento-card.light { background: var(--gray); color: var(--navy); }
  .bento-card.yellow-card { background: var(--yellow); color: var(--navy); }
  .bento-card.orange-card { background: var(--orange); color: white; }
  .bento-card.wide { grid-column: span 2; }
  .bento-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
  .bento-card p { font-size: 14px; opacity: 0.75; font-weight: 600; line-height: 1.6; }
  .bento-icon { font-size: 48px; margin-bottom: 20px; }

  /* Progress chart mock */
  .progress-chart {
    margin-top: 20px;
    height: 60px;
    position: relative;
  }
  .progress-chart svg { width: 100%; height: 100%; }

  /* Vocab match */
  .match-pairs {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .match-left, .match-right { display: flex; flex-direction: column; gap: 8px; }
  .match-item {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
  }
  .match-item.active { background: var(--orange); }
  .match-item.correct { background: var(--green); }

  /* Schedule mock */
  .schedule-mock {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .schedule-col { font-size: 12px; font-weight: 700; }
  .schedule-day { color: rgba(255,255,255,0.5); margin-bottom: 8px; }
  .schedule-slot {
    background: var(--orange);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
  }
  .schedule-slot.green { background: var(--green); }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
  }
  .pricing-card {
    background: var(--gray);
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s;
  }
  .pricing-card.featured {
    background: var(--navy);
    color: white;
    transform: scale(1.04);
    border-color: var(--orange);
  }
  .pricing-card:hover { transform: scale(1.03); }
  .pricing-card.featured:hover { transform: scale(1.06); }
  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .plan-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
  .plan-price { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
  .plan-price span { font-size: 18px; opacity: 0.6; }
  .plan-desc { font-size: 14px; opacity: 0.6; font-weight: 600; margin-bottom: 28px; margin-top: 8px; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .plan-features li { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
  .plan-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 16px; }
  .pricing-card.featured .plan-features li::before { color: var(--yellow); }
  .btn-plan {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: var(--orange);
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(244,99,42,0.3);
  }
  .btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,99,42,0.4); }
  .pricing-card:not(.featured) .btn-plan { background: var(--navy); box-shadow: 0 4px 16px rgba(15,34,64,0.2); }

  /* TESTIMONIALS */
  .testimonials-bg { background: var(--navy); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .testimonial {
    background: rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
  }
  .testimonial:hover { background: rgba(255,255,255,0.12); }
  .testimonial-stars { color: var(--yellow); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-text { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; line-height: 1.7; margin-bottom: 24px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }
  .author-name { color: white; font-weight: 800; font-size: 14px; }
  .author-level { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 600; }

  /* CTA */
  .cta-section {
    background: var(--orange);
    text-align: center;
    padding: 100px 48px;
  }
  .cta-section h2 {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-section p { color: rgba(255,255,255,0.8); font-size: 18px; font-weight: 600; margin-bottom: 40px; }
  .btn-cta-white {
    background: white;
    color: var(--orange);
    border: none;
    padding: 20px 52px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
  }
  .btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }

  /* FAQ */
  .faq-section {
    background: #f7f8fb;
    padding: 96px 48px;
  }
  .faq-sub {
    margin-top: 14px;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(15,34,64,0.72);
  }
  .faq-list {
    margin-top: 42px;
    display: grid;
    gap: 12px;
  }
  .faq-item {
    background: #fff;
    border: 1.5px solid rgba(15,34,64,0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .faq-item:hover {
    border-color: rgba(244,99,42,0.45);
    box-shadow: 0 10px 30px rgba(15,34,64,0.08);
  }
  .faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    cursor: pointer;
  }
  .faq-plus {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f0f2f6;
    color: var(--orange);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    transition: transform 0.2s, background 0.2s;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: rgba(15,34,64,0.78);
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 240px;
    padding: 0 24px 20px;
  }
  .faq-item.open .faq-plus {
    transform: rotate(45deg);
    background: rgba(244,99,42,0.12);
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 60px 48px 40px;
    color: rgba(255,255,255,0.5);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo { font-family: 'Gochi Hand', cursive; font-size: 28px; font-weight: 700; color: white; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 600; font-size: 14px; transition: color 0.2s; }
  .footer-links a:hover { color: white; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-up { animation: fadeUp 0.6s ease forwards; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* WORD OF THE DAY STRIP */
  .word-strip {
    background: var(--yellow);
    padding: 14px 48px;
    overflow: hidden;
    white-space: nowrap;
  }
  .word-strip-inner {
    display: inline-flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
  }
  .word-strip-item {
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    display: inline-flex;
    gap: 8px;
    align-items: center;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (max-width: 1100px) {
    nav { padding: 14px 24px; }
    body.nav-scrolled nav {
      top: 10px;
      width: calc(100% - 38px);
      border-radius: 20px;
      padding: 12px 20px;
    }
    .hero { padding: 94px 24px 56px; }
    .hero-inner { grid-template-columns: 1fr; max-width: 760px; gap: 20px; }
    .hero-illustration { min-height: 440px; padding: 44px 20px 0; }
    .hero-illustration-title { font-size: 36px; max-width: 400px; margin-bottom: 28px; }
    .hero-buildings { width: min(58%, 280px); left: -10%; bottom: -4%; }
    .hero-notecard-link { right: -5%; bottom: -3%; width: min(78%, 400px); }
    section { padding: 80px 24px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.wide { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: scale(1.02); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 80px 24px; }
    .faq-section { padding: 80px 24px; }
    .word-strip { padding: 14px 24px; }
    footer { padding: 48px 24px 32px; }
  }

  @media (max-width: 780px) {
    nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 12px 10px;
    }
    body.nav-scrolled nav {
      top: 10px;
      width: calc(100% - 22px);
      border-radius: 18px;
      padding: 10px;
    }
    .logo { display: none; }
    .nav-links {
      display: flex;
      gap: 8px;
      flex: 0 1 auto;
      overflow: visible;
      padding: 0;
      margin: 0;
    }
    .nav-links li {
      flex: 0 0 auto;
    }
    .nav-links li:has(a[href="#how"]),
    .nav-links li:has(a[href="#features"]),
    .nav-links li:has(a[href="#pricing"]),
    .nav-links li:has(a[href="#reviews"]) {
      display: none;
    }
    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid rgba(15, 34, 64, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      white-space: nowrap;
      opacity: 1;
    }
    .nav-cta {
      flex: 0 0 auto;
      padding: 10px 14px;
      font-size: 13px;
      white-space: nowrap;
    }

    .hero { padding: 84px 16px 42px; min-height: auto; }
    .hero-illustration { min-height: 370px; border-radius: 22px; padding: 38px 16px 0; }
    .hero-illustration-title {
      max-width: 320px;
      padding: 0 16px;
      margin-bottom: 24px;
      font-size: 28px;
      line-height: 1.2;
    }
    .hero-buildings { width: min(58%, 220px); left: -10%; bottom: -4%; }
    .hero-notecard-link { right: -4%; bottom: -3%; width: min(78%, 320px); }

    .hero-form-card { padding: 28px 18px; border-radius: 22px; }
    .hero-form-card h2 { font-size: 24px; margin-bottom: 24px; }
    .form-field { font-size: 15px; padding: 14px 18px; }
    .btn-form { padding: 16px; font-size: 16px; }

    section { padding: 66px 16px; }
    .section-title { font-size: 33px; }
    .section-sub { font-size: 16px; }
    .section-heading-with-tooltip { flex-direction: column; gap: 12px; }
    .path-tooltip { max-width: 100%; }

    .steps { grid-template-columns: 1fr; margin-top: 36px; gap: 14px; }
    .step { padding: 24px 18px; border-radius: 20px; }

    .bento-grid { grid-template-columns: 1fr; margin-top: 36px; gap: 14px; }
    .bento-card,
    .bento-card.wide { grid-column: auto; border-radius: 22px; padding: 24px 20px; }
    .bento-card h3 { font-size: 20px; }

    .pricing-grid { grid-template-columns: 1fr; margin-top: 24px; gap: 14px; }
    .pricing-card { padding: 30px 20px; border-radius: 22px; }
    .plan-price { font-size: 40px; }

    .testimonials-grid { grid-template-columns: 1fr; margin-top: 32px; gap: 14px; }
    .testimonial { padding: 22px 18px; border-radius: 18px; }

    .cta-section { padding: 62px 16px; }
    .cta-section h2 { font-size: 34px; }
    .cta-section p { font-size: 16px; margin-bottom: 24px; }
    .btn-cta-white { width: 100%; padding: 16px 22px; font-size: 16px; }

    .faq-section { padding: 66px 16px; }
    .faq-sub { font-size: 15px; }
    .faq-question { font-size: 18px; padding: 16px; gap: 12px; }
    .faq-plus { width: 26px; height: 26px; font-size: 18px; }
    .faq-item.open .faq-answer { padding: 0 16px 16px; }
    .faq-answer { padding: 0 16px; font-size: 14px; line-height: 1.6; }

    .word-strip { padding: 12px 16px; }
    .word-strip-inner { gap: 24px; }
    .word-strip-item { font-size: 13px; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-links { flex-wrap: wrap; gap: 12px 16px; }

    .lead-modal { padding: 12px; }
    .lead-modal-card { border-radius: 18px; padding: 24px 16px 16px; }
    .lead-modal-title { font-size: 24px; margin-bottom: 18px; }
  }

  @media (max-width: 420px) {
    .nav-cta { padding: 9px 12px; font-size: 12px; }
    .hero-illustration { min-height: 345px; padding: 32px 12px 0; }
    .hero-illustration-title { font-size: 24px; max-width: 280px; margin-bottom: 20px; }
    .hero-buildings { width: min(58%, 180px); left: -8%; bottom: -3%; }
    .hero-notecard-link { right: -4%; bottom: -3%; width: min(78%, 270px); transform: rotate(-7deg); }
    .hero-notecard-link:hover { transform: translateY(-10px) rotate(-3deg); }
    .hero-form-card h2 { font-size: 21px; }
    .section-title { font-size: 29px; }
    .cta-section h2 { font-size: 28px; }
    .faq-question { font-size: 16px; }
    .plan-price { font-size: 34px; }
  }
