/* PeraSure — Web (desktop) marketing site */
/* Background: #F2F7F6, palette per CLAUDE.md */

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Schibsted Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #F2F7F6;
  color: #10202D;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

:root {
  /* Brand */
  --b-50:#F3F8FF; --b-100:#E4F0FF; --b-200:#C8DEFF; --b-300:#9FC6FA; --b-400:#74B2F5;
  --b-500:#3FA0F0; --b-600:#2C74BE; --b-700:#20558D; --b-800:#173D67; --b-900:#102950; --b-950:#000128;
  /* Green */
  --g-50:#F3FCF9; --g-100:#DDF8EE; --g-200:#BDF1DD; --g-300:#97E9C7; --g-400:#73E1B1;
  --g-500:#58E09A; --g-600:#3BCB84; --g-700:#2EAE6E; --g-800:#238556; --g-900:#195C3D; --g-950:#0E2E1F;
  /* Neutral */
  --n-0:#FFFFFF; --n-50:#F7F9FB; --n-100:#EEF2F5; --n-200:#E2E8ED; --n-300:#CDD6DD;
  --n-400:#A7B3BC; --n-500:#86939D; --n-600:#69747C; --n-700:#4D5861; --n-800:#2B3945; --n-900:#10202D; --n-950:#051724;

  --bg: #F2F7F6;
  --surface: #FFFFFF;
  --border: #E2E8ED;
  --border-soft: #EEF2F5;

  --radius-card: 24px;
  --radius-sm: 12px;
  --radius-md: 16px;

  --container: 1240px;
  --pad-x: 32px;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 16px; z-index: 50;
  padding: 0 24px;
  margin-top: 16px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  height: 64px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; font-size: 17px; color: var(--n-900);
}
.brand img {
  width: 28px; height: 28px; border-radius: 7px; display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14.5px; font-weight: 500; color: var(--n-700);
}
.nav-links a:hover { color: var(--n-900); }
.nav-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
}
.link-quiet {
  font-size: 14.5px; font-weight: 500; color: var(--n-700);
  padding: 8px 4px;
}
.link-quiet:hover { color: var(--n-900); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  border-radius: 999px; border: 1px solid transparent;
  padding: 11px 18px; cursor: pointer; transition: transform .12s ease, background .12s ease, color .12s ease;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--b-900); color: #fff;
}
.btn-primary:hover { background: var(--b-800); }
.btn-ghost {
  background: transparent; color: var(--n-900); border-color: var(--n-300);
}
.btn-ghost:hover { background: var(--n-100); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 90px;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--b-700);
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--b-50); border: 1px solid #DCE9F7;
  padding: 7px 14px 7px 12px; border-radius: 999px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--g-600);
  box-shadow: 0 0 0 4px var(--g-100);
}
.eyebrow.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: var(--b-200); }
.eyebrow.on-dark .dot { box-shadow: 0 0 0 4px rgba(59,203,132,0.15); }

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--n-900);
}
.hero-line {
  display: inline-block;
  white-space: nowrap;
}
.hero-amount {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.hero-sub {
  margin: 0 0 32px;
  font-size: 19px; line-height: 1.55; color: var(--n-700);
  max-width: 540px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 12px;
}
.hero-trust {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--n-700);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500;
}
.trust-item svg { color: var(--b-700); }
.trust-divider {
  width: 1px; height: 18px; background: var(--n-200);
}

/* Phone mock */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.phone-bg {
  position: absolute;
  inset: -40px -10px -40px -10px;
  background:
    radial-gradient(60% 50% at 70% 35%, var(--b-100) 0%, transparent 60%),
    radial-gradient(50% 40% at 25% 65%, var(--g-100) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
  border-radius: 40px;
}
.phone {
  position: relative;
  z-index: 1;
  width: 340px;
  background: var(--n-900);
  padding: 8px;
  border-radius: 44px;
  box-shadow: 0 30px 60px -20px rgba(16,32,45,0.25), 0 8px 20px -8px rgba(16,32,45,0.15);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: var(--n-900); border-radius: 999px; z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 36px;
  height: 660px;
  padding: 18px 20px 20px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.ps-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--n-900);
  padding: 4px 6px 12px;
}
.ps-status-right { display: inline-flex; gap: 5px; align-items: center; color: var(--n-900); }
.ps-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.ps-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 12px 6px 6px;
  font-size: 13px; font-weight: 700; color: var(--n-900);
}
.ps-brand img { width: 22px; height: 22px; border-radius: 6px; }
.ps-header-icons { display: flex; gap: 8px; }
.ps-header-icons span {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--n-800);
}
.ps-qualify {
  font-size: 13px; color: var(--n-600); margin-bottom: 4px;
}
.ps-amount {
  font-size: 44px; font-weight: 800; color: var(--n-900);
  letter-spacing: -0.045em; line-height: 1; margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 2px;
}
.ps-peso { font-size: 30px; font-weight: 600; }

.ps-card {
  background: #fff; border-radius: 22px; padding: 18px 18px 16px;
  border: 1px solid var(--border);
}
.ps-card-title {
  font-size: 18px; font-weight: 700; color: var(--n-900);
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.ps-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 16px;
}
.ps-stat { display: flex; flex-direction: column; gap: 4px; }
.ps-stat span { font-size: 11px; color: var(--n-500); }
.ps-stat strong { font-size: 15px; font-weight: 700; color: var(--n-900); letter-spacing: -0.01em; }
.ps-cta {
  background: var(--b-700); color: #fff;
  border-radius: 999px; padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600;
}

/* ============ STATS STRIP ============ */
.stats {
  padding: 30px 0 50px;
}
.stats-grid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--border-soft);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: 48px; font-weight: 800; color: var(--n-900);
  letter-spacing: -0.045em; line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.stat-unit {
  font-size: 18px; font-weight: 600; color: var(--n-500);
  letter-spacing: -0.01em;
}
.stat-label {
  margin-top: 12px;
  font-size: 14px; font-weight: 700; color: var(--n-900);
  letter-spacing: -0.005em;
}
.stat-sub {
  margin-top: 6px;
  font-size: 13.5px; color: var(--n-600); line-height: 1.5;
  max-width: 240px;
}

/* ============ SECTIONS ============ */
section { scroll-margin-top: 120px; }

.section-head {
  margin-bottom: 48px;
  max-width: 760px;
}
.section-head h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--n-900);
  text-wrap: balance;
}

/* Features */
.features { padding: 80px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
}
.feature-illu {
  color: var(--b-800);
  margin-bottom: 32px;
}
.feature-illu svg { display: block; }
.feature h3 {
  margin: 0 0 10px;
  font-size: 24px; font-weight: 700; color: var(--n-900);
  letter-spacing: -0.02em;
}
.feature p {
  margin: 0;
  font-size: 15.5px; line-height: 1.55; color: var(--n-700);
}

/* How */
.how { padding: 80px 0; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 26px 30px;
  position: relative;
}
.step-num {
  font-size: 14px; font-weight: 700; color: var(--b-700);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  font-variant-numeric: tabular-nums;
}
.step h4 {
  margin: 0 0 8px;
  font-size: 19px; font-weight: 700; color: var(--n-900);
  letter-spacing: -0.015em;
}
.step p {
  margin: 0;
  font-size: 14.5px; line-height: 1.55; color: var(--n-600);
}

/* Promises */
.promises { padding: 80px 0; }
.promise-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.promise {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
}
.promise-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--b-50);
  border: 1px solid var(--b-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--b-700);
  margin-bottom: 28px;
}
.promise h3 {
  margin: 0 0 12px;
  font-size: 26px; font-weight: 700; color: var(--n-900);
  letter-spacing: -0.02em;
}
.promise p {
  margin: 0 0 22px;
  font-size: 16px; line-height: 1.55; color: var(--n-700);
}
.promise-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.promise-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px; line-height: 1.45; color: var(--n-800);
}
.promise-list li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--g-100);
  border: 2px solid var(--g-600);
}

/* FAQ */
.faq { padding: 80px 0; }
.faq-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 19px; font-weight: 600; color: var(--n-900);
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--n-100); color: var(--n-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--b-50); color: var(--b-700); }
.faq-body {
  padding: 0 32px 28px;
  font-size: 15.5px; line-height: 1.6; color: var(--n-700);
  max-width: 820px;
}
.faq-answer-link {
  display: inline-flex;
  align-items: center;
  color: var(--b-700);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.faq-answer-link:hover {
  color: var(--b-900);
}

/* Delete account page */
.delete-main {
  background: var(--bg);
}
.subpage-hero {
  padding: 80px 0 70px;
}
.delete-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
}
.delete-hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--n-900);
  text-wrap: balance;
}
.delete-hero-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--n-700);
  max-width: 560px;
}
.delete-hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
  width: 100%;
  max-width: 430px;
  justify-self: center;
  box-shadow: 0 28px 70px -34px rgba(16,32,45,0.38);
}
.video-frame {
  width: min(100%, 330px);
  aspect-ratio: 9 / 20;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--n-950);
}
.delete-video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--n-950);
  object-fit: contain;
}
.video-caption {
  margin: 14px 4px 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--n-700);
}
.delete-guide {
  padding: 60px 0 100px;
}
.account-step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.account-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 26px 30px;
}
.account-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--n-900);
}
.account-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--n-600);
}
.web-delete-request {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--b-200);
  border-radius: var(--radius-card);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 24px 60px -38px rgba(16,32,45,0.28);
}
.request-label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--b-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.web-delete-request h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--n-900);
}
.web-delete-request p {
  margin: 0;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--n-700);
}
.web-delete-request p a {
  color: var(--b-700);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.web-delete-request .btn {
  flex: 0 0 auto;
  min-width: 220px;
  justify-content: center;
}
.delete-note {
  margin-top: 20px;
  background: var(--n-900);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.delete-note-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--g-500);
}
.delete-note h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.delete-note p {
  margin: 0;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--n-300);
}

/* Final CTA */
.finalcta { padding: 60px 0 100px; }
.finalcta-card {
  background: var(--b-900);
  color: #fff;
  border-radius: 32px;
  padding: 64px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.finalcta-copy h2 {
  margin: 22px 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
}
.finalcta-copy p {
  margin: 0 0 32px;
  font-size: 17px; line-height: 1.55; color: var(--b-200);
  max-width: 460px;
}
.finalcta-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--n-900);
  border: 0;
  border-radius: 14px;
  padding: 12px 22px 12px 18px;
  transition: transform .12s ease;
  cursor: pointer;
  font: inherit;
}
.store-btn:hover { transform: translateY(-1px); }
.store-btn svg { flex-shrink: 0; color: var(--n-900); }
.store-btn span { display: flex; flex-direction: column; line-height: 1; }
.store-pre { font-size: 11px; color: var(--n-600); margin-bottom: 4px; letter-spacing: 0.01em; }
.store-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.finalcta-visual {
  position: relative; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.finalcta-blob {
  position: absolute; inset: 10% 5%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(63,160,240,0.22), transparent 70%);
  border-radius: 50%;
}
.finalcta-phone {
  position: relative; z-index: 1;
  width: 280px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 24px;
  transform: rotate(-2deg);
}
.finalcta-phone-screen { display: flex; flex-direction: column; gap: 12px; }
.fcp-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #fff;
}
.fcp-row img { width: 22px; height: 22px; border-radius: 6px; }
.fcp-amount-label { font-size: 13px; color: var(--b-200); margin-top: 12px; }
.fcp-amount {
  font-size: 44px; font-weight: 800; color: #fff;
  letter-spacing: -0.045em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fcp-bar {
  height: 6px; background: rgba(255,255,255,0.10); border-radius: 999px;
  overflow: hidden; margin-top: 4px;
}
.fcp-bar-fill { width: 78%; height: 100%; background: var(--g-500); border-radius: 999px; }
.fcp-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px;
}
.fcp-mini > div { display: flex; flex-direction: column; gap: 2px; }
.fcp-mini span { font-size: 11px; color: var(--b-200); }
.fcp-mini strong { font-size: 14px; font-weight: 700; color: #fff; }
.fcp-cta {
  margin-top: 6px;
  background: var(--g-600);
  color: var(--n-950);
  border-radius: 999px;
  padding: 12px;
  text-align: center;
  font-size: 14px; font-weight: 700;
}

/* Footer */
.foot {
  background: var(--n-900);
  color: var(--n-300);
  padding: 80px 0 32px;
}
.foot .brand { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-tag {
  margin: 18px 0 0;
  font-size: 14.5px; line-height: 1.55; color: var(--n-400);
  max-width: 320px;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-title {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.foot-col a {
  font-size: 14.5px; color: var(--n-400);
}
.foot-col a:hover { color: #fff; }

.foot-legal {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.legal-corp {
  font-size: 14px; font-weight: 700; color: #fff;
  letter-spacing: 0.06em;
}
.legal-reg {
  margin-top: 6px;
  font-size: 13px; color: var(--n-400); font-variant-numeric: tabular-nums;
}
.legal-addr {
  margin-top: 10px;
  font-size: 13px; color: var(--n-500);
}
.legal-disclaimer {
  margin: 0;
  font-size: 12.5px; line-height: 1.55; color: var(--n-500);
}
.legal-copy {
  margin-top: 14px;
  font-size: 12.5px; color: var(--n-500);
}

/* Smaller breakpoint guard */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
  .steps { grid-template-columns: 1fr 1fr; }
  .delete-hero-grid { grid-template-columns: 1fr; }
  .account-step-list { grid-template-columns: 1fr 1fr; }
  .finalcta-card { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-legal { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(34px, 8.5vw, 42px); }
}

@media (max-width: 900px) {
  :root {
    --pad-x: 22px;
  }

  .nav {
    top: 0;
    margin-top: 0;
    padding: 10px 14px;
    background: rgba(242, 247, 246, 0.92);
    backdrop-filter: blur(16px);
  }

  .nav-inner {
    height: 56px;
    padding: 0 8px 0 14px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn {
    padding: 10px 14px;
    font-size: 13.5px;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .trust-divider {
    display: none;
  }

  .phone {
    width: min(320px, calc(100vw - 56px));
  }

  .phone-screen {
    height: 620px;
  }

  .stats {
    padding: 20px 0 36px;
  }

  .features,
  .how,
  .promises,
  .faq {
    padding: 56px 0;
  }

  .promise-grid,
  .delete-hero-grid,
  .finalcta-card {
    grid-template-columns: 1fr;
  }

  .delete-hero-copy {
    text-align: center;
  }

  .delete-hero-copy p,
  .delete-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .finalcta {
    padding: 42px 0 72px;
  }

  .finalcta-card {
    padding: 42px;
    border-radius: 28px;
  }

  .finalcta-copy {
    text-align: center;
  }

  .finalcta-copy p,
  .finalcta-buttons {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --pad-x: 18px;
    --radius-card: 18px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav,
  .hero,
  .stats,
  .features,
  .how,
  .promises,
  .faq,
  .subpage-hero,
  .delete-guide,
  .finalcta,
  .foot {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-grid {
    width: 100%;
    max-width: 100%;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .hero-copy,
  .section-head,
  .stats-grid,
  .stat-cell,
  .feature,
  .step,
  .promise,
  .account-step,
  .video-card,
  .web-delete-request,
  .delete-note,
  .faq-list,
  .finalcta-card,
  .foot-grid,
  .foot-legal,
  .legal-block {
    min-width: 0;
    max-width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 42px 0 46px;
  }

  .eyebrow {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    letter-spacing: 0.04em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-line,
  .hero-amount {
    display: inline;
    white-space: normal;
  }

  .hero-sub {
    font-size: 16.5px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-ctas,
  .delete-hero-actions,
  .finalcta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .delete-hero-actions .btn,
  .finalcta-buttons .store-btn {
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    width: 100%;
    padding: 14px;
    gap: 12px;
  }

  .trust-item {
    justify-content: center;
    width: 100%;
  }

  .phone-bg {
    inset: -18px 0;
    filter: blur(14px);
  }

  .phone {
    width: min(300px, calc(100vw - 44px));
    border-radius: 36px;
  }

  .phone-notch {
    width: 82px;
    height: 22px;
  }

  .phone-screen {
    height: auto;
    min-height: 0;
    border-radius: 30px;
    padding: 16px;
  }

  .ps-header-icons {
    display: none;
  }

  .ps-amount {
    font-size: 38px;
  }

  .ps-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .feature-grid,
  .steps,
  .account-step-list,
  .promise-grid,
  .foot-grid,
  .foot-legal {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .faq-list,
  .finalcta-card {
    overflow: hidden;
  }

  .stat-cell {
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .stat-cell:last-child {
    border-bottom: 0;
  }

  .stat-num {
    display: flex;
    flex-wrap: wrap;
    font-size: 40px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .delete-hero-copy h1,
  .finalcta-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .feature,
  .promise,
  .account-step,
  .step {
    padding: 24px;
  }

  .subpage-hero {
    padding: 46px 0 44px;
  }

  .delete-guide {
    padding: 48px 0 72px;
  }

  .video-card {
    padding: 12px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .delete-note {
    padding: 24px;
    flex-direction: column;
  }

  .web-delete-request {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .web-delete-request .btn {
    justify-content: center;
    width: 100%;
  }

  .feature-illu {
    margin-bottom: 22px;
  }

  .faq-item summary {
    gap: 16px;
    padding: 22px;
    align-items: flex-start;
    font-size: 17px;
  }

  .faq-chev {
    flex: 0 0 auto;
  }

  .faq-body {
    padding: 0 22px 24px;
  }

  .finalcta-card {
    padding: 28px 22px;
    border-radius: 24px;
    gap: 24px;
    width: 100%;
  }

  .finalcta-visual {
    height: auto;
    min-height: 250px;
  }

  .finalcta-phone {
    width: min(250px, 100%);
    transform: none;
  }

  .legal-addr,
  .legal-disclaimer,
  .legal-copy {
    overflow-wrap: anywhere;
  }

  .foot {
    padding: 52px 0 28px;
  }

  .foot-grid {
    gap: 28px;
    padding-bottom: 36px;
  }

  .foot-legal {
    gap: 22px;
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 14px;
  }

  .nav {
    padding: 8px 10px;
  }

  .nav-inner {
    border-radius: 18px;
  }

  .nav-actions .btn {
    padding: 9px 11px;
  }

  .hero-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .btn-lg {
    padding: 14px 18px;
  }

  .phone-wrap {
    display: none;
  }

  .stat-num {
    font-size: 34px;
  }

  .stat-unit {
    font-size: 15px;
  }

  .feature h3,
  .promise h3 {
    font-size: 21px;
  }

  .store-btn {
    justify-content: center;
    padding-right: 18px;
  }

  .hero-copy > *,
  .delete-hero-copy > *,
  .section-head > *,
  .stat-cell > *,
  .feature > *,
  .step > *,
  .promise > *,
  .finalcta-copy > *,
  .foot * {
    max-width: 100%;
  }
}
