/* RadCRM — Marketing Page Styles */
/* Design system: matches RadRoot / RadSim glass-morphism house style */
/* Primary: #FF6B35 cyan · Accent: #ec4899 hot pink · BG: #090f1a dark navy */

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

:root {
  --primary: #FF6B35;
  --primary-deep: #E8551F;
  --primary-mid: #FF8C5A;
  --primary-glow: rgba(255, 107, 53, 0.15);
  --primary-glow-strong: rgba(255, 107, 53, 0.25);
  --accent: #ec4899;
  --signal: #fde047;
  --bg: #090f1a;
  --bg-2: #0d1527;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-primary: rgba(255, 107, 53, 0.25);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

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

/* ─── Grain texture overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── Animated background orbs ──────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: drift 20s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-duration: 18s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  bottom: 200px; left: -150px;
  animation-duration: 22s;
  animation-delay: -8s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 25s;
  animation-delay: -12s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-15px, 25px) scale(0.97); }
  100% { transform: translate(20px, 10px) scale(1.02); }
}

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(9, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--primary); opacity: 1; }
  50%       { box-shadow: 0 0 16px var(--primary), 0 0 32px rgba(255, 107, 53, 0.3); opacity: 0.85; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--text); }
.btn-primary {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  background: var(--primary);
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover {
  background: var(--primary-mid);
  box-shadow: 0 0 20px var(--primary-glow-strong);
  transform: translateY(-1px);
}
.btn-primary-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 8px;
}
.btn-ghost-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 8px;
}

/* ─── Section wrapper ────────────────────────────────────────── */
section, .section {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  background: var(--primary-glow);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-mono);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-headline .grad {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.hero-trust-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ─── Demo Card (hero right) ─────────────────────────────────── */
.demo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255, 107, 53, 0.1);
}
.demo-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.demo-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.demo-card-dot.green { background: #34d399; }
.demo-card-dot.yellow { background: var(--signal); }
.demo-card-dot.red { background: #f87171; }
.demo-card-title {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-left: 4px;
}
.demo-card-body {
  padding: 20px;
  min-height: 340px;
  position: relative;
}
.demo-slide {
  position: absolute;
  inset: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-slide.active { opacity: 1; }

/* Activity items within demo slides */
.demo-label {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.demo-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.demo-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.demo-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.demo-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
  border-radius: 2px;
  animation: progress-fill 2.5s ease-in-out forwards;
}
@keyframes progress-fill {
  from { width: 0%; }
  to   { width: 92%; }
}
.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.demo-chip {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-glow);
  color: var(--primary-mid);
  border: 1px solid var(--border-primary);
}
.demo-chip.accent {
  background: rgba(236, 72, 153, 0.1);
  color: #f472b6;
  border-color: rgba(236, 72, 153, 0.2);
}
.demo-chip.success {
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, 0.2);
}
.demo-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
}
.demo-row-left { color: var(--text); font-weight: 500; }
.demo-row-right { color: var(--text-muted); font-size: 11px; }
.demo-insight {
  padding: 10px 14px;
  background: var(--primary-glow);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}
.demo-insight strong { color: var(--primary-mid); }
.demo-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.demo-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.demo-nav-dot.active { background: var(--primary); }

/* ─── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Problem section ─────────────────────────────────────────── */
.problem {
  padding: 96px 0;
}
.contrast-rows { display: flex; flex-direction: column; margin-top: 56px; }
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.contrast-row:last-child { border-bottom: none; }
.contrast-old {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-dim);
  line-height: 1.2;
}
.contrast-old span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-top: 6px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.contrast-new {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.2;
}
.contrast-new span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-top: 6px;
  color: var(--text-secondary);
  font-family: var(--font-body);
}
.contrast-arrow { font-size: 28px; color: var(--border-primary); text-align: center; }

/* ─── How it works ───────────────────────────────────────────── */
.how {
  padding: 96px 0;
  background: var(--bg-2);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}
.how-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
}
.how-step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.how-step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Features ───────────────────────────────────────────────── */
.features {
  padding: 96px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover {
  border-color: var(--border-primary);
  background: var(--bg-card-hover);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-glow);
  border: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.feature-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.feature-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}
.feature-save::before {
  content: '▸';
  font-size: 10px;
}

/* ─── Pillars ─────────────────────────────────────────────────── */
.pillars {
  padding: 96px 0;
  background: var(--bg-2);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pillar-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.pillar-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.pillar-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Personas ────────────────────────────────────────────────── */
.personas {
  padding: 96px 0;
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.persona-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.persona-role {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.persona-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.persona-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.persona-wins {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.persona-wins li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.persona-wins li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ─── Shared spine callout ───────────────────────────────────── */
.spine {
  padding: 80px 0;
  background: var(--primary-glow);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}
.spine-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.spine-quote {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  flex: 1;
}
.spine-quote em {
  color: var(--primary-mid);
  font-style: normal;
}
.spine-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spine-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spine-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.spine-stat-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Section headers ─────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── CTA footer ──────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contrast-row { grid-template-columns: 1fr; gap: 4px; padding: 28px 0; }
  .contrast-arrow { display: none; }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .how-steps::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .spine-inner { flex-direction: column; gap: 32px; }
  .spine-quote { font-size: 26px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .demo-card { max-width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; row-gap: 10px; }
  .section-title { font-size: 32px; }
  .cta-headline { font-size: 36px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
