:root {
  --orange: #ff5c00;
  --orange-dark: #df4100;
  --orange-soft: #fff0e8;
  --ink: #111111;
  --muted: #62666f;
  --line: #ece6df;
  --paper: #ffffff;
  --mint: #dff8ee;
  --sky: #dff2ff;
  --yellow: #ffe07a;
  --pink: #ffe5ef;
  --green: #51b77a;
  --blue: #2787d6;
  --shadow: 0 22px 70px rgba(35, 25, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 224, 122, 0.24), transparent 28rem),
    radial-gradient(circle at 92% 28%, rgba(223, 248, 238, 0.7), transparent 24rem),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 58%, #fff8f4 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 84px;
  height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phones {
  display: grid;
  gap: 2px;
  justify-items: end;
  padding: 6px 12px;
  border: 1px solid rgba(255, 92, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.header-phones span {
  display: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 21px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--orange-dark);
  background: transparent;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.phone:hover,
.phone:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 92, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--orange-dark);
  background: #fff;
  border-color: rgba(255, 92, 0, 0.35);
}

.button-online {
  white-space: nowrap;
}

.button-dark {
  width: 100%;
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: 44px 0 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

h1::after {
  display: inline-block;
  width: 0.74em;
  height: 0.18em;
  margin-left: 0.1em;
  background: var(--orange);
  border-radius: 999px;
  content: "";
  transform: rotate(-4deg);
}

.mobile-break {
  display: none;
}

.section-heading h2::after,
.about h2::after,
.price-copy h2::after,
.trial h2::after {
  display: block;
  width: 58px;
  height: 7px;
  margin-top: 16px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
  transform: rotate(-2deg);
}

.section-heading h2::after {
  margin-right: auto;
  margin-left: auto;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: #30343a;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 570px;
}

.hero-points span,
.stats span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-points strong,
.stats strong {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-visual {
  position: relative;
}

.hero-copy {
  min-width: 0;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--orange-soft);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hero-photo img {
  object-position: 53% 52%;
}

.hero-photo {
  z-index: 1;
  aspect-ratio: 1.18 / 1;
  border-radius: 36% 8px 34% 8px;
  animation: hero-breathe 7s ease-in-out infinite;
}

.hero-media:hover .hero-photo img {
  transform: scale(1.035);
}

.hero-photo::before,
.hero-photo::after {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  background: var(--orange);
  border-radius: 52% 48% 58% 42%;
  content: "";
}

.hero-photo::before {
  bottom: -46px;
  left: -52px;
}

.hero-photo::after {
  right: -42px;
  bottom: -28px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 92, 0, 0.24);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(35, 25, 15, 0.14);
  font-weight: 900;
  animation: float 5s ease-in-out infinite;
}

.note-left {
  top: 9%;
  left: -28px;
}

.note-right {
  right: -22px;
  bottom: 6%;
  animation-delay: -1.3s;
}

.word-chip {
  position: absolute;
  z-index: 4;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 14px;
  border: 2px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  color: #20242a;
  background: #fff;
  box-shadow: 0 14px 38px rgba(35, 25, 15, 0.11);
  font-size: 14px;
  font-weight: 900;
  animation: float 6s ease-in-out infinite;
}

.chip-hello {
  top: 18px;
  right: 28px;
  background: var(--yellow);
  transform: rotate(4deg);
}

.chip-brave {
  top: 42%;
  left: -22px;
  background: var(--mint);
  animation-delay: -1.8s;
}

.chip-fun {
  bottom: 28px;
  left: 28px;
  background: var(--pink);
  animation-delay: -3.1s;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 92, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 240, 232, 0.72);
}

.feature-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 12px;
  border-radius: 8px;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-band article:nth-child(1) {
  background: rgba(255, 224, 122, 0.22);
}

.feature-band article:nth-child(2) {
  background: rgba(223, 248, 238, 0.42);
}

.feature-band article:nth-child(3) {
  background: rgba(223, 242, 255, 0.5);
}

.feature-band article:hover {
  box-shadow: 0 18px 45px rgba(38, 28, 18, 0.09);
  transform: translateY(-4px);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
}

.feature-band article:nth-child(2) .icon-wrap {
  background: var(--green);
}

.feature-band article:nth-child(3) .icon-wrap {
  background: var(--blue);
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-band h2 {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 20px;
}

.feature-band p {
  margin-bottom: 0;
  color: #3e4248;
  line-height: 1.55;
}

.programs,
.about,
.format,
.pricing,
.reviews,
.trial {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.about h2,
.price-copy h2,
.trial h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.program-card,
.price-card,
.review-card,
.step {
  border: 1px solid rgba(30, 30, 30, 0.07);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(38, 28, 18, 0.08);
}

.program-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover,
.program-card:focus-visible,
.program-card.is-open {
  border-color: rgba(255, 92, 0, 0.2);
  box-shadow: 0 26px 70px rgba(38, 28, 18, 0.14);
  transform: translateY(-6px);
}

.program-card:hover img,
.program-card:focus-visible img,
.program-card.is-open img {
  transform: scale(1.045);
}

.program-card.is-open {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.program-card:focus-visible {
  outline: 3px solid rgba(255, 92, 0, 0.32);
  outline-offset: 4px;
}

.program-card img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  flex: 0 0 auto;
  transition: transform 0.55s ease;
}

.program-card:nth-child(1) img {
  object-position: 50% 50%;
}

.program-card:nth-child(2) img,
.program-card:nth-child(4) img {
  object-position: 50% 42%;
}

.program-card:nth-child(3) img {
  object-position: 45% 48%;
}

.program-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 0;
}

.program-card h3,
.step h3,
.price-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.program-card p,
.step p,
.price-card p,
.review-card p,
.about p,
.price-copy p,
.trial p {
  color: #3f444b;
  line-height: 1.65;
}

.program-card > div > p {
  min-height: 5.05em;
}

.program-details {
  display: block;
  max-height: 0;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 240, 232, 0);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  transition:
    background 0.25s ease,
    border-color 0.2s ease,
    max-height 0.3s ease,
    margin-top 0.25s ease,
    opacity 0.25s ease,
    padding 0.25s ease,
    transform 0.25s ease;
}

.program-card.is-open .program-details {
  max-height: 220px;
  margin-top: 16px;
  padding: 13px 14px 15px;
  border-color: rgba(255, 92, 0, 0.15);
  background: rgba(255, 240, 232, 0.62);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.program-details p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.55;
}

.program-details a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--orange-dark);
  font-weight: 900;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px -20px 0;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(30, 30, 30, 0.055);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 240, 232, 0.56));
}

.program-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 92, 0, 0.18);
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.program-card:hover .program-toggle,
.program-card:focus-visible .program-toggle,
.program-toggle:hover {
  border-color: rgba(255, 92, 0, 0.32);
  background: #fff;
}

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

.program-details a::after,
.program-toggle::after {
  margin-left: 8px;
  content: "->";
  transition: transform 0.2s ease;
}

.program-details a:hover::after,
.program-toggle:hover::after {
  transform: translateX(4px);
}

.program-card.is-open .program-toggle::after {
  content: "↑";
  transform: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1.16fr);
  gap: 56px;
  align-items: center;
}

.about-copy p {
  max-width: 560px;
}

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

.about-note {
  max-width: 560px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(81, 183, 122, 0.22);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  color: #30343a;
  background: rgba(223, 248, 238, 0.48);
  line-height: 1.55;
}

.about-note strong {
  color: #23804e;
}

.about-gallery {
  position: relative;
  display: grid;
  align-items: center;
}

.about-gallery img {
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease;
}

.about-gallery:hover img {
  transform: translateY(-4px);
}

.gallery-main {
  width: 100%;
  height: 430px;
  border-radius: 42% 8px 42% 8px;
}

.about-chip {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 14px;
  border: 2px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  color: #20242a;
  background: #fff;
  box-shadow: 0 14px 38px rgba(35, 25, 15, 0.12);
  font-size: 14px;
  font-weight: 900;
  animation: float 6.5s ease-in-out infinite;
}

.about-chip-talk {
  top: 42px;
  left: 44px;
  background: var(--yellow);
}

.about-chip-story {
  bottom: 16px;
  left: 138px;
  background: var(--mint);
  animation-delay: -2.1s;
}

.about-chip-smile {
  top: 58px;
  right: 42px;
  background: var(--pink);
  animation-delay: -3.4s;
}

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

.step {
  padding: 28px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.step:hover {
  border-color: rgba(255, 92, 0, 0.2);
  box-shadow: 0 26px 70px rgba(38, 28, 18, 0.13);
  transform: translateY(-5px);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--yellow);
  font-weight: 900;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.step:hover span {
  background: var(--orange);
  color: #fff;
  transform: rotate(-4deg) scale(1.06);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: stretch;
}

.price-copy {
  align-self: center;
}

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

.price-card {
  padding: 28px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.price-card:hover {
  border-color: rgba(255, 92, 0, 0.22);
  box-shadow: 0 24px 66px rgba(38, 28, 18, 0.13);
  transform: translateY(-5px);
}

.price-card.accent {
  color: #fff;
  background: var(--orange);
  transform: translateY(-14px);
}

.price-card.accent:hover {
  transform: translateY(-18px);
}

.price-card.accent p {
  color: rgba(255, 255, 255, 0.88);
}

.price {
  margin-bottom: 13px;
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.reviews {
  padding-bottom: 94px;
}

.review-source {
  display: inline-flex;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.review-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
}

.review-open {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.review-marquee {
  overflow: hidden;
  padding: 8px 0 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: review-marquee 72s linear infinite;
}

.review-marquee:hover .review-track,
.review-marquee:focus-within .review-track {
  animation-play-state: paused;
}

.review-card {
  width: 380px;
  min-height: 300px;
  margin: 0;
  padding: 28px;
  cursor: pointer;
}

.review-card::before {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 54px;
  font-weight: 900;
  line-height: 0.7;
  content: "“";
}

.review-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.review-full {
  display: none;
}

.review-card.is-expanded .review-full {
  display: block;
}

.review-toggle {
  display: inline-flex;
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.review-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.review-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.22);
  transform: translateY(14px);
  transition: transform 0.2s ease;
}

.review-modal.is-open .review-modal-panel {
  transform: translateY(0);
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.review-modal-panel h2 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.08;
}

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

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.review-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trial {
  padding-top: 0;
}

.trial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.62fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.18), transparent 44%),
    var(--orange);
  box-shadow: 0 26px 70px rgba(255, 92, 0, 0.22);
}

.trial-panel .eyebrow,
.trial-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.trial-panel h2 {
  max-width: 780px;
  color: #fff;
}

.trial-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
}

.trial-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.trial-form input,
.trial-form select,
.review-form input,
.review-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.review-form textarea {
  min-height: 124px;
  padding-top: 12px;
  resize: vertical;
}

.trial-form input:focus,
.trial-form select:focus,
.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.12);
}

.rating-stars {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-stars legend {
  width: 100%;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.rating-stars label {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.rating-stars input {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.rating-stars span {
  color: #d3d4d8;
  font-size: 30px;
  line-height: 1;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.rating-stars:has(input[value="1"]:checked) label:nth-of-type(-n + 1) span,
.rating-stars:has(input[value="2"]:checked) label:nth-of-type(-n + 2) span,
.rating-stars:has(input[value="3"]:checked) label:nth-of-type(-n + 3) span,
.rating-stars:has(input[value="4"]:checked) label:nth-of-type(-n + 4) span,
.rating-stars:has(input[value="5"]:checked) label:nth-of-type(-n + 5) span {
  color: var(--orange);
}

.rating-stars:has(label:nth-of-type(1):hover) label:nth-of-type(-n + 1) span,
.rating-stars:has(label:nth-of-type(2):hover) label:nth-of-type(-n + 2) span,
.rating-stars:has(label:nth-of-type(3):hover) label:nth-of-type(-n + 3) span,
.rating-stars:has(label:nth-of-type(4):hover) label:nth-of-type(-n + 4) span,
.rating-stars:has(label:nth-of-type(5):hover) label:nth-of-type(-n + 5) span {
  color: var(--orange);
  transform: translateY(-1px);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.trial-form .form-note {
  color: var(--orange-dark) !important;
}

.site-footer {
  margin-top: 80px;
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 28px;
  align-items: start;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-brand img {
  width: 96px;
  height: 78px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 7px;
  color: #4b5056;
  font-size: 14px;
}

.copyright {
  align-self: end;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

@keyframes hero-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(0.4deg);
  }
}

@keyframes review-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (min-width: 1041px) and (max-width: 1200px) {
  .site-header {
    gap: 16px;
  }

  .brand img {
    width: 74px;
    height: 56px;
    min-width: 74px;
  }

  .main-nav {
    gap: 15px;
    font-size: 13px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-phones {
    padding: 5px 8px;
  }

  .phone {
    font-size: 11px;
  }

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    right: 20px;
    left: 20px;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .main-nav {
    top: 86px;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px 8px 0 0;
    background: #fff;
    box-shadow: 0 24px 70px rgba(25, 20, 14, 0.16);
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    top: 400px;
    gap: 12px;
    padding: 0 18px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }

  .header-phones {
    justify-items: stretch;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .header-phones span {
    display: block;
    text-align: center;
  }

  .phone {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 92, 0, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .about,
  .pricing,
  .trial-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-media {
    order: -1;
  }

  .feature-band,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.accent {
    transform: none;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand img {
    width: 74px;
    height: 56px;
  }

  .main-nav {
    top: 76px;
  }

  .header-actions {
    top: 390px;
  }

  .hero {
    gap: 30px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 40px);
    line-height: 1.03;
  }

  h1::after {
    width: 0.58em;
    height: 0.16em;
  }

  .mobile-break {
    display: block;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
  }

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

  .hero-points,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    aspect-ratio: 0.95 / 1;
    border-radius: 30% 8px 30% 8px;
  }

  .hero-photo img {
    object-position: 51% 50%;
  }

  .hero-media {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    overflow: visible;
    padding-bottom: 34px;
  }

  .hero-visual {
    width: calc(100vw - 28px);
  }

  .hero-visual::after {
    position: absolute;
    right: -10px;
    bottom: -8px;
    z-index: 10;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid rgba(255, 92, 0, 0.24);
    border-radius: 999px;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(35, 25, 15, 0.14);
    content: "Say";
    font-size: 13px;
    font-weight: 900;
  }

  .floating-note {
    display: grid;
    width: 54px;
    height: 54px;
    font-size: 13px;
  }

  .note-left {
    top: 18px;
    left: 18px;
  }

  .note-right {
    display: none;
  }

  .word-chip {
    display: inline-grid;
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .chip-hello {
    display: none;
  }

  .chip-brave {
    display: none;
  }

  .chip-fun {
    bottom: 24px;
    left: 34px;
  }

  .feature-band {
    padding: 12px;
  }

  .feature-band article {
    grid-template-columns: 1fr;
  }

  .programs,
  .about,
  .format,
  .pricing,
  .reviews {
    padding-top: 68px;
  }

  .section-heading {
    text-align: left;
  }

  .review-marquee {
    overflow: visible;
    padding-bottom: 0;
    mask-image: none;
  }

  .review-track {
    display: grid;
    width: 100%;
    gap: 14px;
    animation: none;
  }

  .review-card[aria-hidden="true"] {
    display: none;
  }

  .review-card {
    width: 100%;
    min-height: 0;
    padding: 24px;
  }

  .review-card::before {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card:hover,
  .program-card:focus-visible,
  .program-card.is-open {
    transform: none;
  }

  .program-card > div {
    padding: 20px 18px 0;
  }

  .program-card > div > p {
    min-height: 0;
  }

  .program-card img {
    aspect-ratio: 4 / 3;
  }

  .program-card.is-open .program-details {
    max-height: 240px;
    margin-top: 10px;
  }

  .program-details p {
    margin-top: 0;
  }

  .program-footer {
    margin-right: -18px;
    margin-left: -18px;
    padding: 12px 18px 16px;
  }

  .about-gallery {
    min-height: auto;
  }

  .about-gallery img {
    position: static;
  }

  .gallery-main {
    width: 100%;
    height: auto;
    aspect-ratio: 1.15 / 1;
    border-radius: 30% 8px 30% 8px;
  }

  .about-chip {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .about-chip-talk {
    top: 18px;
    left: 16px;
  }

  .about-chip-story {
    bottom: 18px;
    left: 18px;
  }

  .about-chip-smile {
    top: 18px;
    right: 14px;
  }

  .trial-panel {
    gap: 24px;
    padding: 28px 18px;
  }

  .trial-form {
    padding: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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