/* ============================================================
   WELLZEN — STYLE.CSS
   Architecture: BEM + utility helpers
   Token Family: --tone-main / --tone-support / --tone-cta
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ---- Design Tokens ---- */
:root {
  --tone-main:        #3CBFA0;
  --tone-main-light:  #E8F8F3;
  --tone-main-mid:    #C5EEE4;
  --tone-support:     #A78BFA;
  --tone-support-lt:  #F0ECFF;
  --tone-cta:         #FF7A5C;
  --tone-cta-hover:   #e85e40;
  --tone-peach-lt:    #FFF1EC;
  --tone-yellow:      #FFF3C4;
  --tone-yellow-dk:   #F5A623;

  --bg-page:          #FAFDF8;
  --bg-card:          #FFFFFF;
  --bg-mint:          #EBF9F5;
  --bg-hero:          #F4FBF8;

  --text-heading:     #1A3530;
  --text-body:        #3D4F4A;
  --text-muted:       #7A9490;
  --text-white:       #FFFFFF;

  --border-light:     #D9EFE8;
  --border-mid:       #B5DDD2;

  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-xl:        36px;
  --radius-pill:      100px;

  --shadow-soft:      0 4px 20px rgba(60, 191, 160, 0.10);
  --shadow-card:      0 2px 16px rgba(26, 53, 48, 0.07);
  --shadow-cta:       0 6px 28px rgba(255, 122, 92, 0.30);

  --ff-heading:       'Nunito', sans-serif;
  --ff-body:          'Source Sans 3', sans-serif;

  --transition:       0.25s ease;
  --max-w:            1140px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Utility Helpers ---- */
.u-container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.u-section     { padding: 80px 0; }
.u-section--sm { padding: 56px 0; }
.u-section--lg { padding: 100px 0; }
.u-text-center { text-align: center; }
.u-flex-center { display: flex; align-items: center; justify-content: center; }
.u-grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.u-grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.u-grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.u-label       { font-family: var(--ff-heading); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--tone-main); margin-bottom: 10px; display: block; }
.u-pill-tag    { display: inline-block; background: var(--tone-main-light); color: var(--tone-main); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 16px; font-family: var(--ff-heading); }
.u-divider     { width: 48px; height: 4px; background: var(--tone-main); border-radius: 4px; margin: 16px auto 28px; }
.u-divider--left { margin-left: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--ff-heading); color: var(--text-heading); line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 253, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__logo-text {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}
.header__logo-text span { color: var(--tone-main); }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color var(--transition);
}
.header__nav a:hover { color: var(--tone-main); }

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--tone-main);
  padding: 8px 18px;
  border: 2px solid var(--tone-main);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.header__phone:hover { background: var(--tone-main); color: #fff; }
.header__phone svg { width: 16px; height: 16px; }

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION — Full-width landscape background
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Gradient overlay — left-heavy so text on left stays readable */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(10, 38, 32, 0.82) 0%,
      rgba(10, 38, 32, 0.60) 45%,
      rgba(10, 38, 32, 0.18) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 100px 0 90px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(60, 191, 160, 0.18);
  border: 1px solid rgba(60, 191, 160, 0.50);
  color: #7EECD4;
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: #7EECD4;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__title .highlight {
  color: #7EECD4;
  position: relative;
  display: inline-block;
}
.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7EECD4, rgba(167,139,250,0.7));
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.72;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 40px;
}
.hero__feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-heading);
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
}
.hero__feature-icon {
  width: 22px; height: 22px;
  background: var(--tone-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(60,191,160,0.25);
}
.hero__feature-icon svg { width: 11px; height: 11px; color: #fff; }

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.60);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__note svg { width: 14px; height: 14px; color: #7EECD4; }

/* Bottom stats bar inside hero */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stats-inner {
  display: flex;
  align-items: stretch;
}
.hero__stat {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(60,191,160,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__stat-icon svg { width: 16px; height: 16px; color: #7EECD4; }
.hero__stat-text strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
}
.hero__stat-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { min-height: 70vh; }
  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(10,38,32,0.75) 0%,
      rgba(10,38,32,0.55) 100%
    );
  }
  .hero__inner { padding: 80px 0 100px; }
  .hero__stats-inner { flex-wrap: wrap; }
  .hero__stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
}
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero__inner { padding: 72px 0 120px; }
  .hero__stat { flex: 1 1 100%; }
  .hero__stats { display: none; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--text-heading);
  padding: 20px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-strip__item svg {
  width: 18px; height: 18px;
  color: var(--tone-main);
  flex-shrink: 0;
}

/* ============================================================
   FOR WHOM SECTION
   ============================================================ */
.for-whom { background: var(--bg-page); }
.for-whom__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.for-whom__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.for-whom__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60,191,160,0.15);
}
.for-whom__card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.for-whom__card-body { padding: 28px; }
.for-whom__card-body h3 { margin-bottom: 10px; }
.for-whom__card-body p { color: var(--text-body); font-size: 0.95rem; }

/* ============================================================
   PRODUCT OVERVIEW
   ============================================================ */
.product-overview { background: linear-gradient(160deg, var(--bg-mint) 0%, var(--tone-support-lt) 100%); }
.product-overview__inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: center;
}
.product-overview__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-overview__img-bg {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-overview__img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(60,191,160,0.25));
  animation: float-product 4s ease-in-out infinite;
}
@keyframes float-product {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.product-overview__badge-set {
  position: absolute;
  top: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-badge {
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
}
.product-badge svg { width: 16px; height: 16px; color: var(--tone-main); }

.product-overview__content { }
.product-overview__tagline {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

.product-overview__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.product-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.9);
}
.product-feat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-feat__icon svg { width: 20px; height: 20px; color: var(--tone-main); }
.product-feat__text strong {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.product-feat__text span { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   BENEFITS CARDS
   ============================================================ */
.benefits { background: var(--bg-page); }
.benefits__intro { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(60,191,160,0.14);
}
.benefit-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.benefit-card__body { padding: 20px; }
.benefit-card__icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.benefit-card__icon-wrap svg { width: 18px; height: 18px; color: var(--tone-main); }
.benefit-card__body h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-heading);
}
.benefit-card__body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   ROUTINE / HOW TO USE
   ============================================================ */
.routine { background: var(--tone-main-light); }
.routine__intro { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.routine__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.routine__steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tone-main) 0, var(--tone-main) 8px, transparent 8px, transparent 16px);
}

.routine-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--tone-main-mid);
}
.routine-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tone-main);
  color: white;
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(60,191,160,0.40);
}
.routine-step h4 { font-size: 1rem; margin-bottom: 8px; }
.routine-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-page); }
.testimonials__intro { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--ff-heading);
  font-size: 5rem;
  color: var(--tone-main-mid);
  line-height: 1;
  font-weight: 900;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-card__stars svg { width: 16px; height: 16px; color: var(--tone-yellow-dk); }
.review-card__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--tone-main);
  flex-shrink: 0;
}
.review-card__info strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
}
.review-card__info span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--text-heading); padding: 80px 0; }
.trust-section__intro { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.trust-section__intro h2 { color: white; }
.trust-section__intro p { color: rgba(255,255,255,0.7); }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.trust-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(60,191,160,0.15);
  border: 1px solid rgba(60,191,160,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.trust-card__icon svg { width: 26px; height: 26px; color: var(--tone-main); }
.trust-card h4 { color: white; font-size: 1rem; margin-bottom: 8px; }
.trust-card p { color: rgba(255,255,255,0.60); font-size: 0.88rem; }

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section { background: linear-gradient(135deg, var(--tone-peach-lt) 0%, var(--tone-yellow) 100%); }
.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}

.order-info__price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 24px;
}
.order-info__price {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--tone-cta);
}
.order-info__price-cur {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}
.order-info__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.order-info__inc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}
.order-info__inc-item svg { width: 16px; height: 16px; color: var(--tone-main); flex-shrink: 0; }

/* Order Form */
.order-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,122,92,0.12);
}
.order-form__title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.order-form__subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-heading);
  background: var(--bg-page);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 4px rgba(60,191,160,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--tone-main);
}
.form-consent label {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-consent label a { color: var(--tone-main); font-weight: 600; }

.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-note svg { width: 12px; height: 12px; vertical-align: middle; color: var(--tone-main); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg-page); }
.faq-section__intro { text-align: center; max-width: 560px; margin: 0 auto 52px; }

.faq-accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.is-open { box-shadow: var(--shadow-card); border-color: var(--tone-main); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: none;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: color var(--transition);
}
.faq-item__trigger:hover { color: var(--tone-main); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-item__icon { background: var(--tone-main); transform: rotate(45deg); }
.faq-item__icon svg { width: 14px; height: 14px; color: var(--tone-main); }
.faq-item.is-open .faq-item__icon svg { color: white; }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.is-open .faq-item__body { max-height: 400px; }
.faq-item__body-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ============================================================
   CONTACT / SUPPORT
   ============================================================ */
.contact-section { background: var(--tone-support-lt); }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-body); margin-bottom: 28px; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  transition: border-color var(--transition);
}
.contact-channel:hover { border-color: var(--tone-support); }
.contact-channel__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tone-support-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel__icon svg { width: 18px; height: 18px; color: var(--tone-support); }
.contact-channel__info strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
}
.contact-channel__info span { font-size: 0.83rem; color: var(--text-muted); }

.contact-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-visual img { width: 100%; height: 360px; object-fit: cover; }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: var(--tone-main-light);
  border-top: 1px solid var(--tone-main-mid);
  border-bottom: 1px solid var(--tone-main-mid);
  padding: 16px 0;
}
.disclaimer-bar__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.disclaimer-bar__inner svg { width: 16px; height: 16px; color: var(--tone-main); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--text-heading); padding: 64px 0 32px; }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 32px;
}

.footer__brand {}
.footer__brand-name {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--tone-main); }
.footer__brand-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer__contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.60);
}
.footer__contact-item svg { width: 14px; height: 14px; color: var(--tone-main); flex-shrink: 0; }

.footer__col-title {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--tone-main); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.40); }
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.40); transition: color var(--transition); }
.footer__legal-links a:hover { color: var(--tone-main); }

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--tone-cta);
  color: white;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,122,92,0.40);
}
.btn--secondary {
  background: transparent;
  color: var(--tone-main);
  border: 2px solid var(--tone-main);
}
.btn--secondary:hover { background: var(--tone-main); color: white; }
.btn--white {
  background: white;
  color: var(--tone-cta);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover { background: var(--tone-cta); color: white; transform: translateY(-2px); }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--text-heading);
  border-top: 3px solid var(--tone-main);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-banner__text svg { width: 20px; height: 20px; color: var(--tone-main); flex-shrink: 0; margin-top: 2px; }
.cookie-banner__text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__text p a { color: var(--tone-main); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-btn {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn--accept { background: var(--tone-main); color: white; }
.cookie-btn--accept:hover { background: #2ea98a; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.60); border: 1px solid rgba(255,255,255,0.20); }
.cookie-btn--decline:hover { background: rgba(255,255,255,0.10); color: white; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--d1 { transition-delay: 0.1s; }
.fade-up--d2 { transition-delay: 0.2s; }
.fade-up--d3 { transition-delay: 0.3s; }
.fade-up--d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .product-overview__inner { grid-template-columns: 1fr; }
  .product-overview__img-wrap { order: -1; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .order-section__inner { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-visual { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .u-grid-2, .u-grid-3, .u-grid-4 { grid-template-columns: 1fr; }
  .header__nav { display: none; }
  .header__mobile-toggle { display: flex; }
  .header__phone { display: none; }
  .routine__steps { grid-template-columns: 1fr; }
  .routine__steps::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .for-whom__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .u-section { padding: 56px 0; }
  .benefits__grid { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .order-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; }
  .product-overview__img-bg { width: 280px; height: 280px; }
  .product-overview__img { width: 200px; height: 200px; }
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 850;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page .legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--tone-main); }
.legal-page p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; color: var(--text-body); }
.legal-page ul { margin: 10px 0 14px 20px; }
.legal-page ul li { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); margin-bottom: 6px; list-style: disc; }
.legal-page a { color: var(--tone-main); font-weight: 600; }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--tone-support-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.success-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(60,191,160,0.18);
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-icon svg { width: 40px; height: 40px; color: var(--tone-main); }
.success-card h1 { font-size: 1.7rem; margin-bottom: 12px; }
.success-card p { color: var(--text-body); margin-bottom: 32px; font-size: 0.95rem; }
