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

:root {
  --c1: #F9F5EF;
  --c2: #EDE8E1;
  --c4: #E8E0D8;
  --ink:       #2C1F1A;
  --ink-mid:   #5C3030;
  --ink-light: #A64444;
  --ink-faint: #D4A8A8;
  --accent:    #c0392b;
  --accent-dk: #7b1a1a;
  --gold:      #C9A84C;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --italiana: 'Italiana', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--c1);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── SHARED ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mid); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 20px; height: 0.5px; background: var(--ink-faint); }

.sh2 {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--ink); margin-bottom: 16px;
}
.sh2 em { font-style: italic; color: var(--accent); }

/* ── BUTTONS ── */
.btn-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  color: var(--c1);
  font-size: 12px; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 40px; border: none; transition: background 0.2s;
}
.btn-solid:hover { background: linear-gradient(135deg, #d44333, #8f2020); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 17px 36px; font-size: 12px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); border: 0.5px solid var(--ink-mid);
  text-decoration: none; border-radius: 40px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--c1); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: rgba(249,245,239,0.96);
  backdrop-filter: blur(16px);
  border-color: var(--ink-faint);
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); text-decoration: none; letter-spacing: 0.05em;
}
.nav-links { display: none; }
.nav-links a {
  font-size: 11px; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--ink); color: var(--c1);
  font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 40px; white-space: nowrap; transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink-mid); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; width: 28px;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c1); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--ink); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-cta {
  font-family: var(--sans) !important; font-size: 12px !important;
  letter-spacing: 0.2em !important; text-transform: uppercase;
  color: var(--c1) !important;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  padding: 18px 36px; border-radius: 40px; margin-top: 16px;
}

/* ── HERO ── */
#hero {
  background: var(--c1); min-height: 100svh;
  padding: 120px 24px 64px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; position: relative;
  gap: 0;
}
#hero::before, #hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 0.5px;
  background: var(--ink-faint); opacity: 0.4; pointer-events: none;
}
#hero::before { left: 24px; }
#hero::after  { right: 24px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-mid);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 18px; height: 0.5px; background: var(--ink-faint); }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 10vw, 72px);
  font-weight: 600; line-height: 1.05; color: var(--ink);
  margin-bottom: 10px;
  opacity: 0; animation: fadeUp 0.9s 0.22s forwards;
}
.hero-script {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 42px);
  font-style: italic; font-weight: 300;
  color: var(--accent); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--ink-mid);
  max-width: 420px; margin: 0 auto 40px; line-height: 1.9; font-style: italic;
  opacity: 0; animation: fadeUp 0.9s 0.38s forwards;
}
.hero-btns {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  margin-top: 40px;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}

/* ── WHATSAPP PREVIEW ── */
.wa-preview {
  width: 100%; max-width: 360px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(44,31,26,0.15);
  opacity: 0; animation: fadeUp 1s 0.46s forwards;
  text-align: left;
}
.wa-header {
  background: #075E54; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 400; flex-shrink: 0;
  font-family: var(--serif);
}
.wa-title { color: #fff; font-size: 14px; font-weight: 400; }
.wa-sub { color: rgba(255,255,255,0.65); font-size: 11px; margin-top: 1px; }
.wa-body { background: #ECE5DD; padding: 16px; }
.wa-bubble {
  background: #fff; border-radius: 0 12px 12px 12px;
  padding: 14px 16px; font-size: 14px; line-height: 1.75;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); color: var(--ink);
  font-family: var(--sans); font-weight: 300;
}
.wa-bubble strong { color: var(--accent); font-weight: 500; }
.wa-time { font-size: 11px; color: #8696A0; text-align: right; margin-top: 6px; }
.wa-tag {
  display: inline-block; font-size: 11px; font-weight: 400;
  padding: 4px 12px; border-radius: 40px; margin-top: 12px;
  background: rgba(42,122,74,0.1); color: #2A7A4A; letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
#how { background: var(--c2); padding: 80px 24px; }
#how .eyebrow { color: var(--ink-mid); }
#how .eyebrow::before, #how .eyebrow::after { background: var(--ink-faint); }
#how .sh2 { color: var(--ink); font-size: clamp(28px, 5vw, 44px); }
#how .sh2 em { color: var(--accent); }

.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 48px;
}
.how-card {
  background: var(--c1); border: 0.5px solid var(--ink-faint);
  border-top: 2px solid var(--accent);
  border-radius: 2px; padding: 28px 22px; transition: transform 0.3s;
}
.how-card:hover { transform: translateY(-4px); }
.how-num {
  font-family: var(--serif); font-size: 44px; font-weight: 200;
  color: var(--ink-faint); line-height: 1; margin-bottom: 14px;
}
.how-card-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.how-card-desc { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; }

/* ── PRICING ── */
#pricing { background: var(--c4); padding: 80px 24px; }

.pricing-intro { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 0.5px solid var(--ink-faint); }
.pricing-intro-q {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  font-weight: 300; color: var(--ink); line-height: 1.6; margin-bottom: 10px;
}
.pricing-intro-s { font-size: 14px; color: var(--ink-light); font-weight: 300; letter-spacing: 0.05em; }

.pricing-cards { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }

.pc { background: var(--c1); border: 0.5px solid var(--ink-faint); border-radius: 2px; padding: 32px 28px; }
.pc-badge { display: inline-block; font-size: 9px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; border-radius: 40px; background: var(--ink); color: var(--c1); margin-bottom: 10px; }
.pc-name { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 10px 0 4px; }
.pc-rm { font-size: 17px; color: var(--ink-mid); font-weight: 300; }
.pc-num { font-family: var(--serif); font-size: 60px; font-weight: 200; color: var(--ink); line-height: 1; }
.pc-unit { font-size: 14px; color: var(--ink-mid); font-weight: 300; margin-bottom: 18px; }
.pc-rule { height: 0.5px; background: var(--ink-faint); margin-bottom: 20px; }
.pc-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pc-item { display: flex; gap: 10px; font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--ink); }
.pc-cta {
  display: block; text-align: center; padding: 20px;
  font-size: 13px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 40px; text-decoration: none;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  border: none; color: #f9f5ef; transition: all 0.2s;
}
.pc-cta:hover { background: linear-gradient(135deg, #d44333, #8f2020); }
.pc-cta-outline {
   display: block; text-align: center; padding: 20px;
  font-size: 13px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 40px; text-decoration: none;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  border: none; color: #f9f5ef; transition: all 0.2s;
}
.pc-cta-outline:hover { background: linear-gradient(135deg, #d44333, #8f2020); }

/* Bundle */
.bundle-card {
  background: var(--c1); border: 0.5px solid var(--ink-faint);
  border-radius: 2px; padding: 40px 36px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.bundle-eyebrow {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  font-weight: 300; color: var(--ink-mid); margin-bottom: 6px; letter-spacing: 0.03em;
}
.bundle-divider {
  display: flex; align-items: center; gap: 12px;
  width: 100%; margin-bottom: 20px;
}
.bundle-divider::before, .bundle-divider::after { content: ''; flex: 1; height: 0.5px; background: var(--ink-faint); }
.bundle-divider span { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300; white-space: nowrap; }
.bundle-headline {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--ink); line-height: 1.25; margin-bottom: 14px;
}
.bundle-headline em { font-style: italic; color: #A87A2A; }
.bundle-desc { font-size: 16px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; max-width: 380px; margin: 0 auto 28px; }
.bundle-badge-pill {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #C9A84C, #a8873a);
  color: var(--ink); padding: 16px 40px; border-radius: 40px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; transition: opacity 0.2s;
}
.bundle-badge-pill:hover { opacity: 0.85; }
.bundle-note { font-size: 13px; color: var(--ink-faint); margin-top: 16px; letter-spacing: 0.04em; }

/* Calculator */
.calc-wrap { margin-top: 24px; }
.calc-inner { background: var(--c1); border: 0.5px solid var(--ink-faint); border-radius: 2px; overflow: hidden; }
.calc-top { padding: 28px 32px 22px; border-bottom: 0.5px solid var(--ink-faint); }
.calc-heading { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ink); margin-bottom: 6px; }
.calc-sub-text { font-size: 14px; color: var(--ink-light); font-weight: 300; }
.calc-body { display: flex; flex-direction: column; padding: 24px 32px; gap: 14px; }
.calc-row { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-field { display: flex; flex-direction: column; flex: 0 0 130px; }
.calc-field-grow { flex: 1; min-width: 180px; }
.calc-col-label { font-size: 9px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 6px; }
.calc-inp, .calc-sel {
  width: 100%; padding: 14px 16px;
  border: 0.5px solid var(--ink-faint); border-radius: 2px;
  font-size: 16px; font-family: var(--sans); font-weight: 300;
  background: var(--c2); color: var(--ink); transition: border 0.15s;
}
.calc-inp:focus, .calc-sel:focus { outline: none; border-color: var(--ink-mid); background: var(--c1); }
.calc-bundle-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--c2); border: 0.5px solid var(--ink-faint);
  border-radius: 2px; padding: 16px 20px; cursor: pointer;
}
.calc-bundle-text { text-align: left; }
.calc-bundle-title {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  font-weight: 400; color: var(--ink); margin: 0 0 3px;
}
.calc-bundle-sub { font-size: 13px; color: var(--ink-mid); font-weight: 300; margin: 0; letter-spacing: 0.03em; }
.calc-switch {
  width: 42px; height: 22px; border-radius: 11px;
  background: var(--ink-faint); position: relative; flex-shrink: 0;
  margin-left: 16px; transition: background 0.2s;
}
.calc-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform 0.2s;
}
.calc-switch.on { background: var(--accent); }
.calc-switch.on::after { transform: translateX(20px); }
.calc-result {
  border-top: 0.5px solid var(--ink-faint); padding-top: 28px;
  margin-top: 8px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 8px;
}
.calc-res-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-light); }
.calc-res-total { font-family: var(--serif); font-size: 60px; font-weight: 200; color: var(--ink); line-height: 1; }
.calc-res-save {
  background: rgba(192,57,43,0.1); color: var(--accent);
  padding: 6px 20px; border-radius: 40px; font-size: 13px;
  display: inline-block; min-height: 24px; letter-spacing: 0.05em;
}
.calc-res-break { font-size: 13px; color: var(--ink-light); letter-spacing: 0.05em; }

.pricing-foot { text-align: center; margin-top: 24px; font-size: 14px; color: var(--ink-mid); font-style: italic; letter-spacing: 0.05em; line-height: 1.8; }

/* ── FAQ ── */
#faq { background: var(--c2); padding: 80px 24px; }

.faq-list { margin-top: 40px; display: flex; flex-direction: column; }
.faq-item { border-top: 0.5px solid var(--ink-faint); }
.faq-item:last-child { border-bottom: 0.5px solid var(--ink-faint); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px;
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); text-align: left; letter-spacing: 0.01em;
}
.faq-icon { font-family: var(--sans); font-size: 20px; font-weight: 200; color: var(--ink-light); flex-shrink: 0; transition: transform 0.3s, color 0.2s; display: inline-block; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--ink); }
.faq-a { font-size: 16px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; padding-bottom: 24px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
#cta { background: var(--ink); padding: 80px 24px; text-align: center; }
#cta .eyebrow { color: rgba(249,245,239,0.45); }
#cta .eyebrow::before, #cta .eyebrow::after { background: rgba(249,245,239,0.15); }
#cta .sh2 { color: var(--c1); font-size: clamp(28px, 5vw, 48px); }
#cta .sh2 em { color: #e8856a; }
#cta p { font-size: 16px; color: rgba(249,245,239,0.6); margin-bottom: 36px; font-weight: 300; line-height: 1.85; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #3d1a0f 0%, #2a1510 50%, #1a0f0a 100%);
  border-top: 0.5px solid rgba(201,168,76,0.15);
  padding: 56px 24px 36px; text-align: center;
}
.foot-top { display: flex; flex-direction: column; align-items: center; gap: 36px; margin-bottom: 48px; }
.foot-brand { display: flex; flex-direction: column; align-items: center; }
.foot-logo { font-family: var(--serif); font-size: 44px; font-weight: 200; color: rgba(249,245,239,0.9); line-height: 1; }
.foot-logo-sub { font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: 0.35em; color: rgba(249,245,239,0.5); display: block; margin-top: 4px; margin-bottom: 14px; }
.foot-tagline { font-size: 14px; font-weight: 300; font-style: italic; color: rgba(249,245,239,0.6); line-height: 1.8; }
.foot-cols { display: flex; gap: 56px; justify-content: center; }
.foot-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.foot-col-title { font-size: 10px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(249,245,239,0.45); margin-bottom: 4px; }
.foot-col a { font-size: 14px; font-weight: 300; color: rgba(249,245,239,0.75); text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: rgba(249,245,239,0.9); }
.foot-bottom { display: flex; flex-direction: column; align-items: center; gap: 12px; border-top: 0.5px solid rgba(249,245,239,0.08); padding-top: 28px; }
.foot-copy { font-size: 12px; letter-spacing: 0.08em; color: rgba(249,245,239,0.35); }
.foot-socials { display: flex; gap: 24px; }
.foot-socials a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,245,239,0.45); text-decoration: none; transition: color 0.2s; }
.foot-socials a:hover { color: rgba(249,245,239,0.8); }

/* ── MOBILE ≤ 1023px ── */
@media (max-width: 1023px) {
  #hero::before, #hero::after { display: none; }
  .nav-cta { display: none; }
  .how-card-title { font-size: 21px; }
  .how-card-desc { font-size: 16px; }
  .how-num { font-size: 36px; }
  .how-card { padding: 20px 16px; }
  .bundle-card { padding: 32px 24px; }
  .bundle-headline { font-size: 26px; }
  .bundle-desc { font-size: 15px; }
  .calc-body { padding: 20px 24px; }
  .calc-top { padding: 24px 24px 18px; }
  .calc-field { flex: 1; min-width: 100px; }
}

/* ── TABLET ≥ 768px ── */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 28px; align-items: center; }
}

/* ── DESKTOP ≥ 1024px ── */
@media (min-width: 1024px) {
  nav { padding: 20px 56px; }
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-links a {
  font-size: 16px; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; transition: color 0.2s;
}

.btn-solid { font-size :15px;}
.btn-outline { font-size :15px;}

  #hero { padding: 140px 56px 100px; }
  #hero::before { left: 56px; }
  #hero::after  { right: 56px; }
  .hero-h1 { font-size: clamp(52px, 6vw, 80px); }
  .hero-sub { font-size: 19px; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .wa-preview { max-width: 420px; }

  #how { padding: 100px 56px; }
  #how .eyebrow, #how .sh2 { text-align: center; display: block; }
  .how-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1100px; margin: 48px auto 0; }
  .how-card { padding: 32px 24px; }
  .how-card-title { font-size: 30px; }
  .how-card-desc { font-size: 18px; }
  .how-num { font-size: 52px; }

  #pricing { padding: 100px 56px; display: flex; flex-direction: column; align-items: center; }
  #pricing .eyebrow, #pricing .sh2 { text-align: center; display: block; width: 100%; }
  #pricing .pricing-intro { text-align: center; width: 100%; max-width: 720px; }
  .pricing-intro-q { font-size: 30px; }
   .pricing-intro-s { font-size: 18px; }
  .pricing-cards { max-width: 760px; gap: 24px; }
  .pc { padding: 36px 32px; }
  .pc-name { font-size: 36px; }
  .pc-num { font-size: 72px; }
  .pc-item { font-size: 18px; }
  .pc-cta, .pc-cta-outline { font-size: 13px; padding: 22px; }
  .bundle-card { padding: 56px 48px; }
  .bundle-headline { font-size: 38px; }
  .bundle-desc { font-size: 17px; }
  .bundle-eyebrow { font-size: 26px; }
  .calc-heading { font-size: 28px; }
  .calc-sub-text { font-size: 15px; }
  .calc-bundle-title { font-size: 20px; }
  .calc-bundle-sub { font-size: 14px; }
  .calc-res-total { font-size: 72px; }
  .calc-res-save { font-size: 14px; padding: 8px 24px; }
  .calc-res-break { font-size: 14px; }

  #faq { padding: 100px 56px; display: flex; flex-direction: column; align-items: center; }
  #faq .eyebrow, #faq .sh2 { text-align: center; display: block; width: 100%; max-width: 720px; }
  #faq .faq-list { width: 100%; max-width: 720px; }
  .faq-q { font-size: 24px; padding: 24px 0; }
  .faq-a { font-size: 18px; line-height: 1.9; }

  #cta { padding: 120px 56px; }
  footer { padding: 72px 56px 48px; }
  .foot-logo { font-size: 52px; }
  .foot-tagline { font-size: 15px; }
  .foot-col a { font-size: 15px; }
}

@media (min-width: 1280px) {
  nav, #hero, #pricing, footer { padding-left: 80px; padding-right: 80px; }
  #hero::before { left: 80px; }
  #hero::after  { right: 80px; }
}
