/* MR. Responde — public pages (home, legal).
   Mobile-first; breakpoints: 700px (tablet), 1100px (desktop). */

:root {
  --navy: #0b1f3b;
  --navy-2: #16304f;
  --navy-line: #2a4263;
  --green: #00c87a;
  --green-text: #009e66; /* brand green darkened for text on light backgrounds */
  --green-deep: #006b45;
  --mint-bubble: #cff5e3;
  --support: #e8edf2;
  --bg: #f7f9fc;
  --white: #ffffff;
  --line: #eef2f6;
  --ink-2: #3e4f5b;
  --ink-3: #52626d;
  --on-navy: #b9c6cf;
  --muted-icon: #9aa7b1;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --gutter: 20px;
  --section: 64px;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

p { margin: 0; }

a { color: var(--navy); }
a:hover { color: var(--green-deep); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.icon { flex-shrink: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.muted { color: var(--ink-3); font-size: 14px; }
.text-green { color: var(--green-text); }
.text-green-bright { color: var(--green); }

/* ─── Logo (SVG, 826×132) ─── */
.logo { display: block; width: auto; }
.logo--nav { height: 28px; }
.logo--full { height: 40px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
/* <button class="btn">: drop the browser's default font, background and cursor. */
:where(button).btn { font-family: inherit; cursor: pointer; background: transparent; border: 0; }
.btn--primary { background: var(--green); color: var(--navy); }
.btn--primary:hover { background: #00b56e; color: var(--navy); }
.btn--outline { border: 2px solid var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 17px 28px; font-size: 17px; }

.hide-sm { display: none; }

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--support);
}
.nav__inner {
  max-width: 1440px;
  margin-inline: auto;
  height: 68px;
  padding: 0 12px 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__brand { text-decoration: none; margin-right: auto; }
.nav__links, .nav__login { display: none; }
.nav__links a, .nav__login { text-decoration: none; font-weight: 500; }

.nav__menu { position: relative; }
.nav__menu summary {
  list-style: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 12px;
}
.nav__menu summary::-webkit-details-marker { display: none; }
.nav__menu[open] summary { background: var(--support); }
.nav__sheet {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--support);
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(11, 31, 59, 0.35);
}
.nav__sheet a {
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}
.nav__sheet a:hover { background: var(--bg); }

/* ─── Hero ─── */
.hero {
  padding-block: 44px 48px;
  display: grid;
  gap: 28px;
}
.hero__copy { display: flex; flex-direction: column; gap: 22px; }
.hero__title {
  font-size: clamp(40px, 10.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero__lead { font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 580px; }
.hero__cta { display: flex; flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
.hero__channels { display: flex; gap: 24px; justify-content: center; font-weight: 500; font-size: 15px; }
.channel { display: inline-flex; align-items: center; gap: 8px; }
.channel--wa .icon { color: var(--green-text); }

.hero__phone { display: flex; justify-content: center; }
.phone {
  width: 100%;
  max-width: 340px;
  padding: 10px;
  border-radius: 40px;
  background: var(--navy);
  box-shadow: 0 40px 80px -40px rgba(11, 31, 59, 0.55);
}
.phone__screen { border-radius: 30px; overflow: hidden; background: var(--bg); }
.phone__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--support);
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.phone__who { display: flex; flex-direction: column; font-size: 15px; line-height: 1.3; }
.phone__who small { font-size: 12px; color: var(--ink-3); }
.chat { padding: 16px 12px 20px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; line-height: 1.42; }
.bubble { max-width: 82%; padding: 9px 12px; }
.bubble--in { align-self: flex-end; background: var(--mint-bubble); border-radius: 16px 16px 4px 16px; }
.bubble--out { align-self: flex-start; background: var(--white); border: 1px solid var(--support); border-radius: 16px 16px 16px 4px; }

.hero__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
}
.hero__features li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; line-height: 1.3; }
.hero__features li.hide-sm { display: none; }
.tile {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--support);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Benefits ─── */
.benefits { padding-bottom: var(--section); display: grid; gap: 14px; }
.benefit { padding: 26px; border-radius: 22px; display: flex; flex-direction: column; gap: 10px; }
.benefit h3 { margin-top: 6px; font-size: 24px; line-height: 1.12; }
.benefit p { color: var(--ink-2); line-height: 1.55; }
.benefit--mint { background: #e3f8ee; }
.benefit--mint .benefit__icon { color: var(--green-deep); }
.benefit--lilac { background: #ecebfa; }
.benefit--lilac .benefit__icon { color: #3b3f9e; }
.benefit--blue { background: #e6eefa; }
.benefit--blue .benefit__icon { color: #1e4a8a; }

/* ─── How it works ─── */
.how { background: var(--navy); color: var(--white); padding-block: var(--section); }
.how__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.how__head h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.06; letter-spacing: -0.04em; }
.how__head p { color: var(--on-navy); line-height: 1.55; max-width: 460px; }
.how__steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.step { padding: 24px; border-radius: 20px; background: var(--navy-2); display: flex; gap: 16px; }
.step__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.step h3 { margin: 6px 0 6px; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.step p { color: var(--on-navy); font-size: 15px; line-height: 1.55; }

/* ─── Pricing ─── */
.pricing { padding-block: var(--section) 40px; }
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -0.04em; }
.section-head p { color: var(--ink-2); line-height: 1.55; max-width: 600px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-deep); }

.plans { display: grid; gap: 24px; }
.plan {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--support);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plan__top { display: flex; flex-direction: column; gap: 22px; }
.plan__intro { display: flex; flex-direction: column; gap: 8px; }
.plan__intro h3 { font-size: 26px; }
.plan__intro p { color: var(--ink-2); font-size: 15px; }
.plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; }
.plan__amount { font-family: var(--font-display); font-weight: 700; font-size: 42px; letter-spacing: -0.05em; line-height: 1.1; }
.plan__period { font-size: 15px; color: var(--ink-3); }
.plan__features {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--support);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
}
.plan__features li { display: flex; gap: 10px; }
.plan__features .icon { color: var(--green-text); stroke-width: 2.5; margin-top: 1px; }
.plan__includes { font-weight: 600; }

.plan--featured {
  order: -1;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 32px 64px -36px rgba(11, 31, 59, 0.7);
}
.plan--featured .plan__intro p,
.plan--featured .plan__period { color: var(--on-navy); }
.plan--featured .plan__features { border-color: var(--navy-line); }
.plan--featured .plan__features .icon { color: var(--green); }
.plan__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.pricing__note { margin-top: 28px; font-size: 14px; color: var(--ink-3); }

/* ─── Comparison ─── */
.compare { padding-block: 24px var(--section); }
.compare h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.04em; margin-bottom: 22px; }
.table-wrap { border: 1px solid var(--support); border-radius: 20px; background: var(--white); overflow: hidden; }
.compare__table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.4; }
.compare__table th,
.compare__table td { padding: 14px 6px; text-align: center; }
.compare__table th:first-child { padding-left: 16px; text-align: left; font-weight: 400; }
.compare__table tr > :last-child { padding-right: 14px; }
.compare__table thead th {
  background: var(--support);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.compare__table thead th:first-child { font-weight: 600; }
.compare__table tbody tr { border-top: 1px solid var(--line); }
.compare__table td { width: 58px; }
.yes, .no { display: inline-flex; }
.yes .icon { color: var(--green-text); stroke-width: 2.5; }
.no .icon { color: var(--muted-icon); stroke-width: 2; }

/* ─── FAQ ─── */
.faq { padding-bottom: var(--section); display: grid; gap: 28px; }
.faq h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -0.04em; }
.faq__grid { display: grid; gap: 28px; }
.faq__item h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.faq__item p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ─── Final CTA ─── */
.cta {
  padding: 40px 24px;
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cta__copy { display: flex; flex-direction: column; gap: 14px; }
.cta h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.04; letter-spacing: -0.045em; }
.cta p { color: var(--on-navy); }

/* ─── Footer ─── */
.footer {
  padding-block: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-3);
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 0 20px; }
.footer__links a { color: var(--ink-2); padding: 10px 0; }

/* ─── Legal pages ─── */
.legal { max-width: 860px; padding-block: 32px var(--section); }
.legal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.legal__tabs a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--support);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.legal__tabs a[aria-current="page"] { background: var(--navy); border-color: var(--navy); color: var(--white); }

.prose { font-size: 16px; line-height: 1.7; color: var(--ink-2); overflow-wrap: anywhere; }
.prose h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.1; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 16px; }
.prose h2 { font-size: clamp(21px, 3vw, 26px); line-height: 1.25; color: var(--navy); margin: 48px 0 14px; scroll-margin-top: 100px; }
.prose h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin: 28px 0 10px; }
.prose p, .prose ul, .prose ol, .prose table, .prose blockquote { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--green-deep); }
.prose hr { border: 0; border-top: 1px solid var(--support); margin: 32px 0; }
.prose blockquote {
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--support);
}
.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--support); text-align: left; vertical-align: top; }
.prose thead th { background: var(--support); color: var(--navy); font-weight: 600; white-space: nowrap; }

/* ─── Contact ─── */
.contact { padding-block: 40px var(--section); display: grid; gap: 32px; align-items: start; }
.contact__intro { display: flex; flex-direction: column; gap: 16px; }
.contact__intro h1 { font-size: clamp(36px, 7vw, 60px); line-height: 1.05; letter-spacing: -0.045em; }
.contact__intro p { color: var(--ink-2); font-size: 17px; line-height: 1.55; max-width: 480px; }
.contact__points { margin: 8px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; font-weight: 500; }
.contact__points li { display: flex; align-items: center; gap: 12px; }
.contact__points .icon { color: var(--green-text); }
.contact__card { padding: 24px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--support); }
.contact__sent { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding-block: 16px; }
.contact__sent h2 { font-size: 26px; }
.contact__sent p { color: var(--ink-2); }
.contact__sent-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #e3f8ee; color: var(--green-deep);
}
.contact__sent-icon .icon { stroke-width: 2.5; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; gap: 18px; }
.form__alert { padding: 12px 16px; border-radius: 12px; background: #fdecec; color: #9b1c1c; font-weight: 500; font-size: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 15px; }
.field__optional { font-weight: 400; color: var(--ink-3); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cdd6df;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 16px; /* 16px keeps iOS from zooming on focus */
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #8795a1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0, 200, 122, 0.35); }
.field [aria-invalid="true"] { border-color: #c62828; }
.field__error { color: #b71c1c; font-size: 14px; }
.field--check { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
.field--check input { width: 22px; height: 22px; min-height: 0; padding: 0; accent-color: var(--navy); }
.field--check label { font-weight: 500; }
.field--check .field__error { flex-basis: 100%; }
.form__trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { align-self: stretch; }

/* ─── Login ─── */
.auth { padding-block: 40px var(--section); display: flex; justify-content: center; }
.auth__card { width: 100%; max-width: 440px; padding: 28px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--support); display: flex; flex-direction: column; gap: 20px; }
.auth__card h1 { font-size: clamp(28px, 6vw, 36px); }
.auth__lead { color: var(--ink-2); margin-top: -8px; }
.auth__foot { color: var(--ink-3); font-size: 15px; text-align: center; }
.auth__foot a { color: var(--green-text); font-weight: 600; }

/* ─── Signed-in pages (dashboard, admin) ─── */
.app-nav__user { color: var(--ink-3); font-size: 14px; max-width: 40vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-nav__badge { padding: 4px 10px; border-radius: 999px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.app-nav__logout { gap: 8px; padding-inline: 12px; }
.app { padding-block: 32px var(--section); display: flex; flex-direction: column; gap: 16px; }
.app h1 { font-size: clamp(28px, 6vw, 40px); }
.app__lead { color: var(--ink-2); max-width: 560px; }
.app__section { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.app__section h2 { font-size: 20px; }
.app__empty { color: var(--ink-3); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.stat { padding: 16px; border-radius: 16px; background: var(--white); border: 1px solid var(--support); display: flex; flex-direction: column; gap: 4px; }
.stat__value { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.stat__label { color: var(--ink-3); font-size: 14px; }
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--support); background: var(--white); }
.table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table th, .table td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.table thead th { background: var(--support); font-weight: 600; }
.table tbody tr:last-child td { border-bottom: 0; }

/* ═══ Tablet ═══ */
@media (min-width: 700px) {
  :root { --gutter: 40px; --section: 88px; }

  .hide-sm { display: inline; }
  .nav__inner { height: 80px; padding-right: 28px; gap: 12px; }
  .nav__login { display: inline-block; padding: 12px 8px; font-size: 15px; }
  .logo--nav { height: 32px; }

  .hero { padding-block: 64px 72px; grid-template-columns: 330px minmax(0, 1fr); gap: 48px 40px; align-items: center; }
  .hero__copy { grid-column: 1 / -1; gap: 24px; }
  .hero__lead { font-size: 19px; max-width: 620px; }
  .hero__cta { flex-direction: row; align-items: center; gap: 20px; text-align: left; }
  .hero__channels { justify-content: flex-start; font-size: 16px; }
  .hero__features { grid-template-columns: 1fr; gap: 22px; }
  .hero__features li { font-size: 17px; gap: 14px; }
  .hero__features li.hide-sm { display: flex; }
  .tile { width: 48px; height: 48px; border-radius: 14px; }

  .benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .benefit { padding: 26px 24px; }
  .benefit h3 { font-size: 22px; }
  .benefit p { font-size: 15px; }

  .how__head p { font-size: 18px; max-width: 600px; }
  .step { padding: 28px; gap: 20px; }
  .step h3 { font-size: 21px; }
  .step p { font-size: 16px; }

  .section-head--center { align-items: center; text-align: center; margin-bottom: 44px; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .plan { padding: 32px 28px; }
  .plan--featured { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; padding: 36px 32px; }
  .plan--featured .plan__features { border-top: 0; border-left: 1px solid var(--navy-line); padding: 0 0 0 32px; }
  .plan__badge { left: 32px; }
  .pricing__note { text-align: center; }

  .compare__table { font-size: 15px; }
  .compare__table th, .compare__table td { padding: 16px 12px; }
  .compare__table th:first-child { padding-left: 24px; }
  .compare__table tr > :last-child { padding-right: 24px; }
  .compare__table thead th { font-size: 15px; padding-block: 18px; }
  .compare__table td { width: 18%; }

  .faq__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 36px; }
  .faq__item h3 { font-size: 18px; }

  .cta { padding: 56px 44px; border-radius: 30px; align-items: flex-start; }

  .footer { flex-direction: row; justify-content: space-between; align-items: flex-end; padding-block: 52px 40px; }

  .contact { padding-block: 56px var(--section); }
  .contact__card { padding: 32px; }
  .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form__submit { align-self: flex-start; }
}

/* ═══ Desktop ═══ */
@media (min-width: 1100px) {
  :root { --gutter: 80px; --section: 112px; }

  .nav__inner { height: 92px; gap: 20px; padding-right: var(--gutter); }
  .nav__brand { margin-right: 36px; }
  .nav__links { display: flex; gap: 36px; margin-right: auto; font-size: 16px; }
  .nav__login { font-size: 16px; }
  .nav__menu { display: none; }
  .btn--sm { padding: 14px 26px; font-size: 16px; }
  .logo--nav { height: 36px; }
  .logo--full { height: 44px; }

  .hero {
    padding-block: 88px 96px;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr) 230px;
    gap: 56px;
  }
  .hero__copy { grid-column: auto; gap: 28px; }
  .hero__lead { font-size: 20px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__cta .muted { padding-left: 28px; font-size: 15px; }
  .hero__features li { font-size: 16px; }

  .benefits { gap: 24px; padding-bottom: var(--section); }
  .benefit { padding: 36px; border-radius: var(--radius); gap: 14px; }
  .benefit h3 { font-size: 30px; }
  .benefit p { font-size: 17px; }

  .how__head { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 56px; }
  .how__head h2 { max-width: 680px; }
  .how__head p { max-width: 440px; }
  .how__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .step { flex-direction: column; padding: 32px; border-radius: var(--radius); gap: 14px; }
  .step h3 { font-size: 24px; margin-top: 8px; }
  .step p { font-size: 17px; }

  .section-head { margin-bottom: 56px; }
  .section-head p { font-size: 19px; }
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .plan { padding: 40px 36px; border-radius: 28px; gap: 28px; }
  .plan__top { gap: 28px; }
  .plan__intro h3 { font-size: 28px; }
  .plan__intro p, .plan__features { font-size: 16px; }
  .plan__amount { font-size: 52px; }
  .plan__period { font-size: 16px; }
  .plan--featured { order: 0; grid-column: auto; display: flex; gap: 28px; padding: 40px 36px; }
  .plan--featured .plan__features { border-left: 0; border-top: 1px solid var(--navy-line); padding: 24px 0 0; }
  .plan .btn { font-size: 17px; }

  .compare h2 { margin-bottom: 36px; }
  .compare__table { font-size: 17px; }
  .compare__table th, .compare__table td { padding: 19px 12px; }
  .compare__table th:first-child { padding-left: 36px; }
  .compare__table tr > :last-child { padding-right: 36px; }
  .compare__table thead th { font-size: 17px; padding-block: 22px; }
  .compare__table td { width: 16%; }
  .table-wrap { border-radius: var(--radius); }

  .faq { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
  .faq__grid { grid-column: span 2; gap: 40px 48px; }
  .faq__item h3 { font-size: 19px; }
  .faq__item p { font-size: 16px; }

  .cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 72px 64px; border-radius: 32px; gap: 48px; }
  .cta p { font-size: 18px; }
  .cta .btn { flex-shrink: 0; }

  .footer { padding-block: 64px 48px; font-size: 15px; }
  .footer__links { gap: 28px; }

  .contact { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; padding-block: 80px var(--section); }
  .contact__intro { position: sticky; top: 132px; }
  .contact__card { padding: 40px; }
}

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