/* =========================================================
   Vydroušení — prodejní web v1
   Brand styly. Barvy a fonty pochazi z brand config.json.
   Vse, co se da menit (barvy), je nahore jako CSS promenne.
   ========================================================= */

:root {
  /* Barevna paleta (brand config.json) */
  --river-teal: #1B7A8C;   /* Primarni — duvera, voda, klid */
  --otter-brown: #9C5A3C;  /* Sekundarni — vydra Viki, teplo */
  --sunny-amber: #F4A83D;  /* Akcent — hra, zvedavost, CTA */
  --leaf-green: #7BB661;   /* Prirodni — uceni, rust */
  --cream: #FBF4E6;        /* Neutral svetly — pozadi */
  --deep-ink: #2A2440;     /* Neutral tmavy — text */

  /* Odvozene tony */
  --teal-dark: #155E6C;
  --teal-soft: rgba(27, 122, 140, 0.08);
  --amber-soft: rgba(244, 168, 61, 0.14);
  --green-soft: rgba(123, 182, 97, 0.14);
  --ink-soft: rgba(42, 36, 64, 0.65);
  --card-bg: #FFFCF6;
  --line: rgba(42, 36, 64, 0.12);

  /* Fonty */
  --font-heading: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1080px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px rgba(42, 36, 64, 0.10);
  --shadow-sm: 0 6px 18px rgba(42, 36, 64, 0.08);
}

/* ---------- Reset / zaklad ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.62;
  color: var(--deep-ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--deep-ink);
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; }

a { color: var(--river-teal); }

strong { font-weight: 800; }

img, svg { max-width: 100%; }

/* ---------- Layout pomocnici ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 72px 0;
}

.section--tint {
  background: var(--teal-soft);
}

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--river-teal);
  margin-bottom: 12px;
}

.center { text-align: center; }

/* ---------- Tlacitka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn--primary {
  background: var(--sunny-amber);
  color: var(--deep-ink);
  box-shadow: 0 8px 22px rgba(244, 168, 61, 0.38);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 168, 61, 0.46);
}

.btn--teal {
  background: var(--river-teal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(27, 122, 140, 0.32);
}
.btn--teal:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--river-teal);
  border: 2px solid var(--river-teal);
}
.btn--ghost:hover {
  background: var(--river-teal);
  color: #fff;
}

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

.btn--lg { padding: 17px 38px; font-size: 1.15rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 244, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__drop { flex: 0 0 auto; }

.wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.wordmark .w-teal { color: var(--river-teal); }
.wordmark .w-amber { color: var(--sunny-amber); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--deep-ink);
  text-decoration: none;
}
.nav a:hover { color: var(--river-teal); }

.nav__cta { margin-left: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 85% -10%, var(--amber-soft), transparent 60%),
    radial-gradient(90% 70% at 0% 110%, var(--green-soft), transparent 55%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 76px 0 84px;
}
.hero__title { margin-bottom: 0.35em; }
.hero__title .accent { color: var(--river-teal); }
.hero__sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 33ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__card {
  background: var(--card-bg);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px;
  width: 100%;
  max-width: 360px;
}
.hero__card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hero__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex: 0 0 auto;
}
.hero__avatar--viki { background: var(--green-soft); }
.hero__avatar--maty { background: var(--amber-soft); }
.bubble {
  background: var(--cream);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.97rem;
  line-height: 1.45;
}
.bubble b { color: var(--river-teal); }
.hero__player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hero__play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--river-teal);
  color: #fff;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.hero__wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}
.hero__wave span {
  flex: 1;
  background: var(--river-teal);
  opacity: 0.55;
  border-radius: 3px;
}

/* ---------- Pasy duvery ---------- */
.trust-strip {
  background: var(--river-teal);
  color: #fff;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding: 18px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.98rem;
}

/* ---------- Problem (mensi seznam bolesti) ---------- */
.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.pain {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  font-size: 1.04rem;
}
.pain b { color: var(--otter-brown); }

/* ---------- Reseni / USP ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usp {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--river-teal);
}
.usp:nth-child(2) { border-top-color: var(--sunny-amber); }
.usp:nth-child(3) { border-top-color: var(--leaf-green); }
.usp__icon {
  font-size: 1.9rem;
  margin-bottom: 10px;
  display: block;
}
.usp h3 { margin-bottom: 0.35em; }
.usp p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Jak to funguje ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px 26px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sunny-amber);
  color: var(--deep-ink);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 0.3em; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Tarify / cenik ---------- */
.tariffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tariff {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
}
.tariff--featured {
  border-color: var(--sunny-amber);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.tariff__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sunny-amber);
  color: var(--deep-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tariff__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.tariff__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--river-teal);
  line-height: 1.1;
}
.tariff__period {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
}
.tariff__hint {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 6px 0 16px;
  min-height: 1.2em;
}
.tariff__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.tariff__list li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 1rem;
}
.tariff__list li::before {
  content: "🦦";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 0.95rem;
}
.tariff__cta { margin-top: auto; }

.year-banner {
  margin-top: 28px;
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.year-banner__text strong { color: var(--river-teal); }
.year-banner__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--river-teal);
}

/* ---------- Duvera / fact-check ---------- */
.trust-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.trust-block__card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.trust-points { list-style: none; margin: 0; padding: 0; }
.trust-points li {
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--line);
}
.trust-points li:last-child { border-bottom: none; }
.trust-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px; height: 24px;
  background: var(--green-soft);
  color: var(--leaf-green);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.honest-note {
  margin-top: 18px;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--leaf-green);
  padding-left: 14px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--river-teal);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq-item__body p { margin: 0; }

/* ---------- Zaverecne CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--river-teal), var(--teal-dark));
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 26px; }
.final-cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.final-cta .btn--ghost:hover { background: #fff; color: var(--river-teal); }

/* ---------- AI disclosure radek ---------- */
.ai-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  color: var(--otter-brown);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-ink);
  color: rgba(255,255,255,0.82);
  padding: 48px 0 30px;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.6em; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { text-decoration: none; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }
.footer-contact { font-size: 0.96rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Objednavka ---------- */
.order-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.order-main { flex: 1; padding: 56px 0 72px; }
.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.98rem;
}
.field input,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--deep-ink);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--river-teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.field__hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 5px; }

.summary-card {
  position: sticky;
  top: 96px;
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 26px;
  border: 2px solid rgba(27,122,140,0.18);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--river-teal);
}
.summary-total .amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--river-teal);
}

/* Platebni instrukce (zobrazi se po odeslani) */
.pay-instructions { display: none; }
.pay-instructions.is-visible { display: block; }
.order-form.is-hidden { display: none; }

.pay-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 6px;
}
.pay-table th,
.pay-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pay-table th {
  width: 42%;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pay-table td { font-weight: 700; font-size: 1.05rem; }
.pay-table .mono {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  letter-spacing: 0.02em;
}

.placeholder {
  display: inline-block;
  background: var(--amber-soft);
  color: var(--otter-brown);
  font-weight: 800;
  border: 1.5px dashed var(--sunny-amber);
  border-radius: 8px;
  padding: 2px 9px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.92rem;
}

.notice {
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.96rem;
  margin: 20px 0;
}
.notice--amber { background: var(--amber-soft); }

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-soft);
  color: #4a7a34;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Waitlist / cekaci listina ---------- */
.hero__badge {
  display: inline-block;
  background: var(--green-soft);
  color: #4a7a34;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.order-grid.waitlist { align-items: start; }

.offer__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  max-width: 520px;
}
.offer__list li {
  position: relative;
  padding: 8px 0 8px 30px;
  border-bottom: 1px solid var(--line);
}
.offer__list li:last-child { border-bottom: none; }
.offer__list li::before {
  content: "🦦";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.95rem;
}
.offer__list strong { color: var(--river-teal); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  font-size: 0.95rem;
}
.checkbox-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--river-teal);
}

.field__error {
  display: none;
  color: #b5432f;
  font-size: 0.85rem;
  margin: 5px 0 0;
}
.field--invalid input { border-color: #d9694f; }
.field--invalid .field__error { display: block; }

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: var(--amber-soft);
  color: var(--otter-brown);
  font-size: 0.95rem;
}
.form-status.is-visible { display: block; }

.disclaimer {
  background: var(--teal-soft);
  border-left: 3px solid var(--river-teal);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Jednoduche stranky (doi / diky / 404) ---------- */
.simple-page {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.simple-card {
  text-align: left;
  margin: 0 auto 26px;
  max-width: 560px;
}
.simple-cta {
  margin-top: 34px;
  padding: 30px 26px;
  background: var(--teal-soft);
  border-radius: var(--radius);
}
.simple-cta h2 { margin-bottom: 0.4em; }
.simple-cta p { color: var(--ink-soft); }

.social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.12s ease;
}
.social-icon:hover { transform: translateY(-2px); }
.social-icon--ig { background: linear-gradient(135deg, #f09433, #e6683c 40%, #dc2743 60%, #bc1888); }
.social-icon--fb { background: #1877f2; }
.social-fallback { text-align: center; }

/* ---------- Cookie lista ---------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--deep-ink);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar__text {
  margin: 0;
  font-size: 0.92rem;
  flex: 1 1 320px;
}
.cookie-bar__text a { color: var(--sunny-amber); }
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-bar__btn { padding: 11px 22px; font-size: 0.98rem; }
.cookie-bar .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.cookie-bar .btn--ghost:hover { background: #fff; color: var(--deep-ink); }

/* ---------- Responsivita ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__sub { max-width: none; }
  .usp-grid,
  .steps,
  .tariffs { grid-template-columns: 1fr; }
  .tariff--featured { transform: none; }
  .trust-block,
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .section { padding: 54px 0; }
  .nav { display: none; }
  .pain-list { grid-template-columns: 1fr; }
  .pay-table th { width: 38%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
