/* =====================================================
   FLORAKA — Weight Loss Supplement Landing Page
   CSS Architecture: Section-scoped semantic + utilities
   Color Token Family: --tone-main / --tone-support / --tone-cta
   Typography: Playfair Display + Lato
   ===================================================== */

/* Fonts loaded via <link> in HTML <head> for reliability */

/* ---- TOKENS ---- */
:root {
  --tone-main:       #2D5016;
  --tone-main-light: #3d6b1f;
  --tone-support:    #F5F0E8;
  --tone-support-alt:#EAE3D0;
  --tone-cta:        #C4622D;
  --tone-cta-hover:  #A84E22;
  --tone-text:       #1A1A1A;
  --tone-muted:      #5A5A5A;
  --tone-border:     #D8D0BF;
  --tone-white:      #FFFFFF;
  --tone-card:       #FDFAF4;
  --tone-accent:     #8FB53A;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:50px;

  --shadow-soft: 0 4px 20px rgba(45,80,22,0.10);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-cta:  0 6px 24px rgba(196,98,45,0.30);

  --max-w: 1140px;
  --section-gap: 90px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: var(--tone-text);
  background: var(--tone-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--tone-main);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--tone-main); text-decoration: none; transition: color .2s; }
a:hover { color: var(--tone-cta); }

img { max-width: 100%; display: block; border-radius: var(--radius-md); }

/* ---- UTILITIES ---- */
.u-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.u-section-label {
  display: inline-block;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone-cta);
  margin-bottom: 14px;
}

.u-divider {
  width: 48px;
  height: 3px;
  background: var(--tone-cta);
  border-radius: 2px;
  margin-top: 12px;
}

.u-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(143,181,58,.15);
  color: var(--tone-main);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(143,181,58,.3);
}

/* ---- BUTTON STYLES ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tone-cta);
  color: var(--tone-white);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  box-shadow: var(--shadow-cta);
  text-decoration: none;
  letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,98,45,0.38);
  color: var(--tone-white);
}
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tone-main);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--tone-main);
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--tone-main);
  color: var(--tone-white);
}

/* ===================================================
   SITE HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tone-border);
  padding-block: 14px;
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(45,80,22,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-logo__name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tone-main);
  letter-spacing: -.01em;
}
.brand-logo__name span {
  color: var(--tone-cta);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.site-nav a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--tone-muted);
  letter-spacing: .02em;
  transition: color .2s;
}
.site-nav a:hover { color: var(--tone-main); }

.header-cta-wrap { flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tone-main);
  border-radius: 2px;
  transition: all .3s;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,45,8,0.72) 0%,
    rgba(45,80,22,0.55) 45%,
    rgba(45,80,22,0.20) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  padding-block: 100px;
}

.hero-content { color: var(--tone-white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #D4EFA0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow svg { opacity: .8; }

.hero-content h1 {
  color: var(--tone-white);
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: #C8E87A;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--tone-white);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--tone-white);
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.hero-trust-item svg { color: #C8E87A; flex-shrink: 0; }

.hero-product-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  animation: heroCardFloat 4s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-product-card img {
  max-height: 260px;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
}
.hero-product-card__label {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 16px;
}
.hero-product-card__name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tone-white);
  margin-top: 4px;
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: var(--tone-main);
  padding-block: 18px;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 700;
  padding-inline: 28px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item svg { color: #C8E87A; flex-shrink: 0; }

/* ===================================================
   FOR WHOM SECTION
   =================================================== */
.for-whom-section {
  padding-block: var(--section-gap);
  background: var(--tone-support);
}

.for-whom-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
}

.for-whom-intro__image {
  position: relative;
}
.for-whom-intro__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.image-badge {
  position: absolute;
  bottom: 24px;
  right: -18px;
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.image-badge__icon {
  width: 40px;
  height: 40px;
  background: rgba(45,80,22,.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tone-main);
}
.image-badge__text strong {
  display: block;
  font-size: .95rem;
  color: var(--tone-main);
}
.image-badge__text span {
  font-size: .75rem;
  color: var(--tone-muted);
}

.for-whom-intro__text { padding-right: 16px; }
.for-whom-intro__text h2 { margin-bottom: 16px; }
.for-whom-intro__text p { color: var(--tone-muted); margin-bottom: 24px; }

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--tone-text);
}
.audience-list li svg {
  color: var(--tone-main);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Lifestyle cards row */
.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.lifestyle-card {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.lifestyle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.lifestyle-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}
.lifestyle-card__body {
  padding: 18px 20px;
}
.lifestyle-card__body h4 {
  color: var(--tone-main);
  margin-bottom: 6px;
}
.lifestyle-card__body p {
  font-size: .88rem;
  color: var(--tone-muted);
  margin: 0;
}

/* ===================================================
   PRODUCT OVERVIEW SECTION
   =================================================== */
.product-overview {
  padding-block: var(--section-gap);
  background: var(--tone-white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-visual__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(143,181,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.product-visual img {
  position: relative;
  z-index: 1;
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(45,80,22,0.2));
  transition: transform .4s ease;
}
.product-visual:hover img {
  transform: scale(1.03);
}

.product-detail { }
.product-detail h2 { margin-bottom: 12px; }
.product-detail > p { color: var(--tone-muted); margin-bottom: 28px; line-height: 1.75; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--tone-card);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--tone-accent);
  transition: border-color .2s, background .2s;
}
.feature-list__item:hover {
  background: var(--tone-support);
  border-left-color: var(--tone-main);
}
.feature-list__icon {
  width: 36px;
  height: 36px;
  background: var(--tone-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tone-white);
}
.feature-list__text strong {
  display: block;
  font-size: .95rem;
  color: var(--tone-main);
  margin-bottom: 2px;
}
.feature-list__text span {
  font-size: .85rem;
  color: var(--tone-muted);
}

/* ===================================================
   ROUTINE SECTION (HOW TO USE)
   =================================================== */
.routine-section {
  padding-block: var(--section-gap);
  background: var(--tone-support);
}

.routine-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.routine-header h2 { margin-bottom: 14px; }
.routine-header p { color: var(--tone-muted); }
.routine-header .u-divider { margin-inline: auto; }

.routine-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
}

/* connecting line for desktop */
.routine-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--tone-accent), var(--tone-main));
  z-index: 0;
}

.routine-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 36px 24px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s;
}
.routine-step:hover { transform: translateY(-4px); }

.routine-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tone-main);
  color: var(--tone-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(45,80,22,0.25);
}
.routine-step h4 { color: var(--tone-main); margin-bottom: 8px; }
.routine-step p { font-size: .9rem; color: var(--tone-muted); margin: 0; }

/* ===================================================
   BENEFITS GRID
   =================================================== */
.benefits-section {
  padding-block: var(--section-gap);
  background: var(--tone-white);
}

.benefits-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.benefits-header h2 { margin-bottom: 14px; }
.benefits-header p { color: var(--tone-muted); margin: 0; }
.benefits-header .u-divider { }

.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.stat-item { }
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tone-cta);
  line-height: 1;
}
.stat-item span {
  font-size: .82rem;
  color: var(--tone-muted);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--tone-accent);
  transition: width .3s;
}
.benefit-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-soft);
  background: var(--tone-white);
}
.benefit-card:hover::before { width: 6px; background: var(--tone-main); }

.benefit-card__icon {
  width: 48px; height: 48px;
  background: rgba(45,80,22,.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--tone-main);
}
.benefit-card h4 { margin-bottom: 8px; }
.benefit-card p { font-size: .88rem; color: var(--tone-muted); margin: 0; }

/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
.testimonials-section {
  padding-block: var(--section-gap);
  background: linear-gradient(150deg, var(--tone-main) 0%, #1a3a09 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(200,232,122,0.06);
  border-radius: 50%;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(196,98,45,0.06);
  border-radius: 50%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.testimonials-header h2 { color: var(--tone-white); margin-bottom: 12px; }
.testimonials-header p { color: rgba(255,255,255,.7); }
.testimonials-header .u-section-label { color: #C8E87A; }
.testimonials-header .u-divider { background: var(--tone-cta); margin-inline: auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background .25s, transform .25s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FFD166;
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tone-accent);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tone-white);
  flex-shrink: 0;
}
.testimonial-author__info strong {
  display: block;
  color: var(--tone-white);
  font-size: .95rem;
}
.testimonial-author__info span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
  padding-block: var(--section-gap);
  background: var(--tone-support);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-sidebar h2 { margin-bottom: 14px; }
.faq-sidebar p { color: var(--tone-muted); margin-bottom: 28px; }
.faq-sidebar .u-divider { }

.faq-contact-card {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--tone-border);
  margin-top: 32px;
}
.faq-contact-card h4 { margin-bottom: 8px; }
.faq-contact-card p { font-size: .88rem; color: var(--tone-muted); margin-bottom: 16px; }
.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--tone-cta);
}

.faq-accordion { }
.faq-item {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--tone-border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item.open { border-color: var(--tone-main); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--tone-text);
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--tone-main); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tone-support);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  color: var(--tone-main);
}
.faq-item.open .faq-icon {
  background: var(--tone-main);
  color: var(--tone-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p { font-size: .93rem; color: var(--tone-muted); margin: 0; line-height: 1.7; }

/* ===================================================
   ORDER / CTA SECTION
   =================================================== */
.order-section {
  padding-block: var(--section-gap);
  background: var(--tone-white);
}

.order-block {
  background: var(--tone-main);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.order-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.order-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 40%;
  width: 240px; height: 240px;
  background: rgba(196,98,45,.08);
  border-radius: 50%;
}

.order-content { position: relative; z-index: 1; }
.order-content .u-section-label { color: #C8E87A; }
.order-content h2 { color: var(--tone-white); margin-bottom: 16px; }
.order-content p { color: rgba(255,255,255,.75); margin-bottom: 28px; }

.order-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.order-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
}
.order-perks li svg { color: #C8E87A; flex-shrink: 0; }

.order-form-block {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 32px;
}
.order-form-block h3 {
  color: var(--tone-white);
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-field input {
  padding: 13px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: .95rem;
  color: var(--tone-white);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder { color: rgba(255,255,255,.4); }
.form-field input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.14);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 17px;
  margin-top: 4px;
}

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-top: 12px;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-section {
  padding-block: 60px;
  background: var(--tone-support-alt);
  border-top: 1px solid var(--tone-border);
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--tone-main);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tone-white);
}
.contact-item h4 {
  font-size: .8rem;
  color: var(--tone-muted);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item p {
  font-size: .92rem;
  color: var(--tone-text);
  font-weight: 700;
  margin: 0;
}
.contact-item a:hover { color: var(--tone-cta); }

/* ===================================================
   SITE FOOTER
   =================================================== */
.site-footer {
  background: var(--tone-main);
  color: rgba(255,255,255,.75);
  padding-block: 48px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
}

.footer-brand .brand-logo__name { color: var(--tone-white); }
.footer-brand .brand-logo__name span { color: #C8E87A; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--tone-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  max-width: 560px;
  text-align: right;
  line-height: 1.5;
}

/* ===================================================
   SUCCESS PAGE
   =================================================== */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--tone-support);
  padding: 40px 24px;
}
.success-card {
  background: var(--tone-white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 480px;
  box-shadow: var(--shadow-soft);
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--tone-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 24px;
  color: var(--tone-white);
}
.success-card h1 { font-size: 1.8rem; margin-bottom: 14px; }
.success-card p { color: var(--tone-muted); margin-bottom: 28px; }

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal-page {
  max-width: 800px;
  margin-inline: auto;
  padding: 60px 24px;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page .legal-meta {
  font-size: .82rem;
  color: var(--tone-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tone-border);
}
.legal-page p, .legal-page li {
  font-size: .95rem;
  color: var(--tone-muted);
  line-height: 1.75;
}
.legal-page ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-page li { margin-bottom: .5rem; }

/* ===================================================
   ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  :root { --section-gap: 64px; }

  .hero-inner,
  .for-whom-intro,
  .product-grid,
  .benefits-header,
  .faq-layout,
  .order-block,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-section { min-height: auto; }
  .hero-inner { padding-block: 60px; }

  .order-block { padding: 40px 28px; }

  .image-badge { right: 0; }

  .routine-steps::before { display: none; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .trust-bar-inner { gap: 0; }
  .trust-bar-item { padding-inline: 16px; font-size: .78rem; }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--tone-white);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 1.2rem;
  }
  .site-nav.open a { color: var(--tone-main); }
  .nav-toggle { display: flex; }
  .header-cta-wrap .btn-primary { display: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }

  .hero-product-card { padding: 20px; }
  .hero-product-card img { max-height: 180px; }

  .trust-bar-inner { flex-direction: column; gap: 8px; }
  .trust-bar-item { border-right: none; padding-inline: 12px; }

  .stats-row { gap: 20px; }

  .order-block { padding: 28px 20px; }
  .order-form-block { padding: 22px 18px; }
}
