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

:root {
  --primary: #006D77;
  --primary-dark: #004d55;
  --primary-light: #007f8a;
  --secondary: #EDF6F9;
  --neutral: #CED4DA;
  --accent-gold: #FFD166;
  --accent-sage: #83C5BE;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --border: #dee2e6;
  --shadow: rgba(0, 109, 119, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--secondary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }

p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover { color: var(--primary-light); }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  height: 68px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.navbar-brand:hover { color: var(--accent-gold); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--accent-sage);
  background: rgba(255,255,255,0.07);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

body { padding-top: 68px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,77,85,0.80) 0%, rgba(0,109,119,0.55) 60%, rgba(0,0,0,0.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,209,102,0.18);
  border: 1px solid rgba(255,209,102,0.45);
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: #f5c137;
  border-color: #f5c137;
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,209,102,0.35);
}

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

.btn-outline:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-teal {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-teal:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--shadow);
}

/* ── SECTION HEADERS ── */
.section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-divider {
  width: 52px;
  height: 3px;
  background: var(--accent-gold);
  margin-bottom: 2rem;
}

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

/* ── BG VARIANTS ── */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-neutral { background-color: var(--neutral); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: #0a2e32; }

.text-white, .bg-primary h1, .bg-primary h2, .bg-primary h3,
.bg-dark h1, .bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

.bg-primary p, .bg-dark p {
  color: rgba(255,255,255,0.82);
}

.bg-primary .section-label { color: var(--accent-sage); }
.bg-primary .section-divider { background: var(--accent-gold); }

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.two-col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.two-col-img:hover img { transform: scale(1.03); }

.two-col-img::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid var(--accent-gold);
  border-left: 4px solid var(--accent-gold);
  z-index: 1;
}

/* ── ICON LIST ── */
.icon-list {
  list-style: none;
  margin: 1.5rem 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.icon-list .icon-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.icon-list .icon-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 3px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  background: #f7fbfc;
}

.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

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

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

/* ── GLOSSARY RAIL ── */
.glossary-rail {
  background: var(--white);
  border-left: 4px solid var(--accent-sage);
  padding: 28px 32px;
  border-radius: 0 3px 3px 0;
}

.glossary-rail h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.glossary-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.glossary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.3rem;
}

.glossary-def {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── THREE-COL SECTION ── */
.three-col-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── INGREDIENT HIGHLIGHT ── */
.ingredient-highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  cursor: help;
  border-bottom: 1px dashed var(--accent-sage);
}

.ingredient-tooltip {
  display: none;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 4px;
  width: 220px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ingredient-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--primary);
}

.ingredient-highlight:hover .ingredient-tooltip { display: block; }

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding: 24px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 16px;
  height: 16px;
  background: var(--accent-gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 24px;
  max-width: 360px;
}

.timeline-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}

.compare-table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  letter-spacing: 0.05em;
}

.compare-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table tr:nth-child(even) td { background: var(--secondary); }
.compare-table tr:last-child td { border-bottom: none; }

.compare-table td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
  transition: color 0.2s ease;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-item.open .faq-icon {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ── MATRIX ── */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.matrix-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.matrix-cell:hover {
  box-shadow: 0 6px 24px var(--shadow);
}

.matrix-cell h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.matrix-badge {
  display: inline-block;
  background: var(--accent-sage);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.matrix-cell p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 5px solid var(--accent-gold);
  padding: 20px 28px;
  background: var(--secondary);
  margin: 2rem 0;
  border-radius: 0 3px 3px 0;
}

.pull-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* ── WIDE CTA SECTION ── */
.wide-cta {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.wide-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.wide-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,77,85,0.72);
}

.wide-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 80px 24px;
}

.wide-cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.wide-cta-content p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── DISCLAIMER BOX ── */
.disclaimer-box {
  background: var(--secondary);
  border: 1px solid var(--accent-sage);
  border-left: 5px solid var(--accent-sage);
  border-radius: 0 3px 3px 0;
  padding: 24px 28px;
  margin: 2rem 0;
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── EDUCATIONAL NOTE ── */
.edu-note {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.edu-note span { color: var(--accent-gold); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 36px var(--shadow);
  transform: translateY(-3px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px 22px 22px;
}

.blog-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

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

.blog-card-body a.read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.blog-card-body a.read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}

.blog-card-body a.read-more:hover {
  color: var(--primary-light);
}

.blog-card-body a.read-more:hover::after {
  transform: translateX(4px);
}

/* ── ARTICLE LAYOUT ── */
.article-header {
  background: var(--primary);
  padding: 80px 0 64px;
}

.article-header h1 { color: var(--white); }
.article-header .section-label { color: var(--accent-sage); }

.article-body {
  max-width: 820px;
}

.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }

.wusstest-box {
  background: var(--secondary);
  border: 1px solid var(--accent-sage);
  border-radius: 3px;
  padding: 20px 24px;
  margin: 1.75rem 0;
  position: relative;
}

.wusstest-box::before {
  content: 'Wussten Sie schon?';
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 0.5rem;
}

.wusstest-box p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

/* ── SIDEBAR TOC ── */
.toc-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
}

.toc-sidebar h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.toc-sidebar ul {
  list-style: none;
}

.toc-sidebar li {
  margin-bottom: 0.6rem;
}

.toc-sidebar a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
}

.toc-sidebar a:hover {
  color: var(--primary);
  border-left-color: var(--accent-sage);
}

/* ── PAGE LAYOUT WITH SIDEBAR ── */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ── CONTACT SPLIT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 0.25rem;
}

/* ── FORM ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px rgba(131,197,190,0.2);
}

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

/* ── WARNING BOX ── */
.warning-box {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px;
  text-align: center;
}

.warning-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.warning-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ── THANK YOU PAGE ── */
.thank-you-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.thank-you-box {
  max-width: 560px;
  text-align: center;
}

.ty-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border: 3px solid var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.ty-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer p { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent-sage); }

.footer-edu-note {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
}

.footer-edu-note p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a2e32;
  border-top: 2px solid var(--accent-gold);
  padding: 20px 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-inner a { color: var(--accent-sage); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.cookie-btn-accept:hover {
  background: #f5c137;
  border-color: #f5c137;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.cookie-btn-more {
  background: transparent;
  color: var(--accent-sage);
  border-color: var(--accent-sage);
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

.cookie-btn-more:hover {
  background: rgba(131,197,190,0.15);
}

/* ── POLICY PAGE ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.4rem; }
.policy-content h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; font-size: 1.1rem; }
.policy-content ul, .policy-content ol { margin: 0 0 1.25rem 1.5rem; }
.policy-content li { margin-bottom: 0.5rem; font-size: 0.97rem; color: var(--text-muted); }

.policy-box {
  background: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 3px;
  padding: 28px 32px;
  margin: 2rem 0;
}

.policy-box h3 {
  margin-top: 0;
  color: var(--primary);
}

/* ── ABOUT VALUES CARDS ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--secondary);
  border-radius: 3px;
  padding: 28px 24px;
  border-top: 3px solid var(--accent-gold);
}

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

/* ── MINDFUL TABLE ── */
.mindful-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.mindful-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}

.mindful-table td {
  padding: 12px 18px;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.mindful-table tr:nth-child(even) td { background: var(--secondary); }
.mindful-table tr:last-child td { border-bottom: none; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent-sage); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }

/* ── INFOGRAPHIC CYCLE ── */
.cycle-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}

.cycle-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cycle-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.cycle-step p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.cycle-step strong { font-family: 'Montserrat', sans-serif; display: block; margin-bottom: 0.25rem; color: var(--primary); font-size: 0.92rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .three-col-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .toc-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .matrix-grid { grid-template-columns: 1fr; }
  .three-col-layout { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .timeline::before { left: 16px; transform: none; }
  .timeline-item, .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 48px;
    padding-right: 0;
  }
  .timeline-dot { left: 16px; transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 2px;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 12px 16px; }
  .navbar-toggle { display: block; }
  .cycle-diagram { grid-template-columns: 1fr; }
}
