:root {
  --bg: #fffaf2;
  --bg-soft: #fff3df;
  --bg-card: #ffffff;
  --accent: #ff4444;
  --accent-soft: rgba(255, 68, 68, 0.12);
  --accent-strong: #e63946;
  --text-main: #2b2620;
  --text-soft: #6b6258;
  --border-soft: rgba(0, 0, 0, 0.06);
  --success: #2bbf7f;
  --danger: #ff5c5c;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #F6EDED 0%, #ffffff 100%);
  color: var(--text-main);
}

body {
  line-height: 1.5;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #F6EDED;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.site-logo-img {
  width: 32px;
  height: 32px;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-logo-subtitle {
  font-size: 11px;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.site-nav-toggle-icon {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--text-main);
}

.site-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.site-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 40;
}

.site-nav-overlay-inner {
  background: #fff6e7;
  width: 100%;
  height: 100%;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-nav-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.site-nav-mobile {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-nav-mobile-link {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-size: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.site-nav-mobile-link:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.site-nav-mobile-link-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 68, 68, 0.45);
}

.site-nav-mobile-link-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav-btn {
  display: block;
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  outline: 0;
  user-select: none;
  text-decoration: none;
}

.site-nav-btn:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.site-nav-btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 152, 75, 0.35);
}

.site-nav-btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 152, 75, 0.45);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
}

.section-price {
  position: relative;
  background: linear-gradient(to bottom, #fffaf7 0%, transparent 100%);
  overflow: hidden;
}

.section-price .container {
  position: relative;
  z-index: 1;
}

.price-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.price-decor-heart,
.price-decor-note {
  position: absolute;
  opacity: 0.15;
  animation: float-decor 20s ease-in-out infinite;
  --decor-parallax: 0px;
}

.price-decor-heart {
  color: var(--accent);
  font-size: clamp(20px, 3vw, 40px);
}

.price-decor-note {
  color: #333;
  font-size: clamp(16px, 2.5vw, 32px);
}

.price-decor-heart:nth-child(1) {
  top: calc(10% + var(--decor-parallax));
  left: 5%;
  animation-delay: 0s;
}

.price-decor-heart:nth-child(2) {
  top: calc(20% + var(--decor-parallax));
  right: 8%;
  animation-delay: 2s;
}

.price-decor-heart:nth-child(3) {
  top: calc(50% + var(--decor-parallax));
  left: 3%;
  animation-delay: 4s;
}

.price-decor-heart:nth-child(4) {
  top: calc(60% + var(--decor-parallax));
  right: 12%;
  animation-delay: 6s;
}

.price-decor-heart:nth-child(5) {
  top: calc(80% + var(--decor-parallax));
  left: 10%;
  animation-delay: 8s;
}

.price-decor-heart:nth-child(6) {
  top: calc(30% + var(--decor-parallax));
  left: 50%;
  animation-delay: 1s;
}

.price-decor-heart:nth-child(7) {
  top: calc(70% + var(--decor-parallax));
  right: 25%;
  animation-delay: 3s;
}

.price-decor-heart:nth-child(8) {
  top: calc(15% + var(--decor-parallax));
  left: 30%;
  animation-delay: 5s;
}

.price-decor-note:nth-child(9) {
  top: calc(25% + var(--decor-parallax));
  left: 15%;
  animation-delay: 1.5s;
}

.price-decor-note:nth-child(10) {
  top: calc(45% + var(--decor-parallax));
  right: 5%;
  animation-delay: 3.5s;
}

.price-decor-note:nth-child(11) {
  top: calc(65% + var(--decor-parallax));
  left: 8%;
  animation-delay: 5.5s;
}

.price-decor-note:nth-child(12) {
  top: calc(85% + var(--decor-parallax));
  right: 15%;
  animation-delay: 7.5s;
}

.price-decor-note:nth-child(13) {
  top: calc(40% + var(--decor-parallax));
  left: 45%;
  animation-delay: 2.5s;
}

.price-decor-note:nth-child(14) {
  top: calc(75% + var(--decor-parallax));
  right: 35%;
  animation-delay: 4.5s;
}

@keyframes float-decor {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.section-header {
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.section-header:has(.section-subtitle-columns) {
  max-width: 900px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
  cursor: default;
}

.section-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.section-title {
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  padding: 0 80px;
  cursor: default;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-soft);
}

.section-subtitle-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
  text-align: left;
}

.section-subtitle-columns .section-subtitle {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  outline: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 68, 68, 0.35);
  user-select: none;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 68, 68, 0.45);
  background: var(--accent-strong);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  user-select: none;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.chip-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.note-float {
  position: absolute;
  font-size: 18px;
  opacity: 0.65;
  animation: float-up 8s linear infinite;
  pointer-events: none;
}

.note-float:nth-child(1) {
  left: 8%;
  top: 30%;
  animation-delay: 0s;
}
.note-float:nth-child(2) {
  left: 74%;
  top: 22%;
  animation-delay: 2s;
}
.note-float:nth-child(3) {
  left: 16%;
  top: 72%;
  animation-delay: 4s;
}

@keyframes float-up {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.65;
  }
  60% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(-26px);
    opacity: 0;
  }
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  font-size: 11px;
  color: var(--text-soft);
}

.hero {
  padding: 0;
  position: relative;
}

.hero-inner-wrapper {
  width: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 32px;
}

.hero-inner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/back-header.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: 0;
}

.hero-inner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  z-index: 2;
}

.hero-strip-section {
  padding: 32px 0;
  position: relative;
  overflow-x: hidden;
}

.hero-strip-section .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 16px;
  backdrop-filter: blur(14px);
}

.hero-label-badge {
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  font-weight: 600;
  color: var(--accent-strong);
}

.hero-title {
  font-size: clamp(64px, 8vw, 84px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  cursor: default;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 22px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  justify-content: flex-start;
}

.hero-note {
  font-size: 13px;
  color: var(--text-soft);
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 16px;
}

.hero-micro {
  justify-content: flex-start;
}

.hero-micro-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-strip {
  border-radius: 18px;
}

.hero-strip-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 28px;
  display: none;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.hero-strip-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  pointer-events: auto;
}

.hero-strip-arrow:active {
  opacity: 0.85;
}

.section-alt-top {
  padding-top: 32px;
  padding-bottom: 0;
}

.hero-strip-track {
  display: flex;
  gap: 14px;
  padding-bottom: 10px;
  animation: hero-marquee 40s linear infinite;
}

.hero-strip-group {
  display: flex;
  gap: 14px;
}

.hero-strip-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hero-strip-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-strip-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.hero-strip-tag {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  cursor: default;
}

.hero-strip-highlight {
  color: var(--accent-strong);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-strip-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}

.hero-strip-cta {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  margin-top: 8px;
  user-select: none;
}

.hero-strip-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.hero-strip-placeholder {
  margin-top: 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.hero-strip-cta:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

@keyframes hero-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 12px 12px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.why-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.why-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-text {
  font-size: 13px;
  color: var(--text-soft);
}

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

.product-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 22px 20px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.product-label-pill {
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  font-size: 11px;
  color: var(--text-soft);
}

.product-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.product-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.product-bullet {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  flex-shrink: 0;
}

.section-title-decor {
  color: var(--accent);
  font-size: 1.8em;
  margin: 0;
  display: block;
  position: absolute;
  pointer-events: none;
  transform-origin: center;
  --decor-parallax: 0px;
  --decor-tilt: 0deg;
  --decor-offset-x: 0px;
  transform: translate(var(--decor-offset-x), var(--decor-parallax))
    rotate(var(--decor-tilt));
}

.section-title-decor--left-main {
  --decor-tilt: -18deg;
  --decor-offset-x: -36px;
  left: 4px;
  top: -12px;
}

.section-title-decor--left-mini {
  --decor-tilt: -10deg;
  font-size: 1.1em;
  --decor-offset-x: -24px;
  left: 24px;
  top: 16px;
  opacity: 0.85;
}

.section-title-decor--note-right {
  --decor-tilt: 10deg;
  font-size: 1.6em;
  --decor-offset-x: 36px;
  right: 4px;
  top: -14px;
}

.section-title-decor--note-left {
  --decor-tilt: -8deg;
  font-size: 1.4em;
  --decor-offset-x: -36px;
  left: 4px;
  top: -14px;
}

.section-title-decor--right-main {
  --decor-tilt: 18deg;
  --decor-offset-x: 36px;
  right: 4px;
  top: -12px;
}

.section-title-decor--right-mini {
  --decor-tilt: 8deg;
  font-size: 1.1em;
  --decor-offset-x: 22px;
  right: 22px;
  top: 16px;
  opacity: 0.8;
}

.section-title-decor--heart {
  animation: sectionHeartPulse 3s ease-in-out infinite;
}

@keyframes sectionHeartPulse {
  0%,
  100% {
    transform: translate(var(--decor-offset-x), var(--decor-parallax)) rotate(var(--decor-tilt)) scale(1);
  }
  40% {
    transform: translate(var(--decor-offset-x), var(--decor-parallax)) rotate(var(--decor-tilt)) scale(1.14);
  }
  70% {
    transform: translate(var(--decor-offset-x), var(--decor-parallax)) rotate(var(--decor-tilt)) scale(1.05);
  }
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.how-step {
  text-align: center;
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px 20px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.how-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 12px;
  cursor: default;
}

.how-step-icon {
  margin-bottom: 12px;
  display: block;
}

.how-step-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.how-step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
  cursor: default;
}

.how-step-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

.demo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.demo-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.demo-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.demo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-tag {
  margin: 12px 16px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  cursor: default;
}

.demo-name {
  color: var(--accent-strong);
}

.demo-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}

.demo-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.demo-play-btn:hover {
  transform: scale(1.1);
}

.demo-progress {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.demo-progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
}

.demo-duration {
  font-size: 12px;
  color: var(--text-soft);
  min-width: 40px;
  text-align: right;
}

audio {
  width: 100%;
}

.price-card {
  background: linear-gradient(130deg, #ffe3ba, #ffd3c1 50%, #ffe9d0 100%);
  border-radius: 28px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #3b240f;
  box-shadow: 0 18px 40px rgba(255, 152, 75, 0.36);
}

.price-card-new {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 32px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.price-card-tag {
  display: inline-block;
  background: #E75148;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  cursor: default;
}

.price-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}

.price-card-left-new {
  text-align: left;
}

.price-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #4A2821;
  margin-bottom: 20px;
  line-height: 1.3;
  cursor: default;
}

.price-card-title-accent {
  color: #E75148;
}

.price-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #4A2821;
  line-height: 1.5;
}

.price-list-heart {
  color: #E75148;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card-right-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-gift-wrapper {
  position: relative;
  margin-bottom: 0;
}

.price-gift-box {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(231, 81, 72, 0.2));
  position: relative;
  z-index: 2;
  display: block;
}

.price-gift-hearts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.price-gift-heart {
  position: absolute;
  color: #E75148;
  font-size: 20px;
  opacity: 0.6;
  animation: float-gift-heart 3s ease-in-out infinite;
}

.price-gift-heart:nth-child(1) {
  top: -10px;
  left: 20%;
  animation-delay: 0s;
}

.price-gift-heart:nth-child(2) {
  top: 10%;
  right: 15%;
  animation-delay: 0.5s;
}

.price-gift-heart:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.price-gift-heart:nth-child(4) {
  bottom: -5px;
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes float-gift-heart {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-8px) scale(1.1);
    opacity: 0.8;
  }
}

.price-value-new {
  font-size: 42px;
  font-weight: 800;
  color: #E75148;
  margin-bottom: 0;
  cursor: default;
}

.price-note-new {
  font-size: 14px;
  color: #4A2821;
  opacity: 0.85;
}

.price-card-cta {
  text-align: center;
  margin-bottom: 16px;
}

.price-btn {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(231, 81, 72, 0.3);
}

.price-card-delivery {
  text-align: center;
  font-size: 13px;
  color: #4A2821;
  opacity: 0.85;
  margin-bottom: 16px;
}

.price-card-divider {
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1) 0px,
    rgba(0, 0, 0, 0.1) 4px,
    transparent 4px,
    transparent 8px
  );
  margin-bottom: 16px;
}

.price-card-options {
  text-align: center;
  font-size: 12px;
  color: #4A2821;
  opacity: 0.75;
  cursor: default;
}

.price-card-left {
  width: 100%;
}

.price-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
}

.price-note {
  font-size: 14px;
  opacity: 0.85;
}

.price-meta {
  font-size: 13px;
  opacity: 0.85;
}

.text-close {
  width: max-content;
  margin: 20px auto 0;
  cursor: pointer;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.text-close:hover {
  opacity: 0.8;
}

.product-card-in-price {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.price-side-cta {
  margin-top: 8px;
}

.price-chip {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.order-layout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}

.order-grid {
  flex: 1 1 auto;
  max-width: 720px;
}

.order-section {
  background: var(--bg-card);
  border-radius: 32px;
  padding: 26px 20px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 12px;
}


.order-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  cursor: default;
}

.order-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

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

.form-label {
  font-weight: 500;
}

.form-label small {
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 9px 11px;
  font: inherit;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

@media (max-width: 768px) {
  textarea[name="description"] {
    min-height: 160px;
  }
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 152, 75, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 152, 75, 0.3);
  background: #ffffff;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-label-main {
  font-weight: 500;
}

.checkbox-label-sub {
  font-size: 12px;
  color: var(--text-soft);
}

.order-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.price-dynamic {
  font-size: 13px;
  cursor: default;
}

.price-dynamic-main {
  font-size: 22px;
  font-weight: 700;
  color: #E75148;
  cursor: default;
}

.price-dynamic-line {
  font-size: 11px;
  color: var(--text-soft);
}

.order-pay-note {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 6px;
  cursor: default;
}

.order-visual {
  align-self: flex-start;
  display: flex;
  justify-content: flex-start;
  flex: 0 0 320px;
}

.order-visual-card {
  height: auto;
  width: 100%;
  max-width: none;
  border-radius: 28px;
  background: radial-gradient(circle at top, #fff7ec 0, #ffece1 40%, #ffe3cc 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.order-visual-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.order-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.order-visual-caption {
  padding: 14px 16px 16px;
  font-size: 13px;
  color: #3b240f;
}

.order-visual-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.order-visual-text {
  font-size: 13px;
  line-height: 1.5;
}

.order-extra {
  margin-top: 32px;
}

.order-extra-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.order-extra-inner > div {
  text-align: center;
  width: 100%;
}

.meditations-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.meditations-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.meditations-text {
  font-size: 13px;
  color: var(--text-soft);
}

.reviews-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.reviews-strip::-webkit-scrollbar {
  display: none;
}

.video-reviews-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.video-reviews-strip::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 260px;
  flex: 0 0 calc((100% - 28px) / 3);
  background: var(--bg-card);
  border-radius: 20px;
  padding: 14px 14px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.video-review-card {
  min-width: 260px;
  flex: 0 0 calc((100% - 28px) / 3);
  background: var(--bg-card);
  border-radius: 20px;
  padding: 8px 8px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: none;
  padding: 0;
  background: #000;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.video-thumb-play {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(255, 68, 68, 0.45);
  position: relative;
  z-index: 1;
}

.video-review-caption {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 500;
  cursor: default;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe0b4, #ffdfff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.review-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  cursor: default;
}

.review-meta {
  font-size: 11px;
  color: var(--text-soft);
  cursor: default;
}

.review-text {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 8px;
  text-align: left;
  flex: 1 1 auto;
}

.review-audio {
  width: 100%;
  margin-top: auto;
}

.alt-block {
  border-radius: 24px;
  padding: 18px 18px 16px;
  background: #e2f3ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.alt-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alt-text {
  font-size: 13px;
  color: #385063;
}

.alt-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.alt-avatar-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  color: #385063;
}

.alt-avatar-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
}

.alt-avatar-label {
  white-space: nowrap;
}

.footer {
  padding: 36px 0 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    url("images/footer.webp");
  background-size: auto 200%;
  background-position: right center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .footer {
    background-image: none;
  }
}

.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 50;
}

.video-modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-dialog {
  position: relative;
  width: 90%;
  max-width: 720px;
  padding: 16px 0;
}

.video-modal-content {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

#videoModalFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
}

/* ── Success modal ───────────────────────────────────────── */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 60;
}

.success-modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal-dialog {
  position: relative;
  background: var(--bg-card, #fff);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: successModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successModalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-muted, #f0f0f0);
  color: var(--text-soft, #888);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s;
  outline: 0;
}

.success-modal-close:hover {
  background: var(--bg-hover, #e0e0e0);
}

.success-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.success-modal-icon svg {
  width: 100%;
  height: 100%;
}

.success-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary, #111);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  cursor: default;
}

.success-modal-text {
  font-size: 15px;
  color: var(--text-soft, #666);
  line-height: 1.55;
  margin: 0 0 28px;
}

.success-modal-btn {
  min-width: 180px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-main {
  max-width: 430px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  cursor: default;
}

.footer-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-soft);
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

.footer-meta {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 12px;
}

/* ── Floating help button ────────────────────────────────────── */
.help-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 8px;
  user-select: none;
}

.help-fab-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--text-main);
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.help-fab-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.help-fab-menu {
  min-width: 180px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.help-fab-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  color: var(--text-main);
}

.help-fab-link:hover {
  background: rgba(0, 0, 0, 0.03);
}

.help-fab-link-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.help-fab-link--tg .help-fab-link-icon {
  color: #29a9eb;
}

.help-fab-link--wa .help-fab-link-icon {
  color: #25d366;
}

.help-fab--open .help-fab-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.section-document {
  position: relative;
  background: linear-gradient(to bottom, #fffaf7 0%, transparent 100%);
  overflow: hidden;
  padding: 32px 0;
}

.document h1 {
  line-height: 1.2;
  margin-bottom: 1.5rem;
  cursor: default;
}

.document h2 {
  line-height: 1.2;
  margin: 1rem 0;
}

.document h3 {
  line-height: 1.2;
  margin: 1rem 0;
}

.document p {
  line-height: 1.6;
  margin: 10px 0;
}

.document ol {
  margin-left: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .help-fab:hover .help-fab-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .price-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  .price-side {
    justify-self: flex-start;
    text-align: left;
  }
  .order-layout {
    flex-direction: column;
  }
  .order-visual {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .hero-inner-wrapper::before {
    background-size: cover;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 22px;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-micro {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .hero-strip-arrows {
    display: flex;
  }
  .site-header-inner {
    padding: 8px 0;
  }
  .site-nav {
    display: none;
  }
  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner-wrapper {
    padding-top: 20px;
  }

  .hero-inner {
    padding-top: 20px;
    align-items: center;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-logo-subtitle {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-subtitle-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-header:has(.section-subtitle-columns) {
    max-width: 100%;
  }
  .demo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-strip-track {
    animation: none;
    gap: 0;
  }
  .hero-strip-group {
    gap: 0;
    display: contents;
  }
  .hero-strip-card {
    flex: 0 0 calc(100% - 80px);
    width: calc(100% - 80px);
    margin: 0 40px;
    max-width: none;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    padding: 12px;
    position: static;
  }

  .hero-strip-card::before {
    content: none;
  }
  .order-section {
    position: static;
  }

  .price-card-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-card-right-new {
    order: -1;
  }

  .price-gift-box {
    width: 90px;
  }

  .price-value-new {
    font-size: 36px;
  }

  .price-card-new {
    padding: 24px 20px 20px;
  }

  .reviews-strip,
  .video-reviews-strip {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
  }

  .review-card,
  .video-review-card {
    scroll-snap-align: center;
  }

  .section-document {
    padding: 24px 0;
  }
}

@media (max-width: 560px) {
  .hero-inner-wrapper {
    padding-top: 20px;
  }

  .hero-inner-wrapper::before {
    background-size: cover;
  }

  .hero-inner {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 28px;
  }
  .hero-img {
    max-width: 80%;
    margin: 0 auto;
  }
  .hero-card {
    padding: 16px 14px 14px;
  }
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .order-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

input.just-validate-error-field, textarea.just-validate-error-field {
  border-color: #E87979;
}

.label-required:before {
  content: '*';
  display: inline-block;
  margin-right: 3px;
  color: #E87979;
}

.stop-icon {
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(1px);
}

@media (max-width: 550px) {
  .container {
    overflow-x: hidden;
  }
}
