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

  :root {
    --purple: #534AB7;
    --purple-light: rgba(83,74,183,0.15);
    --purple-mid: #7F77DD;
    --bg:   #212121;
    --bg2:  #2a2a2a;
    --bg3:  #313131;
    --text: #ECECEC;
    --text2:#A0A0A0;
    --text3:#636363;
    --border:#3a3a3a;
    --radius:10px;
    --radius-lg:14px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(33,33,33,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
  }
  .nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 60px;
  }
  .nav-logo { font-size: 18px; font-weight: 600; color: var(--text); text-decoration: none; }
  .nav-logo span { color: var(--purple-mid); }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { font-size: 14px; color: var(--text2); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--purple); color: #fff; border: none;
    border-radius: var(--radius); padding: 9px 20px;
    font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s;
  }
  .nav-cta:hover { opacity: .85; }

  /* SHARED */
  .section { padding: 90px 5%; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .alt { background: var(--bg2); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--purple-light); color: var(--purple-mid);
    font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
    border-radius: 999px; padding: 4px 12px; margin-bottom: 1.25rem;
  }
  .section-title { font-size: 32px; font-weight: 600; color: var(--text); margin-bottom: .75rem; line-height: 1.25; }
  .section-sub { font-size: 16px; color: var(--text2); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.65; }

  /* HERO */
  .hero { padding: 100px 5% 90px; border-bottom: 1px solid var(--border); }
  .hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 999px; padding: 5px 14px; font-size: 12px; color: var(--text2); margin-bottom: 1.5rem;
  }
  .hero-badge span { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; display: inline-block; }
  .hero h1 { font-size: 48px; font-weight: 600; line-height: 1.15; color: var(--text); margin-bottom: 1.25rem; }
  .hero h1 em { font-style: normal; color: var(--purple-mid); }
  .hero-sub { font-size: 17px; color: var(--text2); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }

  .btn-primary {
    background: var(--purple); color: #fff; border: none;
    border-radius: var(--radius); padding: 13px 26px;
    font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block;
  }
  .btn-primary:hover { opacity: .85; }
  .btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 26px;
    font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; transition: background .2s; display: inline-block;
  }
  .btn-ghost:hover { background: var(--bg3); }

  .hero-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .hero-pills .label { font-size: 13px; color: var(--text3); }
  .pill {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 999px; padding: 4px 12px; font-size: 13px; color: var(--text2);
  }

  /* HERO VISUAL */
  .hero-visual {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
  }
  .pipeline { display: flex; flex-direction: column; gap: 10px; }
  .pipe-step {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 16px;
  }
  .pipe-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--purple-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
  }
  .pipe-label { font-size: 13px; font-weight: 500; color: var(--text); }
  .pipe-desc { font-size: 12px; color: var(--text2); margin-top: 2px; }
  .pipe-arrow { text-align: center; color: var(--text3); font-size: 16px; }
  .pipe-badge {
    display: inline-block; background: rgba(34,197,94,.15); color: #4ade80;
    font-size: 11px; font-weight: 500; border-radius: 999px; padding: 2px 8px; margin-top: 4px;
  }

  /* STEPS */
  .steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .step-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
  }
  .step-num {
    width: 36px; height: 36px; background: var(--purple-light); color: var(--purple-mid);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; margin-bottom: 16px;
  }
  .step-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
  .step-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .service-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color .2s, transform .2s;
  }
  .service-card:hover { border-color: var(--purple); transform: translateY(-2px); }
  .service-icon {
    width: 44px; height: 44px; background: var(--purple-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px;
  }
  .service-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
  .service-desc { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
  .service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .tag {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 999px; padding: 3px 10px; font-size: 11px; color: var(--text2);
  }

  /* RESULTS */
  .results-grid { display: flex; flex-direction: column; gap: 14px; }
  .result-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px 28px;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
  }
  .result-left { flex: 1; }
  .result-type {
    display: inline-block; background: var(--purple-light); color: var(--purple-mid);
    font-size: 11px; font-weight: 500; border-radius: 999px; padding: 3px 10px; margin-bottom: 10px;
  }
  .result-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .result-desc { font-size: 14px; color: var(--text2); line-height: 1.55; }
  .result-stat { text-align: right; flex-shrink: 0; }
  .stat-num { font-size: 38px; font-weight: 600; color: var(--purple-mid); line-height: 1; }
  .stat-label { font-size: 12px; color: var(--text3); margin-top: 4px; }

  /* TESTIMONIALS */
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .testi-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .testi-quote { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; flex: 1; }
  .testi-quote::before { content: '"'; color: var(--purple-mid); font-size: 24px; line-height: 1; display: block; margin-bottom: 8px; }
  .testi-author { display: flex; align-items: center; gap: 10px; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--purple-light); color: var(--purple-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; flex-shrink: 0;
  }
  .testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
  .testi-role { font-size: 12px; color: var(--text3); }

  /* FAQ */
  .faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
  #faq .section-inner { text-align: center; }
  #faq .section-sub { margin-left: auto; margin-right: auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 0; font-size: 15px; font-weight: 500; color: var(--text);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq-q:hover { color: var(--purple-mid); }
  .faq-chevron { font-size: 20px; color: var(--text3); transition: transform .25s; flex-shrink: 0; }
  .faq-item.open .faq-chevron { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px; color: var(--text2); line-height: 1.7;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

  /* CTA SECTION */
  .cta-section { padding: 90px 5%; border-top: 1px solid var(--border); }
  .cta-centered {
    max-width: 860px; margin: 0 auto; text-align: center;
  }
  .cta-centered .eyebrow { margin-bottom: 1.25rem; }
  .cta-centered .section-sub { max-width: 520px; }
  .calendly-box {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem;
  }

  /* FOOTER */
  footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 5% 32px; }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
  }
  .footer-logo { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
  .footer-logo span { color: var(--purple-mid); }
  .footer-tagline { font-size: 14px; color: var(--text2); line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
  .footer-email { font-size: 13px; color: var(--purple-mid); text-decoration: none; }
  .footer-col h4 { font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--text2); text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: var(--purple-mid); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 13px; color: var(--text3); }

  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 180px;
    z-index: 200;
    top: calc(100% + 2px);
  }

  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown-item {
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text3);
    border-radius: 6px;
    white-space: nowrap;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 36px; }
    .steps-grid, .services-grid, .testi-grid { grid-template-columns: 1fr; }
    .result-card { flex-direction: column; align-items: flex-start; }
    .result-stat { text-align: left; }
    .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .hero { padding: 60px 5%; }
    .section { padding: 60px 5%; }
    .hero h1 { font-size: 30px; }
    .section-title { font-size: 26px; }
  }

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

  :root {
    --purple: #534AB7;
    --purple-light: rgba(83,74,183,0.15);
    --purple-mid: #7F77DD;
    --bg:   #212121;
    --bg2:  #2a2a2a;
    --bg3:  #313131;
    --text: #ECECEC;
    --text2:#A0A0A0;
    --text3:#636363;
    --border:#3a3a3a;
    --radius:10px;
    --radius-lg:14px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(33,33,33,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
  }
  .nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 60px;
  }
  .nav-logo { font-size: 18px; font-weight: 700; color: var(--text); text-decoration: none; }
  .nav-logo span { color: var(--purple-mid); }
  .nav-back { font-size: 13px; color: var(--text2); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
  .nav-back:hover { color: var(--text); }
  .nav-cta {
    background: var(--purple); color: #fff; border: none;
    border-radius: var(--radius); padding: 9px 20px;
    font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s;
  }
  .nav-cta:hover { opacity: .85; }

  /* SHARED */
  .section { padding: 90px 5%; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .alt { background: var(--bg2); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--purple-light); color: var(--purple-mid);
    font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
    border-radius: 999px; padding: 4px 12px; margin-bottom: 1.25rem;
  }
  .section-title { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: .75rem; line-height: 1.25; }
  .section-sub { font-size: 16px; color: var(--text2); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.65; }

  .btn-primary {
    background: var(--purple); color: #fff; border: none;
    border-radius: var(--radius); padding: 13px 26px;
    font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block;
  }
  .btn-primary:hover { opacity: .85; }
  .btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 26px;
    font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; transition: background .2s; display: inline-block;
  }
  .btn-ghost:hover { background: var(--bg3); }

  /* HERO */
  .hero { padding: 100px 5% 90px; border-bottom: 1px solid var(--border); }
  .hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 999px; padding: 5px 14px; font-size: 12px; color: var(--text2); margin-bottom: 1.5rem;
  }
  .hero-badge span { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; display: inline-block; }
  .hero h1 { font-size: 48px; font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 1.25rem; }
  .hero h1 em { font-style: normal; color: var(--purple-mid); }
  .hero-sub { font-size: 17px; color: var(--text2); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .hero-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .hero-pills .label { font-size: 13px; color: var(--text3); }
  .pill { background: var(--bg2); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; font-size: 13px; color: var(--text2); }

  /* HERO MOCKUP */
  .hero-visual { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .mock-bar {
    background: var(--bg3); border-bottom: 1px solid var(--border);
    padding: 10px 16px; display: flex; align-items: center; gap: 6px;
  }
  .mdot { width: 9px; height: 9px; border-radius: 50%; }
  .mdot.r { background: #FF5F57; } .mdot.y { background: #FEBC2E; } .mdot.g { background: #28C840; }
  .mock-title-bar { font-size: 12px; color: var(--text3); margin-left: 8px; }
  .mock-body { padding: 20px; }
  .tracker-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .tracker-icon { width: 32px; height: 32px; background: var(--purple-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .tracker-name { font-size: 18px; font-weight: 700; color: var(--text); }
  .section-folder { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
  .mock-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
  .mock-card-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
  .mock-member { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
  .mock-goal { font-size: 11px; color: var(--text3); margin-bottom: 8px; }
  .mock-dots { display: flex; gap: 4px; margin-bottom: 10px; }
  .pd { width: 14px; height: 14px; border-radius: 3px; }
  .pd.on { background: #4ade80; } .pd.mid { background: #FEBC2E; } .pd.off { background: var(--border); }
  .mock-stat { text-align: center; }
  .mock-stat-label { font-size: 10px; color: var(--text3); margin-bottom: 3px; }
  .mock-stat-val { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; }
  .badge-green { display: inline-block; background: rgba(74,222,128,.15); color: #4ade80; font-size: 10px; font-weight: 600; border-radius: 999px; padding: 2px 7px; margin-top: 3px; }
  .mock-yes-row { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
  .mock-yes-label { font-size: 11px; color: var(--text3); }
  .mock-yes-val { font-size: 14px; font-weight: 700; color: var(--purple-mid); }
  .mock-prog-label { font-size: 10px; color: var(--text3); margin: 8px 0 4px; }
  .mock-prog-bg { background: var(--border); border-radius: 999px; height: 4px; }
  .mock-prog-fill { background: var(--purple-mid); border-radius: 999px; height: 4px; width: 18%; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .feat-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px; transition: border-color .2s, transform .2s;
  }
  .feat-card:hover { border-color: var(--purple); transform: translateY(-2px); }
  .feat-icon { width: 40px; height: 40px; background: var(--purple-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
  .feat-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .feat-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

  /* PRICING */
  .pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 700px; }
  .price-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px; position: relative;
  }
  .price-card.featured { border-color: var(--purple); }
  .price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--purple); color: #fff; font-size: 11px; font-weight: 600;
    border-radius: 999px; padding: 3px 12px; white-space: nowrap;
  }
  .price-name { font-size: 14px; font-weight: 600; color: var(--text2); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
  .price-amount { font-size: 40px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; }
  .price-amount span { font-size: 18px; color: var(--text2); }
  .price-once { font-size: 12px; color: var(--text3); margin-bottom: 20px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2); }
  .price-features li::before { content: '✓'; color: var(--purple-mid); font-weight: 700; flex-shrink: 0; }
  .price-btn {
    display: block; text-align: center; width: 100%;
    background: var(--purple); color: #fff; border: none;
    border-radius: var(--radius); padding: 12px;
    font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: opacity .2s;
  }
  .price-btn:hover { opacity: .85; }
  .price-btn.ghost {
    background: transparent; color: var(--text); border: 1px solid var(--border);
  }
  .price-btn.ghost:hover { background: var(--bg3); }

  /* WHO IS IT FOR */
  .for-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
  .for-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .for-icon { font-size: 20px; flex-shrink: 0; }
  .for-text { font-size: 14px; color: var(--text2); line-height: 1.4; }
  .for-text strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }

  /* FAQ */
  .faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
  #faq .section-inner { text-align: center; }
  #faq .section-sub { margin-left: auto; margin-right: auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 0; font-size: 15px; font-weight: 500; color: var(--text);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: 'Ubuntu', sans-serif;
  }
  .faq-q:hover { color: var(--purple-mid); }
  .faq-chevron { font-size: 20px; color: var(--text3); transition: transform .25s; flex-shrink: 0; }
  .faq-item.open .faq-chevron { transform: rotate(45deg); }
  .faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

  /* CTA BOTTOM */
  .cta-section { padding: 90px 5%; }
  .cta-banner {
    max-width: 1100px; margin: 0 auto;
    background: var(--purple); border-radius: 20px; padding: 64px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .cta-left h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
  .cta-left p { font-size: 15px; color: rgba(255,255,255,.75); max-width: 420px; line-height: 1.65; }
  .btn-white {
    background: #fff; color: var(--purple); border: none; border-radius: var(--radius);
    padding: 14px 28px; font-size: 15px; font-weight: 700; cursor: pointer;
    white-space: nowrap; text-decoration: none; display: inline-block; transition: opacity .2s; flex-shrink: 0;
  }
  .btn-white:hover { opacity: .9; }

  /* FOOTER */
  footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 32px 5%; }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 13px; color: var(--text3); }
  .footer-logo { font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; }
  .footer-logo span { color: var(--purple-mid); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 34px; }
    .features-grid, .for-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
    .nav-links-mid { display: none; }
  }
  @media (max-width: 600px) {
    .hero { padding: 60px 5%; }
    .section { padding: 60px 5%; }
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 26px; }
  }

  .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(33,33,33,0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 14px 5%; font-size: 15px; }
}