/* ===== ALMA Menopause Landing — v2 ===== */
/* Design: "Quiet Navigation" — sage green, warm cream, medical trust */

:root {
  --bg: #faf8f5;
  --bg-alt: #f2eeea;
  --surface: #ffffff;
  --ink: #1a1614;
  --body: #4a3f38;
  --muted: #6b6059;
  --accent: #5b7a6a;
  --accent-light: #e8f0eb;
  --accent-pale: #f2f7f4;
  --cta: #c4816e;
  --cta-hover: #b06a57;
  --cta-shadow: rgba(196, 129, 110, 0.25);
  --line: rgba(0, 0, 0, 0.07);
  --line-strong: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1100px;
  --container-narrow: 780px;
  --page-pad: clamp(20px, 4vw, 40px);
  --section-gap: clamp(80px, 10vw, 140px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(91, 122, 106, 0.18);
  color: var(--ink);
}

a { color: inherit; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

/* ===== LAYOUT ===== */

.container {
  width: min(var(--container), calc(100% - var(--page-pad) * 2));
  margin-inline: auto;
}

.container--narrow {
  width: min(var(--container-narrow), calc(100% - var(--page-pad) * 2));
  margin-inline: auto;
}

/* ===== TOP ACCENT ===== */

.top-accent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta), var(--accent));
  z-index: 100;
}

/* ===== NAV ===== */

.nav {
  position: sticky;
  top: 3px;
  z-index: 50;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.nav--scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.nav-cta:hover {
  background: #4e6d5e;
  transform: translateY(-1px);
}

/* ===== LABELS ===== */

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border: 1px solid rgba(91, 122, 106, 0.2);
  border-radius: var(--radius-pill);
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.label--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--accent-light);
}

.label--light::before {
  background: var(--accent-light);
}

/* ===== HEADINGS ===== */

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  font-weight: 600;
}

h1 em {
  color: var(--accent);
  font-style: italic;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  max-width: 32ch;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 16px var(--cta-shadow);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--cta-shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

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

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* ===== HERO ===== */

.hero {
  padding: clamp(100px, 12vw, 160px) 0 var(--section-gap);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 50ch;
  line-height: 1.75;
  color: var(--body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(91, 122, 106, 0.12);
}

/* Hero card — product preview */
.hero-card {
  position: relative;
}

.hero-card-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 400ms var(--ease);
}

.hero-card-inner:hover {
  transform: rotate(0deg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.hero-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-card-row:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.hero-card-label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== PRIVACY STRIP ===== */

.privacy-strip {
  padding: 40px 0;
  background: var(--bg);
}

.privacy-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.privacy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}

.privacy-item:hover {
  border-color: rgba(91, 122, 106, 0.25);
  box-shadow: var(--shadow-sm);
}

.privacy-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.privacy-item strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-item span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* ===== DISCLAIMER (hero) ===== */

.disclaimer {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
  max-width: 60ch;
}

/* ===== VOICES / QUOTES ===== */

.voices {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

.voices h2 {
  margin-bottom: 40px;
}

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

.quote-card {
  margin: 0;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

/* ===== SOLUTION / PILLARS ===== */

.solution {
  padding: var(--section-gap) 0;
}

.solution h2 {
  margin-bottom: 48px;
  max-width: 28ch;
}

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

.pillar {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 122, 106, 0.25);
}

.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
}

.pillar h3 {
  margin-bottom: 12px;
}

.pillar p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== PROCESS / STEPS ===== */

.process {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

.process h2 {
  margin-bottom: 48px;
}

.steps {
  display: grid;
  gap: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: none;
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 6px;
}

.step-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */

.pricing {
  padding: var(--section-gap) 0;
}

.pricing h2 {
  margin-bottom: 48px;
  max-width: 24ch;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent);
  position: relative;
}

/* badge moved to HTML as .price-badge */

.price-tier {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.35rem;
  margin: -8px 0 0;
}

.price-amount {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.price-amount span {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
}

.price-card .btn {
  margin-top: auto;
}

/* ===== TRUST ===== */

.trust {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

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

.trust-item {
  padding: 32px 28px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trust-item h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.trust-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */

.faq-section {
  padding: var(--section-gap) 0;
}

.faq-section h2 {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 200ms var(--ease);
}

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

.faq-item summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 60ch;
}

/* ===== ACCESS FORM ===== */

.access {
  padding: var(--section-gap) 0;
}

.access-panel {
  background: linear-gradient(145deg, #2a2420, #3c302a);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.access-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 122, 106, 0.15), transparent 70%);
  pointer-events: none;
}

.access-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-text h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.access-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.access-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

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

.field label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.field input::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 122, 106, 0.2);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.5;
}

.success-msg {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(91, 122, 106, 0.15);
  border: 1px solid rgba(91, 122, 106, 0.3);
}

.success-msg p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.success-msg strong {
  color: #fff;
  font-size: 1.1rem;
}

[hidden] { display: none !important; }

/* ===== FOOTER ===== */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

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

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 200ms var(--ease);
}

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

.footer-disclaimer {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 72ch;
}

/* ===== ACCESSIBILITY ===== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 200;
  text-decoration: none;
  transition: top 200ms;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.field input:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 122, 106, 0.3);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== QUOTE MARKS ===== */

.quote-card::before {
  content: '\201C';
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 8px;
}

/* ===== PRICING BADGE (HTML) ===== */

.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== SELECT ARROW ===== */

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a3f38' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ===== ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.quotes-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.quotes-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.quotes-grid .reveal:nth-child(4) { transition-delay: 150ms; }
.quotes-grid .reveal:nth-child(5) { transition-delay: 200ms; }
.quotes-grid .reveal:nth-child(6) { transition-delay: 200ms; }

.pillars .reveal:nth-child(2) { transition-delay: 100ms; }
.pillars .reveal:nth-child(3) { transition-delay: 200ms; }

.steps .reveal:nth-child(2) { transition-delay: 100ms; }
.steps .reveal:nth-child(3) { transition-delay: 200ms; }
.steps .reveal:nth-child(4) { transition-delay: 300ms; }

.pricing-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 200ms; }

.trust-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.trust-grid .reveal:nth-child(3) { transition-delay: 200ms; }

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .privacy-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card-inner {
    transform: none;
    max-width: 480px;
  }

  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .access-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .privacy-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .privacy-item {
    padding: 18px 12px;
  }

  .footer-disclaimer {
    font-size: 0.82rem;
    padding-top: 16px;
  }

  .hero {
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .trust-row {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card-inner { transform: none; }
}
