/* ==========================================================
   OCULARIX COMBI – Welliko
   CSS Architecture: Section-scoped semantic
   Token family: --tone-main / --tone-support / --tone-cta
   Typography: DM Serif Display + DM Sans
   Color style: Soft gradient trust palette
   ========================================================== */

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--tone-text);
  background: var(--tone-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --tone-main:        #2E7D9A;
  --tone-main-dark:   #1B5E76;
  --tone-main-light:  #4AACB8;
  --tone-support:     #E8F6F8;
  --tone-support-mid: #C8E9EE;
  --tone-cta:         #2E7D9A;
  --tone-cta-hover:   #1B5E76;
  --tone-accent:      #F4A823;
  --tone-bg:          #FAFCFD;
  --tone-surface:     #FFFFFF;
  --tone-text:        #1a3040;
  --tone-text-mid:    #3d5a6e;
  --tone-text-soft:   #6b8898;
  --tone-border:      #DDE9EE;

  /* Spacing scale */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   40px;
  --sp-2xl:  64px;
  --sp-3xl:  96px;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(46,125,154,.08);
  --shadow-md:  0 4px 20px rgba(46,125,154,.12);
  --shadow-lg:  0 8px 40px rgba(46,125,154,.16);

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 240ms ease;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tone-main);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  color: var(--tone-text);
  margin-bottom: var(--sp-md);
}

.section-title em {
  font-style: italic;
  color: var(--tone-main);
}

.section-subtitle {
  font-size: 17px;
  color: var(--tone-text-mid);
  max-width: 600px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-main-dark));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform var(--trans-fast), box-shadow var(--trans-base), background var(--trans-base);
  box-shadow: 0 4px 16px rgba(46,125,154,.3);
  text-decoration: none;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--tone-main-light), var(--tone-main));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,154,.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary--lg { padding: 16px 40px; font-size: 16px; }

.btn-primary--full {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 14px 28px;
  border: 2px solid rgba(46,125,154,.3);
  color: var(--tone-main);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: border-color var(--trans-base), background var(--trans-base);
  text-decoration: none;
}

.btn-ghost:hover { border-color: var(--tone-main); background: var(--tone-support); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26,48,64,.97);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__text svg { flex-shrink: 0; margin-top: 2px; color: var(--tone-main-light); }

.cookie-banner__text a { color: var(--tone-main-light); text-decoration: underline; }

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

.cookie-banner__accept {
  padding: 10px 24px;
  background: var(--tone-main);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--trans-fast);
}
.cookie-banner__accept:hover { background: var(--tone-main-light); }

.cookie-banner__decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}
.cookie-banner__decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,252,253,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tone-border);
  transition: box-shadow var(--trans-base);
}

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

.site-header__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.site-header__logo { flex-shrink: 0; }

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

.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tone-text-mid);
  transition: color var(--trans-fast);
}
.site-header__nav a:hover { color: var(--tone-main); }

.site-header__cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-main-dark));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: box-shadow var(--trans-base), transform var(--trans-fast);
  flex-shrink: 0;
}
.site-header__cta:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--sp-sm);
  margin-left: auto;
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tone-text);
  border-radius: 2px;
  transition: transform var(--trans-base), opacity var(--trans-base);
}
.site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--sp-md) var(--sp-xl) var(--sp-lg);
  border-top: 1px solid var(--tone-border);
  gap: var(--sp-md);
}
.site-header__mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--tone-text-mid);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--tone-border);
}
.site-header__mobile-nav a:last-child { border-bottom: none; }
.mobile-cta-link {
  display: inline-block;
  padding: 12px 28px !important;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-main-dark));
  color: #fff !important;
  border-radius: var(--radius-pill);
  text-align: center;
  border-bottom: none !important;
  margin-top: var(--sp-sm);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EAF5F8 0%, #F4FAFB 40%, #FAFCFD 100%);
  padding: var(--sp-3xl) 0 var(--sp-2xl);
}

.hero-section__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74,172,184,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(46,125,154,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.hero-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 8px 16px;
  background: rgba(74,172,184,.12);
  border: 1px solid rgba(74,172,184,.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--tone-main);
  margin-bottom: var(--sp-lg);
}

.hero-section__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--tone-text);
  margin-bottom: var(--sp-lg);
}

.hero-section__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--tone-text-mid);
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}

.hero-section__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.hero-section__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--tone-text-mid);
}

.hero-section__features svg { color: var(--tone-main-light); flex-shrink: 0; }

.hero-section__actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.hero-section__trust {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.hero-section__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tone-text-soft);
}
.hero-section__trust svg { color: var(--tone-main-light); }

.hero-section__visual { position: relative; }

.hero-section__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-section__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.hero-section__product-badge {
  position: absolute;
  bottom: var(--sp-xl);
  left: var(--sp-lg);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--tone-border);
}

.hero-section__product-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.hero-section__product-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--tone-text);
}
.hero-section__product-badge span {
  font-size: 12px;
  color: var(--tone-text-soft);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--tone-surface);
  border-top: 1px solid var(--tone-border);
  border-bottom: 1px solid var(--tone-border);
  padding: var(--sp-lg) 0;
}

.trust-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-lg);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--tone-text-mid);
  white-space: nowrap;
}
.trust-strip__item svg { color: var(--tone-main); }

.trust-strip__sep {
  width: 1px;
  height: 28px;
  background: var(--tone-border);
}

/* ── FOR WHOM ── */
.for-whom {
  padding: var(--sp-3xl) 0;
  background: var(--tone-bg);
}

.for-whom__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.for-whom__intro {
  max-width: 620px;
  margin-bottom: var(--sp-2xl);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.for-whom__card {
  background: var(--tone-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tone-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
}
.for-whom__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.for-whom__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.for-whom__card-body {
  padding: var(--sp-xl);
}
.for-whom__card-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--tone-text);
  margin-bottom: var(--sp-md);
}
.for-whom__card-body p { color: var(--tone-text-mid); font-size: 15px; line-height: 1.7; }

/* ── BENEFITS ── */
.benefits-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(180deg, var(--tone-support) 0%, var(--tone-bg) 100%);
}

.benefits-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.benefits-section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-2xl);
}

.benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.benefit-card {
  background: var(--tone-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--tone-border);
  transition: box-shadow var(--trans-base), transform var(--trans-base), border-color var(--trans-base);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--tone-support-mid);
}

.benefit-card--accent {
  background: linear-gradient(135deg, var(--tone-main) 0%, var(--tone-main-dark) 100%);
  color: #fff;
  border-color: transparent;
}
.benefit-card--accent h3 { color: #fff; }
.benefit-card--accent p { color: rgba(255,255,255,.85); }
.benefit-card--accent .benefit-card__icon { background: rgba(255,255,255,.15); color: #fff; }

.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--tone-support);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main);
  margin-bottom: var(--sp-lg);
}

.benefit-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  color: var(--tone-text);
  margin-bottom: var(--sp-sm);
}
.benefit-card p { font-size: 14px; line-height: 1.7; color: var(--tone-text-mid); }

/* ── PRODUCT SECTION ── */
.product-section {
  padding: var(--sp-3xl) 0;
  background: var(--tone-surface);
}

.product-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.product-section__img-frame {
  position: relative;
  background: linear-gradient(135deg, #EAF5F8, #D0ECF1);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  justify-content: center;
}

.product-section__img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(46,125,154,.2));
}

.product-section__pill {
  position: absolute;
  background: var(--tone-surface);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tone-main);
  box-shadow: var(--shadow-sm);
}
.product-section__pill--top { top: var(--sp-xl); right: var(--sp-lg); }
.product-section__pill--bottom { bottom: var(--sp-xl); left: var(--sp-lg); }

.product-section__lead {
  font-size: 17px;
  color: var(--tone-text-mid);
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.product-section__specs {
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
}

.spec-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-lg);
  padding: 12px var(--sp-lg);
  border-bottom: 1px solid var(--tone-border);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--tone-support); }

.spec-row__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tone-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
}
.spec-row__val { font-size: 15px; color: var(--tone-text); }

.product-section__price-block {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.price-tag {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  color: var(--tone-main);
  line-height: 1;
}
.price-per { font-size: 14px; color: var(--tone-text-soft); margin-top: 4px; display: block; }

.product-section__note {
  font-size: 12px;
  color: var(--tone-text-soft);
  line-height: 1.6;
  padding: var(--sp-md);
  background: var(--tone-support);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--tone-support-mid);
}

/* ── ROUTINE SECTION ── */
.routine-section {
  padding: var(--sp-3xl) 0;
  background: var(--tone-bg);
}

.routine-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.routine-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
}

.routine-section__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.routine-card {
  background: var(--tone-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tone-border);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
  position: relative;
}
.routine-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.routine-card__img-wrap { overflow: hidden; }
.routine-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.routine-card:hover .routine-card__img { transform: scale(1.04); }

.routine-card__num {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--tone-main);
}

.routine-card h3 {
  padding: var(--sp-lg) var(--sp-lg) var(--sp-sm);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  color: var(--tone-text);
}
.routine-card p {
  padding: 0 var(--sp-lg) var(--sp-lg);
  font-size: 14px;
  line-height: 1.65;
  color: var(--tone-text-mid);
}

/* ── REVIEWS ── */
.reviews-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(160deg, #EAF5F8, var(--tone-bg));
}

.reviews-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.reviews-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.review-card {
  background: var(--tone-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--tone-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans-base);
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-card--featured {
  background: linear-gradient(160deg, #EDF8FA, #FAFCFD);
  border-color: var(--tone-support-mid);
  transform: scale(1.02);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-md);
}

.review-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tone-text-mid);
  font-style: italic;
  margin-bottom: var(--sp-lg);
  border: none;
  padding: 0;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-main-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__author strong { display: block; font-size: 14px; color: var(--tone-text); }
.review-card__author span { font-size: 12px; color: var(--tone-text-soft); }

/* ── ORDER SECTION ── */
.order-section {
  padding: var(--sp-3xl) 0;
  background: var(--tone-surface);
}

.order-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.order-section__info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tone-text-mid);
  margin-bottom: var(--sp-xl);
}

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

.reassure-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--tone-text-mid);
}
.reassure-item svg { color: var(--tone-main); flex-shrink: 0; }

.order-form-card {
  background: var(--tone-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--tone-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.order-form-card__header {
  background: linear-gradient(135deg, var(--tone-support) 0%, #DDF0F4 100%);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--tone-border);
}

.order-form-card__product {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.order-form-card__product img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.order-form-card__product strong { display: block; font-size: 15px; font-weight: 700; color: var(--tone-text); }
.order-form-card__product span { font-size: 12px; color: var(--tone-text-soft); }

.order-form-card__price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  color: var(--tone-main);
}

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

.order-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

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

.order-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tone-text);
}
.order-form__field label span { color: var(--tone-cta); }

.order-form__field input,
.order-form__field select {
  padding: 12px 16px;
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--tone-text);
  background: var(--tone-surface);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}
.order-form__field input:focus,
.order-form__field select:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(46,125,154,.12);
}
.order-form__field input.is-error { border-color: #e05252; }

.field-error {
  font-size: 12px;
  color: #e05252;
  display: none;
}
.field-error.is-visible { display: block; }

.order-form__field--check { flex-direction: row; align-items: flex-start; }
.order-form__field--check { flex-direction: column; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  font-size: 13px;
  color: var(--tone-text-mid);
  line-height: 1.6;
  cursor: pointer;
}
.check-label input { margin-top: 3px; accent-color: var(--tone-main); flex-shrink: 0; }
.check-label a { color: var(--tone-main); text-decoration: underline; }

.order-form__disclaimer {
  font-size: 12px;
  color: var(--tone-text-soft);
  text-align: center;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section {
  padding: var(--sp-3xl) 0;
  background: var(--tone-bg);
}

.faq-section__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.faq-section__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

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

.faq-item {
  background: var(--tone-surface);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--trans-base);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.is-open { border-color: var(--tone-support-mid); }

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg) var(--sp-xl);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--tone-text);
  transition: background var(--trans-fast);
}
.faq-item__trigger:hover { background: var(--tone-support); }
.faq-item.is-open .faq-item__trigger { background: var(--tone-support); color: var(--tone-main); }

.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--trans-base);
  color: var(--tone-text-soft);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); color: var(--tone-main); }

.faq-item__body {
  padding: 0 var(--sp-xl) var(--sp-lg);
  font-size: 15px;
  line-height: 1.7;
  color: var(--tone-text-mid);
  border-top: 1px solid var(--tone-border);
  padding-top: var(--sp-lg);
  animation: fadeSlideIn 0.2s ease;
}
.faq-item__body[hidden] { display: none; }

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

/* ── CONTACT ── */
.contact-section {
  padding: var(--sp-3xl) 0;
  background: var(--tone-surface);
  border-top: 1px solid var(--tone-border);
}

.contact-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.contact-section__content p {
  font-size: 16px;
  color: var(--tone-text-mid);
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.contact-detail svg { color: var(--tone-main); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 600; color: var(--tone-text-soft); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 15px; color: var(--tone-text-mid); }
.contact-detail a:hover { color: var(--tone-main); }

.trust-note-card {
  background: linear-gradient(160deg, var(--tone-support), #E0F1F5);
  border: 1px solid var(--tone-support-mid);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.trust-note-card svg { color: var(--tone-main); margin-bottom: var(--sp-md); }
.trust-note-card h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 20px; color: var(--tone-text); margin-bottom: var(--sp-md); }
.trust-note-card p { font-size: 14px; line-height: 1.7; color: var(--tone-text-mid); margin-bottom: var(--sp-md); }
.trust-note-card p:last-child { margin-bottom: 0; }
.trust-note-card em { font-style: normal; font-size: 13px; color: var(--tone-text-soft); }

/* ── FOOTER ── */
.site-footer {
  background: #111e28;
  color: rgba(255,255,255,.75);
}

.site-footer__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

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

.site-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: var(--sp-lg) 0;
  color: rgba(255,255,255,.5);
}
.site-footer__brand address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.5); }
.site-footer__brand address a { color: var(--tone-main-light); }
.site-footer__brand address a:hover { text-decoration: underline; }

.site-footer__nav-block strong {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-lg);
}

.site-footer__nav-block nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.site-footer__nav-block a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--trans-fast);
}
.site-footer__nav-block a:hover { color: var(--tone-main-light); }

.site-footer__bottom {
  padding: var(--sp-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.site-footer__bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.site-footer__legal-note { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.3); }

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .benefits-section__grid { grid-template-columns: repeat(2, 1fr); }
  .routine-section__cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-section__grid { grid-template-columns: 1fr 1fr; }
  .reviews-section__grid .review-card--featured { transform: none; }
  .product-section__container { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
}

@media (max-width: 768px) {
  :root {
    --sp-2xl: 48px;
    --sp-3xl: 64px;
  }

  .site-header__nav,
  .site-header__cta { display: none; }
  .site-header__burger { display: flex; }
  .site-header__mobile-nav { display: flex; }

  .hero-section { padding: 60px 0 var(--sp-2xl); }
  .hero-section__container { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .hero-section__visual { display: none; }
  .hero-section__title { font-size: clamp(30px, 7vw, 42px); }
  .hero-section__trust { gap: var(--sp-md); }

  .trust-strip__sep { display: none; }
  .trust-strip__inner { gap: var(--sp-md); justify-content: flex-start; }

  .for-whom__grid { grid-template-columns: 1fr; }
  .benefits-section__grid { grid-template-columns: 1fr; }
  .routine-section__cards { grid-template-columns: 1fr; }
  .reviews-section__grid { grid-template-columns: 1fr; }
  .review-card--featured { transform: none; }

  .product-section__container { grid-template-columns: 1fr; }
  .product-section__price-block { flex-direction: column; align-items: flex-start; gap: var(--sp-lg); }

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

  .contact-section__container { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-section__actions { flex-direction: column; align-items: flex-start; }
  .hero-section__actions .btn-primary,
  .hero-section__actions .btn-ghost { width: 100%; justify-content: center; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: var(--sp-md); }
}
