:root {
  --bg: #ffffff;
  --surface: #f7fafb;
  --surface-strong: #f2f7f9;
  --text: #111518;
  --text-inverse: #ffffff;
  --hero-ink: #34393d;
  --hero-copy: #5d666d;
  --muted: #68757d;
  --text-disabled: rgba(17, 21, 24, 0.38);
  --text-success: #176b56;
  --text-error: #b42318;
  --line: rgba(17, 21, 24, 0.08);
  --line-strong: rgba(23, 188, 200, 0.18);
  --accent: #17bcc8;
  --accent-soft: rgba(23, 188, 200, 0.1);
  --dark: #0d1317;
  --max-width: 1220px;
  --container-gutter-desktop: 40px;
  --container-gutter-tablet: 30px;
  --container-gutter-mobile: 32px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --shadow-soft: 0 18px 48px rgba(17, 21, 24, 0.05);
  --font-display: "SamsungOne", "Samsung Sharp Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "SamsungOne", "Samsung Sharp Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --section-pad-desktop: 96px;
  --section-pad-tablet: 72px;
  --section-pad-mobile: 56px;
  --card-padding-compact: 20px;
  --card-padding-base: 28px;
  --card-padding-large: 32px;
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 28px;
  --button-height-sm: 42px;
  --button-height-md: 48px;
  --button-height-lg: 54px;
  --input-height-md: 50px;
  --input-height-lg: 54px;
  --modal-width-sm: 480px;
  --modal-width-md: 720px;
  --modal-width-lg: 960px;
  --scrollbar-size: 16px;
  --scrollbar-thumb-line: rgba(17, 21, 24, 0.52);
  --scrollbar-thumb-line-hover: rgba(17, 21, 24, 0.76);
  --z-base: 1;
  --z-rail: 16;
  --z-header: 20;
  --z-surface-float: 30;
  --z-overlay: 110;
  --z-modal: 130;
  --z-alert: 140;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-line) transparent;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #ffffff;
  line-height: 1.45;
  overflow-x: clip;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-line) transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--scrollbar-thumb-line);
  border: 5px solid transparent;
  background-clip: content-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-line-hover);
  border: 5px solid transparent;
  background-clip: content-box;
}

html::-webkit-scrollbar-track:horizontal,
body::-webkit-scrollbar-track:horizontal,
*::-webkit-scrollbar-track:horizontal {
  background: transparent;
}

html::-webkit-scrollbar-thumb:horizontal,
body::-webkit-scrollbar-thumb:horizontal,
*::-webkit-scrollbar-thumb:horizontal {
  background: var(--scrollbar-thumb-line);
  border: 5px solid transparent;
  background-clip: content-box;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--hero-ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-family: inherit;
  color: inherit;
}

p,
a,
button,
input,
select,
textarea,
label,
summary,
strong,
span {
  font-family: var(--font-sans);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 28px, var(--max-width));
  margin: 0 auto;
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: var(--z-rail);
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.section-rail::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 6px;
  width: 1px;
  background: rgba(17, 21, 24, 0.12);
}

.section-rail-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 12px;
  align-items: center;
  justify-items: end;
  gap: 12px;
  min-height: 18px;
  color: rgba(17, 21, 24, 0.48);
  transition: color 0.2s ease;
}

.section-rail-link:hover {
  color: rgba(17, 21, 24, 0.76);
}

.section-rail-link.is-active {
  color: var(--hero-ink);
}

.section-rail-label {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.section-rail-dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(17, 21, 24, 0.16);
  border-radius: 999px;
  background: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.section-rail-link.is-active .section-rail-dot {
  border-color: rgba(17, 21, 24, 0.7);
  background: var(--hero-ink);
  transform: scale(1.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-brand p {
  margin: 0;
  font-size: 12px;
  letter-spacing: -0.03em;
}

.brand-copy span,
.lead,
.section-head p,
.poster-note,
.line-item p,
.line-card p,
.step-item p,
.tariff-item p,
.pricing-note,
.faq-item p,
.cta-band p,
.form-note,
.footer-block a,
.footer-brand p,
.document-shell p,
.document-section p,
.document-section li {
  color: var(--muted);
}

.brand-copy span {
  display: none;
  font-size: 12px;
}

.site-nav {
  display: none;
}

.site-nav a {
  font-size: 12.5px;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.site-nav a:hover,
.footer-block a:hover {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-burger {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 21, 24, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(84, 201, 247, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(17, 21, 24, 0.05);
  cursor: pointer;
}

.header-burger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--hero-ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--text);
  text-decoration: none;
}

.header-phone svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav-panel {
  display: grid;
  gap: 16px;
  padding: 0 0 16px;
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(17, 21, 24, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(84, 201, 247, 0.12), transparent 32%),
    radial-gradient(circle at 84% 82%, rgba(71, 227, 186, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 42px rgba(17, 21, 24, 0.06),
    0 0 26px rgba(84, 201, 247, 0.08);
}

.mobile-nav a,
.mobile-nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px;
  color: var(--hero-ink);
  font-size: 0.98rem;
  line-height: 1.3;
}

.mobile-nav-phone {
  gap: 10px;
  border-top: 1px solid rgba(17, 21, 24, 0.08);
  padding-top: 14px;
}

.mobile-nav-phone svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button--primary {
  background: var(--dark);
  color: #ffffff;
}

.button--primary:hover {
  background: #182229;
}

.hero-actions .button--primary {
  width: fit-content;
  min-width: 168px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  background: #34ef68;
  color: #111518;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  box-shadow: none;
}

.hero-actions .button--primary:hover {
  background: #2de260;
  color: #111518;
  transform: translateY(0);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--line-strong);
}

.button-label-mobile {
  display: inline;
}

.button-label-desktop {
  display: none;
}

.button--header {
  display: none;
}

.hero {
  padding: 22px 0 18px;
}

.hero-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-layout,
.poster-layout,
.form-layout,
.footer-layout {
  display: grid;
  gap: 20px;
}

.form-layout,
.lead-form,
.form-panel,
.form-section,
.field-grid,
.field-grid--cook {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 16px;
  text-align: left;
}

.hero-copy h1,
.section-head h2,
.cta-band h2,
.document-shell h1 {
  margin: 12px 0 16px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
}

.hero-copy h1 {
  margin: 0;
  max-width: 100%;
  color: var(--hero-ink);
  font-size: clamp(1.92rem, 6.3vw, 3.55rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.stack-line {
  display: block;
}

.hero-title-line,
.hero-title-price {
  display: block;
  text-wrap: balance;
}

.lead,
.section-head p,
.poster-note,
.line-item p,
.line-card p,
.step-item p,
.tariff-item p,
.pricing-note,
.faq-item p,
.cta-band p,
.form-note,
.document-shell p,
.document-section p,
.document-section li {
  margin: 0;
  line-height: 1.56;
  font-size: 0.94rem;
}

.lead {
  max-width: 42ch;
  color: var(--hero-copy);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.36;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-offer {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(100%, 39ch);
  max-width: 39ch;
  padding: 6px 0 4px;
}

.hero-offer::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 26px;
  width: min(100%, 28ch);
  height: 88px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 45%, rgba(84, 201, 247, 0.18) 0%, rgba(84, 201, 247, 0.08) 36%, rgba(84, 201, 247, 0) 72%),
    radial-gradient(circle at 76% 50%, rgba(71, 227, 186, 0.14) 0%, rgba(71, 227, 186, 0.06) 34%, rgba(71, 227, 186, 0) 76%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.hero-offer-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(17, 21, 24, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-offer-kicker::before {
  content: "";
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 188, 200, 0.92) 0%, rgba(71, 227, 186, 0.72) 100%);
  box-shadow: 0 0 18px rgba(23, 188, 200, 0.24);
}

.hero-offer-title,
.hero-offer-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  text-wrap: pretty;
}

.hero-offer-title {
  max-width: 20ch;
  color: var(--hero-ink);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.2vw, 1.64rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero-offer-copy {
  max-width: 28ch;
  color: var(--hero-copy);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
}

.hero-actions .button,
.cta-band .button,
.form-actions .button {
  width: 100%;
}

.hero-poster {
  display: grid;
  gap: 14px;
}

.document-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.poster-frame {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}

.poster-frame--hero {
  position: relative;
  max-width: 356px;
  border-radius: 22px;
}

.poster-frame--hero::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(52, 239, 104, 0.24) 0%, rgba(104, 232, 178, 0.16) 52%, rgba(255, 255, 255, 0) 100%);
  filter: blur(22px);
  opacity: 0.9;
  pointer-events: none;
}

.poster-frame--hero img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  object-position: 50% 50%;
  border-radius: 22px;
  filter: saturate(0.86) hue-rotate(-18deg) sepia(0.08) brightness(1.01) contrast(0.98);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 24px 56px rgba(52, 239, 104, 0.16),
    0 18px 36px rgba(17, 21, 24, 0.09);
}

.hero-poster .poster-frame {
  margin: 0 auto;
}

.hero-poster--calendar {
  align-content: center;
}

.hero-schedule {
  position: relative;
  width: min(100%, 428px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(236, 251, 248, 0.96) 0%, rgba(244, 251, 255, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 30px 70px rgba(23, 188, 200, 0.12),
    0 18px 34px rgba(17, 21, 24, 0.08);
  overflow: hidden;
}

.hero-schedule::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -12%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(71, 227, 186, 0.22) 0%, rgba(71, 227, 186, 0.08) 42%, rgba(71, 227, 186, 0) 72%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-schedule > * {
  position: relative;
  z-index: 1;
}

.hero-schedule-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-schedule-badge,
.hero-schedule-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 21, 24, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 21, 24, 0.62);
}

.hero-schedule-status {
  padding-inline: 10px;
  letter-spacing: 0.12em;
}

.hero-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
}

.hero-schedule-card,
.hero-schedule-calendar {
  min-width: 0;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 18px 34px rgba(17, 21, 24, 0.04);
  backdrop-filter: blur(10px);
}

.hero-schedule-card {
  display: grid;
  gap: 12px;
}

.hero-schedule-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.hero-schedule-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(23, 188, 200, 0.18) 0%, rgba(71, 227, 186, 0.26) 100%);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hero-ink);
}

.hero-schedule-card-copy {
  display: grid;
  gap: 4px;
}

.hero-schedule-name {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 21, 24, 0.52);
}

.hero-schedule-card h3 {
  margin: 0;
  color: var(--hero-ink);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-schedule-slots {
  display: grid;
  gap: 8px;
}

.hero-schedule-slot {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 21, 24, 0.05);
}

.hero-schedule-slot strong,
.hero-schedule-slot span {
  min-width: 0;
}

.hero-schedule-slot strong {
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--hero-ink);
}

.hero-schedule-slot span {
  color: var(--hero-copy);
  font-size: 0.81rem;
  line-height: 1.2;
}

.hero-schedule-calendar {
  display: grid;
  gap: 10px;
}

.hero-schedule-calendar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.hero-schedule-calendar-head p,
.hero-schedule-calendar-head span {
  margin: 0;
}

.hero-schedule-calendar-head p {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--hero-ink);
}

.hero-schedule-calendar-head span {
  color: rgba(17, 21, 24, 0.54);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-schedule-days,
.hero-schedule-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.hero-schedule-days span {
  text-align: center;
  color: rgba(17, 21, 24, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-schedule-date {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(17, 21, 24, 0.05);
  color: var(--hero-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-schedule-date--call {
  background: linear-gradient(180deg, rgba(71, 227, 186, 0.2) 0%, rgba(84, 201, 247, 0.16) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(23, 188, 200, 0.14),
    0 8px 16px rgba(23, 188, 200, 0.08);
  color: #0f5c5f;
}

.hero-schedule-date--active {
  background: #111518;
  box-shadow: 0 14px 24px rgba(17, 21, 24, 0.18);
  color: #fff;
}

.section {
  padding: 56px 0;
}

.section-layout {
  display: grid;
  gap: 28px;
}

.section-layout--wide {
  gap: 24px;
}

.section-head {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.section-head h2,
.cta-band h2,
.document-shell h1 {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.58rem, 5.2vw, 2.55rem);
}

.section-head h2 {
  max-width: 11ch;
}

.section-head--wide {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.section-head--wide h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-head--wide p {
  max-width: 36ch;
  margin-left: 0;
  margin-right: 0;
}

.section-head.section-head--standard h2 {
  max-width: none;
  white-space: normal;
  text-wrap: balance;
}

.section-head.section-head--standard {
  max-width: 760px;
}

.section-head p,
.pricing-note,
.cta-band p {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.line-list,
.line-grid,
.step-grid,
.tariff-grid,
.faq-list {
  display: grid;
  gap: 22px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.line-item,
.line-card,
.step-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.line-item strong,
.line-card h3,
.step-item h3,
.tariff-item strong,
.document-section h2 {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--hero-ink);
}

.line-card h3,
.step-item h3,
.tariff-item strong {
  margin-top: 0;
}

.line-card span,
.step-item span,
.tariff-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-layout.section-layout--premium {
  gap: 20px;
}

.section-head.section-head--premium {
  max-width: none;
  margin: 0;
  text-align: left;
}

.section-head.section-head--premium h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--hero-ink);
}

.section-head.section-head--premium p {
  max-width: 30ch;
  margin: 10px 0 0;
  font-size: clamp(0.84rem, 3.3vw, 0.98rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.section-head.section-head--audience h2 {
  white-space: normal;
  text-wrap: balance;
}

.line-grid.line-grid--audience {
  width: 100%;
  max-width: none;
  gap: 14px;
}

.line-grid.line-grid--audience {
  grid-template-columns: 1fr;
}

.step-grid.step-grid--premium {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 14px;
}

.line-item.line-item--premium,
.line-card.line-card--premium,
.step-item.step-item--premium {
  position: relative;
  overflow: hidden;
  padding: 20px 18px 18px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7f4ef 0%, #fbfaf8 100%);
}

.line-item.line-item--premium::before,
.line-card.line-card--premium::before,
.step-item.step-item--premium::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 211, 201, 0.95) 0%, rgba(110, 235, 221, 0.58) 100%);
}

.line-card.line-card--audience:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(180, 78, 255, 0.95) 0%, rgba(208, 156, 255, 0.52) 100%);
}

.line-card.line-card--audience:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(56, 224, 120, 0.95) 0%, rgba(139, 238, 178, 0.5) 100%);
}

.step-item.step-item--premium:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(180, 78, 255, 0.95) 0%, rgba(208, 156, 255, 0.52) 100%);
}

.step-item.step-item--premium:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(56, 224, 120, 0.95) 0%, rgba(139, 238, 178, 0.5) 100%);
}

.step-item.step-item--premium:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(56, 197, 255, 0.95) 0%, rgba(141, 220, 255, 0.48) 100%);
}

.line-item.line-item--premium span,
.line-card.line-card--premium span,
.step-item.step-item--premium span {
  margin-bottom: 14px;
}

.line-item.line-item--premium strong,
.line-card.line-card--premium h3,
.step-item.step-item--premium h3 {
  margin: 0;
  font-size: clamp(1.12rem, 4.8vw, 1.46rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--hero-ink);
}

.line-item.line-item--premium p,
.line-card.line-card--premium p,
.step-item.step-item--premium p {
  max-width: none;
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.line-card.line-card--audience h3 {
  max-width: 15ch;
}

.section.section--risk {
  background: #ffffff;
}

.section-layout.section-layout--risk {
  gap: 26px;
}

.section-head.section-head--risk {
  max-width: 760px;
}

.section-head.section-head--risk h2 {
  max-width: none;
}

.section-head.section-head--risk p {
  max-width: 42ch;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.risk-card {
  appearance: none;
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 24px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 18px 42px rgba(17, 21, 24, 0.06);
  text-align: left;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 24px 56px rgba(17, 21, 24, 0.09);
}

.risk-card:focus-visible {
  outline: 2px solid rgba(124, 90, 189, 0.34);
  outline-offset: 4px;
}

.risk-card-art {
  display: grid;
  place-items: center;
  min-height: 214px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 18%, rgba(193, 176, 239, 0.24), rgba(255, 255, 255, 0) 42%);
}

.risk-card-art img,
.risk-modal-visual img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

.risk-card-copy {
  display: grid;
  gap: 10px;
  min-height: 100%;
}

.risk-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 4vw, 1.72rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--hero-ink);
}

.risk-card-text {
  display: block;
  max-width: 30ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.risk-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 21, 24, 0.08);
  color: rgba(17, 21, 24, 0.62);
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.risk-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(17, 21, 24, 0.05);
  color: var(--hero-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.risk-card:hover .risk-card-arrow {
  transform: scale(1.04);
  background: rgba(17, 21, 24, 0.08);
}

.risk-note {
  width: min(100%, 980px);
  max-width: 50ch;
  margin: 4px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 21, 24, 0.08);
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.tariff-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1120px);
}

.tariff-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tariff-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.tariff-label,
.tariff-badge {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.tariff-badge {
  color: var(--accent);
}

.tariff-price {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 8vw, 2.85rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--hero-ink);
}

.tariff-meta {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
}

.tariff-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tariff-list li {
  padding-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.tariff-button {
  width: 100%;
  margin-top: auto;
  min-height: 52px;
  border-radius: 16px;
}

.poster-layout {
  align-items: center;
}

.poster-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
  overflow-x: clip;
}

.standard-section {
  display: grid;
  gap: 22px;
  overflow-x: clip;
}

.poster-copy .section-head.section-head--standard {
  max-width: none;
  margin: 0;
  text-align: left;
  min-width: 0;
}

.poster-copy .section-head.section-head--standard h2,
.poster-copy .standard-copy {
  margin-left: 0;
  margin-right: 0;
}

.poster-copy .standard-copy {
  max-width: none;
}

.standard-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 84vw);
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.standard-grid::-webkit-scrollbar {
  display: none;
}

.standard-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f3f3f1 0%, #f8f7f5 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(17, 21, 24, 0.05),
    0 14px 34px rgba(17, 21, 24, 0.05);
  scroll-snap-align: start;
}

.standard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 44%, rgba(188, 195, 204, 0.18) 100%);
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
}

.standard-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(17, 21, 24, 0.04);
  color: #3a4045;
}

.standard-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.standard-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 3.8vw, 1.34rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--hero-ink);
}

.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.44;
  letter-spacing: -0.02em;
}

.standard-gallery-shell {
  position: relative;
  min-width: 0;
  overflow-x: clip;
}

.standard-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 74vw);
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  padding: 6px 2px 8px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.standard-gallery::-webkit-scrollbar {
  display: none;
}

.standard-gallery.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.standard-shot {
  position: relative;
  margin: 0;
  aspect-ratio: 0.92 / 1;
  overflow: visible;
  scroll-snap-align: start;
}

.standard-shot::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  background: linear-gradient(135deg, rgba(23, 188, 200, 0.14) 0%, rgba(255, 255, 255, 0) 42%, rgba(120, 129, 139, 0.18) 100%);
  filter: blur(16px);
  opacity: 0.8;
  pointer-events: none;
}

.standard-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 18px 38px rgba(17, 21, 24, 0.08);
}

.standard-shot-chip,
.standard-shot-plus,
.standard-shot figcaption {
  position: absolute;
  z-index: 2;
}

.standard-shot-chip {
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: rgba(198, 188, 178, 0.68);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.standard-shot-plus {
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(245, 248, 249, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  color: #fbfdff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(17, 21, 24, 0.18);
}

.standard-shot figcaption {
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 247, 249, 0.18) 0%, rgba(226, 232, 236, 0.12) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 10px 26px rgba(17, 21, 24, 0.12);
  backdrop-filter: blur(12px);
  color: #fdfefe;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 2.6vw, 1.24rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 10px rgba(17, 21, 24, 0.26);
}

.standard-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 21, 24, 0.08) 0%, rgba(17, 21, 24, 0.02) 46%, rgba(17, 21, 24, 0.42) 100%);
}

.standard-shot--a img {
  object-position: 50% 34%;
}

.standard-shot--b img {
  object-position: 52% 50%;
}

.standard-shot--c img {
  object-position: 50% 26%;
}

.standard-copy {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.42;
}

.standard-mark {
  margin-top: 0;
  padding: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92em;
}

.tariff-item--featured {
  background: transparent;
  box-shadow: none;
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
}

.tariff-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.tariff-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 12px;
  background: #f5f7f8;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 14px 28px rgba(17, 21, 24, 0.06);
}

.tariff-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 14px;
  background: var(--tariff-glow);
  filter: blur(14px);
  opacity: 0.72;
  pointer-events: none;
}

.tariff-card--mint {
  --tariff-glow: linear-gradient(135deg, rgba(71, 227, 186, 0.45) 0%, rgba(255, 255, 255, 0) 42%, rgba(84, 201, 247, 0.26) 100%);
  background: linear-gradient(180deg, #d9f7f1 0%, #f6fffd 100%);
}

.tariff-card--sand {
  --tariff-glow: linear-gradient(135deg, rgba(255, 206, 103, 0.34) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 186, 84, 0.22) 100%);
  background: linear-gradient(180deg, #f9e8c9 0%, #fffaf1 100%);
}

.tariff-card--sky {
  --tariff-glow: linear-gradient(135deg, rgba(109, 170, 255, 0.36) 0%, rgba(255, 255, 255, 0) 42%, rgba(96, 212, 255, 0.22) 100%);
  background: linear-gradient(180deg, #d7e8ff 0%, #f7fbff 100%);
}

.tariff-card--lilac {
  --tariff-glow: linear-gradient(135deg, rgba(154, 124, 255, 0.34) 0%, rgba(255, 255, 255, 0) 40%, rgba(64, 215, 214, 0.24) 100%);
  background: linear-gradient(180deg, #e9e1ff 0%, #faf9ff 100%);
}

.tariff-card--featured {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(23, 188, 200, 0.18),
    0 18px 34px rgba(23, 188, 200, 0.08);
}

.tariff-brand {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(17, 21, 24, 0.14);
}

.tariff-brand-mark {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: #22b8ce;
}

.tariff-brand-copy {
  font-size: 0.7rem;
  color: rgba(17, 21, 24, 0.52);
}

.tariff-card-top {
  display: grid;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(17, 21, 24, 0.14);
}

.tariff-card-body {
  display: grid;
  gap: 10px;
}

.tariff-name,
.tariff-period,
.tariff-meta,
.tariff-day,
.tariff-saving {
  margin: 0;
}

.tariff-name {
  font-size: clamp(1.62rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--hero-ink);
}

.tariff-period {
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(17, 21, 24, 0.64);
}

.tariff-subtitle {
  max-width: 28ch;
  margin: 0;
  color: rgba(17, 21, 24, 0.66);
  font-size: 0.9rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.tariff-meta {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--hero-ink);
  font-variant-numeric: lining-nums tabular-nums;
}

.tariff-facts {
  display: grid;
  gap: 10px;
  align-items: start;
  padding-top: 2px;
}

.tariff-day {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 0;
  background: transparent;
  white-space: normal;
  font-variant-numeric: tabular-nums;
}

.tariff-day span,
.tariff-day strong,
.tariff-saving span,
.tariff-saving strong {
  display: block;
}

.tariff-day span,
.tariff-saving span {
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 21, 24, 0.5);
}

.tariff-day strong,
.tariff-saving strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--hero-ink);
  font-variant-numeric: lining-nums tabular-nums;
}

.tariff-saving {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(17, 21, 24, 0.08);
  background: transparent;
  font-variant-numeric: tabular-nums;
}

.tariff-saving strong {
  color: var(--hero-ink);
}

.tariff-word {
  color: var(--accent);
}

.tariff-perks {
  display: grid;
  gap: 0;
  border-top: 1px dashed rgba(17, 21, 24, 0.14);
  border-bottom: 1px dashed rgba(17, 21, 24, 0.14);
}

.tariff-perks p {
  margin: 0;
  padding: 10px 0;
  font-size: 0.92rem;
  line-height: 1.24;
  color: rgba(17, 21, 24, 0.82);
}

.tariff-perks p + p {
  border-top: 1px dashed rgba(17, 21, 24, 0.1);
}

.tariff-card .tariff-button {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--dark);
  border: 1px solid rgba(17, 21, 24, 0.16);
}

.tariff-card .tariff-button:hover {
  background: #ffffff;
  border-color: rgba(17, 21, 24, 0.28);
}

.tariff-base {
  border-top: 1px dashed rgba(17, 21, 24, 0.14);
  padding-top: 12px;
}

.tariff-base summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.tariff-base summary::before {
  content: "+";
  display: inline-block;
  width: 16px;
  margin-right: 6px;
  color: var(--accent);
}

.tariff-base[open] summary::before {
  content: "−";
}

.tariff-base-list {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.tariff-base-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
  color: rgba(17, 21, 24, 0.82);
}

.tariff-base-list strong {
  font-weight: 600;
  color: var(--text);
}

.tariff-base[open] summary::before {
  content: "-";
}

.faq-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.faq-item p {
  margin-top: 10px;
}

.risk-modal[hidden] {
  display: none;
}

.risk-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 24px;
}

.risk-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 21, 24, 0.26);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.risk-modal-window {
  position: relative;
  width: min(100%, 860px);
  max-height: none;
  overflow: hidden;
  margin-block: 24px;
  padding: 30px;
  border-radius: 30px;
  background: #f4efe8;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 28px 80px rgba(17, 21, 24, 0.18);
}

.risk-modal-window::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 44%, rgba(214, 205, 193, 0.2) 100%);
  filter: blur(16px);
  opacity: 0.5;
  pointer-events: none;
}

.risk-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 21, 24, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.risk-modal-top {
  display: grid;
  gap: 22px;
  align-items: center;
}

.risk-modal-visual {
  display: grid;
  place-items: center;
  min-height: 188px;
  border-radius: 26px;
  background: radial-gradient(circle at 20% 18%, rgba(193, 176, 239, 0.16), rgba(244, 239, 232, 0) 42%);
}

.risk-modal-head {
  display: grid;
  gap: 10px;
}

.risk-modal-head h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.risk-modal-summary {
  max-width: 38ch;
  color: rgba(17, 21, 24, 0.62);
  font-size: 1rem;
  line-height: 1.48;
}

.risk-modal-body {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.risk-modal-point {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(17, 21, 24, 0.05);
}

.risk-modal-point h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--hero-ink);
}

.risk-modal-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.faq-modal[hidden] {
  display: none;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.faq-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 21, 24, 0.24);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.faq-modal-window {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 30px 30px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 253, 0.98) 100%);
  border-radius: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 28px 80px rgba(17, 21, 24, 0.16);
}

.faq-modal-window::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(71, 227, 186, 0.28) 0%, rgba(255, 255, 255, 0) 44%, rgba(84, 201, 247, 0.2) 100%);
  filter: blur(18px);
  opacity: 0.78;
  pointer-events: none;
}

.faq-modal-head {
  position: relative;
  display: grid;
  gap: 10px;
  padding-right: 56px;
  margin-bottom: 22px;
}

.faq-modal-head h2 {
  margin: 0;
  max-width: 11ch;
}

.faq-modal-lead {
  max-width: 34ch;
  color: rgba(17, 21, 24, 0.62);
}

.faq-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 21, 24, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.faq-modal-list {
  display: grid;
  gap: 16px;
}

.faq-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f4ef 0%, #fbfaf8 100%);
}

.faq-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 211, 201, 0.95) 0%, rgba(110, 235, 221, 0.58) 100%);
}

.faq-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(180, 78, 255, 0.95) 0%, rgba(208, 156, 255, 0.52) 100%);
}

.faq-card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(56, 224, 120, 0.95) 0%, rgba(139, 238, 178, 0.5) 100%);
}

.faq-card:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(56, 197, 255, 0.95) 0%, rgba(141, 220, 255, 0.48) 100%);
}

.faq-card:nth-child(5)::before {
  background: linear-gradient(180deg, rgba(255, 188, 79, 0.95) 0%, rgba(255, 220, 145, 0.52) 100%);
}

.faq-card h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--hero-ink);
}

.faq-card p {
  max-width: none;
  margin-top: 14px;
  font-size: 0.94rem;
  line-height: 1.38;
  letter-spacing: -0.02em;
  text-align: left;
}

.faq-modal .faq-item summary {
  max-width: none;
  margin: 0;
  text-align: left;
}

.faq-modal .faq-item p {
  max-width: none;
  margin: 10px 0 0;
  text-align: left;
}

body.is-faq-open {
  overflow: hidden;
}

body.is-risk-open {
  overflow: hidden;
}

.cta-band {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.cta-band h2 {
  max-width: 8ch;
}

.cta-band h2,
.cta-band p,
.cta-band .button {
  margin-left: auto;
  margin-right: auto;
}

.cta-band .button {
  margin-top: 18px;
}

.form-panel {
  position: relative;
  isolation: isolate;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 26px;
  border-radius: 12px;
  background: linear-gradient(180deg, #dff7f3 0%, #eef8ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 16px 32px rgba(17, 21, 24, 0.06);
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(71, 227, 186, 0.4) 0%, rgba(255, 255, 255, 0) 42%, rgba(84, 201, 247, 0.24) 100%);
  filter: blur(14px);
  opacity: 0.72;
  pointer-events: none;
}

.section-head--form {
  display: grid;
  gap: 8px;
  justify-items: start;
  max-width: none;
  margin-bottom: 14px;
  text-align: left;
}

.form-brand {
  width: 56px;
  height: auto;
  margin-bottom: 2px;
}

.form-visual {
  width: min(100%, 226px);
  margin-bottom: 6px;
}

.poster-frame--form {
  position: relative;
  width: 100%;
  max-width: 226px;
  border-radius: 22px;
}

.poster-frame--form::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(71, 227, 186, 0.2) 0%, rgba(84, 201, 247, 0.14) 60%, rgba(255, 255, 255, 0) 100%);
  filter: blur(18px);
  opacity: 0.86;
  pointer-events: none;
}

.poster-frame--form img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 20px 34px rgba(17, 21, 24, 0.09);
}

.section-head--form .eyebrow {
  margin-bottom: 10px;
}

.section-head--form h2 {
  max-width: 13.5ch;
  margin: 0;
  white-space: normal;
  font-size: clamp(1.2rem, 3.2vw, 1.82rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--hero-ink);
}

.section-head--form p {
  margin-left: 0;
  margin-right: 0;
}

.form-lead,
.form-caption {
  margin: 0;
  color: var(--hero-ink);
  text-align: left;
}

.form-lead {
  max-width: 64ch;
  font-size: 0.96rem;
  line-height: 1.52;
}

.form-caption {
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.5;
}

.lead-form {
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(17, 21, 24, 0.08);
}

.form-section {
  display: grid;
  gap: 14px;
}

.form-section + .form-section {
  margin-top: 22px;
}

.form-section-head h3 {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--hero-ink);
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-grid--cook {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.field input,
.field select {
  min-height: 54px;
  font-size: 0.98rem;
  padding: 0 4px;
  border: 0;
  border-bottom-color: rgba(17, 21, 24, 0.12);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.field input:focus,
.field select:focus {
  outline: 0;
  background: transparent;
  border-color: rgba(23, 188, 200, 0.5);
  box-shadow: none;
}

.field.is-invalid input,
.field.is-invalid select {
  border-bottom-color: rgba(17, 21, 24, 0.48);
}

.field input::placeholder {
  color: rgba(17, 21, 24, 0.42);
}

.field--full {
  grid-column: 1 / -1;
}

.cook-list {
  display: grid;
  gap: 14px;
}

.cook-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 10px 26px rgba(17, 21, 24, 0.04);
}

.cook-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cook-card-head h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--hero-ink);
}

.cook-remove {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 21, 24, 0.52);
  font-size: 0.92rem;
  cursor: pointer;
}

.cook-remove[disabled] {
  opacity: 0.32;
  cursor: default;
}

.form-inline-actions {
  margin-top: 2px;
}

.form-add-cook {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border-color: rgba(17, 21, 24, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.form-add-cook:hover {
  border-color: rgba(17, 21, 24, 0.22);
}

.form-actions {
  margin-top: 22px;
}

.form-note {
  margin-top: 14px;
  max-width: 36ch;
  color: var(--muted);
  text-align: left;
}

.form-success-screen {
  display: none;
  gap: 14px;
  padding-top: 0;
  border-top: 0;
}

.form-success-screen.is-visible {
  display: grid;
}

.form-success-screen[hidden],
.lead-form[hidden],
.lead-form.is-hidden {
  display: none !important;
}

.form-success-screen .eyebrow,
.form-success-screen h3,
.form-success-screen p {
  margin: 0;
}

.form-success-screen h3 {
  font-size: clamp(1.32rem, 3.2vw, 1.92rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--hero-ink);
}

.form-success-screen p {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.5;
}

.form-success-screen .button {
  width: fit-content;
  min-width: 188px;
}

.form-alert[hidden] {
  display: none !important;
}

.form-alert {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
}

.form-alert-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 21, 24, 0.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.form-alert-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 456px);
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 243, 236, 0.98) 0%, rgba(244, 239, 232, 0.99) 100%);
  box-shadow:
    0 30px 72px rgba(17, 21, 24, 0.16),
    inset 0 0 0 1px rgba(17, 21, 24, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.form-alert-window::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(71, 227, 186, 0.28) 0%, rgba(255, 255, 255, 0) 46%, rgba(84, 201, 247, 0.18) 100%);
  filter: blur(18px);
  opacity: 0.78;
  pointer-events: none;
}

.form-alert-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(17, 21, 24, 0.06);
  box-shadow: inset 0 0 0 1px rgba(17, 21, 24, 0.06);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1;
  color: var(--hero-ink);
}

.form-alert-window .eyebrow,
.form-alert-window h3,
.form-alert-window p {
  margin: 0;
}

.form-alert-window .eyebrow {
  color: var(--muted);
}

.form-alert-window h3 {
  font-size: var(--type-subheading);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--hero-ink);
  max-width: 15ch;
}

.form-alert-window p,
.form-alert-copy {
  color: #5b6268;
  max-width: 30ch;
  line-height: 1.46;
}

.form-alert-window .button {
  width: 100%;
  margin-top: 10px;
}

body.is-form-alert-open {
  overflow: hidden;
}

@media (max-width: 879px) {
  .form-alert {
    padding: 18px;
  }

  .form-alert-window {
    width: min(100%, 100%);
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .form-alert-window::before {
    border-radius: 24px;
    filter: blur(14px);
  }

  .form-alert-window h3,
  .form-alert-copy {
    max-width: none;
  }
}

.site-footer {
  margin-top: 56px;
  padding: 64px 0 54px;
  border-top: 0;
  background: #f4efe8;
}

.footer-layout {
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-note {
  max-width: 26ch;
  margin: 0;
  color: rgba(17, 21, 24, 0.52);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.footer-block {
  display: grid;
  gap: 8px;
}

.footer-block a {
  font-size: 13px;
  line-height: 1.45;
}

.document-page {
  background: #ffffff;
}

.document-shell {
  padding: 36px 0 68px;
}

.document-top {
  margin-bottom: 18px;
}

.document-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(17, 21, 24, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.document-back:hover {
  color: var(--text);
}

.document-section {
  margin-top: 16px;
  padding: 20px;
}

.document-section ul {
  margin: 0;
  padding-left: 18px;
}

.checklist-shell {
  max-width: 560px;
}

.checklist-page .document-shell {
  padding: 32px 0 64px;
}

.checklist-page .checklist-shell {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 520px) minmax(140px, 220px);
  gap: 18px;
  justify-content: center;
  align-items: start;
}

.checklist-intro {
  grid-column: 1;
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  align-self: start;
  min-height: calc(100vh - 140px);
  display: grid;
  align-content: center;
  justify-self: end;
  width: 100%;
  padding-right: 18px;
}

.checklist-intro-copy {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 25rem;
  padding-left: 28px;
}

.checklist-intro-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(71, 227, 186, 0.92) 0%, rgba(84, 201, 247, 0.62) 100%);
  box-shadow: 0 0 16px rgba(71, 227, 186, 0.18);
}

.checklist-intro-kicker {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(84, 201, 247, 0.98);
}

.checklist-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.86rem, 2.55vw, 2.62rem);
  font-weight: 440;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--hero-ink);
  max-width: none;
}

.checklist-intro-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.checklist-intro-text {
  margin: 0;
  max-width: 24ch;
  font-size: 1.14rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: rgba(17, 21, 24, 0.72);
}

.checklist-main {
  grid-column: 2;
  display: grid;
  gap: 22px;
  width: 100%;
}

.checklist-panel {
  position: relative;
  isolation: isolate;
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.08),
    0 20px 42px rgba(17, 21, 24, 0.06),
    0 0 0 1px rgba(71, 227, 186, 0.08);
}

.checklist-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(71, 227, 186, 0.24) 0%, rgba(255, 255, 255, 0) 46%, rgba(84, 201, 247, 0.18) 100%);
  filter: blur(18px);
  opacity: 0.86;
  pointer-events: none;
}

.checklist-panel::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(71, 227, 186, 0.18), transparent 42%),
    radial-gradient(circle at 82% 16%, rgba(84, 201, 247, 0.14), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(71, 227, 186, 0.1), transparent 48%);
  filter: blur(24px);
  opacity: 0.78;
  pointer-events: none;
}

.section-head--checklist h1 {
  max-width: none;
  margin-bottom: 10px;
}

.checklist-page .section-head--checklist {
  max-width: none;
  text-align: left;
}

.checklist-page .section-rail {
  gap: 4px;
  right: max(24px, calc(50% - 500px));
}

.checklist-page .section-rail::before {
  top: 6px;
  bottom: 6px;
  right: 13px;
  width: 1px;
  background: rgba(17, 21, 24, 0.24);
}

.checklist-page .section-rail-link {
  grid-template-columns: 28px;
  justify-items: center;
  gap: 0;
  min-height: 28px;
}

.checklist-page .section-rail-label {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  max-width: none;
  opacity: 1;
  overflow: visible;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 520;
  line-height: 1;
  color: var(--hero-ink);
  letter-spacing: -0.02em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.12),
    0 0 0 6px rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(17, 21, 24, 0.06),
    0 0 16px rgba(71, 227, 186, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.checklist-page .section-rail-link .section-rail-dot {
  display: none;
}

.checklist-page .section-rail-link.is-active .section-rail-label {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 21, 24, 0.82) 0%, rgba(17, 21, 24, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 7px rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(17, 21, 24, 0.12),
    0 0 22px rgba(71, 227, 186, 0.28);
  transform: scale(1.06);
}

.checklist-page .section-head--checklist h1 {
  max-width: none;
  margin: 0;
  white-space: normal;
  text-wrap: balance;
  font-weight: 440;
}

.checklist-subtitle {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.checklist-demo {
  display: grid;
  gap: 24px;
  margin-top: 18px;
  border-top: 0;
}

.checklist-group {
  --group-accent: rgba(71, 227, 186, 0.88);
  --group-fill: rgba(71, 227, 186, 0.14);
  position: relative;
  display: grid;
  gap: 0;
  padding: 22px 22px 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 16px 30px rgba(17, 21, 24, 0.05);
  isolation: isolate;
}

.checklist-group::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 14%, var(--group-fill), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(84, 201, 247, 0.12), transparent 30%),
    radial-gradient(circle at 52% 100%, rgba(17, 21, 24, 0.05), transparent 44%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.checklist-group--teal {
  --group-accent: rgba(58, 198, 160, 0.92);
  --group-fill: rgba(58, 198, 160, 0.16);
}

.checklist-group--lime {
  --group-accent: rgba(141, 205, 62, 0.92);
  --group-fill: rgba(141, 205, 62, 0.14);
}

.checklist-group--plum {
  --group-accent: rgba(180, 107, 215, 0.92);
  --group-fill: rgba(180, 107, 215, 0.14);
}

.checklist-group-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(17, 21, 24, 0.06);
}

.checklist-group-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
  color: var(--group-accent);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 0 0 8px var(--group-fill),
    0 10px 20px rgba(17, 21, 24, 0.06);
}

.checklist-group-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist-group-copy {
  display: grid;
  gap: 8px;
}

.checklist-group-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--hero-ink);
}

.checklist-group-copy p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.checklist-group-plus {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
  color: var(--group-accent);
  font-size: 1.42rem;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 0 0 6px rgba(255, 255, 255, 0.72);
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(17, 21, 24, 0.14);
}

.checklist-group .check-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 10px;
}

.check-item input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.check-item span {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.check-item-copy {
  display: grid;
  gap: 6px;
}

.check-item-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 520;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--hero-ink);
}

.check-item-text {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
  letter-spacing: -0.015em;
}

.checklist-submit {
  margin-top: 18px;
  width: 100%;
}

.checklist-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 253, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 14px 28px rgba(17, 21, 24, 0.05);
  isolation: isolate;
}

.checklist-note::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 20%, rgba(71, 227, 186, 0.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(84, 201, 247, 0.12), transparent 30%);
  filter: blur(18px);
  opacity: 0.92;
  pointer-events: none;
}

.checklist-note-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
  color: rgba(58, 198, 160, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(17, 21, 24, 0.06),
    0 0 0 8px rgba(71, 227, 186, 0.12),
    0 10px 20px rgba(17, 21, 24, 0.06);
}

.checklist-note-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist-note-copy {
  display: grid;
}

.checklist-note-copy p {
  margin: 0;
  color: var(--hero-ink);
  font-size: 1.14rem;
  font-weight: 420;
  line-height: 1.24;
  letter-spacing: -0.03em;
  max-width: 34ch;
}

@media (max-width: 879px) {
  .container {
    width: min(100% - 30px, var(--max-width));
  }

  .header-inner {
    gap: 10px;
    min-height: 62px;
  }

  .brand {
    gap: 10px;
  }

  .brand img,
  .footer-brand img {
    width: 42px;
  }

  .brand-copy strong,
  .footer-brand p,
  .footer-note {
    font-size: 11px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12.5px;
  }

  .site-nav {
    display: none;
  }

  .header-phone {
    gap: 6px;
    font-size: 11px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone svg {
    width: 14px;
    height: 14px;
  }

  .section-rail {
    right: 10px;
    gap: 12px;
  }

  .section-rail-link {
    grid-template-columns: 10px;
    justify-items: center;
    gap: 0;
    min-height: 10px;
  }

  .section-rail-label {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(17, 21, 24, 0.08);
    transform: translateY(-50%);
    font-size: 10px;
  }

  .section-rail-link.is-active .section-rail-label {
    display: block;
  }

  .section-rail-dot {
    width: 10px;
    height: 10px;
  }

  .hero {
    padding: 16px 0 12px;
  }

  .hero-shell {
    padding: 0;
    border-radius: 0;
  }

  .hero-layout,
  .hero-poster,
  .form-layout,
  .footer-layout {
    gap: 18px;
  }

  .hero-copy {
    max-width: 356px;
    margin: 0;
    text-align: left;
  }

  .hero-copy h1 {
    margin: 0;
    max-width: 13.8ch;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.74rem, 6vw, 2.46rem);
  }

  .hero-title-line {
    text-wrap: balance;
  }

  .lead,
  .section-head p,
  .poster-note,
  .line-item p,
  .line-card p,
  .step-item p,
  .tariff-item p,
  .pricing-note,
  .faq-item p,
  .cta-band p,
  .form-note {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
    max-width: 320px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .button--primary {
    min-width: 164px;
    min-height: 48px;
    font-size: 0.94rem;
  }

  .lead {
    max-width: 34ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-poster {
    max-width: 320px;
    margin: 4px 0 0;
  }

  .poster-frame--hero {
    max-width: 320px;
  }

  .poster-frame {
    padding: 0;
  }

  .poster-frame img {
    border-radius: 0;
  }

  .poster-copy {
    gap: 16px;
  }

  .standard-section {
    gap: 20px;
  }

  .standard-grid {
    gap: 12px;
    grid-auto-columns: minmax(236px, 82vw);
  }

  .standard-card {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .standard-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .standard-card h3 {
    font-size: 1.1rem;
  }

  .standard-card p {
    font-size: 0.88rem;
  }

  .standard-gallery {
    grid-auto-columns: minmax(232px, 74vw);
    gap: 14px;
  }

  .standard-shot-chip {
    top: 14px;
    left: 14px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .standard-shot-plus {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .standard-shot figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-layout {
    gap: 22px;
  }

  .section-layout--wide {
    gap: 20px;
  }

  .section-head {
    max-width: 360px;
  }

  .section-head--wide {
    max-width: 100%;
    text-align: left;
  }

  .section-head--wide h2,
  .section-head--wide p {
    margin-left: 0;
    margin-right: 0;
  }

  .section-head--wide p {
    max-width: 30ch;
  }

  .section-head.section-head--standard h2 {
    max-width: none;
  }

  .section-head h2,
  .cta-band h2,
  .document-shell h1 {
    font-size: clamp(1.42rem, 5vw, 2.05rem);
  }

  .document-top {
    margin-bottom: 14px;
  }

  .section-head p,
  .pricing-note,
  .cta-band p {
    max-width: 30ch;
  }

  .line-list,
  .line-grid,
  .step-grid,
  .tariff-grid,
  .faq-list {
    gap: 16px;
  }

  .section-layout.section-layout--risk {
    gap: 22px;
  }

  .risk-grid {
    gap: 16px;
  }

  .risk-card {
    gap: 16px;
    padding: 20px;
    border-radius: 26px;
  }

  .risk-card-art {
    min-height: 182px;
    border-radius: 22px;
  }

  .risk-card-text {
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .risk-card-action {
    padding-top: 12px;
    font-size: 0.78rem;
  }

  .risk-card-arrow {
    width: 26px;
    height: 26px;
  }

  .risk-note {
    padding-top: 16px;
    font-size: 0.92rem;
  }

  .line-item,
  .line-card,
  .step-item {
    padding-top: 0;
    padding-inline: 2px;
  }

  .tariff-item {
    padding: 16px 0 0;
    border-radius: 0;
  }

  .tariff-flow {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 18px;
  }

  .tariff-card {
    gap: 16px;
    min-height: min(calc(100svh - 180px), 760px);
    padding: 18px;
    border-radius: 0;
  }

  .tariff-card::before {
    inset: -1px;
    border-radius: 0;
    filter: blur(10px);
    opacity: 0.54;
  }

  .tariff-brand {
    padding-bottom: 12px;
  }

  .tariff-brand-mark {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .tariff-name {
    font-size: clamp(1.46rem, 7vw, 1.84rem);
  }

  .tariff-subtitle {
    max-width: 30ch;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .tariff-meta {
    font-size: 1.22rem;
  }

  .tariff-facts {
    gap: 8px;
  }

  .tariff-day span,
  .tariff-saving span {
    font-size: 0.62rem;
  }

  .tariff-day strong,
  .tariff-saving strong {
    font-size: 0.94rem;
  }

  .tariff-card .tariff-button {
    width: 100%;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tariff-perks p,
  .tariff-base-list p {
    font-size: 0.88rem;
  }

  .faq-modal {
    padding: 16px;
  }

  .risk-modal {
    padding: 16px;
  }

  .risk-modal-window {
    width: min(100%, 620px);
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .risk-modal-window::before {
    inset: -1px;
    border-radius: 26px;
    filter: blur(12px);
  }

  .risk-modal-close {
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .risk-modal-top {
    gap: 16px;
  }

  .risk-modal-visual {
    min-height: 150px;
    border-radius: 20px;
  }

  .risk-modal-head h2 {
    font-size: clamp(1.38rem, 6vw, 2rem);
  }

  .risk-modal-summary {
    max-width: 30ch;
    font-size: 0.92rem;
  }

  .risk-modal-body {
    gap: 12px;
    margin-top: 18px;
  }

  .risk-modal-point {
    padding: 16px;
    border-radius: 18px;
  }

  .faq-modal-window {
    width: min(100%, 520px);
    max-height: min(88vh, 760px);
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .faq-modal-window::before {
    inset: -1px;
    border-radius: 22px;
    filter: blur(10px);
    opacity: 0.58;
  }

  .faq-modal-head {
    gap: 6px;
    padding-right: 40px;
    margin-bottom: 16px;
  }

  .faq-modal-head h2 {
    max-width: 11ch;
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
  }

  .faq-modal-lead {
    max-width: 28ch;
  }

  .faq-modal-close {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .faq-modal-list {
    gap: 16px;
  }

  .faq-card {
    padding: 18px 16px 16px 20px;
    border-radius: 18px;
  }

  .faq-card h3 {
    max-width: 15ch;
    font-size: 1.06rem;
  }

  .faq-card p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .tariff-base summary {
    font-size: 0.94rem;
  }

  .tariff-list {
    gap: 8px;
    margin-top: 18px;
  }

  .tariff-list li {
    padding-top: 8px;
  }

  .cta-band {
    max-width: 360px;
  }

  .faq-list {
    width: min(100%, 320px);
    gap: 14px;
  }

  .faq-item summary {
    max-width: 24ch;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.34;
    text-align: center;
  }

  .faq-item p {
    max-width: 28ch;
    margin: 8px auto 0;
    text-align: center;
  }

  .section-head,
  .cta-band,
  .faq-list,
  .lead-form {
    padding-inline: 2px;
  }

  .lead-form {
    width: 100%;
    max-width: 320px;
  }

  .form-layout {
    max-width: 380px;
    gap: 18px;
  }

  .form-panel {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }

  .form-panel::before {
    inset: -1px;
    border-radius: 0;
    filter: blur(10px);
    opacity: 0.54;
  }

  .section-head--form {
    margin-bottom: 10px;
  }

  .section-head--form h2 {
    max-width: 18ch;
    font-size: clamp(1rem, 4.6vw, 1.24rem);
  }

  .form-brand {
    width: 52px;
  }

  .form-lead,
  .form-caption {
    max-width: none;
  }

  .field-grid,
  .field-grid--cook {
    gap: 8px;
  }

  .field {
    gap: 6px;
  }

  .field span {
    font-size: 11.5px;
  }

  .field input,
  .field select {
    min-height: 50px;
    font-size: 16px;
    border-radius: 0;
    padding: 0 2px;
  }

  .cook-card {
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .cook-card-head {
    align-items: flex-start;
  }

  .cook-card-head h4 {
    font-size: 0.96rem;
  }

  .form-inline-actions {
    margin-top: 4px;
  }

  .form-add-cook {
    width: 100%;
    min-height: 44px;
  }

  .form-actions {
    margin-top: 16px;
  }

  .form-actions .button {
    width: 100%;
  }

  .form-note,
  .form-success-screen p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .form-success-screen {
    gap: 12px;
  }

  .form-success-screen .button {
    width: 100%;
  }

  .site-footer {
    margin-top: 24px;
    padding: 24px 0 30px;
  }

  .checklist-panel {
    padding: 20px;
    border-radius: 0;
  }

  .checklist-page .document-shell {
    padding: 18px 0 28px;
  }

  .checklist-page .checklist-shell {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checklist-page .section-rail {
    right: 12px;
  }

  .checklist-intro {
    grid-column: auto;
    position: static;
    min-height: 0;
    transform: none;
    justify-self: center;
    width: 100%;
    padding-right: 0;
  }

  .checklist-intro-copy {
    gap: 12px;
    max-width: 32rem;
    padding-left: 0;
    justify-items: center;
    text-align: center;
  }

  .checklist-intro-copy::before {
    display: none;
  }

  .checklist-intro-kicker {
    font-size: 0.92rem;
  }

  .checklist-intro h2 {
    max-width: 16ch;
    font-size: clamp(1.26rem, 5vw, 1.84rem);
  }

  .checklist-intro-line {
    white-space: normal;
  }

  .checklist-intro-text {
    max-width: 26ch;
    font-size: 1rem;
    line-height: 1.3;
  }

  .checklist-page .section-rail-link {
    grid-template-columns: 24px;
    min-height: 24px;
  }

  .checklist-page .section-rail::before {
    right: 11px;
  }

  .checklist-page .section-rail-label {
    width: 24px;
    height: 24px;
    font-size: 9px;
    box-shadow:
      inset 0 0 0 1px rgba(17, 21, 24, 0.08),
      0 0 0 5px rgba(255, 255, 255, 0.68),
      0 7px 16px rgba(17, 21, 24, 0.06),
      0 0 14px rgba(71, 227, 186, 0.1);
  }

  .checklist-page .section-rail-link.is-active .section-rail-label {
    box-shadow:
      inset 0 0 0 1px rgba(17, 21, 24, 0.08),
      0 0 0 5px rgba(255, 255, 255, 0.72),
      0 8px 18px rgba(17, 21, 24, 0.08),
      0 0 18px rgba(71, 227, 186, 0.18);
  }

  .checklist-main {
    grid-column: auto;
  }

  .checklist-page .section-head--checklist h1 {
    max-width: 11ch;
    font-size: clamp(1.34rem, 5.6vw, 1.88rem);
    line-height: 0.98;
    white-space: normal;
  }

  .checklist-subtitle {
    font-size: 0.9rem;
  }

  .checklist-panel::before {
    inset: -1px;
    border-radius: 0;
    filter: blur(10px);
    opacity: 0.54;
  }

  .checklist-demo {
    gap: 18px;
  }

  .checklist-group {
    padding: 18px 18px 8px;
    border-radius: 20px;
  }

  .checklist-group-head {
    gap: 14px;
    padding-bottom: 14px;
  }

  .checklist-group-icon {
    width: 42px;
    height: 42px;
  }

  .checklist-group-copy h2 {
    font-size: 1rem;
  }

  .checklist-group-copy p {
    max-width: none;
    font-size: 0.88rem;
  }

  .checklist-group-plus {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 1.26rem;
  }

  .check-item {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .check-item span {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .check-item-copy {
    gap: 5px;
  }

  .check-item-title {
    font-size: 0.92rem;
    font-weight: 520;
  }

  .check-item-text {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .checklist-note {
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .checklist-note-icon {
    width: 42px;
    height: 42px;
  }

  .checklist-note-copy p {
    font-size: 1rem;
    max-width: none;
  }

  .checklist-submit {
    min-height: 46px;
    margin-top: 16px;
  }

  .footer-layout {
    max-width: 280px;
    margin: 0 auto;
    gap: 14px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
    gap: 6px;
  }

  .footer-note {
    max-width: 24ch;
    text-align: center;
  }

  .footer-block {
    gap: 6px;
    justify-items: center;
  }

  .footer-block a {
    font-size: 12.5px;
    line-height: 1.4;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .header-inner {
    min-height: 58px;
    gap: 8px;
  }

  .brand img,
  .footer-brand img {
    width: 38px;
  }

  .brand-copy strong,
  .footer-brand p,
  .footer-note {
    font-size: 10.5px;
  }

  .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .form-layout {
    display: block;
    max-width: none;
  }

  .form-panel {
    width: auto;
    max-width: none;
    margin-inline: 0;
  }

  .header-burger {
    width: 40px;
    height: 40px;
  }

  .header-phone {
    gap: 5px;
    font-size: 10.4px;
  }

  .header-phone svg {
    width: 13px;
    height: 13px;
  }

  .section-rail {
    right: 8px;
    gap: 10px;
  }

  .section-rail::before {
    right: 4px;
  }

  .section-rail-link {
    grid-template-columns: 8px;
    justify-items: center;
    gap: 0;
    min-height: 8px;
  }

  .section-rail-label {
    right: 14px;
    padding: 5px 8px;
    font-size: 9.5px;
  }

  .section-rail-dot {
    width: 8px;
    height: 8px;
  }

  .hero-shell {
    padding: 0;
    border-radius: 0;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }

  .hero-copy h1 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.44rem, 6.8vw, 1.9rem);
    line-height: 0.94;
  }

  .hero-title-line {
    text-wrap: balance;
  }

  .hero-offer {
    width: min(100%, 27ch);
    max-width: 27ch;
  }

  .hero-offer-title {
    max-width: 15ch;
    font-size: 0.96rem;
  }

  .hero-offer-copy {
    max-width: 21ch;
    font-size: 0.81rem;
  }

  .lead {
    max-width: 28ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .hero-poster {
    width: 108px;
  }

  .hero-actions {
    max-width: 100%;
    margin-top: 16px;
  }

  .risk-card {
    padding: 18px;
    border-radius: 24px;
  }

  .risk-card-art {
    min-height: 160px;
    border-radius: 20px;
  }

  .risk-card-title {
    font-size: clamp(1.12rem, 5.4vw, 1.36rem);
  }

  .risk-card-text {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .risk-card-action {
    font-size: 0.74rem;
  }

  .risk-card-arrow {
    width: 24px;
    height: 24px;
    font-size: 0.94rem;
  }

  .risk-note {
    max-width: 28ch;
    font-size: 0.86rem;
    line-height: 1.46;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-actions .button--primary {
    min-width: 160px;
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.92rem;
  }

  .poster-frame--hero {
    max-width: 100%;
  }

  .poster-note {
    max-width: 26ch;
    padding-inline: 2px;
  }

  .standard-grid {
    grid-auto-columns: minmax(218px, 84vw);
    gap: 10px;
  }

  .standard-card {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .standard-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .standard-card h3 {
    font-size: 1rem;
  }

  .standard-card p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .standard-gallery {
    grid-auto-columns: minmax(204px, 80vw);
    gap: 12px;
  }

  .standard-shot-chip {
    top: 12px;
    left: 12px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .standard-shot-plus {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .standard-shot figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.92rem;
  }

  .section {
    padding: 36px 0;
  }

  .section-head h2,
  .cta-band h2,
  .document-shell h1 {
    font-size: clamp(1.34rem, 6.2vw, 1.84rem);
  }

  .section-head--wide h2 {
    max-width: 10ch;
  }

  .section-head--wide p {
    max-width: 24ch;
  }

  .section-head.section-head--standard h2 {
    max-width: none;
    font-size: clamp(1.12rem, 5.4vw, 1.42rem);
  }

  .document-top {
    margin-bottom: 12px;
  }

  .document-back {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .line-list,
  .line-grid,
  .step-grid,
  .tariff-grid,
  .faq-list {
    gap: 14px;
  }

  .tariff-top {
    flex-direction: column;
    gap: 8px;
  }

  .tariff-label,
  .tariff-badge {
    padding: 0;
    font-size: 9px;
  }

  .tariff-flow {
    width: 100%;
    gap: 14px;
  }

  .tariff-card {
    min-height: min(calc(100svh - 170px), 700px);
    gap: 14px;
    padding: 16px;
    border-radius: 0;
  }

  .tariff-card::before {
    inset: -1px;
    border-radius: 0;
    filter: blur(8px);
    opacity: 0.48;
  }

  .tariff-card-top {
    gap: 6px;
  }

  .tariff-brand-mark {
    font-size: 2rem;
  }

  .faq-modal {
    padding: 12px;
  }

  .risk-modal {
    padding: 12px;
  }

  .risk-modal-window {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .risk-modal-close {
    top: 14px;
    right: 14px;
  }

  .risk-modal-head h2 {
    font-size: clamp(1.18rem, 7vw, 1.54rem);
  }

  .risk-modal-summary {
    max-width: 26ch;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .risk-modal-point {
    padding: 14px;
    border-radius: 16px;
  }

  .risk-modal-point h3 {
    font-size: 0.94rem;
  }

  .risk-modal-point p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .faq-modal-window {
    padding: 18px 16px 16px;
  }

  .faq-modal-head h2 {
    max-width: 10ch;
    font-size: clamp(1.18rem, 7vw, 1.54rem);
  }

  .faq-modal-lead {
    max-width: 24ch;
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .faq-card {
    padding: 16px 14px 14px 18px;
    border-radius: 16px;
  }

  .faq-card h3 {
    max-width: 14ch;
    font-size: 0.98rem;
  }

  .faq-card p {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .faq-modal .faq-item summary {
    font-size: 0.95rem;
    line-height: 1.32;
  }

  .faq-modal .faq-item p {
    font-size: 0.86rem;
    line-height: 1.46;
  }

  .tariff-period {
    font-size: 0.82rem;
  }

  .tariff-name {
    font-size: 1.34rem;
  }

  .tariff-subtitle {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .tariff-meta {
    font-size: 1.12rem;
  }

  .tariff-perks p,
  .tariff-base-list p {
    font-size: 0.82rem;
  }

  .tariff-facts {
    gap: 7px;
  }

  .tariff-day span,
  .tariff-saving span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .tariff-day strong,
  .tariff-saving strong {
    font-size: 0.88rem;
  }

  .tariff-saving {
    padding-top: 8px;
  }

  .tariff-card .tariff-button {
    width: 100%;
  }

  .tariff-base summary {
    font-size: 0.9rem;
  }

  .cta-band {
    max-width: 300px;
  }

  .faq-list {
    width: min(100%, 280px);
    gap: 12px;
  }

  .faq-item summary {
    max-width: 22ch;
    font-size: 0.92rem;
  }

  .faq-item p {
    max-width: 24ch;
    font-size: 0.86rem;
  }

  .section-head p,
  .pricing-note,
  .cta-band p {
    max-width: 26ch;
  }

  .section-head--form p {
    color: #111518;
  }

  .section-head--form .form-lead {
    max-width: 58ch;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .section-head--form .form-caption {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.44;
  }

  .form-layout {
    max-width: 100%;
    gap: 16px;
  }

  .lead-form {
    max-width: none;
  }

  .form-panel {
    padding: 16px;
  }

  .section-head--form h2 {
    max-width: 17ch;
    font-size: clamp(1rem, 4.5vw, 1.18rem);
  }

  .form-brand {
    width: 46px;
  }

  .field span {
    font-size: 11.5px;
  }

  .field input,
  .field select {
    min-height: 46px;
    font-size: 16px;
  }

  .field-grid--cook {
    grid-template-columns: 1fr;
  }

  .cook-card {
    padding: 14px;
  }

  .cook-remove {
    font-size: 0.86rem;
  }

  .form-actions .button {
    width: 100%;
  }

  .form-note,
  .form-success-screen p {
    max-width: none;
  }

  .checklist-panel {
    padding: 16px;
  }

  .checklist-page .document-shell {
    padding: 14px 0 24px;
  }

  .checklist-page .section-head--checklist h1 {
    max-width: 10ch;
    font-size: clamp(1.18rem, 7vw, 1.54rem);
    white-space: normal;
  }

  .checklist-subtitle {
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .checklist-demo {
    margin-top: 14px;
    gap: 16px;
  }

  .checklist-group {
    padding: 16px 16px 6px;
    border-radius: 18px;
  }

  .checklist-group-head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  .checklist-group-plus {
    display: none;
  }

  .checklist-group-copy h2 {
    font-size: 0.96rem;
  }

  .checklist-group-copy p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .check-item {
    gap: 10px;
    padding: 14px 0;
  }

  .check-item span {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .check-item-copy {
    gap: 4px;
  }

  .check-item-title {
    font-size: 0.88rem;
    line-height: 1.18;
    font-weight: 520;
  }

  .check-item-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .check-item input {
    width: 17px;
    height: 17px;
  }

  .checklist-submit {
    min-height: 44px;
    margin-top: 14px;
  }

  .footer-layout {
    max-width: 250px;
    gap: 12px;
  }

  .footer-block a {
    font-size: 12px;
  }
}

@media (min-width: 880px) {
  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .header-inner {
    gap: 16px;
    min-height: 76px;
  }

  .brand img,
  .footer-brand img {
    width: 64px;
  }

  .brand-copy strong,
  .footer-brand p,
  .footer-note {
    font-size: 14px;
  }

  .brand-copy span {
    display: none;
  }

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

  .header-burger,
  .mobile-nav-panel {
    display: none !important;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .header-phone {
    gap: 9px;
    font-size: 13.5px;
  }

  .header-phone svg {
    width: 16px;
    height: 16px;
  }

  .section-rail {
    right: max(16px, calc((100vw - var(--max-width)) / 2 + 6px));
    gap: 12px;
  }

  .section-rail-label {
    font-size: 11.5px;
  }

  .hero {
    padding: 30px 0 22px;
  }

  .hero-shell {
    padding: 0;
  }

  .hero-layout,
  .poster-layout,
  .footer-layout {
    gap: 46px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 680px) minmax(540px, 620px);
    align-items: start;
    justify-content: space-between;
  }

  .poster-copy {
    gap: 20px;
  }

  .standard-section {
    gap: 26px;
  }

  .standard-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 0;
  }

  .standard-card {
    min-height: 238px;
    padding: 24px 22px 20px;
  }

  .standard-gallery {
    grid-auto-columns: minmax(320px, 1fr);
    gap: 18px;
  }

  .standard-shot {
    aspect-ratio: 0.86 / 1;
  }

  .hero-copy h1 {
    max-width: 8.95ch;
    font-size: clamp(3.42rem, 4.9vw, 5.16rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.082em;
  }

  .hero-copy h1,
  .section-head h2,
  .cta-band h2,
  .document-shell h1 {
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 680px;
    padding-top: 12px;
  }

  .hero-title-line,
  .hero-title-price {
    white-space: nowrap;
  }

  .hero-poster {
    max-width: none;
    justify-items: end;
    align-items: start;
    padding-top: 18px;
  }

  .hero-poster--calendar .hero-schedule {
    width: min(100%, 620px);
    padding: 24px 22px;
    border-radius: 32px;
  }

  .hero-poster--calendar .hero-schedule-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 14px;
  }

  .hero-poster--calendar .hero-schedule-card,
  .hero-poster--calendar .hero-schedule-calendar {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .hero-poster--calendar .hero-schedule-card h3 {
    font-size: 1.28rem;
    line-height: 1;
  }

  .hero-poster--calendar .hero-schedule-slot {
    padding: 10px 12px;
  }

  .hero-poster--calendar .hero-schedule-slot strong {
    font-size: 0.92rem;
  }

  .hero-poster--calendar .hero-schedule-slot span {
    font-size: 0.95rem;
  }

  .hero-poster--calendar .hero-schedule-calendar-head p {
    font-size: 1.38rem;
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .hero-poster--calendar .hero-schedule-days span {
    font-size: 0.66rem;
  }

  .hero-poster--calendar .hero-schedule-date {
    font-size: 0.9rem;
    border-radius: 16px;
  }

  .poster-frame--hero {
    width: min(100%, 420px);
    max-width: 420px;
  }

  .hero-poster .poster-frame {
    margin: 0 0 0 auto;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .button--primary {
    min-width: 176px;
    min-height: 50px;
    padding: 0 26px;
    font-size: 1rem;
  }

  .hero-actions .button,
  .cta-band .button,
  .form-actions .button {
    width: auto;
  }

  .poster-frame {
    padding: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-layout {
    gap: 32px;
  }

  .section-layout--wide {
    gap: 22px;
  }

  .section-head h2,
  .cta-band h2,
  .document-shell h1 {
    font-size: clamp(1.88rem, 2.45vw, 2.8rem);
  }

  .section-head--wide h2 {
    max-width: none;
    font-size: clamp(1.82rem, 2.7vw, 2.5rem);
  }

  .section-head--wide p {
    max-width: 34ch;
  }

  .section-head.section-head--standard h2 {
    max-width: none;
    font-size: clamp(1.96rem, 2.55vw, 2.7rem);
  }

  .poster-copy .standard-copy {
    white-space: normal;
    text-wrap: pretty;
  }

  .faq-modal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-card:first-child {
    grid-column: 1 / -1;
  }

  .section-layout.section-layout--premium {
    gap: 26px;
  }

  .section-head.section-head--premium h2 {
    font-size: clamp(2rem, 3vw, 3rem);
  }

  .section-head.section-head--premium p {
    max-width: 34ch;
    font-size: 1rem;
  }

  .line-grid.line-grid--audience {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .risk-card {
    min-height: 440px;
    padding: 28px;
  }

  .risk-card-art {
    min-height: 228px;
  }

  .risk-modal-top {
    grid-template-columns: 248px minmax(0, 1fr);
  }

  .risk-modal-body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .risk-modal-point {
    min-height: 100%;
  }

  .line-item.line-item--premium,
  .line-card.line-card--premium,
  .step-item.step-item--premium {
    min-height: 238px;
    padding: 28px 28px 26px 32px;
    border-radius: 28px;
  }

  .line-item.line-item--premium::before,
  .line-card.line-card--premium::before,
  .step-item.step-item--premium::before {
    top: 24px;
    bottom: 24px;
    width: 4px;
  }

  .line-item.line-item--premium strong,
  .line-card.line-card--premium h3,
  .step-item.step-item--premium h3 {
    font-size: clamp(1.28rem, 1.65vw, 1.76rem);
  }

  .line-item.line-item--premium p,
  .line-card.line-card--premium p,
  .step-item.step-item--premium p {
    margin-top: 20px;
    font-size: 1.01rem;
    line-height: 1.42;
  }

  .step-grid.step-grid--premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .line-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 28px;
  }

  .step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 24px;
  }

  .tariff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .tariff-item {
    padding: 18px 0 0;
  }

  .tariff-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 980px);
    gap: 24px;
  }

  .tariff-card {
    gap: 24px;
    padding: 26px;
  }

  .tariff-card .tariff-price {
    font-size: clamp(2.6rem, 3vw, 3.8rem);
  }

  .tariff-card .tariff-button {
    width: 100%;
  }

  .form-layout {
    max-width: 760px;
    gap: 28px;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head--form h2 {
    max-width: 18ch;
  }

  .section-head--form p {
    color: #111518;
  }

  .section-head--form .form-lead {
    max-width: 68ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .section-head--form .form-caption {
    max-width: max-content;
    white-space: nowrap;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .form-add-cook {
    width: auto;
  }

  .footer-layout {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    align-items: start;
  }
}

:root {
  --hero-ink: #111518;
  --hero-copy: #5f676d;
  --muted: #646c73;
  --type-eyebrow: 0.72rem;
  --type-heading: 2.06rem;
  --type-subheading: 1.18rem;
  --type-subtitle: 1rem;
  --type-body: 0.94rem;
}

.eyebrow {
  font-size: var(--type-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head h2,
.section-head.section-head--standard h2,
.section-head.section-head--premium h2,
.section-head--wide h2,
.cta-band h2,
.document-shell h1,
.faq-modal-head h2,
.risk-modal-head h2,
.section-head--form h2 {
  font-size: var(--type-heading);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--hero-ink);
}

.line-card h3,
.step-item h3,
.line-card.line-card--premium h3,
.step-item.step-item--premium h3,
.standard-card h3,
.risk-card-title,
.faq-card h3,
.risk-modal-point h3,
.form-section-head h3,
.cook-card-head h4,
.tariff-name,
.document-section h2 {
  font-size: var(--type-subheading);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--hero-ink);
}

.lead,
.section-head p,
.poster-note,
.pricing-note,
.cta-band p,
.form-lead,
.form-caption,
.faq-modal-lead,
.risk-modal-summary,
.standard-copy,
.tariff-subtitle {
  font-size: var(--type-subtitle);
  line-height: 1.5;
  color: var(--muted);
}

.line-item p,
.line-card p,
.step-item p,
.risk-card-text,
.standard-card p,
.tariff-perks p,
.tariff-base-list p,
.faq-item p,
.document-section p,
.document-section li,
.footer-block a,
.footer-brand p,
.field span,
.form-note,
.form-success-screen p,
.risk-note {
  font-size: var(--type-body);
  line-height: 1.52;
  color: var(--muted);
}

.partners-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(84, 201, 247, 0.08), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(71, 227, 186, 0.08), transparent 26%),
    #ffffff;
}

.partners-hero {
  padding: 36px 0 18px;
}

.partners-hero-layout,
.partners-rules-layout,
.partners-cabinet-layout {
  display: grid;
  gap: 24px;
}

.partners-hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.partners-hero-copy h1 {
  margin: 0;
  color: var(--hero-ink);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.partners-hero-copy .lead,
.partners-page .section-head p,
.partners-audience-card p,
.partners-step p,
.partners-rule p,
.partners-payout-card p,
.partners-payout-card small,
.partners-metric p,
.partners-cabinet-referral span,
.partners-cabinet-referral em,
.partners-cabinet-form span,
.partners-cabinet-economics span {
  color: var(--hero-copy);
}

.partners-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partners-hero-panel,
.partners-audience-card,
.partners-payout-card,
.partners-step,
.partners-rule,
.partners-cabinet-shell,
.partners-cabinet-stat,
.partners-cabinet-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 21, 24, 0.08);
  box-shadow:
    0 20px 50px rgba(17, 21, 24, 0.06),
    0 0 34px rgba(84, 201, 247, 0.08);
}

.partners-hero-panel,
.partners-audience-card,
.partners-payout-card,
.partners-step,
.partners-rule,
.partners-cabinet-shell,
.partners-cabinet-stat,
.partners-cabinet-card {
  border-radius: 30px;
}

.partners-hero-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.partners-hero-glow {
  position: absolute;
  inset: auto -8% -18% auto;
  width: 320px;
  height: 220px;
  background:
    radial-gradient(circle at 30% 36%, rgba(84, 201, 247, 0.28), transparent 48%),
    radial-gradient(circle at 70% 72%, rgba(91, 221, 173, 0.26), transparent 44%);
  filter: blur(18px);
  pointer-events: none;
}

.partners-metric-grid,
.partners-audience-grid,
.partners-payout-grid,
.partners-step-grid,
.partners-rule-list,
.partners-cabinet-stats,
.partners-cabinet-economics {
  display: grid;
  gap: 16px;
}

.partners-metric-grid {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-metric,
.partners-cabinet-stat,
.partners-cabinet-economics div {
  display: grid;
  gap: 10px;
}

.partners-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(247, 250, 251, 0.88);
  border: 1px solid rgba(17, 21, 24, 0.05);
}

.partners-metric span,
.partners-payout-label {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partners-metric strong,
.partners-payout-card h3,
.partners-payout-card strong,
.partners-cabinet-stat strong,
.partners-cabinet-economics strong {
  color: var(--hero-ink);
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.partners-metric strong {
  font-size: 1.8rem;
  line-height: 0.96;
}

.partners-audience-grid,
.partners-payout-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-audience-card,
.partners-step,
.partners-rule,
.partners-payout-card,
.partners-cabinet-card {
  padding: 24px;
}

.partners-audience-card h3,
.partners-step h3,
.partners-rule h3,
.partners-cabinet-card h3,
.partners-cabinet-side h3 {
  margin: 0 0 10px;
  font-size: var(--type-subheading);
  line-height: 1.1;
  color: var(--hero-ink);
}

.partners-payout-card {
  display: grid;
  gap: 12px;
}

.partners-payout-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.98;
}

.partners-payout-card strong {
  font-size: 1.6rem;
  line-height: 0.96;
}

.partners-payout-card small {
  font-size: 0.86rem;
  line-height: 1.45;
}

.partners-payout-card--mint {
  background:
    radial-gradient(circle at 18% 18%, rgba(71, 227, 186, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.partners-payout-card--sand {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 199, 118, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.partners-payout-card--sky {
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 201, 247, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.partners-payout-card--plum {
  background:
    radial-gradient(circle at 18% 18%, rgba(174, 160, 220, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.partners-step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-step {
  min-height: 220px;
}

.partners-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 21, 24, 0.05);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.partners-rules-layout,
.partners-cabinet-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.partners-rule-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-cabinet-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  padding: 18px;
}

.partners-cabinet-side {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(247, 250, 251, 0.92);
  border: 1px solid rgba(17, 21, 24, 0.05);
}

.partners-cabinet-side-head {
  display: grid;
  gap: 6px;
}

.partners-cabinet-referral {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 21, 24, 0.06);
}

.partners-cabinet-referral.is-active {
  border-color: rgba(23, 188, 200, 0.26);
  box-shadow: 0 14px 28px rgba(17, 21, 24, 0.05), 0 0 24px rgba(84, 201, 247, 0.09);
}

.partners-cabinet-referral strong,
.partners-cabinet-card-head h3 {
  margin: 0;
  color: var(--hero-ink);
}

.partners-cabinet-main {
  display: grid;
  gap: 16px;
}

.partners-cabinet-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners-cabinet-stat {
  padding: 18px;
}

.partners-cabinet-stat span,
.partners-cabinet-card-head .eyebrow {
  color: var(--muted);
}

.partners-cabinet-stat strong {
  font-size: 1.55rem;
  line-height: 1;
}

.partners-cabinet-card {
  display: grid;
  gap: 18px;
}

.partners-cabinet-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.partners-cabinet-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partners-cabinet-form span,
.partners-cabinet-economics div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 250, 251, 0.92);
  border: 1px solid rgba(17, 21, 24, 0.05);
}

.partners-cabinet-economics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-cta-band {
  display: grid;
  gap: 16px;
}

.partners-cta .cta-band {
  max-width: 920px;
}

.partners-cta .cta-band h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.partners-cta .cta-band p {
  max-width: 54ch;
}

.partners-cta .partners-hero-actions {
  justify-content: center;
}

@media (max-width: 879px) {
  .partners-hero {
    padding: 24px 0 10px;
  }

  .partners-hero-layout,
  .partners-rules-layout,
  .partners-cabinet-layout {
    grid-template-columns: 1fr;
  }

  .partners-metric-grid,
  .partners-audience-grid,
  .partners-payout-grid,
  .partners-step-grid,
  .partners-rule-list,
  .partners-cabinet-stats,
  .partners-cabinet-form,
  .partners-cabinet-economics {
    grid-template-columns: 1fr;
  }

  .partners-cta .cta-band {
    max-width: 100%;
  }

  .partners-cta .cta-band h2 {
    max-width: 12ch;
    font-size: clamp(1.64rem, 7vw, 2.34rem);
  }

  .partners-cta .cta-band p {
    max-width: 32ch;
  }

  .partners-cabinet-shell {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .partners-hero-copy h1 {
    font-size: clamp(1.92rem, 8vw, 3rem);
  }

  .partners-hero-actions,
  .partners-cabinet-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-payout-card h3 {
    font-size: 1.66rem;
  }

  .partners-payout-card strong,
  .partners-cabinet-stat strong {
    font-size: 1.4rem;
  }
}

.field input,
.field select,
.tariff-base summary,
.form-success-screen .button,
.form-add-cook {
  font-size: var(--type-body);
}

@media (max-width: 879px) {
  :root {
    --type-eyebrow: 0.66rem;
    --type-heading: 1.42rem;
    --type-subheading: 1rem;
    --type-subtitle: 0.94rem;
    --type-body: 0.9rem;
  }
}

/* Permanent FMS design rhythm:
   1. orphan words never hang on the next line;
   2. heading, subtitle and body text always keep one shared vertical rhythm;
   3. panel and section gaps are reused across all current and future pages. */
:root {
  --space-head-stack: 14px;
  --space-copy-stack: 14px;
  --space-card-stack: 12px;
  --space-panel-stack: 20px;
  --space-section-stack: 28px;
}

.section-head,
.section-head--wide,
.section-head.section-head--premium,
.section-head.section-head--standard,
.section-head--form,
.faq-modal-head,
.risk-modal-head,
.checklist-page .section-head--checklist {
  display: grid;
  align-content: start;
  row-gap: var(--space-head-stack);
}

.section-layout,
.section-layout.section-layout--premium {
  gap: var(--space-section-stack);
}

.section-head > *,
.section-head--wide > *,
.section-head.section-head--premium > *,
.section-head.section-head--standard > *,
.section-head--form > *,
.faq-modal-head > *,
.risk-modal-head > *,
.checklist-page .section-head--checklist > * {
  margin: 0;
}

.section-head p,
.form-lead,
.form-caption,
.faq-modal-lead,
.risk-modal-summary,
.standard-copy,
.tariff-subtitle,
.poster-note,
.pricing-note {
  margin: 0;
  max-width: 60ch;
}

.section-head p + p,
.form-lead + .form-caption,
.standard-copy + .poster-note,
.pricing-note + .pricing-note {
  margin-top: var(--space-copy-stack);
}

.section-head h1,
.section-head h2,
.section-head h3,
.section-head--wide h1,
.section-head--wide h2,
.section-head--wide h3,
.section-head.section-head--premium h1,
.section-head.section-head--premium h2,
.section-head.section-head--premium h3,
.section-head.section-head--standard h1,
.section-head.section-head--standard h2,
.section-head.section-head--standard h3,
.section-head--form h1,
.section-head--form h2,
.section-head--form h3,
.faq-modal-head h2,
.risk-modal-head h2,
.checklist-page .section-head--checklist h1,
.checklist-page .section-head--checklist h2,
.checklist-page .section-head--checklist h3,
.line-card.line-card--premium h3,
.step-item.step-item--premium h3,
.standard-card h3,
.form-section-head h3 {
  text-wrap: balance;
}

.line-card.line-card--premium,
.step-item.step-item--premium,
.standard-card,
.faq-card,
.risk-card-copy,
.tariff-card-top,
.tariff-card-body,
.form-section-head {
  display: grid;
  align-content: start;
  row-gap: var(--space-card-stack);
}

.lead-form-shell,
.faq-list,
.risk-grid,
.steps-grid,
.line-grid,
.pricing-text-grid,
.standard-layout,
.standard-cards {
  row-gap: var(--space-panel-stack);
}

.section-head + .line-grid,
.section-head + .steps-grid,
.section-head + .risk-grid,
.section-head + .pricing-text-grid,
.section-head + .lead-form-shell,
.section-head + .faq-list,
.section-head + .standard-layout,
.section-head + .standard-cards,
.section-head--form + .lead-form-shell,
.section-head--wide + .tariff-grid,
.section-head.section-head--premium + .partners-binding-layout,
.section-head.section-head--premium + .partners-payout-grid,
.section-head.section-head--premium + .partners-rules-layout {
  margin-top: var(--space-section-stack);
}

.section-head p,
.form-lead,
.form-caption,
.faq-modal-lead,
.risk-modal-summary,
.standard-copy,
.tariff-subtitle,
.poster-note,
.pricing-note,
.line-card.line-card--premium p,
.step-item.step-item--premium p,
.standard-card p,
.form-section-head p,
.checklist-note-copy p {
  text-wrap: pretty;
}

.hero-title-price,
.tariff-price,
.tariff-day strong,
.tariff-saving strong,
.partners-metric strong,
.partners-kpi strong,
.partners-cabinet-economics strong,
.admin-stat strong,
.checklist-company-card strong {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-title-price,
.tariff-price,
.tariff-day strong,
.tariff-saving strong {
  line-height: 0.96;
}

.tariff-day,
.tariff-saving,
.partners-metric,
.partners-kpi,
.admin-stat {
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.tariff-day span,
.tariff-saving span,
.partners-metric span,
.partners-kpi span,
.admin-stat-label,
.checklist-company-card-label {
  max-width: 18ch;
  text-wrap: pretty;
}

.line-card.line-card--premium span,
.step-item.step-item--premium span {
  margin-bottom: 0;
}

.line-card.line-card--premium h3,
.step-item.step-item--premium h3,
.standard-card h3,
.faq-card h3,
.risk-card-title,
.form-section-head h3,
.tariff-name {
  margin: 0;
}

.line-card.line-card--premium p,
.step-item.step-item--premium p,
.standard-card p,
.faq-card p,
.risk-card-text,
.tariff-subtitle,
.form-section-head p {
  margin: 0;
}

@media (max-width: 879px) {
  :root {
    --space-head-stack: 12px;
    --space-copy-stack: 12px;
    --space-card-stack: 10px;
    --space-panel-stack: 16px;
    --space-section-stack: 22px;
  }
}

.lead-form .field--tariff {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(84, 201, 247, 0.18), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(71, 227, 186, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 251, 253, 0.98) 100%);
  border: 1px solid rgba(17, 21, 24, 0.08);
  box-shadow:
    0 18px 42px rgba(17, 21, 24, 0.05),
    0 0 32px rgba(84, 201, 247, 0.1);
}

.lead-form .field--tariff span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-ink);
}

.lead-form .field--tariff select {
  min-height: 64px;
  padding: 0 42px 0 0;
  border-bottom: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--hero-ink);
}

.lead-form .field--tariff select:focus {
  border-bottom: 0;
}

.lead-form .field--tariff::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(17, 21, 24, 0.5);
  border-bottom: 1.5px solid rgba(17, 21, 24, 0.5);
  transform: rotate(45deg);
  pointer-events: none;
}

@media (max-width: 879px) {
  .lead-form .field--tariff {
    padding: 16px;
    border-radius: 22px;
  }

  .lead-form .field--tariff select {
    min-height: 58px;
    font-size: 1.08rem;
  }

  .lead-form .field--tariff::after {
    right: 16px;
    bottom: 23px;
  }
}

@media (max-width: 640px) {
  .lead-form .field--tariff {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  .lead-form .field--tariff span {
    font-size: 0.72rem;
  }

  .lead-form .field--tariff select {
    min-height: 54px;
    font-size: 1rem;
  }

  .lead-form .field--tariff::after {
    right: 14px;
    bottom: 21px;
  }
}

.hero-highlight {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  gap: 16px;
  width: min(100%, 45ch);
  max-width: 45ch;
  padding: 2px 0 2px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 82px;
  top: 28px;
  width: 220px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(84, 201, 247, 0.14) 0%, rgba(84, 201, 247, 0) 72%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-highlight-line {
  align-self: stretch;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(23, 188, 200, 0.92) 0%, rgba(71, 227, 186, 0.72) 100%);
  box-shadow: 0 0 18px rgba(23, 188, 200, 0.24);
}

.hero-highlight-content {
  display: grid;
  gap: 8px;
  align-content: start;
  position: relative;
  z-index: 1;
}

.hero-highlight-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgba(17, 21, 24, 0.58);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-highlight-title,
.hero-highlight-copy {
  margin: 0;
  text-wrap: pretty;
}

.hero-highlight-title {
  display: inline-block;
  width: fit-content;
  color: var(--hero-ink);
  font-family: var(--font-display);
  max-width: 23ch;
  font-size: clamp(1.18rem, 2.2vw, 1.54rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
  padding: 0.18em 0.46em 0.24em;
  border-radius: 0.5em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background:
    linear-gradient(135deg, rgba(84, 201, 247, 0.18) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(71, 227, 186, 0.18) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 8px 22px rgba(84, 201, 247, 0.08);
}

.hero-highlight-copy {
  display: block;
  color: var(--hero-copy);
  max-width: 36ch;
  font-size: clamp(0.96rem, 1.35vw, 1.05rem);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

/* Footer feature block */
.footer-layout {
  align-items: start;
}

.footer-feature {
  display: grid;
  gap: var(--space-copy-stack, 8px);
  align-content: start;
  justify-self: start;
  max-width: 28ch;
}

.footer-feature-title {
  margin: 0;
  display: block;
  max-width: 16ch;
  color: var(--hero-ink);
  font-family: var(--font-display);
  font-size: var(--type-subheading);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-wrap: balance;
}

.footer-feature-title:hover {
  color: var(--text);
}

.footer-feature-copy {
  max-width: 28ch;
  margin: 0;
  font-size: var(--type-body);
  line-height: 1.52;
  color: var(--muted);
  text-wrap: pretty;
}

@media (max-width: 879px) {
  .hero-offer {
    width: min(100%, 33ch);
    max-width: 33ch;
    gap: 8px;
  }

  .hero-offer::after {
    left: 8px;
    top: 24px;
    width: min(100%, 24ch);
    height: 74px;
  }

  .hero-offer-title {
    max-width: 19ch;
    font-size: clamp(1.08rem, 3vw, 1.34rem);
  }

  .hero-offer-copy {
    max-width: 26ch;
    font-size: 0.98rem;
  }

  .hero-highlight {
    width: min(100%, 35ch);
    max-width: 35ch;
    margin-left: 0;
    margin-right: 0;
    padding: 2px 0 2px 2px;
  }

  .hero-highlight-content {
    gap: 6px;
  }

  .footer-feature {
    justify-items: center;
    text-align: center;
    gap: 6px;
    max-width: 24ch;
  }

  .footer-feature-copy {
    max-width: 24ch;
    text-align: center;
  }
}

@media (min-width: 880px) {
  .hero-copy {
    max-width: 680px;
  }

  .hero-copy h1 {
    max-width: 8.95ch;
  }

  .lead {
    max-width: 32ch;
  }

  .hero-offer {
    width: min(100%, 34ch);
  }

  .hero-highlight {
    width: min(100%, 46ch);
    max-width: 46ch;
  }

  .footer-layout {
    grid-template-columns: 1.15fr 0.9fr 0.92fr 0.9fr 1.08fr;
    gap: 24px;
  }

  .footer-feature {
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .standard-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 12px;
    padding-bottom: 0;
  }

  .standard-card {
    min-height: auto;
  }

  .section-rail {
    display: none;
  }

  .hero {
    padding: 16px 0 10px;
  }

  .hero-layout {
    display: grid;
    grid-template-areas:
      "eyebrow"
      "poster"
      "title"
      "offer"
      "lead"
      "actions";
    align-items: start;
    gap: 10px 0;
    min-height: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    grid-area: eyebrow;
  }

  .hero-copy h1 {
    grid-area: title;
    max-width: 9.2ch;
    margin-right: 0;
    align-self: start;
  }

  .hero-offer {
    grid-area: offer;
    width: min(100%, 31ch);
    max-width: 31ch;
    gap: 7px;
    padding: 4px 0 2px;
    margin-right: 0;
  }

  .hero-offer::after {
    left: 4px;
    top: 18px;
    width: min(100%, 22ch);
    height: 60px;
    filter: blur(10px);
  }

  .hero-offer-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.17em;
  }

  .hero-offer-kicker::before {
    width: 42px;
  }

  .hero-offer-title {
    max-width: 17ch;
    font-size: 1rem;
    line-height: 1.06;
  }

  .hero-offer-copy {
    max-width: 24ch;
    font-size: 0.84rem;
    line-height: 1.32;
    letter-spacing: -0.02em;
  }

  .lead {
    grid-area: lead;
    max-width: 30ch;
  }

  .hero-actions {
    grid-area: actions;
    margin-top: 4px;
  }

  .hero-poster {
    grid-area: poster;
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 320px);
    max-width: 320px;
    margin: 2px auto 8px;
    z-index: 2;
    justify-self: center;
    align-self: start;
  }

  .hero-schedule {
    width: 100%;
    padding: 14px;
    border-radius: 24px;
  }

  .hero-schedule-toolbar {
    margin-bottom: 10px;
  }

  .hero-schedule-badge,
  .hero-schedule-status {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  .hero-schedule-grid {
    gap: 10px;
  }

  .hero-schedule-card,
  .hero-schedule-calendar {
    padding: 12px 10px;
    border-radius: 18px;
  }

  .hero-schedule-avatar {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.88rem;
  }

  .hero-schedule-card h3 {
    font-size: 0.9rem;
  }

  .hero-schedule-slot {
    gap: 8px;
    padding: 7px 8px;
  }

  .hero-schedule-slot strong {
    font-size: 0.7rem;
  }

  .hero-schedule-slot span {
    font-size: 0.74rem;
  }

  .hero-schedule-calendar-head p {
    font-size: 0.86rem;
  }

  .hero-schedule-calendar-head span {
    font-size: 0.58rem;
  }

  .hero-schedule-days,
  .hero-schedule-dates {
    gap: 5px;
  }

  .hero-schedule-days span {
    font-size: 0.52rem;
  }

  .hero-schedule-date {
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .hero-highlight {
    grid-template-columns: 3px minmax(0, 1fr);
    width: min(100%, 100%);
    max-width: 100%;
    padding: 0 0 0 2px;
    gap: 10px;
    text-align: left;
  }

  .hero-highlight-line {
    width: 3px;
    height: auto;
    margin: 0;
  }

  .hero-highlight-title {
    max-width: 21ch;
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .hero-highlight-copy {
    max-width: 28ch;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .hero-highlight-kicker {
    font-size: 0.68rem;
  }

  .field-grid,
  .field-grid--cook {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 879px) {
  .section-head,
  .section-head--wide,
  .section-head.section-head--premium,
  .section-head.section-head--standard,
  .section-head--form {
    justify-items: center;
    text-align: center;
  }

  .section-head p,
  .section-head--wide p,
  .section-head.section-head--premium p,
  .section-head.section-head--standard p,
  .section-head--form p,
  .form-lead,
  .form-caption {
    max-width: 31ch;
    margin-inline: auto;
  }

  .footer-feature {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-layout {
    justify-items: center;
    text-align: center;
  }

  .hero-copy > .eyebrow,
  .hero-copy h1,
  .lead,
  .hero-actions {
    justify-self: center;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-offer {
    justify-self: center;
    width: min(100%, 32ch);
    text-align: center;
  }

  .hero-offer::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-offer-kicker {
    justify-content: center;
  }

  .hero-offer-title,
  .hero-offer-copy,
  .lead {
    max-width: 30ch;
    margin-inline: auto;
  }

  .hero-actions {
    width: 100%;
    max-width: 320px;
  }

  .hero-poster {
    justify-self: center;
    align-self: center;
    margin: 2px auto 8px;
  }

  .footer-layout {
    justify-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-legal {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .standard-grid {
    grid-auto-flow: row !important;
    grid-auto-columns: initial !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    gap: 12px !important;
    padding-bottom: 0 !important;
  }

  .standard-card {
    min-height: auto !important;
  }

  .standard-gallery-shell {
    overflow: hidden !important;
  }

  .standard-gallery {
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .standard-shot {
    overflow: hidden !important;
  }

  .standard-shot::before {
    inset: 0 !important;
    filter: blur(10px) !important;
  }

  .lead-form,
  .form-layout,
  .form-panel,
  .form-section,
  .field-grid,
  .field-grid--cook,
  .field {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .field > span,
  .field input,
  .field select,
  .field textarea {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .container.form-layout,
  .lead-form,
  .form-panel {
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  .field {
    display: grid !important;
    gap: 8px !important;
  }

  .field > span {
    display: block !important;
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .button {
    min-height: 46px !important;
  }

  .header-burger {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
  }

  .header-phone {
    justify-content: center !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 10px !important;
    border-radius: 14px !important;
  }

  .footer-block a,
  .footer-feature-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding-block: 10px !important;
  }

  .check-item {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    min-height: 44px !important;
  }

  .check-item input {
    width: 22px !important;
    height: 22px !important;
    margin: 2px 0 0 !important;
  }

  .cook-remove {
    min-height: 44px !important;
    padding: 10px 0 !important;
  }
}

@media (max-width: 390px) {
  .button {
    min-height: 46px !important;
  }

  .header-burger {
    width: 46px !important;
    height: 46px !important;
  }

  .header-phone {
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 12px !important;
  }

  .check-item input {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    padding-bottom: 6px;
  }

  .hero-layout {
    gap: 14px !important;
  }

  .hero-copy {
    gap: 12px !important;
  }

  .hero-copy h1 {
    max-width: 8.95ch !important;
    font-size: clamp(2.12rem, 10.1vw, 2.88rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.072em !important;
    font-weight: 800 !important;
    text-wrap: balance !important;
  }

  .hero-copy h1 .hero-title-line {
    display: inline !important;
  }

  .hero-copy h1 .hero-title-line + .hero-title-line::before {
    content: " ";
  }

  .hero-poster {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin: 2px auto 10px !important;
    justify-self: center !important;
  }

  .hero-schedule {
    max-width: 320px !important;
    padding: 15px !important;
  }

  .hero-schedule-grid {
    gap: 10px !important;
  }

  .hero-schedule-card,
  .hero-schedule-calendar {
    padding: 12px 10px !important;
  }

  .form-visual {
    width: min(100%, 250px) !important;
    margin-bottom: 2px !important;
  }

  .poster-frame--form {
    max-width: 250px !important;
  }

  .hero-offer {
    width: min(100%, 31ch) !important;
    gap: 8px !important;
  }

  .hero-offer-title {
    max-width: 16ch !important;
    font-size: clamp(1.12rem, 5.2vw, 1.38rem) !important;
    line-height: 1.06 !important;
  }

  .hero-offer-copy,
  .lead {
    max-width: 24ch !important;
  }

  .hero-offer-copy {
    font-size: 0.98rem !important;
    line-height: 1.42 !important;
  }

  .lead {
    font-size: 1.02rem !important;
    line-height: 1.48 !important;
  }

  .section-head--form {
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .section-head--form h2 {
    max-width: 13.8ch !important;
    font-size: clamp(1.38rem, 6.6vw, 1.72rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.05em !important;
    font-weight: 750 !important;
    text-wrap: balance !important;
  }

  .form-brand {
    margin-top: 2px !important;
  }

  .form-lead {
    max-width: 26ch !important;
    font-size: 0.97rem !important;
    line-height: 1.48 !important;
  }

  .form-caption {
    max-width: 24ch !important;
    font-size: 0.95rem !important;
    line-height: 1.44 !important;
  }

  .form-panel {
    padding: 22px 18px !important;
  }

  .site-footer {
    padding: 26px 0 calc(30px + env(safe-area-inset-bottom)) !important;
  }

  .footer-layout {
    max-width: 320px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }

  .footer-brand {
    justify-items: center !important;
    gap: 6px !important;
  }

  .footer-note {
    max-width: 23ch !important;
  }

  .footer-layout > .footer-block:nth-child(2) {
    gap: 2px !important;
    justify-items: center !important;
  }

  .footer-layout > .footer-block:nth-child(3),
  .footer-layout > .footer-block:nth-child(4) {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2px 14px !important;
  }

  .footer-block a {
    min-height: 36px !important;
    padding-block: 6px !important;
    font-size: 12.5px !important;
  }

  .footer-feature {
    max-width: 24ch !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(17, 21, 24, 0.08) !important;
  }

  .footer-feature-title {
    min-height: auto !important;
    padding-block: 0 !important;
    max-width: 13ch !important;
    font-size: clamp(1.08rem, 5vw, 1.24rem) !important;
    line-height: 1.06 !important;
  }

  .footer-feature-copy {
    max-width: 22ch !important;
    font-size: 0.94rem !important;
    line-height: 1.46 !important;
  }
}
