/* ─── Tokens ─── */
:root {
  --bg: #f6f2ec;
  --bg-card: #fffdf9;
  --bg-dark: #1c1916;
  --text: #1c1916;
  --text-muted: #6b6560;
  --text-light: #a39e98;
  --accent: #c24e2e;
  --accent-hover: #a83f24;
  --accent-soft: rgba(194, 78, 46, 0.1);
  --sage: #3d5c4e;
  --sage-soft: rgba(61, 92, 78, 0.08);
  --border: rgba(28, 25, 22, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 2px 8px rgba(28, 25, 22, 0.04), 0 12px 40px rgba(28, 25, 22, 0.06);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ─── Grain overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── Typography ─── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}

.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--ghost {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--text-muted);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(28, 25, 22, 0.2);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.header__cta.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
}

.header__cta.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--full { width: 100%; }

.price-card .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
}

.price-card .btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
  background: transparent;
  border: none;
}

.header__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: min(760px, calc(100% - 1.5rem));
  padding: 0.5rem 0.55rem 0.5rem 1rem;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(28, 25, 22, 0.1);
  border-radius: 100px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 4px 20px rgba(28, 25, 22, 0.07),
    0 12px 40px rgba(28, 25, 22, 0.05);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.header--scrolled .header__pill {
  background: rgba(255, 253, 249, 0.98);
  border-color: rgba(28, 25, 22, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 6px 28px rgba(28, 25, 22, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.logo__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}

.logo__word {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  margin-right: auto;
}

.nav__link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.25s var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(28, 25, 22, 0.08);
}

.header__cta {
  flex-shrink: 0;
  margin-left: 0.15rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.burger.active span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  max-width: 600px;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero__center {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 480px;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stats strong {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text);
}

.hero__stats span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Pain ─── */
.pain {
  padding: 5rem 0;
  background: var(--bg-dark);
  color: #e8e4df;
}

.pain__header {
  max-width: 520px;
  margin-bottom: 3rem;
}

.pain__header h2 { color: #fff; }
.pain__header p { color: #a39e98; font-size: 1.05rem; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain__card {
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s var(--ease);
}

.pain__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pain__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pain__card:hover .pain__img-wrap img {
  transform: scale(1.05);
}

.pain__card .pain__icon,
.pain__card h3,
.pain__card p {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.pain__card .pain__icon {
  padding-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.pain__card p {
  padding-bottom: 1.75rem;
}

.pain__card:hover {
  transform: translateY(-4px);
}

.pain__icon {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.pain__card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.pain__card p {
  font-size: 0.9rem;
  color: #a39e98;
  line-height: 1.6;
}

/* ─── How ─── */
.how {
  padding: 5rem 0 6rem;
}

.how__header {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.how__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.how__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  display: grid;
  place-items: center;
}

.step__body h3 { margin-bottom: 0.5rem; }
.step__body p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; }

/* ─── Features ─── */
.features {
  padding: 5rem 0 6rem;
}

.features__header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.features__header h2 {
  margin-bottom: 0;
}

.features__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.features__media {
  order: 2;
  position: relative;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
}

.features__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: none;
  box-shadow: none;
  display: block;
}

.features__list {
  order: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}

.features__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: none;
  box-shadow: 0 1px 4px rgba(28, 25, 22, 0.04);
}

.features__list svg { color: var(--sage); flex-shrink: 0; }

/* ─── Pricing ─── */
.pricing {
  padding: 6rem 0;
}

.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.pricing__note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: rgba(194, 78, 46, 0.35);
  box-shadow: 0 8px 40px rgba(194, 78, 46, 0.1);
  transform: scale(1.03);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  background: rgba(194, 78, 46, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  line-height: 1;
}

.price-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.price-card__top { margin-bottom: 1.5rem; }

.price-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.price-card__price {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.price-card__amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-card__features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.price-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.price-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing__footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Audience ─── */
.audience {
  padding: 4rem 0;
}

.audience__inner {
  text-align: center;
}

.audience__banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  height: clamp(220px, 32vw, 340px);
  box-shadow: none;
  border: none;
  background-color: #3d3832;
  background-image: url('../images/audience-banner.png');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.audience__banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(28,25,22,0.8) 0%, rgba(28,25,22,0.15) 45%, transparent 100%);
  pointer-events: none;
}

.audience__banner-overlay h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.audience__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.audience__tags span {
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.audience__tags span:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* ─── FAQ ─── */
.faq {
  padding: 5rem 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq__item.is-open {
  border-color: rgba(194, 78, 46, 0.25);
  box-shadow: 0 4px 20px rgba(194, 78, 46, 0.06);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}

.faq__trigger:hover {
  background: rgba(28, 25, 22, 0.02);
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.faq__chevron::before,
.faq__chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: background 0.2s;
}

.faq__chevron::before {
  transform: translate(-50%, -50%);
}

.faq__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(45deg);
}

.faq__item.is-open .faq__chevron::before,
.faq__item.is-open .faq__chevron::after {
  background: var(--accent);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}

.faq__answer {
  overflow: hidden;
  min-height: 0;
}

.faq__answer > * {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--ease) 0.05s, transform 0.35s var(--ease) 0.05s;
}

.faq__answer > * + * {
  padding-top: 0.5rem;
}

.faq__item.is-open .faq__answer > * {
  opacity: 1;
  transform: translateY(0);
}

.faq__item:not(.is-open) .faq__answer > * {
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

/* ─── Contact ─── */
.contact {
  padding: 2rem 0 6rem;
}

.contact__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-dark);
  min-height: 460px;
  box-shadow: var(--shadow);
}

.contact__promo {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url('../images/contact-bg.png') center center / cover no-repeat;
  color: #e8e4df;
}

.contact__promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,25,22,0.55) 0%, rgba(28,25,22,0.88) 65%, rgba(28,25,22,0.95) 100%);
}

.contact__promo h2,
.contact__promo p,
.contact__benefits {
  position: relative;
  z-index: 1;
}

.contact__promo h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.contact__promo p {
  color: #c8c2bb;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.contact__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__benefits li {
  font-size: 0.85rem;
  color: #e8e4df;
  padding-left: 1.25rem;
  position: relative;
}

.contact__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
  justify-content: center;
  background: var(--bg-dark);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__form label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #a39e98;
}

.contact__form input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact__form input::placeholder { color: #6b6560; }
.contact__form input:focus { border-color: var(--accent); }

.contact__form .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
}

.contact__form .btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.contact__form .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.contact__form .btn--outline:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(194, 78, 46, 0.2);
}

.contact__privacy {
  font-size: 0.75rem;
  color: #6b6560;
  text-align: center;
}

/* ─── Footer ─── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo--footer .logo__icon {
  width: 36px;
  height: 36px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer__mail {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.footer__mail:hover { text-decoration: underline; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features__body,
  .pricing__grid,
  .contact__box,
  .faq__grid,
  .pain__grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 7rem; }

  .features__list {
    grid-template-columns: 1fr;
    order: 2;
  }

  .features__media { order: 1; }

  .audience__banner {
    height: clamp(200px, 50vw, 280px);
    background-position: center 38%;
  }

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }

  .nav {
    position: fixed;
    top: 4.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    width: min(340px, calc(100vw - 2rem));
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.25rem;
    border: 1px solid rgba(28, 25, 22, 0.09);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(28, 25, 22, 0.1);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    margin: 0;
  }

  .nav.open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .header__cta { display: none; }

  .header__pill {
    width: min(420px, 100%);
  }

  .burger { display: flex; }

  .contact__box {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact__promo {
    min-height: 240px;
    padding: 2rem;
  }

  .contact__form { padding: 2rem; }
}

@media (max-width: 640px) {
  .features__list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 1rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
}
