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

    :root {
      /* TEMA CLARO (identidade do app) */
      --bg:      #FFFFFF;
      --bg2:     #F7F2F5;
      --card:    #FFFFFF;
      --card2:   #F7F2F5;
      --border:  #ECE2E8;
      --rose:    #D43A6E;
      --rose-d:  #A8305A;
      --rose-bg: rgba(212,58,110,0.08);
      --text:    #1A0E15;
      --mid:     #6E5762;
      --dim:     #A2909B;
      --gold:    #B07F33;
      --topbar-bg: linear-gradient(110deg,#EC5B86 0%,#D63A6E 52%,#B92C5A 100%);
      --btn-rose: linear-gradient(135deg,#EC5B86 0%,#D63A6E 52%,#B92C5A 100%);
      --green:   #16a34a;
      --green-bg:#e8f6ee;
      --red:     #dc2626;
      --red-bg:  #fbeaea;
      --yellow:  #b07f33;
      --yellow-bg:#f6efdf;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 64px;
      height: 64px;
      position: sticky;
      top: 0;
      background: var(--topbar-bg);
      backdrop-filter: blur(16px);
      z-index: 100;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 18px;
      color: #fff;
      text-decoration: none;
    }
    .nav-logo img { width: 30px; height: 30px; border-radius: 50%; }
    .nav-logo-dot { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--rose); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
    .nav-links { display: flex; align-items: center; gap: 12px; }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links .nav-link { font-weight: 500; }
    .nav-links .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      color: var(--rose);
      font-size: 13px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 999px;
      text-decoration: none;
      white-space: nowrap;
      margin-left: 4px;
    }
    .nav-links .nav-cta:hover { color: var(--rose-d); }

    /* ── HERO ── */
    .hero {
      padding: 96px 64px 80px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    /* glow bg */
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 1300px;
      height: 1040px;
      background:
        radial-gradient(ellipse 62% 30% at 50% 4%, rgba(212,58,110,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 58% 26% at 50% 64%, rgba(212,58,110,0.11) 0%, transparent 62%);
      pointer-events: none;
    }
    .beta-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(212,58,110,0.08);
      border: 1px solid rgba(212,58,110,0.25);
      color: var(--rose);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
    }
    .beta-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--rose);
    }
    .hero-typed {
      font-size: clamp(15px, 2vw, 20px);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.4;
      color: var(--text);
      max-width: 660px;
      margin: 0 auto 24px;
      min-height: 2.8em;
    }
    .hero-typed .tt { color: var(--rose); }
    .hero-typed .caret {
      display: inline-block;
      width: 2px; height: 1.05em;
      background: var(--rose);
      margin-left: 3px;
      vertical-align: -0.16em;
      animation: heroCaret .8s steps(1) infinite;
    }
    @keyframes heroCaret { 50% { opacity: 0; } }
    .hero h1 {
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.025em;
      max-width: 920px;
      margin: 0 auto 22px;
    }
    .hero h1 em { font-style: normal; color: var(--rose); }
    .hero h1 .circled { position: relative; display: inline-block; white-space: nowrap; }
    .hero h1 .circled .scribble {
      position: absolute; left: -6%; top: -18%; width: 112%; height: 136%;
      overflow: visible; pointer-events: none;
    }
    .hero h1 .circled .scribble path {
      fill: none; stroke: var(--rose); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
      vector-effect: non-scaling-stroke; opacity: .85;
      stroke-dasharray: 1; stroke-dashoffset: 1;
      animation: heroScribble .85s ease-out .5s forwards;
    }
    @keyframes heroScribble { to { stroke-dashoffset: 0; } }
    .hero-sub {
      font-size: 15px;
      color: var(--mid);
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.65;
    }
    .hero-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .btn-rose {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--btn-rose);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(212,58,110,0.28);
      transition: filter 0.2s, transform 0.15s;
    }
    .btn-rose:hover { filter: brightness(1.06); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 10px;
      text-decoration: none;
      border: 1.5px solid var(--border);
      transition: border-color 0.2s, transform 0.15s;
    }
    .btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-1px); }
    .hero-trust { font-size: 13px; color: var(--dim); }
    .hero-trust span { margin: 0 6px; }

    .hero-screenshot {
      margin: 60px auto 0;
      max-width: 1080px;
      border-radius: 14px 14px 0 0;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(26,14,21,0.13);
      position: relative;
    }
    .hero-screenshot img { width: 100%; display: block; max-height: 640px; object-fit: cover; object-position: top; }
    .hero-screenshot::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 13%;
      background: linear-gradient(to bottom, transparent 0%, var(--bg) 96%);
      pointer-events: none;
    }

    /* ── Mockup da Análise de Fit no hero ── */
    .fit-mock { background: var(--card); text-align: left; }
    .fm-chrome { display: flex; align-items: center; gap: 8px; padding: 13px 18px; background: var(--card2); border-bottom: 1px solid var(--border); }
    .fm-chrome i { width: 11px; height: 11px; border-radius: 50%; display: block; }
    .fm-chrome i:nth-child(1) { background: #F0938C; }
    .fm-chrome i:nth-child(2) { background: #F3C97E; }
    .fm-chrome i:nth-child(3) { background: #A6D49B; }
    .fm-chrome span { margin-left: 12px; font-size: 12.5px; color: var(--dim); font-weight: 500; }
    .fm-body { padding: 30px 36px 40px; }
    .fm-head { display: flex; gap: 22px; align-items: center; margin-bottom: 28px; }
    .fm-score { flex: none; width: 88px; height: 88px; border-radius: 50%; border: 3px solid var(--red); color: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
    .fm-score b { font-size: 32px; font-weight: 800; }
    .fm-score span { font-size: 12px; font-weight: 600; margin-top: 3px; }
    .fm-title { font-size: 21px; font-weight: 800; color: var(--text); margin: 0 0 7px; }
    .fm-desc { font-size: 14.5px; color: var(--mid); line-height: 1.5; margin: 0; max-width: 600px; }
    .fm-bars { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
    .fm-row { display: flex; align-items: center; gap: 16px; }
    .fm-label { width: 140px; flex: none; font-size: 14.5px; color: var(--text); }
    .fm-track { flex: 1; height: 10px; border-radius: 999px; background: var(--card2); overflow: hidden; }
    .fm-track i { display: block; height: 100%; border-radius: 999px; }
    .fm-pct { width: 48px; flex: none; text-align: right; font-weight: 700; font-size: 14.5px; }
    .b-red { background: #dc2626; } .b-amber { background: #E0922A; } .b-lime { background: #7FB539; } .b-green { background: #16a34a; }
    .c-red { color: #dc2626; } .c-amber { color: #E0922A; } .c-lime { color: #5e9a1f; } .c-green { color: #16a34a; }
    .fm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .fm-col { background: var(--card2); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; }
    .fm-col-h { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
    .fm-col-h.yes { color: var(--green); } .fm-col-h.no { color: var(--red); }
    .fm-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .fm-col li { font-size: 13.5px; color: var(--text); line-height: 1.5; padding-left: 16px; position: relative; }
    .fm-col li::before { content: '·'; position: absolute; left: 3px; top: -1px; color: var(--dim); font-weight: 800; font-size: 16px; }
    @media (max-width: 720px) {
      .fm-body { padding: 22px 20px 30px; }
      .fm-head { gap: 16px; margin-bottom: 22px; }
      .fm-score { width: 70px; height: 70px; }
      .fm-score b { font-size: 26px; }
      .fm-title { font-size: 18px; }
      .fm-desc { font-size: 13px; }
      .fm-label { width: 104px; font-size: 13px; }
      .fm-cols { grid-template-columns: 1fr; gap: 14px; }
    }

    /* ── SECTION BASE ── */
    .section { padding: 96px 64px; }
    .section-inner { max-width: 1080px; margin: 0 auto; }

    .label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rose);
      text-align: center;
      margin-bottom: 16px;
    }
    .section-h {
      font-size: clamp(28px, 3.8vw, 48px);
      font-weight: 900;
      letter-spacing: -0.025em;
      line-height: 1.1;
      text-align: center;
      margin-bottom: 16px;
    }
    .section-h em { font-style: normal; color: var(--rose); }
    .section-p {
      font-size: 17px;
      color: var(--mid);
      text-align: center;
      max-width: 560px;
      margin: 0 auto 56px;
      line-height: 1.7;
    }

    /* ── PROBLEM ── */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 72px;
      margin-bottom: 24px;
    }
    .problem-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px 28px 28px;
      position: relative;
      text-align: center;
    }
    .problem-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--rose);
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -24px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 0 4px var(--bg);
    }
    .problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .problem-card p { font-size: 15px; color: var(--mid); line-height: 1.7; }
    .problem-summary {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 28px;
      font-size: 15px;
      color: var(--mid);
      text-align: center;
    }
    .problem-summary strong { color: var(--text); }

    /* ── FEATURE ROWS ── */
    .features-wrap { display: flex; flex-direction: column; gap: 96px; }
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .feature-row.rev { direction: rtl; }
    .feature-row.rev > * { direction: ltr; }

    .feat-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 12px;
    }
    .feat-h {
      font-size: clamp(24px, 2.8vw, 38px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .feat-h em { font-style: normal; color: var(--rose); }
    .feat-p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
    }

    /* screenshot container */
    .feat-img {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 16px 48px rgba(26,14,21,0.10);
    }
    .feat-img img { width: 100%; display: block; }

    /* ── COMPATIBILITY CARD ── */
    .compat-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }
    .compat-cta-btn {
      display: block;
      background: var(--btn-rose);
      color: #fff;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      padding: 14px;
      text-decoration: none;
      letter-spacing: 0.01em;
    }
    .compat-body { padding: 20px; }
    .compat-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
    }
    .score-circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 3px solid var(--green);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .score-circle .num { font-size: 22px; font-weight: 900; color: var(--green); line-height: 1; }
    .score-circle .lbl { font-size: 9px; font-weight: 700; color: var(--green); letter-spacing: 0.06em; }
    .compat-title-block h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .compat-title-block p { font-size: 12px; color: var(--mid); line-height: 1.5; }

    .compat-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
    .bar-row { display: flex; align-items: center; gap: 10px; }
    .bar-lbl { font-size: 12px; color: var(--mid); width: 110px; flex-shrink: 0; }
    .bar-track { flex: 1; height: 5px; background: var(--card2); border-radius: 100px; overflow: hidden; }
    .bar-fill { height: 100%; background: var(--green); border-radius: 100px; }
    .bar-fill.yellow { background: var(--yellow); }
    .bar-pct { font-size: 12px; font-weight: 700; color: var(--green); width: 34px; text-align: right; }
    .bar-pct.yellow { color: var(--yellow); }

    .compat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .compat-box { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
    .compat-box-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .compat-box-title.green { color: var(--green); }
    .compat-box-title.red { color: var(--red); }
    .compat-box-title.yellow { color: var(--yellow); }
    .compat-box-title.rose { color: var(--rose); }
    .compat-box ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
    .compat-box li { font-size: 11px; color: var(--mid); line-height: 1.4; padding-left: 10px; position: relative; }
    .compat-box li::before { content: '·'; position: absolute; left: 0; color: var(--dim); }

    .compat-save {
      display: block;
      margin-top: 16px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--rose);
      border: 1px solid var(--rose);
      border-radius: 8px;
      padding: 10px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .compat-save:hover { background: var(--rose-bg); }

    /* ── EM BREVE ── */
    .em-breve-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px;
    }
    .em-breve-badge {
      display: inline-block;
      border: 1px solid var(--dim);
      color: var(--mid);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .em-breve-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
    .em-breve-card > p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
    .em-breve-btn {
      display: inline-block;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      margin-bottom: 24px;
      transition: border-color 0.2s;
    }
    .em-breve-btn:hover { border-color: var(--rose); color: var(--rose); }
    .em-breve-items { display: flex; flex-direction: column; gap: 10px; }
    .em-breve-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: var(--card2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
    }
    .dot-em { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
    .dot-pink { background: var(--rose); }
    .dot-yellow { background: var(--yellow); }
    .em-breve-item-text h5 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
    .em-breve-item-text p { font-size: 12px; color: var(--mid); }

    /* ── DIAGNÓSTICO ── */
    .diag-section { border-top: 1px solid var(--border); }

    /* ── EM BREVE SOLO ── */
    .em-breve-solo {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
      padding: 56px 40px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--card);
    }
    .em-breve-solo h3 {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 16px 0 14px;
    }
    .em-breve-solo > p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.7;
    }

    /* ── QUOTE ── */
    .quote-section { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .big-quote {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 700;
      line-height: 1.45;
      letter-spacing: -0.02em;
      color: var(--mid);
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }
    .big-quote em { color: var(--rose); font-style: normal; }
    .diag-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      max-width: 760px;
      margin: 0 auto;
    }
    .diag-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-left: 3px solid var(--rose);
      border-radius: 12px;
      padding: 24px 20px;
    }
    .diag-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .diag-card p { font-size: 13px; color: var(--mid); line-height: 1.6; }

    /* ── PLANS ── */
    .plans-section { }

    /* ── FAQ ── */
    .faq-section { border-top: 1px solid var(--border); }
    .faq-list {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--text);
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      padding: 22px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-q:hover { color: var(--rose); }
    .faq-icon {
      font-size: 20px;
      color: var(--rose);
      transition: transform 0.25s;
      flex-shrink: 0;
      line-height: 1;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding-bottom: 0;
    }
    .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 22px;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1040px;
      margin: 0 auto;
      align-items: start;
    }
    .plan-solo-wrap { display: flex; justify-content: center; }
    .plan-solo { max-width: 400px; width: 100%; }
    .plan-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
    }
    .plan-card.featured { border-color: var(--rose); }
    .plan-best {
      position: absolute;
      top: -13px;
      left: 28px;
      background: var(--rose);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
    }
    .plan-name { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
    .plan-price {
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 4px;
    }
    .plan-price .per { font-size: 16px; font-weight: 500; color: var(--mid); letter-spacing: 0; }
    .plan-annual { font-size: 13px; color: var(--dim); margin-bottom: 16px; }
    .plan-economy {
      background: var(--rose-bg);
      border: 1px solid rgba(224,68,120,0.3);
      color: var(--rose);
      font-size: 13px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 8px;
      margin-bottom: 24px;
      display: inline-block;
    }
    .plan-cancel { font-size: 13px; font-weight: 600; color: var(--yellow); margin-bottom: 24px; }
    .plan-trust { font-size: 13px; color: var(--dim); text-align: center; margin-top: 16px; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .plan-features li { font-size: 14px; color: var(--mid); display: flex; align-items: flex-start; gap: 8px; }
    .plan-features li .chk { color: var(--rose); flex-shrink: 0; font-size: 13px; }
    .btn-plan-rose {
      display: block;
      background: var(--btn-rose);
      color: #fff;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      padding: 14px;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(212,58,110,0.25);
      transition: filter 0.2s, transform 0.15s;
    }
    .btn-plan-rose:hover { filter: brightness(1.06); transform: translateY(-1px); }
    .btn-plan-outline {
      display: block;
      border: 1.5px solid var(--rose);
      color: var(--rose);
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      padding: 14px;
      border-radius: 10px;
      text-decoration: none;
      background: transparent;
      transition: background 0.2s;
    }
    .btn-plan-outline:hover { background: var(--rose-bg); }

    /* ── CTA FINAL ── */
    .cta-section {
      border-top: 1px solid var(--border);
      padding: 100px 64px;
      text-align: center;
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      bottom: -80px; left: 50%;
      transform: translateX(-50%);
      width: 1200px;
      height: 600px;
      background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212,58,110,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(212,58,110,0.06) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-inner { max-width: 700px; margin: 0 auto; }
    .cta-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 20px;
    }
    .cta-h {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .cta-h em { font-style: normal; color: var(--rose); }
    .cta-p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 36px; }
    .cta-trust { font-size: 13px; color: var(--dim); margin-top: 16px; }
    .cta-trust span { margin: 0 6px; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--text); text-decoration: none; }
    .footer-logo img { width: 24px; height: 24px; border-radius: 50%; }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: var(--mid); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-copy { font-size: 13px; color: var(--dim); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .hero { padding: 64px 20px 56px; }
      .section { padding: 64px 20px; }
      .problem-grid { grid-template-columns: 1fr; }
      .feature-row { grid-template-columns: 1fr; gap: 36px; }
      .feature-row.rev { direction: ltr; }
      .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
      .diag-grid { grid-template-columns: 1fr; max-width: 420px; }
      .cta-section { padding: 64px 20px; }
      footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 560px) {
      nav { padding: 0 14px; }
      .nav-logo .beta-tag { display: none; }
      .nav-links .nav-link { display: none; }
    }
