/* ============================================================
   FastSLA Marketing Site — Shared Styles
   ============================================================ */

/* 1. Tokens */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f8fafc;
  --bg-dark:      #0b1120;
  --bg-dark-2:    #111827;
  --ink:          #0f172a;
  --ink-2:        #334155;
  --ink-muted:    #64748b;
  --ink-light:    #94a3b8;
  --brand:        #2563eb;
  --brand-dark:   #1d4ed8;
  --brand-glow:   rgba(37,99,235,.20);
  --brand-light:  #eff6ff;
  --accent:       #f59e0b;
  --accent-dark:  #d97706;
  --green:        #059669;
  --green-bg:     rgba(5,150,105,.12);
  --red:          #dc2626;
  --red-bg:       rgba(220,38,38,.12);
  --orange:       #ea580c;
  --orange-bg:    rgba(234,88,12,.12);
  --blue-bg:      rgba(37,99,235,.10);
  --border:       rgba(15,23,42,.09);
  --border-dark:  rgba(255,255,255,.07);
  --r:            10px;
  --r-lg:         18px;
  --r-xl:         28px;
  --max:          1160px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow:       0 4px 20px rgba(0,0,0,.09), 0 1px 3px rgba(0,0,0,.06);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16), 0 4px 12px rgba(0,0,0,.08);
  --shadow-glow:  0 0 0 1px rgba(37,99,235,.3), 0 20px 60px rgba(37,99,235,.2);
  --font:         -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: var(--font); }

/* 3. Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* 4. Nav */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,17,32,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 64px; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: #fff;
  letter-spacing: -.02em; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #1e40af 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .78rem; font-weight: 900;
  box-shadow: 0 2px 8px rgba(37,99,235,.4);
}
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 500;
  padding: 7px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: #fff; margin-left: auto;
}
.nav-mobile {
  display: none; background: var(--bg-dark-2); border-top: 1px solid var(--border-dark);
  padding: 12px 20px 20px; flex-direction: column; gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.75); font-size: .95rem;
  padding: 11px 4px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-mobile .btn { margin-top: 12px; text-align: center; }

/* 5. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r); font-size: .9rem;
  font-weight: 600; letter-spacing: -.01em; cursor: pointer;
  border: none; transition: all .18s; line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 4px rgba(37,99,235,.3), inset 0 1px 0 rgba(255,255,255,.15); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 14px rgba(37,99,235,.45); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: .95rem; border-radius: 12px; }
.btn-xl { padding: 16px 32px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: 8px; }
.btn-ghost { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.12); }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-outline { background: transparent; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.22); }
.btn-outline:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-dark { background: transparent; color: var(--brand); border: 1.5px solid rgba(37,99,235,.4); }
.btn-outline-dark:hover { background: var(--brand-light); border-color: var(--brand); }
.btn-full { width: 100%; }

/* 6. Hero */
.hero {
  background: var(--bg-dark); padding: 96px 0 0; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(245,158,11,.07) 0%, transparent 55%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3);
  color: #93c5fd; font-size: .78rem; font-weight: 700; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 28px; letter-spacing: .06em; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #3b82f6;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}
.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -.04em; color: #f1f5f9;
  max-width: 760px; margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: #60a5fa; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.58);
  max-width: 560px; margin-bottom: 40px; line-height: 1.75;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: .8rem; color: rgba(255,255,255,.32); margin-bottom: 72px; }

/* 7. Dashboard Mockup */
.hero-mockup-wrap { display: flex; justify-content: center; position: relative; }
.dash-mockup {
  width: 100%; max-width: 900px; background: #111827;
  border-radius: 16px 16px 0 0; border: 1px solid rgba(255,255,255,.08); border-bottom: none;
  box-shadow: 0 -4px 40px rgba(37,99,235,.14), 0 40px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden; font-size: .8rem;
}
.dash-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; background: #0f172a; border-bottom: 1px solid rgba(255,255,255,.06);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #ef4444; }
.chrome-dots span:nth-child(2) { background: #f59e0b; }
.chrome-dots span:nth-child(3) { background: #10b981; }
.chrome-url {
  flex: 1; background: rgba(255,255,255,.05); border-radius: 6px;
  padding: 4px 12px; color: rgba(255,255,255,.35); font-size: .72rem;
  text-align: center; max-width: 300px; margin: 0 auto; letter-spacing: .02em;
}
.dash-app { display: flex; min-height: 320px; }
.dash-sidebar {
  width: 176px; background: #0f172a; border-right: 1px solid rgba(255,255,255,.06);
  padding: 18px 12px; flex-shrink: 0;
}
.dash-sidebar-logo {
  display: flex; align-items: center; gap: 8px; color: #fff;
  font-weight: 800; font-size: .82rem; margin-bottom: 22px; padding: 0 6px;
}
.dash-sidebar-logo span {
  width: 25px; height: 25px; border-radius: 7px; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 900; flex-shrink: 0;
}
.dash-nav-item {
  padding: 8px 10px; border-radius: 7px; color: rgba(255,255,255,.4);
  font-size: .77rem; font-weight: 500; margin-bottom: 2px;
  display: flex; align-items: center; gap: 8px; cursor: default;
}
.dash-nav-item.active { background: rgba(37,99,235,.2); color: #93c5fd; }
.dash-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .7; flex-shrink: 0; }
.dash-main { flex: 1; padding: 18px; overflow: hidden; min-width: 0; }
.dash-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
}
.dash-topbar h3 { color: #e2e8f0; font-size: .88rem; font-weight: 700; }
.dash-topbar p { color: rgba(255,255,255,.38); font-size: .71rem; margin-top: 2px; }
.dash-pills { display: flex; gap: 6px; }
.dash-pill {
  padding: 3px 9px; border-radius: 100px; font-size: .69rem; font-weight: 600;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.07); cursor: default;
}
.dash-pill.active { background: rgba(37,99,235,.2); color: #93c5fd; border-color: rgba(37,99,235,.3); }
.issue-row {
  display: grid; grid-template-columns: 78px 1fr 36px 76px 116px;
  gap: 8px; align-items: center; padding: 9px 10px;
  border-radius: 8px; margin-bottom: 4px; border: 1px solid transparent; transition: background .15s;
}
.issue-row.breach { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.12); }
.issue-row.risk { background: rgba(234,88,12,.06); border-color: rgba(234,88,12,.1); }
.ir-key { font-size: .74rem; font-weight: 700; color: #60a5fa; font-variant-numeric: tabular-nums; }
.ir-title { font-size: .76rem; color: rgba(255,255,255,.68); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ir-pri { font-size: .63rem; font-weight: 800; padding: 2px 5px; border-radius: 5px; text-align: center; }
.ir-pri.p1 { background: rgba(220,38,38,.2); color: #fca5a5; }
.ir-pri.p2 { background: rgba(234,88,12,.2); color: #fdba74; }
.ir-pri.p3 { background: rgba(245,158,11,.18); color: #fcd34d; }
.ir-status { font-size: .7rem; color: rgba(255,255,255,.38); }
.sla-info { text-align: right; }
.sla-time { font-size: .72rem; font-weight: 700; font-variant-numeric: tabular-nums; display: block; }
.sla-badge {
  font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  letter-spacing: .05em; display: inline-block; margin-top: 2px;
}
.sla-badge.breached { background: var(--red-bg); color: #fca5a5; }
.sla-badge.at-risk  { background: var(--orange-bg); color: #fdba74; }
.sla-badge.met      { background: var(--green-bg); color: #6ee7b7; }
.sla-badge.running  { background: var(--blue-bg); color: #93c5fd; }
.sla-time.red    { color: #f87171; }
.sla-time.orange { color: #fb923c; }
.sla-time.green  { color: #34d399; }
.sla-time.blue   { color: #7dd3fc; }
.breach-pulse { animation: bpulse 2s ease-in-out infinite; }
@keyframes bpulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* 8. Trust bar */
.trust-bar {
  padding: 36px 0; background: var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center; font-size: .77rem; font-weight: 700;
  color: var(--ink-muted); letter-spacing: .09em; text-transform: uppercase; margin-bottom: 20px;
}
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.trust-logo { font-size: .88rem; font-weight: 700; color: var(--ink-light); letter-spacing: -.01em; display: flex; align-items: center; gap: 9px; }
.trust-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; color: #fff; flex-shrink: 0;
}

/* 9. Section headings */
.section-label { font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--ink); margin-bottom: 18px; }
.section-sub { font-size: 1.02rem; color: var(--ink-muted); max-width: 560px; line-height: 1.7; }
.section-head { max-width: 620px; margin-bottom: 60px; }
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* 10. Feature/card grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  padding: 32px; border-radius: var(--r-lg); background: var(--bg-alt);
  border: 1px solid var(--border); transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; background: var(--brand-light);
}
.feat-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feat-desc { font-size: .88rem; color: var(--ink-muted); line-height: 1.65; }

/* 11. Steps (how it works) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(16.67% + 14px); right: calc(16.67% + 14px);
  height: 2px; background: linear-gradient(90deg, var(--brand) 0%, var(--border) 100%);
  pointer-events: none;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; margin: 0 auto 18px;
  box-shadow: 0 0 0 4px rgba(37,99,235,.15), 0 4px 16px rgba(37,99,235,.3);
  position: relative; z-index: 1;
}
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: .88rem; color: var(--ink-muted); line-height: 1.65; }
.step-code {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 6px; padding: 2px 9px; font-size: .76rem; font-family: monospace;
  color: var(--brand); margin-top: 8px;
}

/* 12. Dark contrast section */
.dark-section {
  background: var(--bg-dark); overflow: hidden; position: relative;
}
.dark-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 70% at 75% 50%, rgba(37,99,235,.1), transparent 65%);
}
.dark-inner {
  max-width: var(--max); margin: 0 auto; padding: 96px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.dark-label { font-size: .77rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #60a5fa; margin-bottom: 12px; }
.dark-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: #f1f5f9; margin-bottom: 18px; }
.dark-sub { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.72; margin-bottom: 32px; }
.dark-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.dark-check { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.78); font-size: .9rem; }
.check-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(5,150,105,.2); border: 1px solid rgba(5,150,105,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: #34d399; font-size: .68rem; font-weight: 900;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 24px;
}
.stat-val { font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: -.04em; margin-bottom: 4px; line-height: 1; }
.stat-val.brand  { color: #60a5fa; }
.stat-val.green  { color: #34d399; }
.stat-val.accent { color: #fbbf24; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.45; }

/* 13. Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 580px; }
.compare-table th {
  padding: 16px 20px; text-align: left; font-weight: 700; font-size: .8rem;
  background: var(--bg-alt); border-bottom: 2px solid var(--border); white-space: nowrap;
}
.compare-table th.col-fast {
  background: var(--brand); color: #fff; text-align: center;
}
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--ink-2); vertical-align: middle; }
.compare-table td.col-fast { background: var(--brand-light); font-weight: 600; color: var(--brand-dark); text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th:first-child, .compare-table td:first-child { width: 40%; font-weight: 600; color: var(--ink); }
.c-yes { color: var(--green); font-weight: 700; }
.c-no  { color: var(--ink-light); }
.c-partial { color: var(--orange); font-weight: 600; }

/* 14. Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { padding: 32px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); }
.testi-stars { color: var(--accent); font-size: .82rem; margin-bottom: 14px; letter-spacing: 3px; }
.testi-quote { font-size: .94rem; line-height: 1.72; color: var(--ink-2); margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .88rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.testi-role { font-size: .78rem; color: var(--ink-muted); }

/* 15. CTA section */
.cta-section {
  background: linear-gradient(135deg, #070d1c 0%, #0d1f5e 50%, #070d1c 100%);
  text-align: center; padding: 96px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(37,99,235,.22), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; padding: 0 28px; }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #f1f5f9; letter-spacing: -.03em; max-width: 680px; margin: 0 auto 18px; line-height: 1.1; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { font-size: .78rem; color: rgba(255,255,255,.28); margin-top: 20px; }

/* 16. Footer */
.site-footer { background: #070d1c; border-top: 1px solid rgba(255,255,255,.06); padding: 56px 0 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 240px; margin-top: 14px; }
.footer-col h4 { color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.38); font-size: .84rem; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.22); }
.footer-links-sm { display: flex; gap: 20px; }
.footer-links-sm a { font-size: .78rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-links-sm a:hover { color: rgba(255,255,255,.6); }

/* 17. Page hero (inner pages) */
.page-hero { background: var(--bg-dark); padding: 76px 0; position: relative; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 65% at 50% 0%, rgba(37,99,235,.12), transparent 70%);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.page-hero-label { font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #60a5fa; margin-bottom: 14px; }
.page-hero-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.04em; color: #f1f5f9; max-width: 680px; margin-bottom: 18px; line-height: 1.1; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.52); max-width: 540px; line-height: 1.72; }

/* 18. Pricing */
.billing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.billing-label { font-size: .9rem; font-weight: 600; color: var(--ink-muted); cursor: pointer; }
.billing-label.active { color: var(--ink); }
.toggle-btn {
  width: 52px; height: 28px; background: var(--brand); border-radius: 100px;
  cursor: pointer; position: relative; border: none; transition: background .2s;
}
.toggle-thumb {
  width: 22px; height: 22px; background: #fff; border-radius: 50%;
  position: absolute; top: 3px; left: 3px;
  transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-btn.annual .toggle-thumb { transform: translateX(24px); }
.save-badge { background: var(--green); color: #fff; font-size: .71rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { padding: 36px; border-radius: var(--r-xl); background: var(--bg-alt); border: 1px solid var(--border); position: relative; }
.plan-card.featured { background: var(--bg-dark); border-color: var(--brand); box-shadow: var(--shadow-glow); }
.plan-badge { display: inline-block; font-size: .71rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; margin-bottom: 20px; }
.plan-badge.start { background: var(--bg-alt); color: var(--ink-muted); border: 1px solid var(--border); }
.plan-badge.popular { background: var(--brand); color: #fff; }
.plan-badge.enterprise { background: rgba(245,158,11,.14); color: var(--accent-dark); border: 1px solid rgba(245,158,11,.3); }
.plan-amount { font-size: 2.8rem; font-weight: 900; letter-spacing: -.05em; color: var(--ink); line-height: 1; }
.plan-card.featured .plan-amount { color: #f1f5f9; }
.plan-per { font-size: .84rem; color: var(--ink-muted); font-weight: 500; margin-bottom: 4px; }
.plan-card.featured .plan-per { color: rgba(255,255,255,.45); }
.plan-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.plan-card.featured .plan-name { color: #f1f5f9; }
.plan-desc { font-size: .84rem; color: var(--ink-muted); margin-bottom: 24px; line-height: 1.6; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.47); }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.07); }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feat { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--ink-2); }
.plan-card.featured .plan-feat { color: rgba(255,255,255,.72); }
.plan-feat-icon { color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.plan-card.featured .plan-feat-icon { color: #34d399; }

/* 19. Feature compare table (pricing page) */
.feat-compare { width: 100%; border-collapse: collapse; font-size: .88rem; }
.feat-compare th { padding: 14px 20px; text-align: center; font-weight: 700; font-size: .8rem; background: var(--bg-alt); border-bottom: 2px solid var(--border); }
.feat-compare th:first-child { text-align: left; }
.feat-compare th.fc-highlight { background: var(--brand); color: #fff; }
.feat-compare td { padding: 12px 20px; border-bottom: 1px solid var(--border); text-align: center; color: var(--ink-2); }
.feat-compare td:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.feat-compare td.fc-highlight { background: var(--brand-light); color: var(--brand-dark); font-weight: 600; }
.feat-compare tr:last-child td { border-bottom: none; }
.fc-yes { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.fc-no  { color: var(--border); font-size: 1.1rem; }
.feat-compare-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); }

/* 20. FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: .95rem; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-chevron { flex-shrink: 0; transition: transform .28s; color: var(--ink-muted); font-size: 1.1rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: .9rem; color: var(--ink-muted); line-height: 1.72; }
.faq-item.open .faq-a { display: block; }

/* 21. Signup page */
.signup-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg-dark); position: relative; }
.signup-page::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 25% 20%, rgba(37,99,235,.14), transparent 60%),
              radial-gradient(ellipse 40% 35% at 85% 80%, rgba(245,158,11,.05), transparent 55%);
}
.signup-nav { padding: 20px 28px; position: relative; z-index: 1; }
.signup-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 28px 80px; position: relative; z-index: 1; gap: 80px; flex-wrap: wrap; }
.signup-aside { max-width: 380px; flex: 1; min-width: 280px; }
.signup-aside-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #f1f5f9; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 16px; }
.signup-aside-sub { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 32px; }
.signup-perks { display: flex; flex-direction: column; gap: 12px; }
.signup-perk { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; color: rgba(255,255,255,.65); }
.perk-icon { color: #34d399; font-weight: 900; flex-shrink: 0; margin-top: 1px; font-size: 1rem; }
.signup-box {
  background: #111827; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl);
  padding: 44px; width: 100%; max-width: 440px; box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.signup-box-title { font-size: 1.5rem; font-weight: 800; color: #f1f5f9; letter-spacing: -.03em; margin-bottom: 6px; }
.signup-box-sub { font-size: .88rem; color: rgba(255,255,255,.45); margin-bottom: 28px; line-height: 1.6; }
.form-field { margin-bottom: 16px; }
.form-label { display: block; font-size: .81rem; font-weight: 600; color: rgba(255,255,255,.68); margin-bottom: 7px; }
.form-input, .form-select {
  width: 100%; padding: 11px 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r);
  color: #f1f5f9; font-size: .9rem; font-family: var(--font);
  transition: border-color .2s, background .2s; outline: none; -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,.22); }
.form-input:focus, .form-select:focus { border-color: var(--brand); background: rgba(37,99,235,.08); }
.form-select { appearance: none; cursor: pointer; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: .76rem; color: rgba(255,255,255,.28); margin-top: 5px; }
.form-divider { height: 1px; background: rgba(255,255,255,.07); margin: 20px 0; }
.form-terms { font-size: .78rem; color: rgba(255,255,255,.3); text-align: center; margin-top: 14px; line-height: 1.55; }
.form-terms a { color: rgba(255,255,255,.5); text-decoration: underline; }
.form-error { font-size: .8rem; color: #f87171; margin-top: 5px; display: none; }

/* 22. Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fi-1 { animation: fadeInUp .6s ease .1s both; }
.fi-2 { animation: fadeInUp .6s ease .22s both; }
.fi-3 { animation: fadeInUp .6s ease .35s both; }
.fi-4 { animation: fadeInUp .6s ease .48s both; }

/* 23. Responsive */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 72px 0 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .dark-inner { grid-template-columns: 1fr; padding: 64px 28px; gap: 48px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { display: none; }
  .issue-row { grid-template-columns: 72px 1fr 34px 108px; }
  .ir-status { display: none; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-ctas { flex-direction: column; align-items: center; }
  .hero-mockup-wrap { overflow: hidden; border-radius: 12px 12px 0 0; }
  .footer-top { grid-template-columns: 1fr; }
  .signup-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
