/* ========================================
   ПЛАСКИЙ ЖИВІТ — ЛЕНДИНГ
   Mobile-first CSS
   Style: Harmony Yoga reference — bold pink, clean white, massive typography
   ======================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === CSS VARIABLES === */
:root {
  /* Кольори — Pink & White aesthetic */
  --color-primary: #E8668E;
  --color-primary-dark: #D4526F;
  --color-primary-light: #F8D7E1;
  --color-primary-bg: #F5F5F5;
  --color-dark: #1A1A1A;
  --color-text: #3D3D3D;
  --color-text-light: #8C8C8C;
  --color-bg: #FFFFFF;
  --color-white: #FFFFFF;

  /* Типографіка */
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Розміри */
  --container-width: 1140px;
  --container-padding: 20px;
  --section-padding: 64px 0;
  --border-radius: 20px;
  --border-radius-sm: 14px;

  /* Тіні */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  /* Transition */
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-dark);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === UTILITY === */
.desktop-br { display: none; }
@media (min-width: 768px) { .desktop-br { display: inline; } }

/* === TYPOGRAPHY === */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 40px;
}

.section-subtitle .accent-text {
  font-weight: 600;
}

.accent-text {
  color: var(--color-primary);
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  width: 100%;
  min-height: 56px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232, 102, 142, 0.25);
}

.cta-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 102, 142, 0.35);
  color: var(--color-white);
}

.cta-btn:active {
  transform: translateY(-1px);
}

.cta-btn--large {
  font-size: 1.1rem;
  padding: 20px 56px;
  min-height: 60px;
}

/* === SCROLL REVEAL === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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


/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  padding: 48px 0 0;
  background-color: var(--color-bg);
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 4;
}

/* === AURORA GRADIENT BLOBS === */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  filter: blur(90px);
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

.hero__aurora-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero__aurora-blob--1 {
  width: clamp(350px, 55vw, 700px);
  height: clamp(350px, 55vw, 700px);
  background: radial-gradient(circle, rgba(232, 102, 142, 0.25) 0%, rgba(232, 102, 142, 0) 70%);
  top: -15%;
  left: -15%;
  animation: aurora-drift-1 18s ease-in-out infinite alternate;
}

.hero__aurora-blob--2 {
  width: clamp(280px, 45vw, 550px);
  height: clamp(280px, 45vw, 550px);
  background: radial-gradient(circle, rgba(186, 130, 214, 0.2) 0%, rgba(186, 130, 214, 0) 70%);
  top: 15%;
  right: -12%;
  animation: aurora-drift-2 22s ease-in-out infinite alternate;
}

.hero__aurora-blob--3 {
  width: clamp(240px, 40vw, 500px);
  height: clamp(240px, 40vw, 500px);
  background: radial-gradient(circle, rgba(255, 195, 180, 0.18) 0%, rgba(255, 195, 180, 0) 70%);
  bottom: 5%;
  left: 10%;
  animation: aurora-drift-3 25s ease-in-out infinite alternate;
}

.hero__aurora-blob--4 {
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(circle, rgba(200, 220, 240, 0.15) 0%, rgba(200, 220, 240, 0) 70%);
  bottom: 25%;
  right: 15%;
  animation: aurora-drift-4 20s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4vw, 3vh) scale(1.08); }
}

@keyframes aurora-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3vw, 4vh) scale(1.05); }
}

@keyframes aurora-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3vw, -3vh) scale(1.1); }
}

@keyframes aurora-drift-4 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2vw, -3vh) scale(1.04); }
}

/* === GRAIN TEXTURE OVERLAY === */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* === FLOATING DECORATIVE PARTICLES === */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  left: var(--p-x);
  top: var(--p-y);
  width: var(--p-size);
  height: var(--p-size);
  animation: particle-float var(--p-dur, 6s) var(--p-delay, 0s) ease-in-out infinite alternate;
  will-change: transform;
}

.hero__particle--circle {
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
}

.hero__particle--ring {
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: transparent;
  opacity: 0.15;
}

.hero__particle--star {
  background: transparent;
  opacity: 0.2;
}

.hero__particle--star::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--p-size);
  color: var(--color-primary);
  line-height: 1;
}

.hero__particle--dot {
  background-color: var(--color-primary-dark);
  border-radius: 50%;
  opacity: 0.12;
}

.hero__particle--plus {
  background: transparent;
  opacity: 0.15;
}

.hero__particle--plus::before,
.hero__particle--plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
  border-radius: 1px;
}

.hero__particle--plus::before {
  width: var(--p-size);
  height: 2px;
  transform: translate(-50%, -50%);
}

.hero__particle--plus::after {
  width: 2px;
  height: var(--p-size);
  transform: translate(-50%, -50%);
}

@keyframes particle-float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(12deg); }
}

/* === STAGGERED ENTRANCE ANIMATIONS === */
.hero__stagger {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  filter: blur(6px);
  animation: hero-entrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__stagger:nth-child(1) { animation-delay: 0.15s; }
.hero__stagger:nth-child(2) { animation-delay: 0.3s; }
.hero__stagger:nth-child(3) { animation-delay: 0.45s; }
.hero__stagger:nth-child(4) { animation-delay: 0.6s; }
.hero__stagger:nth-child(5) { animation-delay: 0.72s; }
.hero__stagger:nth-child(6) { animation-delay: 0.84s; }
.hero__stagger:nth-child(7) { animation-delay: 0.96s; }
.hero__stagger:nth-child(8) { animation-delay: 1.08s; }
.hero__stagger:nth-child(9) { animation-delay: 1.2s; }

@keyframes hero-entrance {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* === HERO IMAGE CLIP-PATH REVEAL === */
.hero__image.hero__stagger {
  animation-name: hero-image-reveal;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
  clip-path: circle(0% at 50% 50%);
  filter: none;
  transform: none;
}

@keyframes hero-image-reveal {
  0% {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: circle(75% at 50% 50%);
  }
}

/* === BADGE MICRO-PULSE === */
.hero__badge {
  animation: badge-breathe 3s ease-in-out infinite;
  animation-delay: 2s;
}

.hero__badge:nth-child(2) {
  animation-delay: 2.5s;
}

@keyframes badge-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* === PRICE PILL (no animation) === */

/* === CTA TOUCH RIPPLE === */
.hero__cta {
  overflow: visible;
}

.hero__cta .cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* === CTA PULSE ANIMATION === */
.hero__cta {
  position: relative;
  z-index: 1;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(232, 102, 142, 0.5);
  z-index: -1;
  animation: cta-ring 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 2s;
}

@keyframes cta-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 102, 142, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(232, 102, 142, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 102, 142, 0);
  }
}

.hero__cta:hover::before {
  animation: none;
  box-shadow: none;
}


/* Badges */
.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badge {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--color-primary);
  letter-spacing: 0.03em;
}

.hero__badge--dark {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.hero__subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  line-height: 1.5;
  max-width: 500px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero__title-accent {
  color: var(--color-primary);
  display: block;
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__tagline-heart {
  color: var(--color-primary-light);
  font-size: 1.2rem;
}

/* Description blob */
.hero__desc-blob {
  background-color: var(--color-primary-bg);
  border-radius: 24px;
  padding: 20px 28px;
  max-width: 540px;
}

.hero__desc {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--color-text);
  line-height: 1.65;
}

.hero__desc-highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__desc-small {
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* Price pill */
.hero__price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  background-color: var(--color-bg);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
}

.hero__price-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.hero__price-new {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-dark);
}

.hero__price-old {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* === HERO PRICE ODOMETER === */
.hero-price-odometer {
  font-variant-numeric: tabular-nums;
}

.hero-price-odometer .odometer-inside {
  display: inline-flex;
}

.hero__ps {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.55;
  max-width: 520px;
}

.hero__ps strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__image {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 800px;
}

.hero__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow:
    0 20px 60px rgba(232, 102, 142, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-out, border-radius 0.5s ease;
  will-change: transform;
  /* Gyroscope tilt on mobile — controlled by JS via CSS custom properties */
  --gyro-x: 0deg;
  --gyro-y: 0deg;
  transform: perspective(600px) rotateX(var(--gyro-x)) rotateY(var(--gyro-y));
}

/* Organic blob morph animation on the image — works on mobile without hover */
.hero__image img {
  animation: blob-morph 8s ease-in-out infinite alternate;
  animation-delay: 2.5s;
}

@keyframes blob-morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
  50% { border-radius: 40% 60% 50% 50% / 35% 65% 35% 65%; }
  75% { border-radius: 60% 40% 60% 40% / 50% 50% 30% 70%; }
  100% { border-radius: 35% 65% 45% 55% / 55% 45% 55% 45%; }
}

@media (pointer: fine) {
  .hero__image:hover img {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation-play-state: paused;
  }
}

/* ========================================
   FOR WHOM
   ======================================== */
.for-whom {
  padding: var(--section-padding);
  background-color: var(--color-primary-bg);
}

.for-whom .section-title {
  margin-bottom: 40px;
}

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.for-whom__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
}

.for-whom__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.for-whom__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(232, 102, 142, 0.1);
  border-radius: 12px;
  color: var(--color-primary);
}

.for-whom__icon svg {
  width: 22px;
  height: 22px;
}

.for-whom__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__image img {
  border-radius: var(--border-radius);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.about__image video {
  border-radius: var(--border-radius);
  width: 100%;
  object-fit: contain;
}

.about .section-title {
  text-align: left;
}

.about__text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--color-text);
}

.about__quote {
  position: relative;
  margin: 24px 0;
  padding: 20px 24px;
  background-color: var(--color-primary-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-primary);
  font-weight: 500;
}

/* Credentials з сердечками */
.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.about__cred-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.about__cred-card:hover {
  box-shadow: var(--shadow-md);
}

.about__cred-heart {
  color: var(--color-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about__cred-card p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text);
}

.about__cred-card strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* ========================================
   PROGRAM
   ======================================== */
.program {
  padding: var(--section-padding);
  background-color: var(--color-primary-bg);
}

.program__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program__item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.program__item:hover {
  box-shadow: var(--shadow-sm);
}

.program__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  text-align: left;
  color: var(--color-dark);
  transition: all var(--transition);
}

.program__header:hover {
  color: var(--color-primary);
}

.program__header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.program__number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.3;
  min-width: 36px;
}

.program__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.program__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.program__header[aria-expanded="true"] .program__chevron {
  transform: rotate(180deg);
}

.program__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.program__topics {
  padding: 0 20px 20px 70px;
}

.program__topics li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
}

.program__topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.4;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.how-it-works .section-title {
  margin-bottom: 40px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.how-it-works__step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.how-it-works__step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.how-it-works__step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(232, 102, 142, 0.1);
  border-radius: 12px;
  color: var(--color-primary);
}

.how-it-works__step-icon svg {
  width: 22px;
  height: 22px;
}

.how-it-works__step-content {
  flex: 1;
}

.how-it-works__step-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.how-it-works__step-text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ========================================
   RESULTS
   ======================================== */
.results {
  padding: var(--section-padding);
  background-color: var(--color-primary-bg);
}

.results .section-title {
  margin-bottom: 40px;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.results__card {
  padding: 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.results__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.results__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(232, 102, 142, 0.1);
  border-radius: 12px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.results__icon svg {
  width: 22px;
  height: 22px;
}

.results__card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.results__card-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* ========================================
   GUARANTEE
   ======================================== */
.guarantee {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px 24px;
  background-color: var(--color-white);
  border-radius: 24px;
  border: 2px solid var(--color-primary);
  max-width: 700px;
  margin: 0 auto;
}

.guarantee__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.guarantee__icon svg {
  width: 48px;
  height: 48px;
}

.guarantee .section-title {
  margin-bottom: 8px;
}

.guarantee__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: var(--section-padding);
  background-color: var(--color-primary-bg);
}

.pricing__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pricing__title {
  text-align: center;
  margin-bottom: 24px;
}

/* Timer */
.pricing__timer {
  margin-bottom: 32px;
}

.pricing__timer-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.pricing__timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__timer-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  min-width: 60px;
  padding: 10px 4px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--color-primary-light);
}

.pricing__timer-text {
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.pricing__timer-sep {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

/* Card */
.pricing__card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.pricing__card-name {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.pricing__card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.pricing__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pricing__price-old {
  font-size: 1.1rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.pricing__price-badge {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--color-primary);
}

.pricing__price-new {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.pricing__includes {
  text-align: left;
  margin-bottom: 28px;
}

.pricing__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing__includes li:last-child {
  border-bottom: none;
}

.pricing__includes svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.pricing__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.pricing__secure svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-dark);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: var(--section-padding);
  background-color: var(--color-primary);
}

.final-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.final-cta__text {
  font-size: 1rem;
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-cta__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.final-cta__price .pricing__price-old {
  color: var(--color-white);
  opacity: 0.5;
}

.final-cta__price .pricing__price-new {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 0;
}

.final-cta .cta-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.final-cta .cta-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 40px 0 24px;
  background-color: #1A1A2E;
  color: var(--color-white);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--color-white);
  opacity: 0.5;
  margin-top: 2px;
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--color-white);
  opacity: 0.6;
}

.footer__link:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer__contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-white);
  opacity: 0.6;
}

.footer__contact:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--color-white);
  opacity: 0.3;
  margin-top: 8px;
}

/* ========================================
   STICKY CTA (MOBILE)
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px var(--container-padding);
  background: linear-gradient(to top, var(--color-white) 80%, transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
  visibility: hidden;
}

.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.cta-btn--sticky {
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 100px;
}

/* ========================================
   TABLET — min-width: 768px
   ======================================== */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 32px;
  }

  .hero {
    padding: 64px 0 0;
  }

  .hero__image {
    max-width: 500px;
  }

  .cta-btn {
    width: auto;
  }

  .for-whom__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .about__image {
    flex: 0 0 40%;
  }

  .about__image img {
    max-height: 600px;
    position: sticky;
    top: 80px;
  }

  .about__image video {
    position: sticky;
    top: 80px;
  }

  .about__content {
    flex: 1;
  }

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

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

  .guarantee__inner {
    flex-direction: row;
    text-align: left;
    padding: 40px;
  }

  .guarantee .section-title {
    text-align: left;
  }

  /* Hide sticky CTA on tablet+ */
  .sticky-cta {
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ========================================
   DESKTOP — min-width: 1024px
   ======================================== */
@media (min-width: 1024px) {
  :root {
    --section-padding: 100px 0;
  }

  .hero {
    padding: 80px 0 0;
  }

  .hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .for-whom__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-it-works__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   LARGE — min-width: 1280px
   ======================================== */
@media (min-width: 1280px) {
  :root {
    --section-padding: 120px 0;
  }
}

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

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .hero__stagger {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    animation: none;
  }

  .hero__aurora,
  .hero__particles,
  .hero__grain {
    display: none;
  }

  .hero__cta::before {
    animation: none;
    display: none;
  }

  .hero__image img {
    border-radius: var(--border-radius);
    animation: none;
  }

  .hero__badge {
    animation: none;
  }

  .hero__price-pill::after {
    animation: none;
    display: none;
  }

}

/* ========================================
   FLOATING FOOD EMOJIS
   ======================================== */
.floating-emojis {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-emoji {
  position: absolute;
  left: var(--x);
  bottom: -3rem;
  font-size: var(--size, 1.5rem);
  opacity: 0;
  filter: saturate(0.5);
  animation: emoji-float var(--dur, 20s) var(--delay, 0s) linear infinite;
}

@keyframes emoji-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.12;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translateY(calc(-100vh - 4rem)) rotate(360deg);
    opacity: 0;
  }
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
