/* ============================================================
   Cardiotens Plus — css/style.css
   Pikglow · Greece · 2026
   Architecture: Section-scoped semantic
   Variable family: --tone-* / --page-* / --text-*
   Fonts: Nunito (display) + Source Sans 3 (body)
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ────────────────────────────────── */
:root {
  /* Brand colours */
  --tone-main:          #1565C0;
  --tone-main-mid:      #1976D2;
  --tone-main-lt:       #64B5F6;
  --tone-main-pale:     #E3F2FD;
  --tone-support:       #00796B;
  --tone-support-mid:   #00897B;
  --tone-support-lt:    #80CBC4;
  --tone-support-pale:  #E0F2F1;
  --tone-cta:           #E64A19;
  --tone-cta-hover:     #BF360C;
  --tone-cta-pale:      #FBE9E7;

  /* Pastels */
  --pastel-sky:         #B3E5FC;
  --pastel-mint:        #B2DFDB;
  --pastel-peach:       #FFCCBC;
  --pastel-lavender:    #EDE7F6;
  --pastel-lemon:       #FFF9C4;

  /* Page backgrounds */
  --page-bg:            #F4FBFF;
  --page-bg-alt:        #ECF7FF;
  --card-bg:            #FFFFFF;
  --hero-overlay:       rgba(12, 50, 100, 0.58);

  /* Text */
  --text-dark:          #0D1F3C;
  --text-mid:           #37474F;
  --text-soft:          #607D8B;
  --text-light:         #90A4AE;
  --text-on-cta:        #FFFFFF;
  --text-on-dark:       #E3F2FD;

  /* Typography */
  --ff-display:        'Nunito', sans-serif;
  --ff-body:           'Source Sans 3', sans-serif;
  --fw-regular:         400;
  --fw-semibold:        600;
  --fw-bold:            700;
  --fw-extrabold:       800;
  --fw-black:           900;

  /* Spacing */
  --sp-2xs:  4px;
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   32px;
  --sp-lg:   56px;
  --sp-xl:   88px;
  --sp-2xl: 128px;

  /* Borders */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-pill: 100px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(21,101,192,.08);
  --shadow-sm:  0 2px 12px rgba(21,101,192,.10);
  --shadow-md:  0 6px 28px rgba(21,101,192,.13);
  --shadow-lg:  0 16px 56px rgba(21,101,192,.16);

  /* Transitions */
  --ease-out:    cubic-bezier(.22,.68,0,1.2);
  --ease-smooth: cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-w:     1200px;
  --header-h:  72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  color: var(--text-dark);
  background: var(--page-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY HELPERS ───────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2xs);
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone-main-mid);
  background: var(--tone-main-pale);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-sm);
}

.section-tag--light {
  color: #fff;
  background: rgba(255,255,255,.22);
}

/* ── 4. CTA BUTTONS ──────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-smooth),
              background .18s var(--ease-smooth), color .18s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta--primary {
  background: var(--tone-cta);
  color: var(--text-on-cta);
  box-shadow: 0 4px 20px rgba(230,74,25,.32);
}
.btn-cta--primary:hover,
.btn-cta--primary:focus-visible {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,74,25,.42);
}

.btn-cta--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-cta--ghost:hover,
.btn-cta--ghost:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-cta--lg   { padding: 16px 40px; font-size: 1.05rem; }
.btn-cta--full { width: 100%; }

/* ── 5. COOKIE BANNER ────────────────────────────────────── */
.cookie-band {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--tone-main-pale);
  box-shadow: 0 -4px 30px rgba(21,101,192,.14);
  padding: var(--sp-sm) var(--sp-md);
  transform: translateY(0);
  transition: transform .38s var(--ease-smooth);
}

.cookie-band--hidden { transform: translateY(110%); }

.cookie-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.cookie-band__text {
  font-size: .88rem;
  color: var(--text-mid);
  flex: 1;
  min-width: 240px;
}

.cookie-band__link {
  color: var(--tone-main-mid);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-band__actions { display: flex; gap: var(--sp-xs); flex-shrink: 0; }

.cookie-band__btn {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .82rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: transform .18s var(--ease-out), box-shadow .18s;
}

.cookie-band__btn--accept {
  background: var(--tone-main-mid);
  color: #fff;
  box-shadow: 0 2px 10px rgba(21,101,192,.3);
}
.cookie-band__btn--accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,101,192,.4); }

.cookie-band__btn--decline {
  background: var(--tone-main-pale);
  color: var(--tone-main-mid);
}
.cookie-band__btn--decline:hover { background: #BBDEFB; }

/* ── 6. SITE HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21,101,192,.10);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s;
}

.site-header--scrolled { box-shadow: var(--shadow-md); }

.site-header__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.site-header__logo { flex-shrink: 0; transition: opacity .2s; }
.site-header__logo:hover { opacity: .85; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-left: auto;
}

.site-header__nav-link {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: .88rem;
  color: var(--text-mid);
  transition: color .18s;
  position: relative;
}
.site-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--tone-cta);
  border-radius: 2px;
  transition: right .22s var(--ease-smooth);
}
.site-header__nav-link:hover { color: var(--tone-main-mid); }
.site-header__nav-link:hover::after { right: 0; }

.site-header__contact {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.site-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .83rem;
  color: var(--tone-support-mid);
  transition: color .18s;
}
.site-header__phone:hover { color: var(--tone-support); }

.site-header__cta-btn {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: .82rem;
  background: var(--tone-cta);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 14px rgba(230,74,25,.28);
  transition: background .18s, transform .18s var(--ease-out);
}
.site-header__cta-btn:hover { background: var(--tone-cta-hover); transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background .18s;
}
.site-header__burger:hover { background: var(--tone-main-pale); }
.site-header__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .28s, opacity .2s;
}

.site-header__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger--open span:nth-child(2) { opacity: 0; }
.site-header__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--tone-main-pale);
  padding: var(--sp-sm) var(--sp-md);
  gap: 2px;
  box-shadow: var(--shadow-md);
}

.site-header__mobile-link {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: .93rem;
  color: var(--text-mid);
  padding: 11px 8px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.site-header__mobile-link:hover { background: var(--tone-main-pale); color: var(--tone-main-mid); }
.site-header__mobile-link--cta { color: var(--tone-cta); font-weight: var(--fw-extrabold); }

/* ── 7. HERO ZONE ────────────────────────────────────────── */
.hero-zone {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--sp-xl)) var(--sp-md) var(--sp-xl);
  overflow: hidden;
}

.hero-zone__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Animated subtle zoom */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-zone__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,.72) 0%,
    rgba(21,101,192,.55) 50%,
    rgba(0,121,107,.40) 100%
  );
}

/* Decorative SVG blobs */
.hero-zone::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 500px; height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(100,181,246,.18), transparent 70%);
  pointer-events: none;
}

.hero-zone__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  animation: heroFadeUp .85s var(--ease-smooth) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-zone__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
  animation: heroFadeUp .85s var(--ease-smooth) .15s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .78rem;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero-zone__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: var(--sp-md);
  animation: heroFadeUp .85s var(--ease-smooth) .25s both;
}

.hero-zone__heading--accent {
  display: block;
  color: var(--pastel-sky);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: var(--fw-bold);
  margin-top: 8px;
}

.hero-zone__sub {
  font-size: clamp(.95rem, 2vw, 1.13rem);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin: 0 auto var(--sp-md);
  line-height: 1.7;
  animation: heroFadeUp .85s var(--ease-smooth) .35s both;
}

.hero-zone__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  animation: heroFadeUp .85s var(--ease-smooth) .45s both;
}

.hero-zone__stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  animation: heroFadeUp .85s var(--ease-smooth) .55s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat__num {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--pastel-sky);
  line-height: 1;
}

.hero-stat__label {
  font-size: .76rem;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Wave divider */
.wave-divider { line-height: 0; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* ── 8. BRAND PILLARS ────────────────────────────────────── */
.brand-pillars {
  padding: var(--sp-xl) var(--sp-md);
  background: var(--page-bg);
}

.brand-pillars__wrap { max-width: var(--max-w); margin: 0 auto; }

.brand-pillars__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-lg);
}

.brand-pillars__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
  line-height: 1.25;
}

.brand-pillars__sub {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.brand-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.pillar-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-md) var(--sp-md);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s;
  border: 1px solid rgba(21,101,192,.07);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pillar-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
}
.pillar-card__icon--blue   { background: var(--tone-main-pale);     color: var(--tone-main-mid); }
.pillar-card__icon--teal   { background: var(--tone-support-pale);  color: var(--tone-support-mid); }
.pillar-card__icon--coral  { background: var(--tone-cta-pale);      color: var(--tone-cta); }

.pillar-card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
}

.pillar-card__text {
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.65;
}

/* ── 9. FEATURE CARDS ────────────────────────────────────── */
.feature-cards {
  padding: var(--sp-xl) var(--sp-md);
  background: linear-gradient(180deg, var(--page-bg) 0%, #EBF5FF 100%);
}

.feature-cards__wrap { max-width: var(--max-w); margin: 0 auto; }

.feature-cards__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-lg);
}

.feature-cards__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  line-height: 1.3;
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}

.feat-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,.07);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.feat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.feat-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.feat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth);
}
.feat-card:hover .feat-card__img { transform: scale(1.06); }

.feat-card__body { padding: var(--sp-sm) var(--sp-sm) var(--sp-md); }

.feat-card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .97rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.feat-card__text {
  color: var(--text-soft);
  font-size: .87rem;
  line-height: 1.6;
}

/* ── 10. FOR WHOM ─────────────────────────────────────────── */
.for-whom {
  padding: var(--sp-xl) var(--sp-md);
  background: var(--page-bg);
}

.for-whom__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-xl);
}

.for-whom__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  line-height: 1.28;
  margin-bottom: var(--sp-sm);
}

.for-whom__intro {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: var(--sp-md);
  line-height: 1.7;
}

.for-whom__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-md);
}

.for-whom__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: .95rem;
  color: var(--text-mid);
}

.for-whom__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: var(--radius-full);
  background: var(--tone-support-pale);
  position: relative;
  top: 1px;
}
.for-whom__check::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-44%, -56%) rotate(45deg);
  width: 5px; height: 9px;
  border-right: 2px solid var(--tone-support-mid);
  border-bottom: 2px solid var(--tone-support-mid);
}

.for-whom__images {
  position: relative;
  height: 460px;
}

.for-whom__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.for-whom__img-main img { width: 100%; height: 100%; object-fit: cover; }

.for-whom__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--card-bg);
}
.for-whom__img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ── 11. PRODUCT SPOTLIGHT ───────────────────────────────── */
.product-spotlight {
  position: relative;
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 40%, #006064 100%);
  color: #fff;
  padding: var(--sp-xl) var(--sp-md);
  overflow: hidden;
}

/* Decorative circles */
.product-spotlight::before,
.product-spotlight::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
}
.product-spotlight::before {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(100,181,246,.18), transparent 65%);
}
.product-spotlight::after {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(128,203,196,.15), transparent 65%);
}

.product-spotlight__wave-top,
.product-spotlight__wave-bot { line-height: 0; }
.product-spotlight__wave-top { margin-bottom: var(--sp-md); }
.product-spotlight__wave-bot { margin-top: var(--sp-md); }

.product-spotlight__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-xl);
}

.product-spotlight__image-col { display: flex; justify-content: center; align-items: center; }

.product-spotlight__img-frame {
  position: relative;
  width: min(400px, 100%);
}

.product-spotlight__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  transition: transform .4s var(--ease-out);
}
.product-spotlight__img:hover { transform: scale(1.02) rotate(-1deg); }

.product-spotlight__badge-price {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--tone-cta);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(230,74,25,.45);
  text-align: center;
}

.product-spotlight__price-val {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}

.product-spotlight__price-lbl {
  font-size: .72rem;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-spotlight__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.product-spotlight__desc {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.product-spotlight__specs {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-md);
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(6px);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: .92rem;
}
.spec-row:last-child { border-bottom: none; }

.spec-row__label  { color: rgba(255,255,255,.7); font-weight: var(--fw-semibold); }
.spec-row__value  { color: #fff; font-weight: var(--fw-bold); }
.spec-row__value--price {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--pastel-peach);
}

.product-spotlight__note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-sm);
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}

/* ── 12. DAILY ROUTINE ───────────────────────────────────── */
.daily-routine {
  padding: var(--sp-xl) var(--sp-md);
  background: var(--page-bg);
}

.daily-routine__wrap { max-width: var(--max-w); margin: 0 auto; }

.daily-routine__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-lg);
}

.daily-routine__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: var(--sp-sm);
}

.daily-routine__sub {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.daily-routine__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.routine-step {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,.07);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.routine-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Decorative top accent */
.routine-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tone-main-mid), var(--tone-support-mid));
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.routine-step__num {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: 3rem;
  color: var(--tone-main-pale);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  letter-spacing: -.02em;
}

.routine-step__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
}

.routine-step__text {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.65;
}

.daily-routine__disclaimer-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  background: var(--pastel-lemon);
  border: 1px solid #F9A825;
  border-radius: var(--radius-sm);
  padding: var(--sp-sm) var(--sp-md);
  max-width: 680px;
  margin: 0 auto;
  color: #6D4C00;
  font-size: .88rem;
  line-height: 1.6;
}
.daily-routine__disclaimer-note svg { flex-shrink: 0; margin-top: 2px; color: #F57F17; }

/* ── 13. SOCIAL PROOF ────────────────────────────────────── */
.social-proof {
  padding: var(--sp-xl) var(--sp-md);
  background: linear-gradient(180deg, #EBF5FF 0%, var(--page-bg) 100%);
}

.social-proof__wrap { max-width: var(--max-w); margin: 0 auto; }

.social-proof__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--sp-lg);
}

.social-proof__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.review-card__stars {
  color: #FFC107;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card__quote {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(21,101,192,.08);
}

.review-card__avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--tone-main-pale), var(--tone-support-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: .78rem;
  color: var(--tone-main-mid);
}

.review-card__name {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .88rem;
  color: var(--text-dark);
}

.review-card__meta {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-xl);
  padding: var(--sp-md);
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,.07);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: .88rem;
  color: var(--text-mid);
}
.trust-strip__item svg { color: var(--tone-main-mid); }

/* ── 14. FAQ BLOCK ───────────────────────────────────────── */
.faq-block {
  padding: var(--sp-xl) var(--sp-md);
  background: var(--page-bg);
}

.faq-block__wrap { max-width: 760px; margin: 0 auto; }

.faq-block__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.faq-block__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
}

.faq-block__sub {
  color: var(--text-soft);
  font-size: 1rem;
}

.faq-block__list { display: flex; flex-direction: column; gap: var(--sp-xs); }

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(21,101,192,.10);
  overflow: hidden;
  transition: box-shadow .22s;
}
.faq-item:has(.faq-item__trigger[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--tone-main-pale);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .97rem;
  color: var(--text-dark);
  transition: background .18s, color .18s;
}
.faq-item__trigger:hover,
.faq-item__trigger[aria-expanded="true"] {
  background: var(--tone-main-pale);
  color: var(--tone-main-mid);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--tone-main-mid);
  transition: transform .3s var(--ease-smooth);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }

.faq-item__panel {
  padding: 0 var(--sp-md) var(--sp-md);
  font-size: .94rem;
  color: var(--text-mid);
  line-height: 1.7;
  animation: panelReveal .28s var(--ease-smooth);
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 15. ORDER ZONE ──────────────────────────────────────── */
.order-zone {
  position: relative;
  padding: var(--sp-xl) var(--sp-md);
  background: linear-gradient(135deg, var(--tone-support-pale) 0%, var(--tone-main-pale) 100%);
  overflow: hidden;
}

.order-zone::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 440px; height: 440px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(0,121,107,.12), transparent 70%);
  pointer-events: none;
}

.order-zone__wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-xl);
}

.order-zone__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.order-zone__sub {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.order-zone__perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.order-perk {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: .92rem;
  color: var(--text-mid);
}
.order-perk svg { color: var(--tone-support-mid); flex-shrink: 0; }

/* Order form card */
.order-form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(21,101,192,.10);
}

.order-form-card__head {
  background: linear-gradient(135deg, var(--tone-main-mid), var(--tone-main));
  padding: var(--sp-md) var(--sp-md) var(--sp-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.order-form-card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: 1.25rem;
  color: #fff;
}

.order-form-card__price-wrap { text-align: right; }

.order-form-card__price {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: 1.5rem;
  color: var(--pastel-peach);
  line-height: 1;
}

.order-form-card__qty {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  font-weight: var(--fw-semibold);
}

.order-form { padding: var(--sp-md); display: flex; flex-direction: column; gap: var(--sp-sm); }

.order-form__field { display: flex; flex-direction: column; gap: 6px; }

.order-form__label {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .85rem;
  color: var(--text-dark);
}

.order-form__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--page-bg);
  border: 2px solid rgba(21,101,192,.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.order-form__input:focus {
  border-color: var(--tone-main-mid);
  box-shadow: 0 0 0 3px rgba(25,118,210,.14);
}
.order-form__input::placeholder { color: var(--text-light); }
.order-form__input.has-error { border-color: #E53935; }

.order-form__err {
  font-size: .78rem;
  color: #E53935;
  min-height: 16px;
}

.order-form__consent {
  font-size: .76rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.55;
}
.order-form__consent a {
  color: var(--tone-main-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 16. CONTACT BAND ────────────────────────────────────── */
.contact-band {
  padding: var(--sp-xl) var(--sp-md);
  background: var(--page-bg);
  text-align: center;
}

.contact-band__wrap { max-width: var(--max-w); margin: 0 auto; }

.contact-band__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
}

.contact-band__sub {
  color: var(--text-soft);
  margin-bottom: var(--sp-lg);
  font-size: 1rem;
}

.contact-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,.07);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s;
  text-align: left;
}
a.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.contact-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--tone-main-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main-mid);
}

.contact-card__label {
  display: block;
  font-size: .72rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-soft);
  margin-bottom: 3px;
}

.contact-card__value {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .92rem;
  color: var(--text-dark);
}

/* ── 17. SITE FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #0D1F3C;
  color: var(--text-on-dark);
  padding: var(--sp-xl) var(--sp-md) var(--sp-md);
}

.site-footer__wrap { max-width: var(--max-w); margin: 0 auto; }

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: var(--sp-md);
}

.site-footer__tagline {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin-top: var(--sp-sm);
  line-height: 1.6;
}

.site-footer__nav-heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tone-main-lt);
  margin-bottom: var(--sp-sm);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.site-footer__nav-link {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .18s;
}
.site-footer__nav-link:hover { color: var(--tone-support-lt); }

.site-footer__contact-link {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .18s;
}
.site-footer__contact-link:hover { color: var(--tone-support-lt); }

.site-footer__addr {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  margin-top: var(--sp-xs);
}

.site-footer__bottom { text-align: center; }

.site-footer__disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ── 18. SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 19. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand-pillars__grid       { grid-template-columns: repeat(3, 1fr); }
  .feature-cards__grid       { grid-template-columns: repeat(2, 1fr); }
  .for-whom__wrap            { gap: var(--sp-lg); }
  .product-spotlight__wrap   { gap: var(--sp-lg); }
  .daily-routine__steps      { grid-template-columns: 1fr; }
  .order-zone__wrap          { grid-template-columns: 1fr; }
  .contact-band__grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .site-footer__top          { grid-template-columns: 1fr 1fr; }
  .social-proof__grid        { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto var(--sp-xl); }
}

@media (max-width: 768px) {
  :root { --sp-lg: 40px; --sp-xl: 64px; }

  .site-header__nav,
  .site-header__phone { display: none; }
  .site-header__cta-btn { display: none; }
  .site-header__burger { display: flex; }
  .site-header__mobile-nav { position: absolute; top: var(--header-h); left: 0; right: 0; z-index: 100; }
  .site-header__mobile-nav--open { display: flex; }

  .hero-zone__stats { gap: var(--sp-md); }

  .brand-pillars__grid { grid-template-columns: 1fr; }
  .feature-cards__grid { grid-template-columns: 1fr; }

  .for-whom__wrap { grid-template-columns: 1fr; }
  .for-whom__images { height: 280px; }

  .product-spotlight__wrap { grid-template-columns: 1fr; }
  .product-spotlight__badge-price { right: 50%; transform: translateX(50%); bottom: -24px; }
  .product-spotlight__image-col { padding-bottom: var(--sp-lg); }

  .daily-routine__steps { grid-template-columns: 1fr; }

  .social-proof__grid { grid-template-columns: 1fr; margin-left: 0; }

  .order-zone__wrap { grid-template-columns: 1fr; }

  .contact-band__grid { grid-template-columns: 1fr; max-width: 100%; }

  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-md); }

  .trust-strip { gap: var(--sp-md); }
}

@media (max-width: 480px) {
  :root { --sp-xl: 48px; }
  .hero-zone__heading { font-size: 2rem; }
  .hero-zone__stats { flex-wrap: wrap; justify-content: center; gap: var(--sp-sm); }
  .hero-zone__actions { flex-direction: column; align-items: center; }
  .btn-cta { width: 100%; max-width: 320px; }
  .for-whom__images { height: 200px; }
  .trust-strip { flex-direction: column; align-items: center; }
}
