/* ==========================================================================
   БОЕВИ — landing page
   Palette and type are lifted from the printed one-pager: warm cream paper,
   sage green and camel accents, high-contrast serif wordmark.
   ========================================================================== */

:root {
  --cream: #faf5ef;
  --cream-2: #f3ebe0;
  --cream-3: #ece2d4;
  --paper: #fffdfa;

  --ink: #2b2a26;
  --ink-soft: #5d584f;
  --ink-faint: #8a8479;

  --sage: #6e7c5e;
  --sage-dark: #5b6a4d;
  --sage-deep: #4a5540;
  --sage-tint: #e4e8dd;

  --tan: #bf9a6c;
  --tan-dark: #a9855a;
  --tan-tint: #f0e3d1;

  --line: rgba(43, 42, 38, 0.12);
  --line-soft: rgba(43, 42, 38, 0.07);

  --font-serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(43, 42, 38, 0.04), 0 12px 32px -18px rgba(43, 42, 38, 0.35);
  --shadow-lg: 0 2px 4px rgba(43, 42, 38, 0.05), 0 30px 60px -30px rgba(43, 42, 38, 0.45);
}

/* ── Base ──────────────────────────────────────────────────────────────── */

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* All icons are stroke-only line art. */
svg use,
svg symbol {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

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

/* ── Brand ─────────────────────────────────────────────────────────────── */

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  line-height: 1;
}

.brand__dots {
  display: flex;
  gap: 5px;
}

.brand__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--tan);
}

.brand__dots i:last-child {
  background: var(--sage);
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}

.btn--primary:hover {
  background: var(--sage-dark);
}

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

.btn--ghost:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(110, 124, 94, 0.06);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 245, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a.btn {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Section scaffolding ───────────────────────────────────────────────── */

.section {
  padding: 96px 0;
}

.section--tint {
  background: var(--cream-2);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

.section__sub {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-dark);
}

.eyebrow--light {
  color: var(--tan-tint);
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-faint);
  font-size: 0.94rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 80px 0 96px;
  background: radial-gradient(120% 90% at 88% 0%, var(--cream-2) 0%, var(--cream) 58%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__points svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--sage);
}

.hero__media {
  margin: 0;
  aspect-ratio: 4 / 5;
}

/* ── Photos (graceful before the real images land) ─────────────────────── */

.photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tan-tint), var(--sage-tint));
  box-shadow: var(--shadow-lg);
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Set by main.js when the image file is not there yet. */
.photo--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 30% 25%, rgba(255, 255, 255, 0.55), transparent 70%);
}

/* Square, not landscape: the report photo is a portrait frame, and a square
   crop keeps the phone, the coffee and the city window while still balancing
   the text column beside it. */
.photo--wide {
  aspect-ratio: 1 / 1;
}

.photo--band {
  margin-top: 64px;
  aspect-ratio: 2.4 / 1;
}

/* ── Cards ─────────────────────────────────────────────────────────────── */

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

.card-soft {
  padding: 34px 30px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-soft h3 {
  font-size: 1.3rem;
  margin: 18px 0 10px;
}

.card-soft p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-dark);
  flex: none;
}

.badge-icon svg {
  width: 26px;
  height: 26px;
}

/* ── Steps ─────────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Dashed connector between steps, as on the printed sheet. */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 62px;
  left: calc(50% + 42px);
  right: calc(-50% + 42px);
  border-top: 1.5px dashed var(--tan);
  opacity: 0.5;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  color: var(--tan-dark);
  font-size: 0.85rem;
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--sage-dark);
}

.step__icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.2;
}

.step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 16ch;
}

/* ── Split (text + photo) ──────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 88px;
}

.split__text h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.split__text p {
  color: var(--ink-soft);
}

.quote {
  margin: 22px 0 0;
  padding: 22px 26px;
  background: var(--paper);
  border-left: 3px solid var(--tan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  font-style: italic;
  box-shadow: var(--shadow);
}

/* ── Plans ─────────────────────────────────────────────────────────────── */

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  /* Stretch so the four prices and buttons line up across the row. */
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.plan--featured {
  padding-top: 52px;
  border-color: rgba(110, 124, 94, 0.4);
  box-shadow: var(--shadow-lg);
}

.plan__ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--sage-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan__ribbon svg {
  width: 14px;
  height: 14px;
}

.plan__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  align-self: center;
}

.plan--tan .plan__icon {
  background: var(--tan);
}

.plan--deep .plan__icon {
  background: var(--sage-deep);
}

.plan__icon svg {
  width: 32px;
  height: 32px;
}

.plan__name {
  margin: 18px 0 10px;
  text-align: center;
  font-size: 1.75rem;
  color: var(--sage-dark);
}

.plan--tan .plan__name {
  color: var(--tan-dark);
}

.plan--deep .plan__name {
  color: var(--sage-deep);
}

.plan__tagline {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  /* Reserve three lines so the spec rows line up across the four cards. */
  min-height: 4.7em;
}

.plan__specs {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.plan__specs li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan__specs svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--sage);
}

.plan__label {
  margin: 20px 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
}

.plan--tan .plan__label {
  color: var(--tan-dark);
}

.plan__list {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.plan__list li {
  position: relative;
  padding-left: 24px;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--sage);
  border-bottom: 1.5px solid var(--sage);
  transform: rotate(-45deg);
}

.plan--tan .plan__list li::before {
  border-color: var(--tan);
}

.plan__price {
  margin: auto 0 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.plan__price b {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--sage-dark);
}

.plan--tan .plan__price b {
  color: var(--tan-dark);
}

.plan--deep .plan__price b {
  color: var(--sage-deep);
}

.plan__price span {
  font-size: 0.86rem;
  color: var(--ink-faint);
}

/* ── Extras ────────────────────────────────────────────────────────────── */

.extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.extra {
  display: flex;
  gap: 22px;
}

.extra h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.extra p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.dots {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.dots li {
  position: relative;
  padding-left: 18px;
}

.dots li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tan);
}

/* ── Included ──────────────────────────────────────────────────────────── */

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

.included li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 6px;
}

.included p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  max-width: 20ch;
}

/* ── Values ────────────────────────────────────────────────────────────── */

.values {
  padding: 44px 0;
  background: var(--cream-3);
}

.values__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 56px;
}

.values__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.values__list svg {
  width: 26px;
  height: 26px;
  color: var(--sage);
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--tan-dark);
  border-bottom: 1.5px solid var(--tan-dark);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(225deg) translate(-3px, -3px);
}

.faq details p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ── Contact ───────────────────────────────────────────────────────────── */

.contact {
  padding: 96px 0;
  background: var(--sage-deep);
  color: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

.contact .lead {
  margin-top: 18px;
  color: rgba(250, 245, 239, 0.8);
}

.contact__note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(250, 245, 239, 0.6);
}

.contact__cards {
  display: grid;
  gap: 12px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(250, 245, 239, 0.18);
  background: rgba(250, 245, 239, 0.05);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ccard:hover {
  background: rgba(250, 245, 239, 0.12);
  border-color: rgba(250, 245, 239, 0.35);
  transform: translateY(-1px);
}

.ccard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 239, 0.25);
  flex: none;
}

.ccard__icon svg {
  width: 22px;
  height: 22px;
}

.ccard b {
  display: block;
  font-weight: 500;
  font-size: 1.02rem;
  word-break: break-word;
}

.ccard small {
  display: block;
  margin-top: 2px;
  font-size: 0.84rem;
  color: rgba(250, 245, 239, 0.62);
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 56px 0 100px;
  background: var(--cream);
  text-align: center;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.brand--footer .brand__name {
  font-size: 1.15rem;
}

.site-footer__claim {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--sage-dark);
}

.site-footer__meta,
.site-footer__legal {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.site-footer__meta a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.site-footer__meta a:hover {
  color: var(--ink);
}

/* ── Mobile call button ────────────────────────────────────────────────── */

.call-fab {
  display: none;
  position: fixed;
  z-index: 45;
  left: 16px;
  right: 16px;
  bottom: 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  /* The light rim keeps it legible over the dark green contact section. */
  border: 1px solid rgba(250, 245, 239, 0.3);
  box-shadow: 0 12px 28px -10px rgba(43, 42, 38, 0.6);
}

.call-fab svg {
  width: 20px;
  height: 20px;
}

/* ── Reveal on scroll ──────────────────────────────────────────────────── */

/* Scoped to .js so nothing is ever hidden when scripts don't run. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 22px;
  }

  .plan__tagline {
    min-height: 0;
  }

  .plan--featured {
    margin-top: 8px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 18px;
  }

  .step:nth-child(3)::after {
    display: none;
  }

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

@media (max-width: 880px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
  }

  .site-nav a.btn {
    margin-top: 16px;
    border-bottom: 0;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero__inner,
  .split,
  .contact__inner,
  .extras,
  .cards-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  /* Heading first on small screens, so the promise is above the fold. */
  .hero__media {
    aspect-ratio: 3 / 2;
  }

  .section {
    padding: 72px 0;
  }

  .contact {
    padding: 72px 0;
  }

  .split {
    margin-top: 64px;
  }

  .photo--band {
    aspect-ratio: 16 / 10;
  }

  .call-fab {
    display: flex;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .wrap {
    padding: 0 18px;
  }

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

  .steps {
    gap: 28px;
    max-width: 340px;
    margin: 0 auto;
  }

  .step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .step::after {
    display: none;
  }

  .step__icon {
    width: 48px;
    height: 48px;
  }

  .step__icon svg {
    width: 32px;
    height: 32px;
  }

  .step p {
    max-width: none;
  }

  .included li {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .included p {
    max-width: none;
  }

  .values__list {
    gap: 18px 32px;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }
}

/* ── Motion & print ────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .call-fab,
  .hero__actions,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
