/* Brand tokens (matched to the extension) ------------------------------ */
:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-sunken: #f4f4f5;
  --bg-deep: #0a0a0b;

  --border: #e4e4e7;
  --border-strong: #d4d4d8;

  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-tertiary: #71717a;

  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --accent-bg: rgba(124, 58, 237, 0.08);
  --accent-bg-strong: rgba(124, 58, 237, 0.16);
  --accent-grad: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);

  --success: #059669;
  --danger: #dc2626;

  --container: 1140px;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* NAV ------------------------------------------------------------------- */

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover { color: var(--accent); }

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 200ms ease,
              background 200ms ease, color 200ms ease;
}

.btn svg { width: 14px; height: 14px; }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 13px 22px; font-size: 15px; }

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 5px 16px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-ghost:hover { color: var(--accent); }

.btn-block { display: flex; width: 100%; }

/* HERO ----------------------------------------------------------------- */

.hero {
  padding: 80px 32px 96px;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(124, 58, 237, 0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { max-width: 580px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.55);
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.grad-text {
  background: linear-gradient(135deg, #1f1f23 0%, #7c3aed 50%, #6d28d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-h1-sub { color: var(--text-primary); display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.hero-meta strong { color: var(--text-primary); font-weight: 700; }
.hero-meta .dot { color: var(--border-strong); }

/* Hero preview (mock side panel) ---------------------------------------- */

.hero-preview {
  display: flex;
  justify-content: center;
}

.preview-window {
  width: 360px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(124, 58, 237, 0.18),
    0 5px 15px rgba(0, 0, 0, 0.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.preview-titlebar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--border);
}

.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green { background: #28c840; }

.preview-body { padding: 16px; }

.preview-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.preview-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.preview-brand-mark svg { width: 24px; height: 24px; }

.preview-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.preview-tag {
  font-size: 9px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 5px;
}

.preview-scan {
  width: 100%;
  background: var(--accent-grad);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  padding: 9px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.28);
}

.preview-scan span {
  font-size: 12px;
  transform: translateY(-3px);
}

.preview-list { display: flex; flex-direction: column; gap: 6px; }

.preview-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  column-gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
}

.preview-row.selected {
  border-color: var(--accent);
  background: var(--accent-bg);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.preview-row-head {
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
}

.prev-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
}

.prev-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
}

.prev-meta { min-width: 0; }
.prev-name { font-weight: 500; line-height: 1.2; }
.prev-email {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prev-num {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.prev-num.accent {
  color: var(--accent);
  background: var(--accent-bg);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  border: 1px solid var(--accent-bg-strong);
}

.prev-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--success);
  background: rgba(5, 150, 105, 0.10);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 3px 8px;
  border-radius: 100px;
}

.preview-bulkbar {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.10);
}

.preview-bulk-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.preview-bulk-top strong { color: var(--accent); font-size: 14px; font-weight: 700; margin-right: 4px; }

.prev-clear { font-size: 11px; color: var(--text-tertiary); }

.preview-bulk-actions { display: flex; gap: 6px; }

.preview-bulk-actions button {
  flex: 1;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 7px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.bulk-unsub { background: rgba(5, 150, 105, 0.10); color: var(--success); }
.bulk-delete { background: rgba(220, 38, 38, 0.10); color: var(--danger); }

/* TRUST STRIP ---------------------------------------------------------- */

.trust-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: -48px;
  margin-bottom: 80px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-item strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-item span {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* SECTIONS ------------------------------------------------------------- */

.section {
  padding: 80px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt .section-head,
.section-alt > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 56px; }

h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* FEATURES ------------------------------------------------------------- */

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

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-card p { color: var(--text-secondary); font-size: 14.5px; }

/* HOW IT WORKS --------------------------------------------------------- */

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

.how-step { text-align: center; padding: 0 12px; }

.how-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.32);
}

.how-step h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.how-step p { color: var(--text-secondary); font-size: 15px; }

/* PRICING -------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-card-pro {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, var(--bg-elevated) 0%, rgba(124, 58, 237, 0.03) 100%);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.15);
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
}

.price-card-pro .price-tier { color: var(--accent); }

.price-tier-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 100px;
  text-transform: uppercase;
}

.price-card-pro .price-tier { display: none; }

.price-amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.price-amount span {
  font-size: 17px;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0;
}

.price-period { font-size: 13px; color: var(--text-tertiary); margin-top: -14px; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  flex: 1;
}

.price-card .btn-block {
  margin-top: auto;
  padding: 16px 22px;
  font-size: 15px;
}

.price-features strong { font-weight: 700; }
.price-features li.dim { color: var(--text-tertiary); }

/* FAQ ----------------------------------------------------------------- */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.faq-list details:hover { border-color: var(--border-strong); }

.faq-list details[open] { border-color: var(--accent); }

.faq-list summary {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 22px;
  color: var(--text-tertiary);
  font-weight: 300;
  margin-left: 16px;
  transition: transform 200ms ease, color 200ms ease;
}

.faq-list details[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-list p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-list a { color: var(--accent); text-decoration: underline; }

/* INSTALL CTA --------------------------------------------------------- */

.section-cta {
  padding: 100px 32px;
}

.cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--bg-deep);
  background-image:
    radial-gradient(60% 80% at 50% 0%, rgba(124, 58, 237, 0.30) 0%, transparent 70%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--accent-grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45);
  margin-bottom: 24px;
}

.cta-mark svg { width: 38px; height: 38px; }

.cta-card h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 12px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-btn { box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45); }

.cta-note {
  margin-top: 18px;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* FOOTER -------------------------------------------------------------- */

footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 32px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand { max-width: 280px; }

.footer-tag {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 160ms ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-tertiary);
}

/* LEGAL PAGES (privacy / terms) --------------------------------------- */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}

.legal-page h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal-meta {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 36px;
}

.legal-meta span + span { margin-left: 18px; }

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-page strong { color: var(--text-primary); font-weight: 700; }

.legal-page ul {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  padding-left: 22px;
}

.legal-page li { margin-bottom: 6px; }

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-page a:hover { color: var(--accent-hover); }

.legal-page code {
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: var(--text-primary);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-page th,
.legal-page td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.legal-page th {
  background: var(--bg-sunken);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
}

.legal-page tr:last-child td { border-bottom: none; }

.legal-page hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.legal-page em {
  color: var(--text-tertiary);
  font-style: normal;
  font-size: 13.5px;
}

.toc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.toc h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  columns: 2;
  column-gap: 28px;
}

.toc li { margin-bottom: 4px; line-height: 1.5; }

@media (max-width: 600px) {
  .legal-page { padding: 48px 20px 64px; }
  .legal-page h1 { font-size: 32px; }
  .toc ol { columns: 1; }
}

/* RESPONSIVE ---------------------------------------------------------- */

@media (max-width: 980px) {
  nav { padding: 12px 20px; gap: 12px; }
  .nav-links { display: none; }

  .hero { padding: 56px 20px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-preview { order: 2; }
  .hero-text { order: 1; }
  h1 { font-size: 42px; }
  .hero-sub { font-size: 16px; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; margin: -32px 20px 56px; }

  .section { padding: 64px 20px; }
  h2 { font-size: 30px; }

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

  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 20px 24px; }
  .footer-bar { flex-direction: column; gap: 8px; padding: 16px 20px; }
}

@media (max-width: 520px) {
  .preview-window { width: 320px; transform: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
