/* cardapio.css — extracted from original HTML */

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #181818;
    --surface: #1e1e1e;
    --border: rgba(255,255,255,0.07);
    --accent: #00D4E8;
    --accent2: #33DDED;
    --gold: #F5C842;
    --text: #f0ede8;
    --muted: #c8c8c8;
    --muted2: #555;
    --green: #34D399;
    --blue: #60A5FA;
    --purple: #A78BFA;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── NOISE TEXTURE OVERLAY ─────────────────────────────── */
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ── UTILS ─────────────────────────────────────────────── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  .tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 100px;
    background: rgba(0,212,232,0.12); border: 1px solid rgba(0,212,232,0.25);
    color: var(--accent2); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .tag-blue { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.2); color: var(--blue); }
  .tag-green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.2); color: var(--green); }
  .tag-gold { background: rgba(245,200,66,0.1); border-color: rgba(245,200,66,0.2); color: var(--gold); }
  .tag-purple { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); color: var(--purple); }

  /* ── NAV ───────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  nav .inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
  }
  .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; font-weight: 800;
    color: var(--text);
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 32px; height: 32px;
    background: transparent;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.87rem; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .btn-nav {
    padding: 9px 20px; border-radius: 8px;
    background: var(--accent); color: #fff !important;
    font-weight: 600; font-size: 0.84rem !important;
    transition: opacity 0.2s !important;
  }
  .btn-nav:hover { opacity: 0.85 !important; }

  /* ── HERO ──────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
  }
  .hero-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 780px; margin: 0 auto;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.78rem; color: var(--muted); margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge span { color: var(--accent); font-weight: 600; }
  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.03em;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-sub {
    margin-top: 22px; font-size: 1.1rem;
    color: var(--muted); font-weight: 300; line-height: 1.7;
    max-width: 560px; margin-left: auto; margin-right: auto;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-ctas {
    margin-top: 36px;
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    padding: 14px 28px; border-radius: 10px;
    background: var(--accent); color: #fff;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,212,232,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,212,232,0.4); }
  .btn-secondary {
    padding: 14px 28px; border-radius: 10px;
    background: var(--surface); color: var(--text);
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; border: 1px solid var(--border); cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { background: var(--bg3); border-color: rgba(255,255,255,0.15); }
  .hero-stats {
    margin-top: 60px;
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    padding: 28px 32px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; max-width: 600px; margin-left: auto; margin-right: auto;
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .stat { text-align: center; }
  .stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem; font-weight: 800; color: var(--text);
  }
  .stat-val span { color: var(--accent); }
  .stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

  /* ── FEATURES SECTION ──────────────────────────────────── */
  section { padding: 96px 0; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.02em; margin-top: 14px;
  }
  .section-header p {
    margin-top: 14px; color: var(--muted);
    max-width: 520px; margin-left: auto; margin-right: auto;
    font-size: 1rem; line-height: 1.7;
  }

  /* ── FEATURE GRID ──────────────────────────────────────── */
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .feat-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
  }
  .feat-row-thirds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    flex: 1;
  }
  .feat-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,232,0.4), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .feat-card:hover { border-color: rgba(0,212,232,0.2); transform: translateY(-3px); }
  .feat-card:hover::before { opacity: 1; }
  .feat-card.large {
    flex: 2;
    display: flex; gap: 28px; align-items: flex-start;
  }
  .feat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    margin-bottom: 16px;
  }
  .feat-card.large .feat-icon { margin-bottom: 0; }
  .feat-icon.orange { background: rgba(0,212,232,0.12); }
  .feat-icon.blue { background: rgba(96,165,250,0.12); }
  .feat-icon.green { background: rgba(52,211,153,0.12); }
  .feat-icon.gold { background: rgba(245,200,66,0.12); }
  .feat-icon.purple { background: rgba(167,139,250,0.12); }
  .feat-icon.pink { background: rgba(244,114,182,0.12); }
  .feat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700; margin-bottom: 8px;
  }
  .feat-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
  .feat-list {
    list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px;
  }
  .feat-list li {
    font-size: 0.82rem; color: var(--muted);
    display: flex; align-items: center; gap: 8px;
  }
  .feat-list li::before {
    content: ''; display: block;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }

  /* ── DIVIDER ───────────────────────────────────────────── */
  .divider {
    height: 1px; background: var(--border); margin: 0;
  }

  /* ── HOW IT WORKS ──────────────────────────────────────── */
  .steps-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; position: relative;
  }
  .steps-row::before {
    content: ''; position: absolute;
    top: 28px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  }
  .step { text-align: center; padding: 24px 16px; position: relative; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 800;
    color: var(--accent); margin: 0 auto 18px;
    position: relative; z-index: 1;
  }
  .step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700; margin-bottom: 8px;
  }
  .step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  /* ── PRICING ───────────────────────────────────────────── */
  #planos { background: var(--bg2); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: start;
  }
  .plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 32px;
    position: relative; overflow: hidden;
    transition: transform 0.3s;
  }
  .plan-card:hover { transform: translateY(-4px); }
  .plan-card.featured {
    background: linear-gradient(135deg, #1a1209 0%, #211408 100%);
    border-color: rgba(245,200,66,0.3);
    box-shadow: 0 0 60px rgba(245,200,66,0.06), inset 0 1px 0 rgba(245,200,66,0.15);
  }
  .plan-card.featured::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent2));
  }
  .plan-badge {
    position: absolute; top: 20px; right: 20px;
    padding: 4px 10px; border-radius: 100px;
    background: var(--gold); color: #000;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .plan-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
  }
  .plan-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem; font-weight: 800; line-height: 1;
    letter-spacing: -0.03em; margin-bottom: 6px;
  }
  .plan-price small {
    font-size: 1rem; font-weight: 400; color: var(--muted); letter-spacing: 0;
  }
  .plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
  .plan-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
  .plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.84rem; color: var(--muted);
  }
  .check {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px; font-size: 0.65rem;
  }
  .check.yes { background: rgba(52,211,153,0.15); color: var(--green); }
  .check.no { background: rgba(255,255,255,0.05); color: var(--muted2); }
  .plan-cta {
    display: block; text-align: center;
    padding: 13px; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; margin-top: 28px;
    transition: all 0.2s;
  }
  .plan-cta.outline {
    border: 1px solid var(--border); color: var(--text);
    background: transparent;
  }
  .plan-cta.outline:hover { background: var(--bg3); border-color: rgba(255,255,255,0.15); }
  .plan-cta.solid {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 20px rgba(0,212,232,0.25);
  }
  .plan-cta.solid:hover { opacity: 0.88; }
  .plan-cta.gold-btn {
    background: linear-gradient(135deg, var(--gold), #E8B920);
    color: #000;
    box-shadow: 0 4px 20px rgba(245,200,66,0.2);
  }
  .plan-cta.gold-btn:hover { opacity: 0.9; }

  /* ── FEATURE HIGHLIGHT ─────────────────────────────────── */
  .highlight-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center;
  }
  .highlight-row.reverse { direction: rtl; }
  .highlight-row.reverse > * { direction: ltr; }
  .highlight-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; line-height: 1.15;
    letter-spacing: -0.02em; margin: 14px 0 18px;
  }
  .highlight-text p {
    color: var(--muted); font-size: 0.95rem; line-height: 1.75;
    margin-bottom: 14px;
  }
  .highlight-features {
    list-style: none; margin-top: 20px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .highlight-features li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.87rem;
  }
  .highlight-features li .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }
  .highlight-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 28px;
    min-height: 320px; position: relative; overflow: hidden;
  }
  .highlight-visual::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0,212,232,0.06), transparent 70%);
  }

  /* Mock UI components inside highlight visuals */
  .mock-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .mock-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 800; }
  .mock-status {
    padding: 4px 10px; border-radius: 100px;
    background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2);
    color: var(--green); font-size: 0.65rem; font-weight: 700;
  }
  .mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
  .mock-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px;
  }
  .mock-card-val {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800;
    color: var(--text);
  }
  .mock-card-label { font-size: 0.65rem; color: var(--muted); margin-top: 3px; }
  .mock-orders { display: flex; flex-direction: column; gap: 8px; }
  .mock-order {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 14px;
  }
  .mock-order-info { display: flex; flex-direction: column; gap: 2px; }
  .mock-order-name { font-size: 0.78rem; font-weight: 600; }
  .mock-order-id { font-size: 0.65rem; color: var(--muted); }
  .mock-order-badge {
    padding: 3px 8px; border-radius: 100px; font-size: 0.6rem; font-weight: 700;
  }
  .badge-new { background: rgba(0,212,232,0.15); color: var(--accent); }
  .badge-prep { background: rgba(245,200,66,0.15); color: var(--gold); }
  .badge-done { background: rgba(52,211,153,0.15); color: var(--green); }

  /* Points mock */
  .mock-points-header {
    display: flex; justify-content: space-between; margin-bottom: 16px; align-items: flex-end;
  }
  .mock-points-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; }
  .mock-points-total { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; }
  .mock-points-list { display: flex; flex-direction: column; gap: 8px; }
  .mock-points-row {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg2); border-radius: 8px; padding: 10px 14px;
  }
  .mock-points-name { font-size: 0.78rem; font-weight: 500; }
  .mock-points-val { font-size: 0.78rem; font-weight: 700; }
  .pts-green { color: var(--green); }
  .pts-orange { color: var(--accent); }

  /* Marketing mock */
  .mock-automations { display: flex; flex-direction: column; gap: 10px; }
  .mock-auto {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px;
  }
  .mock-auto-left { display: flex; align-items: center; gap: 12px; }
  .mock-auto-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
  }
  .mock-auto-title { font-size: 0.8rem; font-weight: 600; }
  .mock-auto-sub { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
  .toggle {
    width: 34px; height: 18px; border-radius: 100px;
    display: flex; align-items: center; padding: 2px;
    cursor: pointer;
  }
  .toggle.on { background: var(--accent); justify-content: flex-end; }
  .toggle.off { background: var(--surface); justify-content: flex-start; }
  .toggle-dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; }

  /* ── TESTIMONIALS ──────────────────────────────────────── */
  #depoimentos { background: var(--bg2); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .testi-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
  }
  .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
  .testi-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .testi-name { font-size: 0.85rem; font-weight: 600; }
  .testi-role { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

  /* ── FAQ ───────────────────────────────────────────────── */
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border); padding: 20px 0;
    cursor: pointer;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; font-weight: 600;
  }
  .faq-icon { color: var(--muted); transition: transform 0.3s; font-size: 1.2rem; }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    font-size: 0.87rem; color: var(--muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

  /* ── CTA FINAL ─────────────────────────────────────────── */
  .cta-final {
    text-align: center; padding: 96px 0;
    position: relative; overflow: hidden;
    background: var(--bg);
  }
  .cta-final::before {
    content: ''; position: absolute;
    bottom: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-final h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; margin: 14px 0 20px;
    position: relative; z-index: 1;
  }
  .cta-final p {
    color: var(--muted); font-size: 1rem; margin-bottom: 36px;
    position: relative; z-index: 1;
  }
  .cta-final .btns {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .guarantee {
    margin-top: 20px; font-size: 0.78rem; color: var(--muted2);
    position: relative; z-index: 1;
  }

  /* ── FOOTER ────────────────────────────────────────────── */
  footer {
    background: var(--bg2); border-top: 1px solid var(--border);
    padding: 48px 0 32px;
  }
  .footer-inner {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px; margin-bottom: 40px;
  }
  .footer-brand p { font-size: 0.82rem; color: var(--muted); margin-top: 12px; line-height: 1.7; }
  .footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--text); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--border);
    font-size: 0.78rem; color: var(--muted2);
  }

  /* ── COMPARE TABLE ─────────────────────────────────────── */
  .compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
  .compare-table th {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 700;
    padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border);
    color: var(--muted);
  }
  .compare-table th:first-child { text-align: left; }
  .compare-table th.highlight-col { color: var(--gold); }
  .compare-table td {
    padding: 12px 20px; font-size: 0.84rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: center;
  }
  .compare-table td:first-child { text-align: left; color: var(--muted); }
  .compare-table td.highlight-col { background: rgba(245,200,66,0.03); }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table .ck { color: var(--green); font-size: 1rem; }
  .compare-table .xx { color: var(--muted2); font-size: 0.8rem; }
  .compare-table .tilde { color: var(--gold); font-size: 0.8rem; }

  /* ── ANIMATIONS ────────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ────────────────────────────────────────── */
  @media (max-width: 900px) {
    .feat-row { flex-direction: column; }
    .feat-card.large { flex: 1; flex-direction: column; }
    .pricing-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .steps-row::before { display: none; }
    .highlight-row, .highlight-row.reverse { grid-template-columns: 1fr; direction: ltr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .feat-row { flex-direction: column; }
    .feat-card.large { flex: 1; flex-direction: column; }
    .hero-stats { gap: 24px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }