/* ============================================
   Rezonance Networks — Rez v2 Landing Page
   Conversion-focused, product-led structure.
   Brand language matched to website/v1/css/style.css:
     - bg #0a0e14 / cards #0d1117 / chrome #161b22
     - teal #00d4aa (hover #00f0c0)
     - borders #1e2a3a / #2a3a4a
     - fonts Inter (sans) + JetBrains Mono (mono)
   This is a NEW, self-contained stylesheet. It does not
   import or modify the shared website/css/style.css.
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e14;
  --bg-alt: #0c1018;
  --card: #0d1117;
  --chrome: #161b22;
  --inset: #11151d;
  --border: #1e2a3a;
  --border-light: #2a3a4a;

  --teal: #00d4aa;
  --teal-bright: #00f0c0;
  --teal-dim: #0a9e80;
  --teal-soft: rgba(0, 212, 170, 0.08);
  --teal-line: rgba(0, 212, 170, 0.30);

  --amber: #fbbf24;
  --red: #ff4757;
  --blue: #00bfff;
  --purple: #a78bfa;
  --green: #34d399;

  --text: #e0e6ed;
  --text-bright: #ffffff;
  --text-c: #c0c8d4;
  --muted: #8899aa;
  --dim: #667788;
  --dimmer: #556677;
  --faint: #445566;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', monospace;
}

html { scroll-behavior: smooth; font-size: 17px; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; color: var(--text-bright); }
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; border-top: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }

.eyebrow {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--teal); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.18; color: var(--text-bright);
  margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(1rem, 2vw, 1.18rem); color: var(--muted); line-height: 1.65;
}
.section-sub em { color: var(--teal); font-style: normal; font-weight: 600; }
.accent { color: var(--teal); }

/* ---------- Top Nav ---------- */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 14, 20, 0.85); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.top-bar-brand {
  font-size: 1.2rem; font-weight: 800; color: var(--teal); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.rez-logo { font-family: var(--mono); font-size: 0.95rem; white-space: nowrap; flex-shrink: 0; }
.rez-wave { color: var(--teal); opacity: 0.45; }
.rez-core { color: var(--teal); font-size: 0.65rem; vertical-align: middle; position: relative; top: -1px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-size: 0.86rem; color: var(--muted); font-weight: 500;
  letter-spacing: 0.01em; transition: color 0.2s ease; white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.nav-cta {
  color: var(--teal); font-weight: 600;
  border: 1px solid var(--teal-line); border-radius: 6px; padding: 6px 14px;
}
.nav-links a.nav-cta:hover { background: var(--teal-soft); border-color: var(--teal); }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 1rem; font-weight: 600;
  font-family: var(--sans); text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s ease; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: var(--teal-bright); box-shadow: 0 0 28px rgba(0, 212, 170, 0.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-outline:hover { background: var(--teal-soft); border-color: var(--teal-bright); color: var(--teal-bright); }
.btn-ghost { background: var(--card); color: var(--text-c); border: 1px solid var(--border-light); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 16px 36px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: 132px 0 72px;
  background: radial-gradient(ellipse at 50% 28%, rgba(0, 212, 170, 0.07) 0%, transparent 58%), var(--bg);
  text-align: center;
}
.hero-inner { max-width: 880px; margin: 0 auto; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--teal); background: var(--teal-soft);
  border: 1px solid var(--teal-line); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 26px;
}
.hero-pill .proof-dot { margin-right: 0; }
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.1; color: var(--text-bright);
  margin-bottom: 20px; letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted);
  max-width: 720px; margin: 0 auto 32px; line-height: 1.6;
}
.hero-sub strong { color: var(--text-c); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-micro {
  font-size: 0.86rem; color: var(--dim); max-width: 560px; margin: 0 auto;
  line-height: 1.55;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-strip-inner {
  max-width: 1140px; margin: 0 auto; display: flex; align-items: center;
  justify-content: center; gap: 14px 22px; flex-wrap: wrap;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--muted); white-space: nowrap;
}
.trust-chip svg { flex-shrink: 0; }
.trust-chip strong { color: var(--text-c); font-weight: 600; }
.trust-sep { width: 1px; height: 18px; background: var(--border-light); }

/* ---------- Problem ---------- */
.problem-body {
  max-width: 820px; margin: 0 auto; font-size: 1.1rem; color: var(--muted);
  line-height: 1.75; text-align: center;
}
.problem-body strong { color: var(--text-c); }
.problem-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px;
}
.problem-tag {
  font-family: var(--mono); font-size: 0.82rem; color: var(--dim);
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  padding: 7px 14px;
}

/* ---------- Steps (how it works) ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step;
}
.step-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 24px; position: relative; transition: border-color 0.25s, transform 0.2s;
}
.step-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.step-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--teal-soft); border: 1px solid var(--teal-line);
  color: var(--teal); font-family: var(--mono); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.12rem; color: var(--text-bright); margin-bottom: 8px; }
.step-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.step-card .step-atoms {
  margin-top: 12px; font-family: var(--mono); font-size: 0.78rem; color: var(--teal);
}

/* ---------- Onboarding ladder ---------- */
.ladder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ladder-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.2s;
}
.ladder-card:hover { border-color: var(--teal-line); transform: translateY(-3px); }
.ladder-card.featured { border-color: var(--teal); box-shadow: 0 0 36px rgba(0, 212, 170, 0.06); }
.ladder-rung {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-soft); border-radius: 20px;
  padding: 4px 12px; margin-bottom: 16px;
}
.ladder-card h3 { font-size: 1.18rem; color: var(--text-bright); margin-bottom: 10px; }
.ladder-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; flex: 1; }
.ladder-meta {
  margin: 16px 0 18px; font-size: 0.82rem; color: var(--dim);
  display: flex; align-items: center; gap: 8px;
}
.ladder-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.ladder-card .btn { margin-top: auto; }

/* ---------- "Aha" demo panel ---------- */
.aha {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; max-width: 1000px; margin: 0 auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 212, 170, 0.04);
}
.aha-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: var(--chrome); border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); }
.chrome-dots span:first-child { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #ffbd2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }
.chrome-title { font-size: 0.86rem; color: var(--dim); font-weight: 500; font-family: var(--mono); }
.aha-tag {
  margin-left: auto; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber); background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25); border-radius: 4px; padding: 3px 9px;
}
.aha-grid { display: grid; grid-template-columns: 1.1fr 1fr; }
.aha-left { padding: 24px; border-right: 1px solid var(--border); }
.aha-right { padding: 24px; }

.aha-label {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--dimmer); font-weight: 700; margin-bottom: 8px;
}
.aha-symptom {
  font-size: 1.05rem; color: var(--text); line-height: 1.5; margin-bottom: 22px;
  padding-left: 12px; border-left: 2px solid var(--red);
}

.aha-path { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 22px; }
.path-node {
  font-family: var(--mono); font-size: 0.78rem; color: var(--text-c);
  background: var(--inset); border: 1px solid var(--border-light); border-radius: 5px;
  padding: 5px 9px; white-space: nowrap;
}
.path-arrow { color: var(--dimmer); font-size: 0.85rem; }

.aha-rootcause {
  background: rgba(0, 212, 170, 0.06); border: 1px solid var(--teal-line);
  border-radius: 10px; padding: 16px; margin-bottom: 18px;
}
.aha-rootcause .aha-label { color: var(--teal); }
.aha-atom {
  font-family: var(--mono); font-size: 1.02rem; font-weight: 700; color: var(--teal);
  margin: 4px 0 2px; word-break: break-word;
}
.aha-conf { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.aha-conf strong { color: var(--teal); }

.aha-why { list-style: none; }
.aha-why li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
  font-size: 0.92rem; color: var(--muted); line-height: 1.5;
}
.aha-why li::before {
  content: ''; position: absolute; left: 8px; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.aha-why li:not(:last-child)::after {
  content: ''; position: absolute; left: 10px; top: 16px; bottom: -6px;
  width: 1px; background: var(--teal-line);
}
.aha-why li strong { color: var(--text-c); }

.aha-evidence { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.ev-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.86rem; color: var(--muted); line-height: 1.45;
}
.ev-icon { flex-shrink: 0; margin-top: 1px; }
.ev-row code {
  font-family: var(--mono); font-size: 0.8rem; color: var(--text-c);
  background: var(--inset); padding: 1px 5px; border-radius: 3px;
}
.ev-row.hit code { color: var(--amber); }

.aha-rejected { border-top: 1px solid var(--border); padding-top: 16px; }
.rejected-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.rejected-tag {
  font-size: 0.8rem; color: var(--dim);
  background: var(--inset); border: 1px solid var(--border); border-radius: 5px;
  padding: 4px 10px;
}
.rejected-tag s { color: var(--dimmer); text-decoration-color: var(--red); }

/* ---------- For MSPs ---------- */
.msp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: center; }
.msp-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; line-height: 1.2; }
.msp-copy > p { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.msp-bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.msp-bullets li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.98rem; color: var(--text-c); line-height: 1.5;
}
.msp-bullets .chk { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.msp-vendors {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
}
.msp-vendors .aha-label { margin-bottom: 16px; }
.vendor-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vendor-item {
  display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--text-c);
  padding: 9px 12px; background: var(--inset); border: 1px solid var(--border); border-radius: 8px;
}
.vendor-item .vd { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ---------- What Rez is NOT ---------- */
.not-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 28px; }
.not-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 20px; font-size: 0.96rem; color: var(--text-c); line-height: 1.45;
}
.not-x {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 71, 87, 0.12); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 1px;
}
.not-closer {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: 1.08rem; color: var(--text); line-height: 1.65;
  background: rgba(0, 212, 170, 0.04); border: 1px solid var(--teal-line);
  border-radius: 12px; padding: 22px 28px;
}
.not-closer strong { color: var(--teal); }

/* ---------- Security cards ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 28px; }
.sec-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 22px 18px; text-align: center; transition: border-color 0.25s;
}
.sec-card:hover { border-color: var(--teal-line); }
.sec-ico {
  width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 12px;
  background: var(--teal-soft); display: flex; align-items: center; justify-content: center;
}
.sec-card h4 { font-size: 0.95rem; color: var(--text-bright); font-weight: 600; line-height: 1.35; }
.sec-foot { text-align: center; }
.sec-foot .compliance-note {
  font-size: 0.88rem; color: var(--dim); max-width: 720px; margin: 0 auto 22px; line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--card); }
.pricing-table thead th {
  text-align: left; padding: 16px 20px; font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--dimmer);
  border-bottom: 1px solid var(--border); background: var(--chrome);
}
.pricing-table tbody td { padding: 18px 20px; border-bottom: 1px solid var(--border); vertical-align: top; font-size: 0.92rem; color: var(--muted); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr.row-featured { background: rgba(0, 212, 170, 0.04); }
.plan-name { font-weight: 700; color: var(--text-bright); font-size: 1rem; }
.plan-name .plan-flag {
  display: inline-block; margin-left: 8px; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal);
  background: var(--teal-soft); border-radius: 4px; padding: 2px 7px; vertical-align: middle;
}
.plan-price { font-family: var(--mono); font-weight: 700; color: var(--text-c); white-space: nowrap; }
.plan-price.free { color: var(--teal); }
.pricing-note {
  text-align: center; font-size: 0.9rem; color: var(--dim); margin-top: 18px; font-style: italic;
}

/* ---------- Comparison ---------- */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--card); }
.compare-table thead th {
  text-align: left; padding: 16px 20px; font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--dimmer);
  border-bottom: 1px solid var(--border); background: var(--chrome);
}
.compare-table tbody td { padding: 18px 20px; border-bottom: 1px solid var(--border); font-size: 0.95rem; line-height: 1.5; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-q { color: var(--text-c); font-weight: 500; }
.compare-fit { color: var(--muted); }
.compare-table tbody tr.row-rez { background: rgba(0, 212, 170, 0.05); }
.compare-table tbody tr.row-rez .compare-q { color: var(--text-bright); font-weight: 600; }
.compare-table tbody tr.row-rez .compare-fit { color: var(--teal); font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 212, 170, 0.09) 0%, transparent 55%), var(--bg);
}
.final-cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.final-cta p { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto 32px; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 40px; }
.footer-grid {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 28px;
}
.footer-identity .footer-brand-line {
  font-size: 1.05rem; font-weight: 800; color: var(--teal); display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.footer-identity p { font-size: 0.86rem; color: var(--dim); line-height: 1.5; }
.footer-identity .lead-line { color: var(--muted); margin-top: 8px; max-width: 420px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dimmer);
  font-weight: 700; margin-bottom: 12px;
}
.footer-col a { display: block; font-size: 0.88rem; color: var(--muted); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom-bar {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--faint); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--dimmer); }
.footer-legal a:hover { color: var(--teal); }

/* ---------- Shared bits ---------- */
.proof-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); margin-right: 6px; vertical-align: middle;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 2px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 9px rgba(0, 212, 170, 0.7); }
}
.ico-teal { color: var(--teal); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .proof-dot { animation: none; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 920px) {
  .steps-grid { grid-template-columns: 1fr; }
  .ladder-grid { grid-template-columns: 1fr; }
  .aha-grid { grid-template-columns: 1fr; }
  .aha-left { border-right: none; border-bottom: 1px solid var(--border); }
  .msp-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  html { font-size: 16px; }
  .nav-links {
    position: fixed; top: 53px; left: 0; right: 0;
    background: rgba(10, 14, 20, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0;
  }
  .nav-links.open { max-height: 420px; padding: 8px 0; }
  .nav-links a { padding: 12px 24px; font-size: 0.95rem; border-radius: 0; }
  .nav-links a.nav-cta { border: none; margin: 6px 24px; border-radius: 6px; text-align: center; border: 1px solid var(--teal-line); }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 6px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: 0.2s; }
  .hero { padding: 112px 0 56px; }
  .trust-strip-inner .trust-sep { display: none; }
  .footer-grid { flex-direction: column; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 480px) {
  .sec-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .final-ctas .btn { width: 100%; }
  .btn { padding: 13px 22px; }
  .pricing-table, .compare-table { font-size: 0.85rem; }
}
