/* AgentLogic360 — Public Site */
:root {
  --bg:       #060810;
  --bg2:      #0d1117;
  --bg3:      #161b27;
  --border:   rgba(255,255,255,.07);
  --accent:   #6366f1;
  --accent2:  #8b5cf6;
  --green:    #10b981;
  --text:     #e2e8f0;
  --muted:    #64748b;
  --mono:     'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all .2s;
  box-shadow: 0 4px 24px rgba(99,102,241,.35);
}
.btn-primary:hover { background: #5254cc; box-shadow: 0 6px 32px rgba(99,102,241,.5); transform: translateY(-1px); }
.btn-primary.btn-lg { font-size: 16px; padding: 16px 36px; }

.btn-ghost-sm {
  display: inline-flex; align-items: center;
  color: var(--muted); font-weight: 600; font-size: 14px;
  padding: 14px 0;
  transition: color .2s;
}
.btn-ghost-sm:hover { color: var(--text); }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--muted); font-weight: 600; font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .2s;
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.04); }

.btn-primary-sm {
  display: inline-flex; align-items: center;
  background: var(--accent);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all .2s;
}
.btn-primary-sm:hover { background: #5254cc; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.site-nav.scrolled {
  background: rgba(6,8,16,.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-size: 15px; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 7px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 8px; }

/* ── SECTION COMMONS ────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900; letter-spacing: -2px;
  color: #fff; line-height: 1.05; margin-bottom: 16px;
}

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}

/* Subtle noise texture via pseudo-element */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(99,102,241,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(139,92,246,.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-left {
  flex: 0 0 50%;
  padding: 80px 32px 80px max(32px, calc(50vw - 600px));
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 32px;
  background: rgba(255,255,255,.02);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(16,185,129,.4); animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 420px; margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-proof {
  display: flex; align-items: center; gap: 0;
}
.hp-item { font-size: 13px; color: var(--muted); padding: 0 20px; }
.hp-item:first-child { padding-left: 0; }
.hp-item strong { color: #fff; font-weight: 800; }
.hp-div { width: 1px; height: 28px; background: var(--border); }

/* ── Browser mockup ─────────────────────────────────────────────────────────── */
.hero-right {
  flex: 0 0 50%;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 80px 32px;
  position: relative; z-index: 2;
}

.browser-frame {
  width: 100%;
  max-width: 520px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 60px rgba(99,102,241,.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s;
}
.browser-frame:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0deg); }

.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: #161b27;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-url {
  flex: 1;
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px; font-family: var(--mono);
  color: var(--muted);
}

/* Mock site behind widget */
.browser-content { position: relative; background: #0a0e1a; min-height: 360px; }
.mock-site { padding: 20px; }
.mock-nav { height: 10px; background: rgba(255,255,255,.04); border-radius: 4px; margin-bottom: 20px; }
.mock-hero { padding: 10px 0; }
.mock-h1 { height: 14px; width: 70%; background: rgba(255,255,255,.06); border-radius: 4px; margin-bottom: 10px; }
.mock-h2 { height: 10px; width: 50%; background: rgba(255,255,255,.04); border-radius: 4px; margin-bottom: 16px; }
.mock-btn { height: 28px; width: 100px; background: rgba(99,102,241,.2); border-radius: 6px; }

/* Chat widget inside browser */
.hero-widget {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 280px;
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  animation: floatWidget 4s ease-in-out infinite;
}
@keyframes floatWidget { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.hw-header {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #111827;
}
.hw-avatar {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.hw-name { font-size: 12px; font-weight: 700; color: #fff; }
.hw-status { display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.hw-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.hw-status span:last-child { font-size: 10px; color: var(--muted); }
.hw-x { margin-left: auto; color: var(--muted); cursor: pointer; }

.hw-messages { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.hw-msg {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 11px; line-height: 1.5;
}
.hw-msg.ai {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--text); border-bottom-left-radius: 3px; align-self: flex-start;
}
.hw-msg.user {
  background: var(--accent); color: #fff;
  border-bottom-right-radius: 3px; align-self: flex-end;
}

.hw-chips { display: flex; gap: 5px; padding: 0 12px 8px; flex-wrap: wrap; }
.hw-chip {
  background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.2);
  color: #a5b4fc; font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; cursor: pointer;
}
.hw-input {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--muted);
}
.hw-send {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}

/* ── TICKER ──────────────────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(255,255,255,.01);
}
.ticker {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker span { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.tick-dot { color: var(--accent) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FEATURES BENTO ─────────────────────────────────────────────────────────── */
.features-section { padding: 112px 0; }
.features-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.features-desc {
  max-width: 380px; font-size: 15px; color: var(--muted);
  line-height: 1.7; flex-shrink: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 16px;
}
.bc {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.bc:hover { border-color: rgba(99,102,241,.25); transform: translateY(-2px); }
.bc-num {
  position: absolute; top: -12px; right: 16px;
  font-size: 96px; font-weight: 900; font-family: var(--mono);
  color: rgba(255,255,255,.03); line-height: 1;
  pointer-events: none; user-select: none;
}
.bc-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent); margin-bottom: 10px; display: block;
}
.bc h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.bc p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.bc-wide  { grid-column: 1 / 2; }
.bc-tall  { grid-column: 2 / 3; grid-row: 1 / 3; }
.bc-leads { grid-column: 1 / 2; grid-row: 2; }
.bc-white-label { grid-column: 1 / 2; grid-row: 3; }
.bc-analytics   { grid-column: 2 / 3; grid-row: 3; }
.bc-full  { grid-column: 1 / -1; }

/* Card 1 deploy */
.bc-deploy { background: #010409; border-color: rgba(99,102,241,.15); }
.bc-deploy-content { position: relative; z-index: 1; }
.bc-terminal { margin-top: 20px; background: #0d1117; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; }
.bc-terminal-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #161b27; border-bottom: 1px solid rgba(255,255,255,.05); }
.tbar-dot { width: 10px; height: 10px; border-radius: 50%; }
.tbar-title { margin-left: 8px; font-size: 11px; font-family: var(--mono); color: var(--muted); }
.bc-terminal-body { padding: 14px 16px; font-family: var(--mono); font-size: 13px; white-space: nowrap; overflow-x: auto; }
.tc-tag { color: #f472b6; }
.tc-attr { color: #86efac; }
.tc-eq { color: #475569; }
.tc-str { color: #fde68a; }
.tc-var { color: #a5b4fc; }
.tc-output { margin-top: 8px; font-size: 12px; color: #475569; }
.tc-ok { color: #10b981; }
.tc-green { color: #10b981; }

/* Card 2 always-on */
.bc-alwayson {
  background: linear-gradient(160deg, rgba(99,102,241,.1) 0%, var(--bg2) 60%);
  border-color: rgba(99,102,241,.2);
  display: flex; flex-direction: column;
}
.bc-ao-inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.bc-big-stat { font-size: 72px; font-weight: 900; font-family: var(--mono); color: #fff; letter-spacing: -3px; line-height: 1; margin: 12px 0; }
.bc-ao-pulse { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.ao-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(16,185,129,.4); animation: pulse 2s infinite; }
.ao-text { font-size: 12px; font-weight: 700; color: var(--green); }

/* Card 3 leads */
.bc-chat-strip { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.bcs-msg { display: inline-block; padding: 7px 11px; border-radius: 12px; font-size: 12px; line-height: 1.4; max-width: 90%; }
.bcs-ai { background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 3px; align-self: flex-start; }
.bcs-user { background: var(--accent); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
.bcs-captured {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--green);
  padding: 5px 8px;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2);
  border-radius: 6px; align-self: flex-start; margin-top: 2px;
}

/* Card 4 white-label */
.bc-wl-domains { margin: 16px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.bc-wl-row { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; background: rgba(255,255,255,.03); border: 1px solid var(--border); font-size: 12px; font-family: var(--mono); }
.bc-wl-hidden { opacity: .4; }
.wl-lock { color: var(--muted); display: flex; }
.wl-lock-green { color: var(--green); }
.wl-strike { text-decoration: line-through; color: var(--muted); }
.wl-yours { color: var(--green); }

/* Card 5 analytics */
.bc-bars { display: flex; align-items: flex-end; gap: 8px; height: 72px; margin: 16px 0 12px; }
.bc-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bc-bar { width: 100%; background: rgba(99,102,241,.25); border-radius: 4px 4px 2px 2px; min-height: 4px; }
.bc-bar-accent { background: var(--accent) !important; box-shadow: 0 0 12px rgba(99,102,241,.4); }
.bc-bar-wrap span { font-size: 10px; color: var(--muted); font-weight: 600; }

/* Card 6 train */
.bc-train { display: flex; gap: 48px; align-items: center; background: linear-gradient(90deg, rgba(99,102,241,.06) 0%, transparent 100%); }
.bc-train-left { flex: 1; min-width: 0; }
.bc-train-right { flex: 1; min-width: 0; }
.bc-prompt-window { background: #010409; border: 1px solid rgba(99,102,241,.2); border-radius: 12px; overflow: hidden; }
.bc-prompt-label { padding: 8px 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); background: #0d1117; border-bottom: 1px solid rgba(255,255,255,.05); font-family: var(--mono); }
.bc-prompt-text { padding: 14px; font-size: 12px; line-height: 1.8; color: #7dd3fc; font-family: var(--mono); }
.pt-hl { color: #f472b6; font-weight: 700; }

/* ── HOW IT WORKS ───────────────────────────────────────────────────────────── */
.how-section { padding: 112px 0; border-top: 1px solid var(--border); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.how-step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--bg2);
  transition: background .2s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--bg3); }
.how-step-n {
  font-size: 56px; font-weight: 900; font-family: var(--mono);
  color: var(--accent); opacity: .25;
  line-height: 1; margin-bottom: 20px;
}
.how-step h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PRICING ────────────────────────────────────────────────────────────────── */
.pricing-section { padding: 112px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
  margin-top: 56px;
}
.plan-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  position: relative; transition: transform .2s, border-color .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(99,102,241,.1) 0%, var(--bg2) 60%);
  transform: scale(1.04);
}
.plan-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.plan-price { font-size: 52px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 10px; }
.plan-price span { font-size: 17px; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.pf-check { color: var(--green); flex-shrink: 0; display: flex; align-items: center; }
.pf-x { color: #2d3748; flex-shrink: 0; display: flex; align-items: center; }
.plan-features li:has(.pf-x) { color: var(--muted); }
.btn-plan { display: block; text-align: center; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text); font-weight: 700; font-size: 14px; padding: 13px 20px; border-radius: 10px; transition: all .2s; }
.btn-plan:hover { background: rgba(255,255,255,.1); }
.btn-plan-featured { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 30px rgba(99,102,241,.3); }
.btn-plan-featured:hover { opacity: .9; }

/* ── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section { padding: 112px 0; }
.cta-inner {
  position: relative; text-align: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 80px 40px; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); margin-bottom: 16px; position: relative;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -1.5px; color: #fff; margin-bottom: 36px; line-height: 1.1; position: relative; }
.cta-inner .btn-primary { position: relative; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-logo { font-size: 15px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-size: 13px; color: var(--muted); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────────── */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); } 70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { flex-direction: column; min-height: auto; padding: 100px 0 60px; }
  .hero-left { flex: none; padding: 0 32px 40px; width: 100%; }
  .hero-right { flex: none; padding: 0 32px 60px; width: 100%; }
  .browser-frame { max-width: 100%; transform: none; }
  .browser-frame:hover { transform: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bc-wide,.bc-tall,.bc-leads,.bc-white-label,.bc-analytics,.bc-full { grid-column: 1 / -1; grid-row: auto; }
  .bc-train { flex-direction: column; gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card-featured { transform: scale(1); }
  .plan-card-featured:hover { transform: translateY(-4px); }
  .features-header { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}
