@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2E4057;
  --primary-dark: #1e2d3d;
  --primary-light: #3d5470;
  --secondary: #A8DADC;
  --accent-lilac: #E0BBE4;
  --accent-gold: #FFD700;
  --neutral-100: #F8F9FA;
  --neutral-200: #E9ECEF;
  --neutral-300: #DEE2E6;
  --neutral-400: #CED4DA;
  --neutral-500: #ADB5BD;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
  --white: #ffffff;
  --body-bg: #F8F9FA;
  --text-main: #495057;
  --text-heading: #2E4057;
  --border-color: #DEE2E6;
  --shadow-sm: 0 1px 3px rgba(46,64,87,0.08);
  --shadow-md: 0 4px 16px rgba(46,64,87,0.12);
  --shadow-lg: 0 8px 32px rgba(46,64,87,0.16);
  --radius: 4px;
  --radius-lg: 8px;
  --max-width: 1440px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--body-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

p {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.8;
  color: var(--text-main);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-lg {
  padding: 128px 0;
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

.section-light {
  background-color: var(--white);
}

.section-neutral {
  background-color: var(--neutral-100);
}

.section-accent {
  background-color: #f0f8f9;
}

.divider {
  width: 64px;
  height: 3px;
  background-color: var(--secondary);
  margin: 24px 0;
}

.divider-gold {
  background-color: var(--accent-gold);
}

.divider-center {
  margin: 24px auto;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}

.label-dark {
  color: var(--accent-gold);
}

.text-lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--neutral-700);
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo span {
  color: var(--secondary);
}

.logo:hover {
  color: var(--white);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-list a:hover {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}

.nav-list a.active {
  color: var(--secondary);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--primary-dark);
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--secondary);
}

.page-content {
  margin-top: 72px;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,64,87,0.85) 0%, rgba(46,64,87,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 32px 64px;
  width: 100%;
}

.hero-content-inner {
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero h1 span {
  color: var(--secondary);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
  font-style: italic;
  max-width: 500px;
}

.hero-notice {
  display: inline-block;
  background-color: rgba(168, 218, 220, 0.15);
  border: 1px solid rgba(168, 218, 220, 0.4);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-accent {
  border-top: 3px solid var(--secondary);
}

.card-accent-gold {
  border-top: 3px solid var(--accent-gold);
}

.card-accent-lilac {
  border-top: 3px solid var(--accent-lilac);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(168, 218, 220, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ingredient-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.ingredient-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ingredient-card-body {
  padding: 24px;
}

.ingredient-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: rgba(168, 218, 220, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.dosage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 12px;
}

.stat-strip {
  background-color: var(--primary);
  padding: 48px 0;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-img {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: stretch;
}

.two-col-img-reverse {
  grid-template-columns: 45% 55%;
}

.two-col-img .img-side {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.two-col-img .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-img .text-side {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
}

.section-dark .two-col-img .text-side {
  background-color: var(--primary);
}

.full-width-img-section {
  position: relative;
  overflow: hidden;
}

.full-width-img-section img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.img-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46,64,87,0.9) 0%, transparent 100%);
  padding: 48px 32px 32px;
}

.img-caption-overlay p {
  color: var(--white);
  font-style: italic;
  max-width: 600px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent-lilac));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-step {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
}

.timeline-step-dark {
  color: var(--accent-gold);
}

.timeline-h {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.dark-timeline .timeline-h {
  color: var(--white);
}

.dark-timeline .timeline-dot {
  border-color: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--text-main);
  line-height: 1.5;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background-color: var(--neutral-100);
}

.comparison-table td.highlight {
  color: var(--primary);
  font-weight: 600;
}

.comparison-table td.check {
  color: #2e9e6a;
  font-weight: 600;
}

.comparison-table td.neutral {
  color: var(--neutral-600);
}

.faq-list {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: background-color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background-color: var(--neutral-100);
}

.faq-question.active {
  color: var(--primary);
  background-color: rgba(168, 218, 220, 0.08);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-question.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 0 32px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--neutral-700);
}

.faq-answer.open {
  display: block;
}

.faq-answer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--neutral-500);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--neutral-200);
  font-style: italic;
}

.expert-quote {
  border-left: 4px solid var(--secondary);
  padding: 24px 32px;
  background-color: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 24px;
}

.expert-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
}

.expert-cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-600);
  letter-spacing: 0.05em;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--neutral-200);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  flex-shrink: 0;
  margin-top: 8px;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial-duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.info-disclaimer {
  background-color: rgba(168, 218, 220, 0.12);
  border: 1px solid rgba(168, 218, 220, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}

.info-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--neutral-600);
  font-style: italic;
}

.context-disclaimer {
  background-color: var(--neutral-100);
  border-left: 3px solid var(--accent-gold);
  padding: 24px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 48px 0;
}

.context-disclaimer h3 {
  font-size: 0.9rem;
  color: var(--neutral-700);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.context-disclaimer p {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-main {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--secondary);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-notice {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-top: 12px;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-style: italic;
}

.footer-legal {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-legal-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-policies {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-policies a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-policies a:hover {
  color: var(--secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--primary-dark);
  border-top: 2px solid var(--secondary);
  padding: 20px 32px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

.cookie-btn-accept:hover {
  background-color: #8ecfd1;
}

.cookie-btn-refuse {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-refuse:hover {
  background-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--secondary);
  border: none;
  font-weight: 500;
  padding: 10px 12px;
  text-decoration: underline;
  font-size: 0.78rem;
}

.cookie-btn-more:hover {
  color: #8ecfd1;
}

.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px;
}

.policy-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
  color: var(--primary);
}

.policy-page .policy-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--neutral-500);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--secondary);
}

.policy-page h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-200);
  color: var(--primary);
}

.policy-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-page p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.policy-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-page ul li {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 8px;
}

.policy-intro {
  background-color: var(--neutral-100);
  border-left: 4px solid var(--secondary);
  padding: 24px 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 40px;
}

.policy-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.page-hero-simple {
  background-color: var(--primary);
  padding: 80px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-simple::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: rgba(168, 218, 220, 0.06);
}

.page-hero-simple::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(224, 187, 228, 0.06);
}

.page-hero-simple h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero-simple p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

.page-hero-simple .divider {
  margin: 20px auto;
}

.about-dossier {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 96px;
}

.glossary-rail-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
}

.glossary-entry {
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.glossary-entry:last-child {
  border-bottom: none;
}

.glossary-term {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.glossary-def {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-panel {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-info-panel h2 {
  color: var(--white);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(168, 218, 220, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-timeline {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-timeline-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  position: relative;
}

.timeline-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary);
  flex-shrink: 0;
}

.timeline-line-h {
  flex: 1;
  height: 1px;
  background-color: rgba(255,255,255,0.15);
  margin: 0 12px;
}

.timeline-row-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.contact-form-panel {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-form-panel h2 {
  margin-bottom: 8px;
}

.form-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
  padding: 16px;
  background-color: var(--neutral-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-gold);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--body-bg);
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.thank-you-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
}

.thank-you-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: var(--shadow-md);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(168, 218, 220, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 2px solid var(--secondary);
}

.thank-you-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
}

.thank-you-stat {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--neutral-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  background-color: var(--neutral-100);
  border-radius: 20px;
  margin-top: 24px;
}

.intro-section {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  position: relative;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--accent-lilac));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.molecule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 32px 0;
}

.molecule-cell {
  background-color: var(--primary);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.molecule-cell:hover {
  background-color: var(--primary-light);
}

.molecule-cell svg {
  width: 32px;
  height: 32px;
  stroke: rgba(168, 218, 220, 0.5);
  fill: none;
  stroke-width: 1;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 0;
}

.highlight-box {
  background-color: rgba(168, 218, 220, 0.08);
  border: 1px solid rgba(168, 218, 220, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.highlight-box-gold {
  background-color: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
}

.number-list {
  counter-reset: list-counter;
  list-style: none;
  padding: 0;
}

.number-list li {
  counter-increment: list-counter;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.number-list li:last-child {
  border-bottom: none;
}

.number-list li::before {
  content: counter(list-counter, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 3px;
}

.inline-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.inline-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--neutral-200);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-rounded {
  border-radius: var(--radius-lg);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-dossier {
    grid-template-columns: 1fr 240px;
    gap: 48px;
  }
}

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-img {
    grid-template-columns: 1fr;
  }

  .two-col-img .img-side {
    min-height: 300px;
  }

  .two-col-img .text-side {
    padding: 40px 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-dossier {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .glossary-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .glossary-entry {
    padding: 12px 16px;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }

  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 80px 20px 48px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 32px 24px;
  }

  .intro-section {
    padding: 40px 28px;
  }

  .policy-page {
    padding: 40px 20px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 24px 20px;
  }

  .stat-strip .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-text {
    font-size: 0.78rem;
  }

  .thank-you-card {
    padding: 40px 28px;
  }

  .comparison-table {
    font-size: 0.78rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 12px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .stat-number { font-size: 2.2rem; }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .glossary-rail {
    grid-template-columns: 1fr;
  }
}
