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

:root {
  --color-indigo: #1a1f3c;
  --color-indigo-deep: #0f1228;
  --color-indigo-mid: #232a50;
  --color-indigo-light: #2e3660;
  --color-gold: #c8a84b;
  --color-gold-light: #e0be70;
  --color-mint: #4db89b;
  --color-mint-light: #6fcab0;
  --color-warm-gray: #8e8a82;
  --color-warm-gray-light: #b5b0a8;
  --color-white: #f5f3ef;
  --color-off-white: #ede9e2;
  --color-text-main: #e8e4dc;
  --color-text-muted: #a09b92;
  --color-text-dark: #1a1f3c;
  --color-section-alt: #1e2444;
  --radius: 4px;
  --max-w: 1440px;
  --container: 90%;
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--color-indigo);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Barlow', sans-serif;
  line-height: 1.2;
  color: var(--color-white);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--color-text-main); line-height: 1.7; }
a { color: var(--color-gold); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--color-gold-light); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; line-height: 1.6; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(15, 18, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo-text span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
  background: rgba(200, 168, 75, 0.08);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-indigo-deep);
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(200, 168, 75, 0.15);
  }

  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.75rem 1rem; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) saturate(0.7);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,40,0.85) 0%, rgba(15,18,40,0.4) 60%, rgba(15,18,40,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 680px; }

.hero-badge {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(200,168,75,0.4);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-wrap: balance;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-main);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrap img {
  width: 85%;
  max-width: 360px;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,168,75,0.15);
  position: relative;
  z-index: 1;
}

.hero-image-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}

.hero-self-treat {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
  }
  .hero-image-wrap { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-indigo-deep);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-indigo-deep);
  box-shadow: 0 8px 25px rgba(200,168,75,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-main);
  border-color: rgba(200,168,75,0.4);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(200,168,75,0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
  padding: 0.85rem 1.25rem;
}
.btn-ghost:hover { color: var(--color-gold); }

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--color-section-alt);
}

.section-dark {
  background-color: var(--color-indigo-deep);
}

.section-label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered { text-align: center; }

.section-header h2 {
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin: 1rem 0 1.5rem;
}

.section-header.centered .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.problem-card:hover {
  border-color: rgba(200,168,75,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,168,75,0.1);
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
}

.problem-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.problem-transition {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===== TWO-COLUMN SPLIT ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.split-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  border-radius: 0 0 6px 0;
  pointer-events: none;
}

.split-image-accent-tl {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-left: 2px solid var(--color-gold);
  border-top: 2px solid var(--color-gold);
  border-radius: 6px 0 0 0;
  pointer-events: none;
}

.split-text { padding: 1rem 0; }

.principles-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.principles-list li:last-child { border-bottom: none; }

.principles-list .check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(77,184,155,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.principles-list .check svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-mint);
  fill: none;
}

.principles-list span { font-size: 0.95rem; color: var(--color-text-main); }

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }
  .split-section.reverse { direction: ltr; }
  .split-image img { height: 280px; }
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.92rem;
}

.comparison-table th {
  background: rgba(200,168,75,0.12);
  color: var(--color-gold);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(200,168,75,0.25);
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--color-text-main);
  vertical-align: top;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.comparison-table td .yes { color: var(--color-mint); font-weight: 600; }
.comparison-table td .standard { color: var(--color-text-muted); }
.comparison-table-wrap { overflow-x: auto; }

/* ===== INGREDIENTS GRID ===== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.ingredient-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

.ingredient-card:hover {
  border-color: var(--color-mint);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ingredient-icon {
  width: 52px;
  height: 52px;
  background: rgba(77,184,155,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ingredient-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-mint);
  fill: none;
}

.ingredient-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ingredient-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.gmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77,184,155,0.1);
  border: 1px solid rgba(77,184,155,0.3);
  color: var(--color-mint);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-top: 2.5rem;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 6px 6px 0;
  padding: 1.75rem 1.5rem;
  transition: border-left-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.benefit-card:hover {
  border-left-color: var(--color-mint);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,168,75,0.1);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
}

.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

/* ===== SOCIAL PROOF ===== */
.social-proof-section {
  background-color: var(--color-indigo-deep);
  position: relative;
}

.rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.rating-number {
  font-family: 'Barlow', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.rating-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
  border-color: rgba(200,168,75,0.25);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-author {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.review-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 1.5rem;
}

.how-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold), transparent);
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--color-indigo-mid);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.timeline-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

@media (max-width: 600px) {
  .how-timeline::before { display: none; }
}

/* ===== FAQ ===== */
.faq-list { margin-top: 1.5rem; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text-main);
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(200,168,75,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.25s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  background: rgba(200,168,75,0.2);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===== PRINCIPLES BLOCK ===== */
.principles-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.principles-block-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200,168,75,0.15);
}

.principles-block h3 {
  font-size: 1.25rem;
  color: var(--color-gold);
}

.principles-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.principle-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(200,168,75,0.2);
  line-height: 1;
  min-width: 40px;
}

.principle-item h4 { color: var(--color-white); margin-bottom: 0.35rem; }
.principle-item p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-indigo-deep);
  border-top: 1px solid rgba(200,168,75,0.1);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  padding: 3rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-align: left;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,75,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
}

.trust-item-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.trust-item-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background-image: url('../images/wellness-lifestyle.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 30, 0.88);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 { margin-bottom: 1.25rem; }
.final-cta p { color: var(--color-text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.edu-message {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mint);
  border: 1px solid rgba(77,184,155,0.3);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--color-indigo-deep);
  border-top: 1px solid rgba(200,168,75,0.15);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.footer-brand h3 span { color: var(--color-gold); }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-edu-msg {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mint);
  border: 1px solid rgba(77,184,155,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
  min-width: 16px;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-hours {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-hours strong {
  color: var(--color-gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  margin-top: 1rem;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== HERO IMAGE STRIP ===== */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 320px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.35s ease;
}

.image-strip img:hover { filter: brightness(0.9) saturate(1); }

@media (max-width: 768px) {
  .image-strip { grid-template-columns: 1fr; height: 220px; }
  .image-strip img:not(:first-child) { display: none; }
}

/* ===== FULL-WIDTH IMAGE BANNER ===== */
.full-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}

.full-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,18,40,0.8) 0%, rgba(15,18,40,0.2) 100%);
  display: flex;
  align-items: center;
}

.full-banner-text {
  color: var(--color-white);
  max-width: 560px;
  padding: 2rem;
}

.full-banner-text h2 { margin-bottom: 0.75rem; }
.full-banner-text p { color: var(--color-text-muted); margin: 0; }

@media (max-width: 768px) {
  .full-banner { height: 280px; }
}

/* ===== LIMITATION BLOCK ===== */
.limitation-block {
  background: rgba(77,184,155,0.05);
  border: 1px solid rgba(77,184,155,0.2);
  border-left: 3px solid var(--color-mint);
  border-radius: 0 6px 6px 0;
  padding: 1.75rem 2rem;
  margin-top: 4rem;
}

.limitation-block h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 0.875rem;
}

.limitation-block p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.limitation-block p:last-child { margin-bottom: 0; }

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--color-indigo-deep);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid rgba(200,168,75,0.12);
}

.policy-hero h1 { margin-bottom: 0.75rem; }
.policy-hero p { color: var(--color-text-muted); max-width: 560px; }

.policy-content {
  padding: 4rem 0 6rem;
  max-width: 860px;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.policy-content h2:first-child { border-top: none; margin-top: 0; }

.policy-content h3 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin: 1.5rem 0 0.625rem;
}

.policy-content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.policy-content ul, .policy-content ol {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.5rem 0;
}

.policy-table th {
  background: rgba(200,168,75,0.1);
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.policy-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--color-text-muted);
  vertical-align: top;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 9rem 0 5rem;
  background: var(--color-indigo-deep);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(200,168,75,0.02);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.about-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

.timeline-list li {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.timeline-list li:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--color-indigo);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  z-index: 1;
  margin-top: 2px;
}

.timeline-list-content h4 { color: var(--color-gold); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; }
.timeline-list-content p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-top: 3px solid var(--color-gold);
  border-radius: 0 0 6px 6px;
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-image img { height: 300px; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 8rem 0 4rem;
  background: var(--color-indigo-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  padding: 4rem 0 6rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  min-width: 20px;
  margin-top: 2px;
}

.contact-detail-text h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.25rem; }
.contact-detail-text p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrap h3 { margin-bottom: 0.5rem; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 0.875rem 1rem;
  background: rgba(77,184,155,0.05);
  border-left: 2px solid var(--color-mint);
  border-radius: 0 4px 4px 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--color-text-main);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  background: rgba(200,168,75,0.04);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-indigo-deep);
  text-align: center;
  padding: 6rem 2rem;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(77,184,155,0.1);
  border: 2px solid var(--color-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-mint);
  fill: none;
}

.thank-you-content h1 { margin-bottom: 1rem; }
.thank-you-content p { color: var(--color-text-muted); max-width: 480px; margin: 0 auto 0.75rem; }
.thank-you-content .btn { margin-top: 2rem; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-indigo-deep);
  border-top: 1px solid rgba(200,168,75,0.25);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-text a { color: var(--color-gold); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.cookie-btn-accept {
  background: var(--color-gold);
  color: var(--color-indigo-deep);
  border-color: var(--color-gold);
}

.cookie-btn-accept:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text-muted);
  border-color: rgba(255,255,255,0.15);
}

.cookie-btn-reject:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text-main);
}

.cookie-btn-learn {
  background: transparent;
  color: var(--color-gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.cookie-btn-learn:hover { color: var(--color-gold-light); }

/* ===== UTILITY ===== */
.text-gold { color: var(--color-gold); }
.text-mint { color: var(--color-mint); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 0.625rem 0.75rem; font-size: 0.82rem; }
  .trust-items { gap: 1.5rem; }
  .principles-block { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
