/*
  Dermdex – style.css
  Architecture: Section-scoped semantic CSS
  Token family: --brand / --brand-alt / --highlight
  Typography: Montserrat + Source Sans 3
  Theme: Premium Minimal | Deep Navy + Teal + Gold
*/

/* =====================================================
   1. TOKENS & RESET
   ===================================================== */

:root {
  /* Brand palette */
  --brand:          #1e3a5f;
  --brand-dark:     #142840;
  --brand-light:    #2c5282;
  --brand-alt:      #2a7f6f;
  --brand-alt-dark: #1f5f53;
  --brand-alt-light:#38a894;
  --highlight:      #c9883a;
  --highlight-light:#e0a84e;

  /* Neutral palette */
  --white:          #ffffff;
  --off-white:      #f7f9fc;
  --surface:        #eef2f8;
  --border:         #d8e2ef;
  --text-primary:   #111827;
  --text-body:      #374151;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(30, 58, 95, 0.09);
  --shadow-lift: 0 8px 40px rgba(30, 58, 95, 0.14);
  --shadow-brand: 0 4px 20px rgba(30, 58, 95, 0.22);

  /* Layout */
  --container-max: 1180px;
  --header-h: 70px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 220ms;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

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

ul, ol {
  list-style: none;
}

/* =====================================================
   2. UTILITIES
   ===================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-alt);
  margin-bottom: var(--sp-3);
}

.section-label--light {
  color: var(--brand-alt-light);
}

.section-header {
  margin-bottom: var(--sp-10);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   3. BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.8em 2em;
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--highlight);
  color: var(--white);
  border-color: var(--highlight);
  box-shadow: 0 4px 18px rgba(201, 136, 58, 0.35);
}

.btn--primary:hover {
  background: var(--highlight-light);
  border-color: var(--highlight-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 136, 58, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: var(--white);
}

.btn--header {
  background: var(--highlight);
  color: var(--white);
  padding: 0.55em 1.4em;
  font-size: 0.85rem;
  border-color: var(--highlight);
}

.btn--header:hover {
  background: var(--highlight-light);
}

.btn--lg {
  font-size: 1rem;
  padding: 0.9em 2.4em;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.55em 1.3em;
}

.btn--full {
  width: 100%;
}

/* =====================================================
   4. HEADER
   ===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}

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

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.site-header__brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.site-header__nav a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color var(--dur) var(--ease);
}

.site-header__nav a:not(.btn):hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   5. HERO
   ===================================================== */

.hero-block {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-block__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 40, 64, 0.88) 0%,
    rgba(20, 40, 64, 0.70) 50%,
    rgba(20, 40, 64, 0.35) 100%
  );
}

.hero-block__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding-block: var(--sp-20);
}

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

.hero-block__tag {
  display: inline-block;
  background: rgba(42, 127, 111, 0.25);
  border: 1px solid rgba(56, 168, 148, 0.4);
  color: var(--brand-alt-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}

.hero-block__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  color: var(--white);
}

.hero-block__title em {
  font-style: normal;
  color: var(--highlight-light);
}

.hero-block__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

.hero-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.hero-block__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: var(--radius-pill);
}

.trust-chip svg {
  color: var(--brand-alt-light);
  flex-shrink: 0;
}

.hero-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-block__product-wrap {
  position: relative;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45));
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease);
}

.hero-block__product-wrap:hover {
  transform: rotate(-1deg) scale(1.03);
}

.hero-block__product-img {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

/* =====================================================
   6. TRUST STRIP
   ===================================================== */

.trust-strip {
  background: var(--brand);
  padding-block: var(--sp-6);
}

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

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--white);
}

.trust-strip__item svg {
  color: var(--brand-alt-light);
  flex-shrink: 0;
}

.trust-strip__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--white);
}

.trust-strip__item span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   7. AUDIENCE BLOCK
   ===================================================== */

.audience-block {
  padding-block: var(--sp-20);
  background: var(--off-white);
}

.audience-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.audience-block__img-stack {
  position: relative;
}

.audience-block__img--main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.audience-block__img-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: calc(-1 * var(--sp-5));
  background: var(--brand);
  color: var(--white);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-brand);
}

.audience-block__img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--highlight-light);
}

.audience-block__img-badge span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.audience-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.audience-checklist__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brand-alt);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.audience-checklist__item strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}

.audience-checklist__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.audience-wellness-card {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--brand-alt);
}

.audience-wellness-card__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.audience-wellness-card__text strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}

.audience-wellness-card__text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =====================================================
   8. PRODUCT BLOCK
   ===================================================== */

.product-block {
  padding-block: var(--sp-20);
  background: var(--white);
}

.product-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.product-block__img-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-block__img {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-inline: auto;
  filter: drop-shadow(0 16px 48px rgba(30,58,95,0.18));
}

.product-block__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(42, 127, 111, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}

.product-stats__item {
  text-align: center;
  padding: var(--sp-3);
}

.product-stats__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
}

.product-stats__item span {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
}

.product-block__lead {
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.product-features__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.feature-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.feature-dot--brand { background: var(--brand); }
.feature-dot--alt   { background: var(--brand-alt); }

.product-features__item strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 2px;
}

.product-features__item p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.product-block__note {
  margin-top: var(--sp-4);
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

/* =====================================================
   9. ROUTINE BLOCK
   ===================================================== */

.routine-block {
  padding-block: var(--sp-20);
  background: var(--brand);
  color: var(--white);
}

.routine-block .section-label {
  color: var(--brand-alt-light);
}

.routine-block .section-title {
  color: var(--white);
}

.routine-block .section-desc {
  color: rgba(255,255,255,0.75);
}

.routine-block__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.routine-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.routine-step {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.routine-step__num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-alt-light);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.routine-step__body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.routine-step__body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.routine-block__img-col {
  position: relative;
}

.routine-block__img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  opacity: 0.85;
}

/* =====================================================
   10. LIFESTYLE CARDS
   ===================================================== */

.lifestyle-block {
  padding-block: var(--sp-20);
  background: var(--off-white);
}

.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.lifestyle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lifestyle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.lifestyle-card--featured {
  border: 2px solid var(--brand-alt);
}

.lifestyle-card__img-wrap {
  height: 220px;
  overflow: hidden;
}

.lifestyle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.lifestyle-card:hover .lifestyle-card__img {
  transform: scale(1.04);
}

.lifestyle-card__body {
  padding: var(--sp-6);
  position: relative;
}

.lifestyle-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  color: var(--brand);
  margin-bottom: var(--sp-3);
}

.lifestyle-card__icon--alt {
  background: rgba(42, 127, 111, 0.12);
  color: var(--brand-alt);
}

.lifestyle-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}

.lifestyle-card__body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.lifestyle-card__badge {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  background: var(--brand-alt);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
}

/* =====================================================
   11. REVIEWS BLOCK
   ===================================================== */

.reviews-block {
  padding-block: var(--sp-20);
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-7, 1.75rem);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-card--featured {
  background: var(--brand);
  border-color: var(--brand);
}

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

.review-card__stars svg {
  width: 17px;
  height: 17px;
  color: var(--highlight);
}

.review-card__stars svg.star-empty {
  color: var(--border);
}

.review-card--featured .review-card__stars svg {
  color: var(--highlight-light);
}

.review-card__quote {
  font-size: 0.91rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.review-card--featured .review-card__quote {
  color: rgba(255,255,255,0.9);
}

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

.review-card__initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-alt);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card--featured .review-card__initials {
  background: rgba(255,255,255,0.2);
}

.review-card__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
}

.review-card--featured .review-card__author strong {
  color: var(--white);
}

.review-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card--featured .review-card__author span {
  color: rgba(255,255,255,0.65);
}

.reviews-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  max-width: 560px;
  margin-inline: auto;
}

/* =====================================================
   12. FAQ BLOCK
   ===================================================== */

.faq-block {
  padding-block: var(--sp-20);
  background: var(--surface);
}

.faq-block__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.faq-item.is-open {
  border-color: var(--brand-alt);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  transition: color var(--dur) var(--ease);
}

.faq-item.is-open .faq-item__trigger {
  color: var(--brand-alt);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--text-muted);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  color: var(--brand-alt);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__body {
  overflow: hidden;
  padding: 0 var(--sp-6);
}

.faq-item.is-open .faq-item__body {
  padding-bottom: var(--sp-5);
}

.faq-item__body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* =====================================================
   13. ORDER BLOCK
   ===================================================== */

.order-block {
  padding-block: var(--sp-20);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  color: var(--white);
}

.order-block__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: center;
}

.order-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

.order-block__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--sp-6);
}

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

.order-block__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 500;
}

.order-block__perks li svg {
  color: var(--brand-alt-light);
  flex-shrink: 0;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.order-card__img {
  width: 160px;
  margin: 0 auto var(--sp-5);
  filter: drop-shadow(0 8px 24px rgba(30,58,95,0.15));
}

.order-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: var(--sp-2);
}

.order-card__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.order-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.order-card__note {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}

/* =====================================================
   14. COMPANY / CONTACT BLOCK
   ===================================================== */

.company-block {
  padding-block: var(--sp-12);
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.company-block__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.company-block__logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.company-block__logo-area strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
}

.company-block__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.company-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--text-body);
}

.company-detail svg {
  color: var(--brand-alt);
  flex-shrink: 0;
  margin-top: 2px;
}

.company-detail a:hover {
  color: var(--brand-alt);
}

.company-block__reassurance {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-alt);
}

/* =====================================================
   15. FOOTER
   ===================================================== */

.site-footer {
  background: var(--brand-dark);
  color: var(--white);
}

.site-footer__inner {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-10);
  align-items: start;
}

.site-footer__brand .site-header__logo {
  margin-bottom: var(--sp-4);
}

.site-footer__brand .site-header__brand {
  color: var(--white);
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 380px;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-2);
}

.site-footer__legal a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
}

.site-footer__legal a:hover {
  color: var(--brand-alt-light);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--sp-5);
}

.site-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* =====================================================
   16. COOKIE BANNER
   ===================================================== */

.cookie-banner {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 1000;
  background: var(--brand-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  width: min(94vw, 640px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s var(--ease);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--brand-alt-light);
  text-decoration: underline;
}

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

/* =====================================================
   17. RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-block__grid {
    grid-template-columns: 1fr;
  }

  .audience-block__img-stack {
    max-width: 480px;
    margin-inline: auto;
  }

  .product-block__inner {
    grid-template-columns: 1fr;
  }

  .product-block__visual {
    text-align: center;
  }

  .routine-block__layout {
    grid-template-columns: 1fr;
  }

  .faq-block__inner {
    grid-template-columns: 1fr;
  }

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

  .order-card {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .company-block__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .company-block__logo-area {
    flex-direction: row;
    justify-content: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .site-header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--sp-6);
    gap: var(--sp-4);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease);
    z-index: 800;
    box-shadow: var(--shadow-card);
  }

  .site-header__nav.is-open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-block__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-block__visual {
    order: -1;
  }

  .hero-block__product-img {
    max-width: 200px;
  }

  .hero-block__actions {
    justify-content: center;
  }

  .hero-block__trust {
    justify-content: center;
  }

  .lifestyle-cards {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .section-header--center {
    margin-bottom: var(--sp-8);
  }

  .audience-block,
  .product-block,
  .routine-block,
  .lifestyle-block,
  .reviews-block,
  .faq-block,
  .order-block {
    padding-block: var(--sp-16);
  }

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

  .site-footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-4);
  }
}

@media (max-width: 480px) {
  .hero-block__title { font-size: 1.9rem; }

  .product-stats {
    grid-template-columns: 1fr;
  }

  .audience-block__img-badge {
    right: 0;
  }
}
