/* ============================================================
   THE HEALTH PROJECT — styles.css
   Brand reference: peterattiamd.com (main site)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg:            #F7F5F1;   /* warm off-white body */
  --surface:       #FFFFFF;   /* card / nav surface */
  --fg:            #2F2F35;   /* dark charcoal text */
  --fg-muted:      #6B6B73;   /* secondary text */
  --accent:        #8BC3DE;   /* soft blue-teal CTA */
  --accent-dark:   #5FA5C5;   /* hover state */
  --navy:          #0046A5;   /* link navy */
  --border:        #E5E2DC;   /* subtle border */

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-pill:   100px;
  --radius-card:   8px;

  --space-xs:      8px;
  --space-sm:      16px;
  --space-md:      24px;
  --space-lg:      40px;
  --space-xl:      64px;
  --space-2xl:     96px;
  --space-3xl:     128px;

  --max-w:         1100px;
  --max-w-text:    680px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--fg); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; line-height: 1.4; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section { padding: var(--space-3xl) 0; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn--primary:hover {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--fg);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn--accent {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--fg);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(139,195,222,0.4);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--fg);
  border-color: rgba(47,47,53,0.35);
}
.btn--ghost-dark:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.btn--pulse { animation: cta-idle 3s ease-in-out infinite; }
@keyframes cta-idle {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,195,222,0); }
  50%      { box-shadow: 0 0 0 10px rgba(139,195,222,0.22); }
}

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--space-lg);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s ease;
}

.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo:hover { color: var(--fg); }

.nav__cta .btn { padding: 10px 22px; font-size: 0.78rem; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  color: var(--fg);
  padding-top: calc(64px + var(--space-3xl));
  padding-bottom: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(139,195,222,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
}

.hero__heading {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--fg);
}

.hero__underline {
  display: inline-block;
  background-image: linear-gradient(var(--fg), var(--fg));
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  animation: underline-draw 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

@keyframes underline-draw {
  to { background-size: 100% 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__underline {
    background-size: 100% 3px;
    animation: none;
  }
}

.scroll-underline {
  display: inline-block;
  background-image: linear-gradient(var(--fg), var(--fg));
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  transition: background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-underline.animate {
  background-size: 100% 3px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-underline { background-size: 100% 3px; transition: none; }
}

.hero__subhead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.hero__urgency {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.hero__urgency strong { color: var(--accent-dark); }

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* ── HERO ICON STRIP ───────────────────────────────────── */
.hero__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 780px;
  margin: 0 auto var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139,195,222,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.hero-icon-circle svg {
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
}

.hero-icon-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.2;
}

.hero-icon-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.3;
}

/* ── VSL PLACEHOLDER (inside hero) ────────────────────── */
.vsl-placeholder {
  border: 2px dashed var(--border);
  border-radius: 12px;
  background: var(--surface);
  aspect-ratio: 16/9;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vsl-placeholder:hover {
  border-color: var(--accent);
  background: rgba(139,195,222,0.03);
}

.vsl-placeholder__icon {
  width: 72px;
  height: 72px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
  opacity: 0.85;
}

.vsl-placeholder__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── SECTION HEADER ────────────────────────────────────── */
.section-header { margin-bottom: var(--space-xl); }
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: var(--space-sm); display: block; }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { font-size: 1.1rem; color: var(--fg-muted); max-width: 580px; }
.section-header--center p { margin: 0 auto; }

/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-section { background: var(--bg); }

.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-photo-wrap { flex-shrink: 0; }

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content .label { display: block; margin-bottom: var(--space-sm); }
.about-content h2 { margin-bottom: 4px; font-size: clamp(2rem, 3.5vw, 2.8rem); }
.about-credential {
  font-size: 1rem;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}
.about-content p { color: var(--fg-muted); line-height: 1.7; max-width: 520px; }
.about-content p + p { margin-top: var(--space-sm); }
.about-cta { margin-top: var(--space-lg) !important; }

/* ── PROBLEM SECTION ───────────────────────────────────── */
.problem { background: var(--surface); }

.problem__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.problem__intro .label { display: block; margin-bottom: var(--space-sm); }

.problem__intro h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
}

.problem__intro p {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.problem__bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pain-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  background: var(--bg);
  transition: border-color 0.2s ease;
}

.pain-card:hover { border-color: rgba(95,165,197,0.45); }

.pain-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.pain-card__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.problem__bridge {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
}

.problem__bridge p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.problem__bridge strong { color: var(--fg); }

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-section { background: var(--surface); }

.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

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

.step__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139,195,222,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.step__icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
}

.step__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-xs);
}

.step__title {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.step__body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── WHAT'S INCLUDED GRID ──────────────────────────────── */
.value-section { background: var(--surface); padding-top: var(--space-xl); }

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.included-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color 0.2s ease;
}

.included-item:hover { border-color: rgba(95,165,197,0.4); }

.included-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139,195,222,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.included-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
}

.included-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--fg);
  font-size: 1rem;
}

.included-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── GUARANTEE ─────────────────────────────────────────── */
.guarantee-section {
  background: var(--surface);
  padding-top: var(--space-xl);
}

.pricing-section { padding-bottom: var(--space-xl); }

.guarantee-card-single {
  max-width: 620px;
  margin: var(--space-lg) auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.guarantee-row-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.guarantee-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139,195,222,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon-circle svg {
  width: 13px;
  height: 13px;
  color: var(--accent-dark);
}

.guarantee-card-single__refund {
  padding: var(--space-lg);
}

.guarantee-card-single__refund p,
.guarantee-card-single__bonus p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

.guarantee-card-single__divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--space-lg);
}

.guarantee-card-single__bonus {
  padding: var(--space-lg);
}

.guarantee-card-single__bonus p strong { color: var(--fg); }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-section { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  background: var(--bg);
  position: relative;
}

.price-card--featured {
  border-color: var(--fg);
  border-width: 2px;
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card__pilot {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.price-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card__period { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: var(--space-lg); }
.price-card__spots  { font-size: 0.85rem; color: var(--accent-dark); font-weight: 500; margin-bottom: var(--space-md); }
.price-card__cta { width: 100%; text-align: center; margin-bottom: var(--space-md); }
.price-card__note { font-size: 0.8rem; color: var(--fg-muted); text-align: center; }

.pricing-grid--single {
  grid-template-columns: 1fr;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.price-card__was {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 4px;
}

.price-card__amount--accent {
  color: var(--accent-dark);
}

.price-anchor-text {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.price-anchor-text strong { color: var(--fg); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { background: var(--bg); padding-top: var(--space-xl); }

.faq-list { list-style: none; border-top: 1px solid var(--border); }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-body);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.faq-answer {
  display: none;
  padding: 0 0 var(--space-lg);
  color: var(--fg-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 680px;
}

.faq-item.open .faq-answer { display: block; }

/* ── FINAL CTA — light ─────────────────────────────────── */
.final-cta {
  background: var(--surface);
  text-align: center;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border);
}

.final-cta .label {
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.final-cta__trust {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.55;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CALENDLY EMBED ────────────────────────────────────── */
.calendly-embed-wrapper {
  background: var(--bg);
  padding: var(--space-xl) 0 var(--space-3xl);
}

.calendly-embed-wrapper .section-header { text-align: center; margin-bottom: var(--space-lg); }

#calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer p { font-size: 0.85rem; color: var(--fg-muted); }

/* ── ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

/* ── RESPONSIVE — 768px ────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-xl:  40px;
    --space-2xl: 64px;
    --space-3xl: 80px;
  }

  .container,
  .container--text,
  .container--narrow { padding: 0 var(--space-md); }

  section { padding: var(--space-2xl) 0; }

  /* Hero */
  .hero {
    padding-top: calc(64px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__icons {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 480px;
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo-wrap {
    display: flex;
    justify-content: center;
  }
  .about-photo {
    width: min(280px, 100%);
    aspect-ratio: 3/4;
  }
  .about-content p { margin-left: auto; margin-right: auto; }
  .about-cta { display: block; text-align: center; }

  /* Problem */
  .problem__bullets { grid-template-columns: 1fr; }

  /* Steps */
  .step { grid-template-columns: 44px 1fr; gap: var(--space-md); }
  .step__icon-wrap { width: 44px; height: 44px; }
  .step__icon-wrap svg { width: 18px; height: 18px; }

  /* Included */
  .included-grid { grid-template-columns: repeat(2, 1fr); }

  /* Guarantees / Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Nav */
  .nav__logo { font-size: 1.1rem; }
  .nav { padding: 0 var(--space-md); }
}

/* ── RESPONSIVE — 375px ────────────────────────────────── */
@media (max-width: 480px) {
  :root { --space-3xl: 64px; }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

  .hero__icons {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 100%;
  }

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

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .step { grid-template-columns: 40px 1fr; }
}
