/* =====================================================
   MenuSink — styles.css
   Clean white/light • tomato-red accent • slate text
   Inspired by Square / Toast / SpotOn visual quality
   ===================================================== */

:root {
  --white:      #FFFFFF;
  --bg-light:   #F8FAFC;
  --bg-dark:    #0D1117;
  --brand:      #F43B2F;
  --brand-hover:#FF5A4F;
  --brand-dim:  #FEF2F2;
  --blue:       #3B82F6;
  --blue-dim:   #EFF6FF;
  --green:      #22C55E;
  --green-dim:  #F0FDF4;
  --amber:      #F59E0B;
  --slate-900:  #0F172A;
  --slate-700:  #334155;
  --slate-600:  #475569;
  --slate-500:  #64748B;
  --slate-400:  #94A3B8;
  --slate-300:  #CBD5E1;
  --slate-200:  #E2E8F0;
  --slate-100:  #F1F5F9;
  --border:     #E2E8F0;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  22px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:     0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg:  0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  --t:          0.18s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPE ─── */
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 700; }
em { font-style: normal; color: var(--brand); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 0.93rem; font-weight: 600; cursor: pointer;
  transition: all var(--t); border: 2px solid transparent; white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 14px 30px; font-size: 0.97rem; border-radius: 12px; }
.btn-full { width: 100%; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); box-shadow: 0 4px 18px rgba(244,59,47,.3); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--slate-900); border-color: var(--slate-300); }
.btn-outline-dark:hover { border-color: var(--slate-900); background: var(--slate-900); color: #fff; }
.btn-white { background: #fff; color: var(--slate-900); }
.btn-white:hover { background: var(--slate-100); box-shadow: 0 4px 16px rgba(0,0,0,.15); transform: translateY(-1px); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
/* Small nav buttons */
.btn-ghost-sm { padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--slate-600); border-radius: 8px; transition: color var(--t), background var(--t); }
.btn-ghost-sm:hover { color: var(--slate-900); background: var(--slate-100); }
.btn-primary-sm { padding: 8px 18px; font-size: 0.85rem; font-weight: 600; background: var(--brand); color: #fff; border-radius: 8px; transition: background var(--t), box-shadow var(--t); }
.btn-primary-sm:hover { background: var(--brand-hover); box-shadow: 0 2px 10px rgba(244,59,47,.3); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 8px; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; margin-right: 8px; }
.logo-mark {
  width: 32px; height: 32px; background: var(--brand); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { color: var(--slate-900); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { padding: 6px 12px; font-size: 0.875rem; font-weight: 500; color: var(--slate-600); border-radius: 7px; transition: color var(--t), background var(--t); }
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: all .25s; }

/* ─── HERO ─── */
.hero { padding: 120px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block; padding: 4px 12px; margin-bottom: 20px;
  background: var(--brand-dim); border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 1.06; margin-bottom: 22px;
}
.hero-sub { font-size: 1.05rem; color: var(--slate-600); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--slate-100); border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; color: var(--slate-600);
}

/* ─── MOCKUP ─── */
.hero-visual { position: relative; }
.mockup-window {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.mockup-url {
  margin-left: 8px; font-size: 0.72rem; color: var(--slate-400);
  background: var(--white); padding: 4px 12px; border-radius: 6px;
  border: 1px solid var(--border); font-family: monospace;
}
.mockup-body { display: flex; height: 280px; }
.mock-sidebar {
  width: 52px; background: var(--slate-900); display: flex; flex-direction: column;
  align-items: center; padding: 14px 0; gap: 6px;
}
.mock-logo { padding: 6px; color: var(--brand); }
.mock-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 36px; height: 32px; border-radius: 7px;
  font-size: 0.62rem; color: var(--slate-500); cursor: default;
  gap: 3px; transition: background var(--t), color var(--t);
}
.mock-active { background: rgba(255,255,255,.1); color: #fff; }
.mock-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.mock-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px 8px; border-bottom: 1px solid var(--border);
}
.mock-title { font-size: 0.82rem; font-weight: 700; color: var(--slate-900); }
.mock-live-pill {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 9px; background: var(--green-dim); border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; color: var(--green);
}
.live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.mock-table { flex: 1; overflow: hidden; padding: 4px 0; }
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 16px; font-size: 0.72rem;
}
.mock-row-head { color: var(--slate-400); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.mock-row:not(.mock-row-head) { color: var(--slate-700); }
.mock-row:not(.mock-row-head):hover { background: var(--slate-100); }
.mock-price { font-weight: 600; color: var(--slate-900); }
.mock-row-updating { background: #FFF7ED; }
.mock-price-new { color: var(--brand); animation: flashprice 1.5s ease-in-out infinite; }
@keyframes flashprice { 0%,100%{opacity:1} 50%{opacity:.5} }
.mock-toast {
  margin: 8px 12px; padding: 8px 12px;
  background: var(--white); border: 1px solid #BBF7D0; border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; color: #15803D;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-sm);
}
.mock-toast.show { opacity: 1; transform: translateY(0); }
.mini-display {
  position: absolute; bottom: -20px; right: -20px;
  text-align: center;
}
.mini-tv {
  width: 160px; background: var(--slate-900); border-radius: 10px;
  padding: 10px; box-shadow: var(--shadow);
}
.mini-screen { background: #1A1A2E; border-radius: 6px; padding: 8px; }
.mini-menu-row {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; color: rgba(255,255,255,.7); padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mini-menu-row:last-child { border-bottom: none; }
.mini-price { font-weight: 600; color: rgba(255,255,255,.9); }
.updating-price { color: #FCD34D; animation: flashprice 1.5s ease-in-out infinite; }
.mini-label { font-size: 0.65rem; color: var(--slate-400); margin-top: 6px; font-weight: 500; }

/* ─── STATS BAR ─── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-light); }
.stats-inner { display: flex; align-items: center; justify-content: space-around; padding: 40px 24px; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--brand); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--slate-500); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ─── COMPAT BAR ─── */
.compat-bar { padding: 24px 0; border-bottom: 1px solid var(--border); }
.compat-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.compat-label { font-size: 0.75rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; }
.compat-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.compat-chip { padding: 5px 14px; background: var(--slate-100); border-radius: 7px; font-size: 0.8rem; font-weight: 600; color: var(--slate-600); }
.compat-chip-more { font-size: 0.8rem; font-weight: 500; color: var(--slate-400); padding: 5px 4px; }

/* ─── FEATURE ROWS ─── */
.features { padding: 0; }
.feature-row { padding: 96px 0; border-top: 1px solid var(--border); }
.feature-row-alt { background: var(--bg-light); }
.feature-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-inner-rev .feature-text { order: 2; }
.feature-inner-rev .feature-visual { order: 1; }
.feature-eyebrow {
  display: inline-block; padding: 4px 12px; margin-bottom: 14px;
  background: var(--brand-dim); border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .1em;
}
.feature-text h2 { margin-bottom: 16px; }
.feature-text p { color: var(--slate-600); line-height: 1.75; margin-bottom: 24px; font-size: 1rem; }
.feature-bullets { display: flex; flex-direction: column; gap: 10px; }
.feature-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--slate-700); font-weight: 500;
}
.feature-bullets li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Feature visual — Sync */
.fv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow);
}
.fv-card-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 16px; }
.fv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--slate-700);
}
.fv-row:last-of-type { border-bottom: none; }
.fv-row-active { background: #FFF7ED; margin: 0 -28px; padding: 9px 28px; }
.fv-input {
  width: 80px; padding: 5px 10px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.82rem; font-weight: 600; text-align: right; color: var(--slate-900);
  background: var(--white); outline: none; cursor: default;
}
.fv-input-active { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }
.fv-arrow-row { display: flex; align-items: center; gap: 10px; margin: 20px 0 14px; }
.fv-arrow-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--slate-300)); }
.fv-arrow-row:nth-child(1) .fv-arrow-line:last-child { background: linear-gradient(90deg, var(--slate-300), transparent); }
.fv-arrow-label { font-size: 0.68rem; font-weight: 600; color: var(--slate-400); white-space: nowrap; }
.fv-screens { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.fv-screen-icon { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fv-screen-icon span { font-size: 0.65rem; color: var(--slate-500); font-weight: 600; }

/* Feature visual — Print */
.fv-print { display: flex; align-items: center; justify-content: center; }
.print-doc {
  width: 240px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border);
  position: relative;
}
.print-doc-header { background: var(--slate-900); padding: 16px; }
.print-logo-bar { width: 80px; height: 10px; background: rgba(255,255,255,.3); border-radius: 3px; margin-bottom: 8px; }
.print-title-bar { width: 120px; height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; }
.print-doc-body { padding: 16px; }
.print-section-label { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); margin-bottom: 10px; }
.print-section-label.mt { margin-top: 14px; }
.print-item { display: flex; align-items: center; gap: 0; margin-bottom: 6px; }
.print-name { flex: 1; height: 5px; background: var(--slate-200); border-radius: 3px; }
.print-dots { flex: 0.5; border-bottom: 1px dotted var(--slate-300); margin: 0 6px; }
.print-price { font-size: 0.7rem; font-weight: 700; color: var(--slate-700); }
.print-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-top: 1px solid var(--border);
  font-size: 0.65rem; font-weight: 600; color: var(--brand);
  background: var(--brand-dim);
}

/* Feature visual — Playlists */
.fv-playlist { display: flex; flex-direction: column; gap: 16px; }
.pl-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow);
}
.pl-panel-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 14px; }
.pl-list { display: flex; flex-direction: column; gap: 4px; }
.pl-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); cursor: default; }
.pl-item-active { background: var(--blue-dim); }
.pl-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.pl-dot-gray { background: var(--slate-300); }
.pl-item-name { font-size: 0.83rem; font-weight: 600; color: var(--slate-900); }
.pl-item-meta { font-size: 0.7rem; color: var(--slate-500); }
.pl-screens { display: flex; gap: 8px; flex-wrap: wrap; }
.pl-screen-chip {
  padding: 6px 12px; border-radius: var(--radius); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; color: var(--slate-600); background: var(--white);
}
.pl-screen-chip span { font-weight: 400; color: var(--slate-400); margin-left: 4px; }
.active-chip { background: var(--blue-dim); border-color: #BFDBFE; color: var(--blue); }
.active-chip span { color: #60A5FA; }

/* ─── HOW IT WORKS ─── */
.how-it-works { padding: 96px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block; padding: 4px 12px; margin-bottom: 14px;
  background: var(--brand-dim); border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .1em;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--slate-500); max-width: 500px; margin: 0 auto; font-size: 1rem; }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.step-num { font-size: 2rem; font-weight: 900; color: var(--brand); opacity: .5; line-height: 1; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; font-size: 1rem; }
.step-card p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.68; }
.step-arrow { align-self: center; font-size: 1.5rem; color: var(--slate-300); padding: 0 16px; }

/* ─── PRICING ─── */
.pricing { padding: 96px 0; border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1.06fr 1fr; gap: 20px; align-items: start; margin-bottom: 28px; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 30px; position: relative;
  transition: box-shadow var(--t), transform var(--t);
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pricing-card-featured {
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 4px rgba(244,59,47,.06), var(--shadow-lg);
}
.pc-featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; background: var(--brand); color: #fff;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; white-space: nowrap;
}
.pc-tier { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--slate-400); margin-bottom: 12px; }
.pc-price { font-size: 2.5rem; font-weight: 900; color: var(--slate-900); line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.pc-per { font-size: 0.9rem; font-weight: 500; color: var(--slate-500); }
.pc-note { font-size: 0.78rem; color: var(--slate-400); margin-bottom: 20px; }
.pc-note a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
/* Screen count guide */
.screen-guide {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 40px; flex-wrap: wrap;
  background: var(--slate-100); border-radius: var(--radius-lg);
  padding: 16px 24px;
}
.sg-item { display: flex; align-items: center; gap: 10px; padding: 6px 16px; }
.sg-range { font-size: 0.82rem; font-weight: 700; color: var(--slate-900); white-space: nowrap; }
.sg-arrow { color: var(--slate-300); font-size: 0.9rem; }
.sg-label { font-size: 0.82rem; color: var(--slate-600); white-space: nowrap; }
.sg-label span { color: var(--brand); font-weight: 600; }
.sg-item-required .sg-range { color: var(--brand); }
.sg-item-required .sg-label span { background: var(--brand-dim); padding: 1px 6px; border-radius: 4px; font-weight: 700; }
.sg-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }

/* Screen count badges on pricing cards */
.pc-screen-badge {
  display: inline-block; padding: 3px 10px; margin-bottom: 10px;
  background: var(--slate-100); border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; color: var(--slate-500);
}
.pc-screen-badge-brand {
  background: var(--brand-dim); color: var(--brand);
}

/* Upsell note inside pricing card */
.pc-upsell {
  font-size: 0.78rem; color: var(--slate-500); line-height: 1.55;
  padding: 10px 12px; background: var(--slate-100); border-radius: var(--radius);
  margin-bottom: 16px;
}
.pc-upsell strong { color: var(--slate-900); }

.pc-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li { font-size: 0.85rem; color: var(--slate-600); display: flex; align-items: flex-start; gap: 9px; }
.pc-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-footnote { text-align: center; font-size: 0.84rem; color: var(--slate-400); margin-top: 28px; }
.pricing-footnote a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Limits list (what's NOT included in demo) */
.pc-limits { display: flex; flex-direction: column; gap: 9px; margin-top: -4px; margin-bottom: 28px; padding-top: 12px; border-top: 1px dashed var(--border); }
.pc-limits li { font-size: 0.85rem; color: var(--slate-400); display: flex; align-items: flex-start; gap: 9px; }
.pc-limits li::before { content: '✕'; color: var(--slate-300); font-weight: 700; flex-shrink: 0; }

/* Hardware add-ons block */
.hardware-addons {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.ha-label {
  padding: 14px 28px;
  background: var(--slate-100);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--slate-500);
  border-bottom: 1px solid var(--border);
}
.ha-items { background: var(--white); }
.ha-item {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 28px;
}
.ha-divider { border: none; border-top: 1px solid var(--border); margin: 0 28px; }
.ha-info { flex: 1; }
.ha-name { font-size: 0.95rem; font-weight: 700; color: var(--slate-900); margin-bottom: 3px; }
.ha-desc { font-size: 0.82rem; color: var(--slate-500); line-height: 1.5; }
.ha-price { font-size: 1.4rem; font-weight: 900; color: var(--slate-900); letter-spacing: -0.02em; flex-shrink: 0; }
.ha-item .btn { flex-shrink: 0; padding: 8px 18px; font-size: 0.83rem; }

/* ─── FAQ ─── */
.faq { padding: 96px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.faq-inner { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.faq-header .eyebrow { display: block; }
.faq-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-top: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--slate-900);
  list-style: none; user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--slate-400); font-size: 1.2rem; font-weight: 400;
  flex-shrink: 0; transition: transform var(--t);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--brand); }
.faq-body { padding: 0 4px 20px; font-size: 0.9rem; color: var(--slate-600); line-height: 1.75; }

/* ─── DARK CTA ─── */
.cta-dark { padding: 96px 0; background: var(--bg-dark); }
.cta-dark-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-dark h2 { color: #fff; margin-bottom: 14px; }
.cta-dark p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; max-width: 480px; }
.cta-dark-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; padding-bottom: 48px; }
.footer-brand p { margin-top: 12px; font-size: 0.84rem; color: var(--slate-400); max-width: 220px; line-height: 1.65; }
.footer-brand a { color: var(--brand); }
.footer-email { display: block; margin-top: 10px; font-size: 0.84rem; color: var(--slate-500); transition: color var(--t); }
.footer-email:hover { color: var(--brand); }
.footer-nav { display: flex; gap: 52px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-300); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: var(--slate-500); transition: color var(--t); }
.footer-col a:hover { color: var(--slate-900); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 24px; font-size: 0.78rem; color: var(--slate-400); display: flex; justify-content: space-between; align-items: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .feature-inner { gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-dark-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-dark-actions { flex-direction: row; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-inner-rev .feature-text { order: 1; }
  .feature-inner-rev .feature-visual { order: 2; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px 20px; gap: 0;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--slate-800); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
