/* SnookerOS — Baize & Ivory Editorial Theme */

:root {
  --bg: #0e1410;
  --bg-surface: #141b16;
  --bg-raised: #1a2420;
  --fg: #f5f0e8;
  --fg-muted: #a09a8e;
  --fg-dim: #6b6560;
  --accent: #c9a84c;
  --accent-dim: #7a6330;
  --baize: #1e4d2b;
  --baize-deep: #0f2e19;
  --ivory: #f5f0e8;
  --border: rgba(201,168,76,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand-link {
  text-decoration: none;
  color: inherit;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HERO ───────────────────────────────── */
.hero {
  padding: 80px 48px 60px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ivory);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--fg-muted);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-body {
  max-width: 520px;
  margin: 0 auto 52px;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── TABLE VISUAL ───────────────────────── */
.hero-table-visual {
  position: relative;
  max-width: 860px;
  margin: 0 auto 48px;
}

.table-surface {
  position: relative;
  aspect-ratio: 2 / 1.1;
  background: var(--baize-deep);
  border: 14px solid #2c1a0e;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow:
    0 0 0 4px #1a0f08,
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 60px rgba(0,0,0,0.4);
}

/* Baize texture via gradient */
.table-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(30,77,43,0.6) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.04) 3px,
      rgba(0,0,0,0.04) 4px
    );
  pointer-events: none;
}

/* Pocket cutouts */
.pocket {
  position: absolute;
  width: 5%;
  height: 8%;
  background: radial-gradient(ellipse, #050505 60%, #1a0f08 100%);
  border-radius: 50%;
  z-index: 2;
}
.pocket-tl { top: -1%; left: -1%; }
.pocket-tr { top: -1%; right: -1%; }
.pocket-bl { bottom: -1%; left: -1%; }
.pocket-br { bottom: -1%; right: -1%; }
.pocket-ml { top: 50%; left: -1%; transform: translateY(-50%); }
.pocket-mr { top: 50%; right: -1%; transform: translateY(-50%); }

/* Table markings */
.table-markings { position: absolute; inset: 0; z-index: 1; }
.baulk-line {
  position: absolute;
  left: 28%;
  top: 0; bottom: 0;
  width: 1.5px;
  background: rgba(245,240,232,0.25);
}
.d-zone {
  position: absolute;
  left: 18%;
  top: 26%;
  width: 10%;
  height: 26%;
  border: 1.5px solid rgba(245,240,232,0.25);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(245,240,232,0.2);
  font-family: var(--font-body);
}
.center-spot {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: rgba(245,240,232,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pink-spot { position: absolute; top: 67%; left: 42%; width: 4px; height: 4px; background: rgba(236,140,155,0.9); border-radius: 50%; }
.black-spot { position: absolute; top: 80%; left: 73%; width: 4px; height: 4px; background: rgba(30,30,30,0.9); border-radius: 50%; }
.yellow-spot { position: absolute; top: 27%; left: 12%; width: 4px; height: 4px; background: rgba(220,200,50,0.9); border-radius: 50%; }
.green-spot { position: absolute; top: 27%; left: 22%; width: 4px; height: 4px; background: rgba(60,140,60,0.9); border-radius: 50%; }
.brown-spot { position: absolute; top: 27%; left: 32%; width: 4px; height: 4px; background: rgba(140,90,40,0.9); border-radius: 50%; }
.blue-spot { position: absolute; top: 50%; left: 50%; width: 4px; height: 4px; background: rgba(60,100,200,0.9); border-radius: 50%; transform: translate(-50%,-50%); }

/* Balls */
.ball {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.4), inset 1px 1px 2px rgba(255,255,255,0.15);
  z-index: 3;
}

.ball-red {
  background: radial-gradient(circle at 35% 35%, #e83030, #8b0a0a);
  width: 7px; height: 7px;
}
.ball-yellow {
  background: radial-gradient(circle at 35% 35%, #f0e060, #c8a020);
  width: 7px; height: 7px;
}
.ball-green {
  background: radial-gradient(circle at 35% 35%, #60cc60, #1a7a1a);
  width: 7px; height: 7px;
}
.ball-brown {
  background: radial-gradient(circle at 35% 35%, #c07830, #784818);
  width: 7px; height: 7px;
}
.ball-blue {
  background: radial-gradient(circle at 35% 35%, #5070e0, #1a3080);
  width: 7px; height: 7px;
}
.ball-pink {
  background: radial-gradient(circle at 35% 35%, #f0a0b8, #c06878);
  width: 7px; height: 7px;
}
.ball-black {
  background: radial-gradient(circle at 35% 35%, #484848, #101010);
  width: 7px; height: 7px;
}
.ball-white {
  background: radial-gradient(circle at 35% 35%, #ffffff, #d0ccc0);
  width: 7px; height: 7px;
}

.spot-ball { position: absolute; z-index: 3; }

/* Ball rows (triangle) */
.ball-row { display: flex; justify-content: center; gap: 1px; }
.row-1 { position: absolute; top: 72%; left: 44%; }
.row-2 { position: absolute; top: 66%; left: 48%; }
.row-3 { position: absolute; top: 60%; left: 51.5%; }
.row-4 { position: absolute; top: 54%; left: 55%; }
.row-5 { position: absolute; top: 48%; left: 58.5%; }

/* Trajectory overlay */
.trajectory-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.traj-line {
  fill: none;
  stroke: rgba(201,168,76,0.7);
  stroke-width: 0.8;
  stroke-linecap: round;
}
.traj-line {
  stroke-dasharray: 3 2;
  animation: traj-dash 2s linear infinite;
}
@keyframes traj-dash {
  to { stroke-dashoffset: -20; }
}

/* AI labels */
.ai-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(14,20,16,0.75);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  z-index: 5;
}
.label-trajectory { bottom: 14%; right: 8%; }
.label-break { top: 12%; right: 8%; }
.label-pot { bottom: 14%; left: 8%; }

.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-outro {
  font-size: 15px;
  color: var(--fg-dim);
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0e1410;
}

.btn-primary:hover {
  background: #d4b158;
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-raised);
  border-color: var(--accent-dim);
}

/* ── SECTION SHARED ─────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── HOW IT WORKS ──────────────────────── */
.howitworks {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 56px;
}

.step { padding: 0 20px; }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 0;
  color: var(--fg-dim);
}

.step-line {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── INTELLIGENCE ──────────────────────── */
.intelligence {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.intelligence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.intelligence-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.metrics-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.metric { min-width: 120px; }

.metric-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.metric-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.metric-fill.positive { background: #4caf50; }

/* Shot Diagram */
.shot-diagram {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sd-table {
  position: relative;
  aspect-ratio: 2/1;
  background: var(--baize-deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.sd-ball {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sd-red { background: radial-gradient(circle at 35% 35%, #e83030, #8b0a0a); }
.sd-yellow { background: radial-gradient(circle at 35% 35%, #f0e060, #c8a020); }
.sd-green { background: radial-gradient(circle at 35% 35%, #60cc60, #1a7a1a); }
.sd-brown { background: radial-gradient(circle at 35% 35%, #c07830, #784818); }
.sd-blue { background: radial-gradient(circle at 35% 35%, #5070e0, #1a3080); }
.sd-pink { background: radial-gradient(circle at 35% 35%, #f0a0b8, #c06878); }
.sd-black { background: radial-gradient(circle at 35% 35%, #484848, #101010); }
.sd-white { background: radial-gradient(circle at 35% 35%, #ffffff, #d0ccc0); }

/* Shot results */
.shot-results {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sr-row {
  display: grid;
  grid-template-columns: 24px 1fr 48px 80px;
  align-items: center;
  gap: 12px;
}

.sr-ball { display: flex; align-items: center; justify-content: center; }

.ball-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.red-dot { background: #c82828; }
.yellow-dot { background: #d8c030; }
.green-dot { background: #48a048; }
.brown-dot { background: #a06828; }
.blue-dot { background: #4070d0; }
.pink-dot { background: #e08098; }
.black-dot { background: #282828; }

.sr-name { font-size: 12px; color: var(--fg-muted); }
.sr-rate { font-size: 12px; font-weight: 600; color: var(--fg); text-align: right; }
.sr-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.sr-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.sr-fill.warning { background: #d07030; }

/* Shot insight */
.shot-insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.insight-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BREAK BUILDING ─────────────────────── */
.breakbuilding {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.breakbuilding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.break-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.bstat {}

.bstat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
}

.bstat-label {
  font-size: 12px;
  color: var(--fg-dim);
}

.bstat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Break timeline */
.break-timeline {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bt-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.bt-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
}

.bt-loss {
  margin-left: auto;
  font-size: 11px;
  color: var(--fg-dim);
}

.bt-track {
  display: flex;
  height: 28px;
  padding: 12px 20px;
  gap: 2px;
}

.bt-segment {
  border-radius: 2px;
  transition: opacity 0.2s;
}
.bt-segment.green { background: var(--baize); }
.bt-segment.red { background: rgba(200,60,60,0.7); }
.bt-segment.grey { background: rgba(100,90,80,0.4); }

.bt-legend {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  font-size: 11px;
  color: var(--fg-dim);
  border-top: 1px solid var(--border);
}

.leg {
  display: inline-block;
  width: 10px; height: 3px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.leg.green { background: var(--baize); }
.leg.red { background: rgba(200,60,60,0.7); }
.leg.grey { background: rgba(100,90,80,0.4); }

/* Break prompt */
.break-prompt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.bp-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.bp-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ─────────────────────────────── */
.closing {
  padding: 100px 48px 80px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 20px;
}

.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.closing-table-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.ctm-surface {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 300px;
  padding: 16px;
  background: var(--baize-deep);
  border: 8px solid #2c1a0e;
  border-radius: var(--radius-sm);
}

.ctm-ball {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: inset -1px -1px 3px rgba(0,0,0,0.4);
}

.ctm-red { background: radial-gradient(circle at 35% 35%, #e83030, #8b0a0a); }
.ctm-yellow { background: radial-gradient(circle at 35% 35%, #f0e060, #c8a020); }
.ctm-green { background: radial-gradient(circle at 35% 35%, #60cc60, #1a7a1a); }
.ctm-brown { background: radial-gradient(circle at 35% 35%, #c07830, #784818); }
.ctm-blue { background: radial-gradient(circle at 35% 35%, #5070e0, #1a3080); }
.ctm-pink { background: radial-gradient(circle at 35% 35%, #f0a0b8, #c06878); }
.ctm-black { background: radial-gradient(circle at 35% 35%, #484848, #101010); }
.ctm-white { background: radial-gradient(circle at 35% 35%, #ffffff, #d0ccc0); }

.closing-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-dim);
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-dim);
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-dim);
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── FEATURES STRIP ────────────────────── */
.section-features {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── SOCIAL PROOF ───────────────────────── */
.social-proof {
  padding: 48px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.social-proof-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof-item {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-proof-item::before {
  content: '→';
  color: var(--accent);
}

/* ── PRICING PREVIEW ───────────────────── */
.pricing-preview {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .howitworks { padding: 60px 24px; }
  .intelligence { padding: 60px 24px; }
  .breakbuilding { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-divider { display: none; }

  .intelligence-layout,
  .breakbuilding-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-row {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
