    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0F1923;
      --navy2: #1A2535;
      --teal: #2BB3A3;
      --teal2: #22E5D0;
      --teal-glow: rgba(43,179,163,.18);
      --slate: #8FA3B1;
      --white: #F4F8FA;
      --off: #E2EDF0;
      --card: rgba(26,37,53,.72);
      --border: rgba(43,179,163,.2);
      --radius: 16px;
      --radius-sm: 10px;
      --sans: 'Instrument Sans', sans-serif;
      --display: 'Bricolage Grotesque', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--navy);
      color: var(--white);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ─── GLOWS ─── */
    .glow-1 {
      position: fixed; width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(43,179,163,.12) 0%, transparent 70%);
      top: -200px; left: -200px; pointer-events: none; z-index: 0;
    }
    .glow-2 {
      position: fixed; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(43,179,163,.08) 0%, transparent 70%);
      bottom: 10%; right: -150px; pointer-events: none; z-index: 0;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6%;
      background: rgba(15,25,35,.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      transition: all .3s;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--display); font-weight: 800; font-size: 1.35rem;
      color: var(--white); text-decoration: none;
    }
    .nav-logo svg { flex-shrink: 0; }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--slate); font-size: .9rem; font-weight: 500;
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta {
      background: var(--teal); color: var(--navy) !important;
      padding: 9px 22px; border-radius: 50px; font-weight: 700 !important;
      font-size: .88rem !important; transition: all .2s !important;
    }
    .nav-cta:hover { background: var(--teal2) !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,179,163,.4); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

    /* ─── HERO ─── */
    #hero {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 6% 80px;
      overflow: hidden;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(43,179,163,.12); border: 1px solid var(--border);
      border-radius: 50px; padding: 6px 18px; margin-bottom: 2rem;
      font-size: .82rem; font-weight: 600; color: var(--teal); letter-spacing: .04em;
      animation: fadeUp .6s ease both;
    }
    .badge-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    h1 {
      font-family: var(--display); font-weight: 800;
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.08; letter-spacing: -.03em;
      max-width: 820px;
      animation: fadeUp .7s .1s ease both;
    }
    h1 .accent {
      background: linear-gradient(120deg, var(--teal), var(--teal2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem; color: var(--white); max-width: 560px;
      margin: 1.4rem auto 2.4rem; font-weight: 300; line-height: 1.7;
      animation: fadeUp .7s .2s ease both;
    }
    .hero-actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--teal), #1E9E90);
      color: var(--navy); font-weight: 700; font-size: 1rem;
      padding: 15px 34px; border-radius: 50px; border: none;
      cursor: pointer; text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px;
      box-shadow: 0 8px 32px rgba(43,179,163,.35);
      transition: all .25s; white-space: nowrap;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(43,179,163,.5); }
    .btn-secondary {
      background: transparent; color: var(--white);
      border: 1px solid rgba(255,255,255,.15); font-size: 1rem;
      padding: 15px 34px; border-radius: 50px; cursor: pointer;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s; white-space: nowrap;
    }
    .btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

    .hero-trust {
      display: flex; align-items: center; gap: 12px;
      margin-top: 2.8rem; font-size: .82rem; color: var(--white);
      animation: fadeUp .7s .4s ease both;
    }
    .resaltarTextoVerde{
      color: var(--teal2);
    }
    .trust-avatars { display: flex; }
    .trust-avatars span {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--navy2));
      border: 2px solid var(--navy); display: flex; align-items: center;
      justify-content: center; font-size: .7rem; font-weight: 700;
      margin-left: -8px; color: var(--white);
    }
    .trust-avatars span:first-child { margin-left: 0; }

    /* Dashboard preview */
    .hero-dashboard {
      position: relative; width: 100%; max-width: 900px;
      margin: 4rem auto 0;
      animation: fadeUp .9s .5s ease both;
    }
    .dashboard-mock {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 40px 120px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
      backdrop-filter: blur(20px);
    }
    .mock-topbar {
      display: flex; align-items: center; gap: 8px;
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      background: rgba(15,25,35,.6);
    }
    .mock-dot { width: 11px; height: 11px; border-radius: 50%; }
    .mock-topbar-title { margin-left: auto; margin-right: auto; font-size: .8rem; color: var(--slate); font-family: var(--display); font-weight: 600; }
    .mock-body { padding: 22px; display: grid; grid-template-columns: repeat(3,1fr) 1.4fr; gap: 14px; }
    .mock-stat {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      border-radius: 12px; padding: 16px;
    }
    .mock-stat-label { font-size: .7rem; color: var(--slate); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
    .mock-stat-value { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
    .mock-stat-value.green { color: var(--teal); }
    .mock-stat-value.red { color: #E05A6D; }
    .mock-stat-delta { font-size: .7rem; color: var(--slate); margin-top: 3px; }
    .mock-chart-col { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 16px; }
    .mock-chart-title { font-size: .7rem; color: var(--slate); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
    .mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
    .mock-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--teal); opacity: .5; transition: opacity .2s; }
    .mock-bar:hover { opacity: 1; }
    .mock-bar.active { opacity: 1; }
    .mock-rows { padding: 0 22px 22px; display: flex; flex-direction: column; gap: 8px; }
    .mock-row {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
      border-radius: 10px; padding: 10px 14px; font-size: .8rem;
    }
    .mock-row-dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; flex-shrink: 0; }
    .mock-row-name { flex: 1; color: var(--off); }
    .mock-row-tag { font-size: .68rem; color: var(--teal2); background: rgba(255,255,255,.06); padding: 2px 8px; border-radius: 20px; margin-right: 12px; }
    .mock-row-amount { font-family: var(--display); font-weight: 600; font-size: .85rem; }

    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

    /* ─── SECTIONS ─── */
    section { position: relative; z-index: 1; }
    .section-inner { max-width: 1100px; margin: 0 auto; padding: 0 6%; }
    .section-badge {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--teal); font-size: .78rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
    }
    .section-badge::before { content:''; width:20px; height:2px; background:var(--teal); }
    h2 {
      font-family: var(--display); font-weight: 800;
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      line-height: 1.12; letter-spacing: -.025em;
    }
    h2 .accent {
      background: linear-gradient(120deg, var(--teal), var(--teal2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub { color: var(--white); font-size: 1.05rem; margin-top: .8rem; max-width: 560px; font-weight: 300; }
    .divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0 6%; }

    /* ─── PROBLEM ─── */
    #problema { padding: 100px 0; }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 3rem; }
    .problem-list { display: flex; flex-direction: column; gap: 16px; }
    .problem-item {
      display: flex; gap: 14px; align-items: flex-start;
      background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius-sm); padding: 18px;
    }
    .problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .problem-text strong { display: block; font-family: var(--display); font-size: .95rem; color: var(--off); }
    .problem-text span { font-size: .85rem; color: var(--slate); }
    .problem-visual {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }
    .pv-title { font-size: .72rem; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
    .pv-excel {
      font-family: 'Courier New', monospace; font-size: .72rem;
      background: rgba(255,255,255,.04); border-radius: 8px; padding: 12px;
      color: var(--slate); line-height: 1.9;
      border-left: 3px solid #E05A6D;
    }
    .vs-arrow {
      display: flex; align-items: center; justify-content: center;
      margin: 18px 0; gap: 10px; font-size: .8rem;
    }
    .vs-arrow span { color: var(--slate); }
    .vs-arrow::before,.vs-arrow::after { content:''; flex:1; height:1px; background:var(--border); }
    .pv-costrack {
      background: rgba(43,179,163,.08); border: 1px solid rgba(43,179,163,.25);
      border-radius: 10px; padding: 14px; font-size: .8rem; color: var(--white);
    }
    .pv-costrack strong { font-family: var(--display); display: block; margin-bottom: 6px; color: var(--teal2); }

    /* ─── FEATURES ─── */
    #funcionalidades { padding: 100px 0; }
    .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem; }
    .feature-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px;
      transition: all .3s; cursor: default;
      position: relative; overflow: hidden;
    }
    .feature-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(43,179,163,.06) 0%, transparent 60%);
      opacity: 0; transition: opacity .3s;
    }
    .feature-card:hover { border-color: rgba(43,179,163,.45); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(43,179,163,.12); border: 1px solid rgba(43,179,163,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 18px;
    }
    .feature-title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .feature-desc { font-size: .88rem; color: var(--teal2); line-height: 1.65; }

    /* ─── HOW IT WORKS ─── */
    #como-funciona { padding: 100px 0; }
    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
    .steps::before {
      content: ''; position: absolute;
      top: 32px; left: 12%; right: 12%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
    }
    .step { text-align: center; padding: 0 16px; }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--navy2); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-size: 1.2rem; font-weight: 800;
      color: var(--teal); margin: 0 auto 18px; position: relative; z-index: 1;
      transition: all .3s;
    }
    .step:hover .step-num { background: rgba(43,179,163,.15); border-color: var(--teal); box-shadow: 0 0 30px rgba(43,179,163,.25); }
    .step-title { font-family: var(--display); font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
    .step-desc { font-size: .82rem; color: var(--teal2); line-height: 1.6; }

    /* ─── PRICING ─── */
    #precios { padding: 100px 0; }
    .pricing-toggle {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin: 2rem 0 3rem; font-size: .9rem; color: var(--slate);
    }
    .toggle-btn {
      position: relative; width: 50px; height: 26px;
      background: var(--navy2); border: 1px solid var(--border);
      border-radius: 50px; cursor: pointer; transition: .3s;
    }
    .toggle-btn.on { background: var(--teal); }
    .toggle-btn::after {
      content: ''; position: absolute; width: 18px; height: 18px;
      background: var(--white); border-radius: 50%; top: 3px; left: 4px; transition: .3s;
    }
    .toggle-btn.on::after { left: 28px; }
    .toggle-label { cursor: pointer; transition: color .2s; }
    .toggle-label.active { color: var(--teal); font-weight: 600; }
    .annual-badge {
      background: rgba(43,179,163,.15); color: var(--teal);
      font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 20px;
      border: 1px solid rgba(43,179,163,.2);
    }
    .plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .plan-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px; position: relative;
      transition: all .3s;
    }
    .plan-card.featured {
      border-color: var(--teal);
      box-shadow: 0 0 0 1px rgba(43,179,163,.4), 0 30px 60px rgba(0,0,0,.3);
      background: rgba(26,37,53,.9);
    }
    .plan-card:hover { transform: translateY(-4px); }
    .plan-popular {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--teal), #1E9E90);
      color: var(--navy); font-size: .72rem; font-weight: 800;
      padding: 5px 18px; border-radius: 20px; white-space: nowrap;
      font-family: var(--display); letter-spacing: .04em;
    }
    .plan-name { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
    .plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
    .plan-price-val { font-family: var(--display); font-weight: 800; font-size: 2.4rem; line-height: 1; }
    .plan-price-period { font-size: .85rem; color: var(--slate); }
    .plan-desc { font-size: .83rem; color: var(--teal2); margin-bottom: 24px; line-height: 1.5; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
    .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; }
    .plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .plan-features li.off::before { content: '–'; color: rgba(143,163,177,.3); }
    .plan-features li.off { color: rgba(143,163,177,.35); }
    .plan-btn {
      width: 100%; padding: 13px; border-radius: 50px; font-size: .92rem;
      font-weight: 700; cursor: pointer; border: none; transition: all .25s;
      font-family: var(--display);
    }
    .plan-btn.primary { background: linear-gradient(135deg, var(--teal), #1E9E90); color: var(--navy); box-shadow: 0 6px 20px rgba(43,179,163,.3); }
    .plan-btn.primary:hover { box-shadow: 0 10px 30px rgba(43,179,163,.5); transform: translateY(-1px); }
    .plan-btn.secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.15); }
    .plan-btn.secondary:hover { border-color: var(--teal); color: var(--teal); }
    .annual-note { text-align: center; color: var(--white); font-size: .82rem; margin-top: 1.5rem; }
    .annual-note strong { color: var(--teal2); }

    /* ─── TESTIMONIALS ─── */
    #testimonios { padding: 100px 0; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem; }
    .testi-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px; position: relative;
      transition: border-color .3s;
    }
    .testi-card:hover { border-color: rgba(43,179,163,.4); }
    .testi-stars { color: var(--teal); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-text { font-size: .9rem; color: var(--off); line-height: 1.7; font-weight: 300; margin-bottom: 20px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--navy2));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--white);
      flex-shrink: 0;
    }
    .testi-name { font-weight: 600; font-size: .88rem; }
    .testi-role { font-size: .78rem; color: var(--slate); }
    .quote-mark {
      position: absolute; top: 20px; right: 22px;
      font-size: 4rem; color: rgba(43,179,163,.08); font-family: Georgia, serif; line-height: 1;
    }

    /* ─── FAQ ─── */
    #faq { padding: 100px 0; }
    .faq-list { max-width: 740px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s;
    }
    .faq-item.open { border-color: rgba(43,179,163,.4); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 20px 24px; background: none; border: none; color: var(--white);
      font-family: var(--sans); font-size: .95rem; font-weight: 600;
      cursor: pointer; text-align: left; gap: 16px;
    }
    .faq-icon {
      width: 24px; height: 24px; border-radius: 50%;
      border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--teal); flex-shrink: 0; transition: transform .3s, background .3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(43,179,163,.15); }
    .faq-a {
      max-height: 0; overflow: hidden;
      padding: 0 24px; color: var(--slate); font-size: .88rem; line-height: 1.7;
      transition: all .35s;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

    /* ─── CTA FINAL ─── */
    #cta { padding: 120px 0; }
    .cta-box {
      background: linear-gradient(135deg, rgba(43,179,163,.12) 0%, rgba(26,37,53,.8) 60%);
      border: 1px solid var(--border); border-radius: 28px;
      padding: 72px 60px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(43,179,163,.15) 0%, transparent 70%);
    }
    .cta-box h2 { max-width: 640px; margin: 0 auto; position: relative; }
    .cta-box p { color: var(--slate); margin: 1.2rem auto 2.5rem; max-width: 460px; font-weight: 300; font-size: 1.05rem; position: relative; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
    .cta-note { margin-top: 1.2rem; font-size: .8rem; color: rgba(143,163,177,.6); position: relative; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 60px 6% 36px;
      position: relative; z-index: 1;
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
    .footer-brand p { color: var(--teal2); font-size: .85rem; margin-top: .8rem; line-height: 1.65; max-width: 280px; }
    .footer-col h4 { font-family: var(--display); font-weight: 700; font-size: .88rem; margin-bottom: 16px; color: var(--off); }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { color: var(--slate); text-decoration: none; font-size: .85rem; transition: color .2s; }
    .footer-col ul a:hover { color: var(--teal); }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
    .footer-bottom p { color: rgba(143,163,177,.5); font-size: .8rem; }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { color: rgba(143,163,177,.4); text-decoration: none; font-size: .78rem; transition: color .2s; }
    .footer-legal a:hover { color: var(--teal); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu {
        position: fixed; top: 98px; left: 0; right: 0;
        background: rgba(15,25,35,.98); backdrop-filter: blur(24px);
        padding: 28px 6%; border-bottom: 1px solid var(--border);
        display: none; flex-direction: column; gap: 22px; z-index: 99;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
      }
      .mobile-menu.open { display: flex; }
      .mobile-menu a { color: var(--slate); text-decoration: none; font-size: 1.05rem; font-weight: 500; /*padding: 4px 0;*/ border-bottom: 1px solid rgba(255,255,255,.05); }
      .mobile-menu a:last-child { border-bottom: none; }
      .features-grid { grid-template-columns: repeat(2,1fr); }
      .plans-grid { grid-template-columns: repeat(2,1fr); }
      .testimonials-grid { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: repeat(2,1fr); gap: 30px; }
      .steps::before { display: none; }
      .mock-body { grid-template-columns: repeat(2,1fr); }
      .problem-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .features-grid { grid-template-columns: 1fr; }
      .plans-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .cta-box { padding: 48px 28px; }
      .mock-body { grid-template-columns: 1fr 1fr; }
      .mock-chart-col { display: none; }
      .compare-table { font-size: .78rem; }
      .compare-table th, .compare-table td { padding: 10px 8px; }
    }
    @media (max-width: 480px) {
      .plans-grid { grid-template-columns: 1fr; }
      .compare-table .col-starter, .compare-table .col-ent { display: none; }
    }

    /* ─── SAVINGS BADGE ─── */
    .plan-savings {
      display: none; align-items: center; gap: 6px;
      background: rgba(43,179,163,.12); border: 1px solid rgba(43,179,163,.25);
      border-radius: 8px; padding: 6px 12px; margin-bottom: 14px;
      font-size: .78rem; color: var(--teal); font-weight: 600;
    }
    .plan-savings.visible { display: flex; }
    .plan-savings-icon { font-size: .9rem; }

    /* ─── COMPARE TABLE ─── */
    .compare-wrap {
      margin-top: 3.5rem; overflow-x: auto;
      border-radius: 18px; border: 1px solid var(--border);
    }
    .compare-table {
      width: 100%; border-collapse: collapse; font-size: .85rem;
    }
    .compare-table thead th {
      padding: 18px 20px; text-align: left;
      background: rgba(26,37,53,.9); font-family: var(--display);
      font-size: .88rem; font-weight: 700; border-bottom: 1px solid var(--border);
    }
    .compare-table thead th:first-child { color: var(--slate); font-weight: 400; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
    .compare-table thead th.featured-col {
      background: rgba(43,179,163,.08);
      border-left: 1px solid rgba(43,179,163,.2);
      border-right: 1px solid rgba(43,179,163,.2);
      color: var(--teal);
    }
    .compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); transition: background .2s; }
    .compare-table tbody tr:last-child { border-bottom: none; }
    .compare-table tbody tr:hover { background: rgba(255,255,255,.02); }
    .compare-table td {
      padding: 14px 20px; color: var(--slate);
      vertical-align: middle;
    }
    .compare-table td:first-child { color: var(--off); font-weight: 500; }
    .compare-table td.featured-col {
      background: rgba(43,179,163,.04);
      border-left: 1px solid rgba(43,179,163,.12);
      border-right: 1px solid rgba(43,179,163,.12);
      color: var(--off);
    }
    .compare-table .section-row td {
      background: rgba(15,25,35,.7); color: var(--teal);
      font-family: var(--display); font-size: .75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em; padding: 10px 20px;
    }
    .compare-table .section-row td.featured-col { background: rgba(43,179,163,.07); }
    .check { color: var(--teal); font-size: 1rem; font-weight: 700; }
    .cross { color: rgba(143,163,177,.3); font-size: .9rem; }
    .tag-highlight { background: rgba(43,179,163,.12); color: var(--teal); padding: 2px 8px; border-radius: 20px; font-size: .72rem; font-weight: 700; margin-left: 6px; }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }