:root {
  --bg: #fdfbff;
  --paper: #ffffff;
  --paper-warm: #f7efff;
  --ink: #241433;
  --muted: #6d5f78;
  --line: #eadcf5;
  --accent: #8a2be2;
  --accent-dark: #6718b8;
  --leather: #e83e8c;
  --violet: #8a2be2;
  --green: #315f54;
  --shadow: 0 18px 46px rgba(77, 42, 110, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  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;
}

main {
  padding-top: var(--header-height);
}

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: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 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(234, 220, 245, 0.86);
  background: rgba(253, 251, 255, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand > img {
  width: auto;
  height: 52px;
  max-width: min(290px, 28vw);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: #3d2c4e;
  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(138, 43, 226, 0.22);
}

.header-cta,
.btn[href="#tariffs"],
.buy-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.header-cta::before,
.btn[href="#tariffs"]::before,
.buy-button::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  z-index: 1;
  width: 38%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.12) 70%, transparent 100%);
  content: "";
  transform: translateX(-180%) skewX(-18deg);
  animation: button-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.btn {
  padding: 0 30px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(138, 43, 226, 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);
}

@keyframes button-shine {
  0%,
  42% {
    transform: translateX(-180%) skewX(-18deg);
  }

  68%,
  100% {
    transform: translateX(430%) skewX(-18deg);
  }
}

.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: #352047;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.52;
}

.lead-marker {
  display: inline-block;
  margin: 0 2px;
  padding: 0.08em 0.34em 0.12em;
  border-radius: 6px;
  background: rgba(138, 43, 226, 0.82);
  color: #fff;
  font-weight: 500;
  line-height: 1.16;
}

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

.hero-product-list p {
  margin-bottom: 12px;
  color: #321d44;
  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(138, 43, 226, 0.12);
}

.hero-product-list li:nth-child(2n) a {
  background: transparent;
  color: var(--violet);
  box-shadow: 0 8px 18px rgba(232, 62, 140, 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: #3b2750;
  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: #3b2750;
  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: #f7efff;
  color: #402459;
  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(77, 42, 110, 0.08);
}

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

.update {
  background: #2a173b;
  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: #ffd3ec;
  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(77, 42, 110, 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(138, 43, 226, 0.24);
  border-radius: 999px;
  background: #f7efff;
  color: #6f25b8;
  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;
}

.club-stats {
  background: linear-gradient(180deg, #ffffff 0%, #f8f2ff 100%);
}

.club-stats.section-pad {
  padding: 58px 0;
}

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

.stats-grid article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(77, 42, 110, 0.08);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.stats-grid span {
  display: block;
  color: #3b2750;
  font-weight: 700;
  line-height: 1.35;
}

.lessons-grid .product-card {
  display: flex;
  flex-direction: column;
}

.lesson-card .lesson-visual {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  min-height: 180px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: var(--paper-warm);
}

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

.pattern-grid .product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pattern-grid .product-card div {
  min-height: 86px;
}

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

.work-shot {
  overflow: hidden;
  width: 100%;
  height: 260px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-warm);
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.work-shot:hover img {
  transform: scale(1.025);
}

.mobile-carousel {
  position: relative;
  width: 100%;
  overflow: visible;
}

.review-carousel {
  position: relative;
  width: 100%;
  margin-top: 22px;
  padding: 8px 0 34px;
  overflow: visible;
}

.carousel-controls {
  display: none;
}

.is-swiper-ready > .carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  cursor: pointer;
  font-size: 2rem;
  line-height: 0.8;
  box-shadow: 0 12px 28px rgba(77, 42, 110, 0.12);
  transform: translateY(-50%);
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
  pointer-events: auto;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: clamp(8px, 3vw, 28px);
}

.carousel-next {
  right: clamp(8px, 3vw, 28px);
}

@media (min-width: 721px) {
  .mobile-carousel .swiper-wrapper.product-grid,
  .mobile-carousel .swiper-wrapper.works-grid {
    display: grid;
    transform: none !important;
  }

  .mobile-carousel .swiper-slide {
    width: auto !important;
  }
}

.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%, #f8f2ff 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: #3b2750;
  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(42, 23, 59, 0.08), rgba(42, 23, 59, 0.78)),
    url("../img/kor/work-02.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: #2a173b;
  color: #fff;
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(320px, 430px);
  grid-auto-flow: column;
  gap: 18px;
  padding: 8px 0 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
}

.review-shot {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: auto;
  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(77, 42, 110, 0.08);
}

.review-carousel.is-swiper-ready .review-rail {
  display: flex;
  gap: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.review-carousel.is-swiper-ready .review-shot {
  width: min(68vw, 430px) !important;
  flex: 0 0 auto;
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.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, #fff 0%, #f8f2ff 100%);
}

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

.tariff-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.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(77, 42, 110, 0.08);
}

.tariff-card-featured,
.tariff-card-best {
  border-color: rgba(138, 43, 226, 0.42);
  background:
    linear-gradient(180deg, rgba(247, 239, 255, 0.96) 0%, rgba(255, 246, 252, 0.82) 52%, #ffffff 100%);
  box-shadow: 0 20px 42px rgba(138, 43, 226, 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(138, 43, 226, 0.08);
  content: "";
  pointer-events: none;
}

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

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

.item-count {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  font-weight: 700;
  line-height: 1;
}

.old-price {
  margin-bottom: 0;
  color: #a897b8;
  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: #f7efff;
  color: #6f25b8;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.tariff-card li {
  color: #4b385e;
  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;
}

.bonus-banner {
  max-width: 960px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(138, 43, 226, 0.98) 0%, rgba(232, 62, 140, 0.92) 100%);
  color: #fff;
  box-shadow: 0 24px 58px rgba(138, 43, 226, 0.24);
}

.bonus-banner span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-banner h3 {
  max-width: 740px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.bonus-banner p {
  max-width: 780px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.bonus-banner p:last-child {
  margin-bottom: 0;
}

.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(253, 251, 255, 0.18), rgba(253, 251, 255, 1)),
    url("../img/kor/work-03.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: #241433;
  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(36, 20, 51, 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 {
  overflow-x: hidden;
  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: #f7efff;
  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 #eadcf5;
  border-radius: var(--radius);
  background: #fdfbff;
  color: #4b385e;
  overflow-x: auto;
  text-align: center;
}

.gc-widget-shell iframe,
.gc-widget-shell table,
.gc-widget-shell form {
  max-width: 100%;
}

.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: center;
  }

  .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,
  .stats-grid,
  .works-grid,
  .pain-grid,
  .objection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: calc(100vw - 32px);
    max-width: var(--container);
  }

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

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

  .site-header {
    gap: 10px;
    min-height: 72px;
    padding: 10px 16px;
    background: rgba(253, 251, 255, 0.86);
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand > img {
    width: auto;
    height: 42px;
    max-width: 52vw;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .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;
  }

  .hero-copy,
  .hero-copy .lead,
  .hero-product-list,
  .hero-product-list ul,
  .hero-actions,
  .hero-points {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  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,
  .stats-grid,
  .works-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 0.84rem;
  }

  .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;
    max-width: calc(100vw - 48px);
    padding: 10px 12px;
    line-height: 1.2;
    white-space: normal;
  }

  .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(82vw, 88vw);
  }

  .review-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 8px 0 34px;
    overflow: hidden;
  }

  .review-shot {
    height: auto;
  }

  .review-carousel.is-swiper-ready .review-shot {
    width: min(82vw, 360px) !important;
  }

  .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;
  }

  .work-shot,
  .work-shot:nth-child(2),
  .work-shot:nth-child(5),
  .work-shot:nth-child(11),
  .work-shot:nth-child(18),
  .work-shot:nth-child(23) {
    height: 240px;
  }

  .mobile-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 8px 0 30px;
    overflow: hidden;
  }

  .mobile-carousel.is-swiper-ready .swiper-wrapper.product-grid,
  .mobile-carousel.is-swiper-ready .swiper-wrapper.works-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    grid-template-columns: none;
    box-sizing: border-box;
  }

  .mobile-carousel.is-swiper-ready .swiper-slide,
  .mobile-carousel.is-swiper-ready .swiper-slide.work-shot {
    width: min(78vw, 340px) !important;
    flex: 0 0 auto;
  }

  .mobile-carousel.is-swiper-ready .product-card {
    height: auto;
    min-height: 100%;
  }

  .mobile-carousel.is-swiper-ready .lesson-visual {
    min-height: 190px;
  }

  .mobile-carousel.is-swiper-ready .work-shot,
  .mobile-carousel.is-swiper-ready .work-shot:nth-child(2),
  .mobile-carousel.is-swiper-ready .work-shot:nth-child(5),
  .mobile-carousel.is-swiper-ready .work-shot:nth-child(11),
  .mobile-carousel.is-swiper-ready .work-shot:nth-child(18),
  .mobile-carousel.is-swiper-ready .work-shot:nth-child(23) {
    height: min(72vw, 360px);
    min-height: 270px;
  }

  .carousel-nav {
    width: 42px;
    height: 42px;
    font-size: 2rem;
    line-height: 0.8;
  }

  .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 {
    width: calc(100vw - 24px);
    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(36, 20, 51, 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 {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .header-cta::before,
  .btn[href="#tariffs"]::before,
  .buy-button::before {
    animation: none !important;
  }
}
