:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --paper-warm: #f4eee7;
  --ink: #211d19;
  --muted: #70675f;
  --line: #e5ded5;
  --accent: #cf261b;
  --accent-dark: #a91d14;
  --leather: #783f27;
  --violet: #7326db;
  --green: #244f39;
  --shadow: 0 18px 46px rgba(39, 29, 20, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.9vw, 6.15rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

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

.narrow {
  max-width: 1030px;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(229, 222, 213, 0.82);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 54px;
  height: 54px;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand small {
  color: var(--accent);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: #3a332d;
  font-size: 0.94rem;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: 700 0.98rem/1 "Segoe UI", Arial, sans-serif;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(207, 38, 27, 0.22);
}

.btn {
  padding: 0 30px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(207, 38, 27, 0.22);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--accent-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, calc(100vh - 104px), 790px);
  padding: clamp(72px, 9vh, 104px) 0 clamp(64px, 8vh, 92px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0.47) 30%, rgba(255, 255, 255, 0.33) 53%, rgba(255, 255, 255, 0.11) 76%, rgba(255, 255, 255, 0.02) 100%),
    url("../img/katya-hero-bg.jpg") calc(100% + 90px) 48% / auto 100% no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0), var(--paper) 92%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  position: relative;
  min-width: 0;
  max-width: 660px;
}

.hero-copy h1 {
  max-width: 8.8ch;
}

.lead {
  color: #38312b;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.52;
}

.hero-product-list {
  margin-top: 28px;
}

.hero-product-list p {
  margin-bottom: 12px;
  color: #2f2823;
  font-weight: 800;
}

.hero-product-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-product-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--violet);
  border-radius: 999px;
  background: transparent;
  color: var(--violet);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(115, 38, 219, 0.12);
}

.hero-product-list li:nth-child(2n) a {
  background: transparent;
  color: var(--violet);
  box-shadow: 0 8px 18px rgba(115, 38, 219, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px;
  color: #3c342d;
  font-size: 0.9rem;
}

.hero-points span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hero-points img {
  width: 18px;
  height: 18px;
}

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

.section-head p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.pain {
  background: var(--paper);
}

.pain.section-pad {
  padding: 76px 0;
}

.pain h2 {
  max-width: 820px;
  margin-bottom: 14px;
}

.pain-subtitle {
  max-width: 760px;
  margin-bottom: 30px;
  color: #3d352e;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.42;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pain-card,
.objection-grid article,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pain-card {
  padding: 24px;
}

.pain-card p {
  margin-bottom: 0;
}

.pain-problem {
  color: var(--accent);
  font-size: 0.96rem;
  line-height: 1.35;
}

.pain-solution {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.section-note,
.soft-note,
.payment-note {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: #fff5ef;
  color: #4b382f;
  text-align: center;
}

.founder-grid,
.split-block,
.story-grid,
.included-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-box {
  margin-top: 30px;
  padding: 30px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(46, 35, 25, 0.08);
}

.quote-box p {
  margin-bottom: 0;
  color: #3c342d;
}

.update {
  background: #27211d;
  color: #fff;
}

.update h2,
.update p {
  color: #fff;
}

.update p {
  opacity: 0.82;
}

.before-after {
  display: grid;
  gap: 14px;
}

.before-after article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.before-after span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f9d8ca;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(42, 32, 22, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 2px 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(120, 74, 45, 0.28);
  border-radius: 999px;
  background: #f9e8dc;
  color: #7a3f25;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 0;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.inside {
  background: var(--paper);
}

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

.inside-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.inside-card img {
  aspect-ratio: 1.44 / 1;
  width: 100%;
  object-fit: cover;
}

.inside-card h3,
.inside-card p {
  padding: 0 22px;
}

.inside-card h3 {
  margin-top: 22px;
}

.inside-card p {
  padding-bottom: 24px;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.objection-grid article {
  padding: 26px;
}

.stories {
  background: linear-gradient(180deg, #fff 0%, #f6f0e9 100%);
}

.check-list,
.feature-list,
.tariff-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list li,
.feature-list li,
.tariff-card li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.feature-list li::before,
.tariff-card li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 17px;
  height: 17px;
  background: url("../img/icons/check.svg") center/contain no-repeat;
  content: "";
}

.story-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.story-photos img {
  width: 100%;
  height: 210px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-photos img:first-child {
  grid-row: span 2;
  height: 432px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.review-card {
  min-height: 230px;
  padding: 28px;
}

.review-card p {
  color: #3c342d;
  font-size: 1.05rem;
}

.review-card strong {
  display: block;
  margin-top: 24px;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(33, 29, 25, 0.12), rgba(33, 29, 25, 0.76)),
    url("../img/source-burberry.jpg") center/cover;
  color: #fff;
}

.video-placeholder span {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.video-placeholder h3 {
  max-width: 560px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}

.included {
  background: #26211e;
  color: #fff;
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(220px, 260px);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 22px;
  padding: 6px 4px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
}

.review-shot {
  overflow: hidden;
  height: 250px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 12px 26px rgba(42, 32, 22, 0.08);
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 180ms ease;
}

.review-shot:hover img {
  transform: scale(1.02);
}

.review-scroll-cue {
  position: relative;
  width: min(230px, 58vw);
  height: 6px;
  margin: 4px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(120, 63, 39, 0.18);
}

.review-scroll-cue span {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--leather));
  animation: review-scroll-cue 2.4s ease-in-out infinite;
}

@keyframes review-scroll-cue {
  0%,
  12% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(138%);
  }

  88%,
  100% {
    transform: translateX(0);
  }
}

.included h2,
.included p {
  color: #fff;
}

.included p {
  opacity: 0.76;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-list li {
  min-height: 54px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list li::before {
  top: 50%;
  transform: translateY(-50%);
}

.tariffs {
  background: linear-gradient(180deg, #fff8f3 0%, #fbfaf7 100%);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(45, 34, 25, 0.08);
}

.tariff-card-featured,
.tariff-card-best {
  border-color: rgba(207, 38, 27, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 240, 230, 0.92) 0%, rgba(255, 248, 243, 0.82) 52%, #ffffff 100%);
  box-shadow: 0 20px 42px rgba(207, 38, 27, 0.13);
}

.tariff-card-featured::before,
.tariff-card-best::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(207, 38, 27, 0.08);
  content: "";
  pointer-events: none;
}

.tariff-card h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.access {
  min-height: 24px;
  margin-bottom: 22px;
  color: #3c342d;
  font-weight: 700;
}

.old-price {
  margin-bottom: 0;
  color: #9d938b;
  font-size: 1.55rem;
  text-decoration: line-through;
}

.new-price {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(2.15rem, 3vw, 3.05rem);
  font-weight: 800;
  line-height: 1;
}

.saving {
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff0e6;
  color: #7a3f28;
  font-size: 0.9rem;
  font-weight: 700;
}

.tariff-card ul {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.tariff-card li {
  color: #463d36;
  font-size: 0.94rem;
}

.tariff-card .btn {
  width: 100%;
  margin-top: auto;
}

.tariff-label {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--leather);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-grid {
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 800;
}

summary::marker {
  color: var(--accent);
}

details p {
  margin: 0;
  padding: 0 26px 24px;
}

.final-cta {
  padding-top: 70px;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.2), rgba(251, 250, 247, 1)),
    url("../img/source-banana.jpg") center/cover;
}

.final-box {
  max-width: 900px;
  padding: 56px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.16rem;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #211d19;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: 0.92rem;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 22, 18, 0.54);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

#order-modal .modal-panel {
  scrollbar-gutter: stable;
}

.review-modal {
  z-index: 70;
}

.review-modal-panel {
  width: min(760px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 22px;
  overflow: auto;
}

.review-modal-panel h2 {
  margin-bottom: 16px;
  padding-right: 44px;
  font-size: 1.6rem;
}

.review-modal-panel img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2eee9;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-panel h2 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.modal-price {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.gc-widget-shell {
  min-height: 120px;
  margin: 18px 0 12px;
  padding: 14px;
  border: 1px solid #eadfd5;
  border-radius: var(--radius);
  background: #fffaf6;
  color: #52483f;
  text-align: center;
}

.gc-widget-panel {
  display: none;
}

.gc-widget-panel.is-active {
  display: block;
}

.gc-widget-shell span,
.modal-small {
  color: var(--muted);
  font-size: 0.92rem;
}

.modal-small {
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .founder-grid,
  .split-block,
  .story-grid,
  .included-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0.47) 38%, rgba(255, 255, 255, 0.29) 66%, rgba(255, 255, 255, 0.09) 100%),
      url("../img/katya-hero-bg.jpg") 34% 48% / cover no-repeat;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .product-grid,
  .tariff-grid,
  .pain-grid,
  .objection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inside-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100vw - 32px));
  }

  .section-pad {
    padding: 62px 0;
  }

  .pain.section-pad {
    padding: 50px 0;
  }

  .site-header {
    gap: 10px;
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 60px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.32) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11)),
      url("../img/katya-hero-bg.jpg") 34% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .pain h2 {
    margin-bottom: 12px;
  }

  .pain-subtitle {
    margin-bottom: 24px;
    font-size: 1.05rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pain-card {
    padding: 18px 16px;
  }

  .pain-problem,
  .pain-solution {
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .pain-solution {
    margin-top: 12px;
  }

  .hero-points,
  .feature-list,
  .product-grid,
  .tariff-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 0.78rem;
  }

  .hero-points span {
    display: flex;
    gap: 6px;
    align-items: flex-start;
  }

  .hero-points img {
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .hero-product-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 100%;
  }

  .hero-product-list li {
    min-width: 0;
  }

  .hero-product-list li a {
    min-height: auto;
    padding: 10px 12px;
    line-height: 1.2;
  }

  .hero-product-list li:nth-child(3n + 1) a {
    padding-inline: 18px;
  }

  .hero-product-list li:nth-child(4n + 2) a {
    padding-inline: 14px;
  }

  .review-rail {
    grid-auto-columns: minmax(190px, 72vw);
  }

  .review-scroll-cue {
    width: min(210px, 64vw);
    height: 7px;
    margin-top: 2px;
  }

  .hero-actions {
    display: grid;
    margin: 28px 0 20px;
  }

  .btn {
    width: 100%;
  }

  .founder-photo img {
    aspect-ratio: 1 / 1;
  }

  .story-photos {
    grid-template-columns: 1fr;
  }

  .story-photos img,
  .story-photos img:first-child {
    grid-row: auto;
    height: 230px;
  }

  .tariff-card {
    min-height: auto;
  }

  .final-box {
    padding: 34px 22px;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 30px 20px 24px;
  }

  #order-modal {
    align-items: flex-start;
    padding: 12px;
  }

  #order-modal .modal-panel {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px 14px 16px;
  }

  #order-modal .modal-close {
    position: sticky;
    top: 0;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: -6px 0 4px 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(33, 29, 25, 0.14);
  }

  #order-modal .modal-panel h2 {
    margin-bottom: 8px;
    padding-right: 44px;
    font-size: 2rem;
  }

  #order-modal .modal-kicker {
    margin-bottom: 6px;
    padding-right: 44px;
  }

  #order-modal .modal-price {
    margin-bottom: 0;
    font-size: 1.08rem;
  }

  #order-modal .gc-widget-shell {
    min-height: 80px;
    margin: 12px 0 10px;
    padding: 8px;
  }

  #order-modal .modal-small {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .review-modal-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 14px;
  }
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
