@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --sage: #A2B29A;
  --sage-light: #BCC9B6;
  --sage-dark: #7A9070;
  --terracotta: #C87A5B;
  --terracotta-dark: #A85C3E;
  --ocean: #2D5D7C;
  --ocean-dark: #1E4060;
  --cream: #F8F7F3;
  --cream-dark: #EEEAE0;
  --charcoal: #333333;
  --charcoal-light: #555555;
  --charcoal-muted: #777777;
  --white: #FFFFFF;
  --border-light: rgba(162,178,154,0.3);
  --border-medium: rgba(45,93,124,0.2);
  --shadow-soft: 0 4px 24px rgba(45,93,124,0.08);
  --shadow-medium: 0 8px 40px rgba(45,93,124,0.12);
  --shadow-card: 0 2px 16px rgba(51,51,51,0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.28s ease;
  --section-gap: 100px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }
h5 { font-size: 1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

.section { padding: var(--section-gap) 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.text-sage { color: var(--sage-dark); }
.text-terracotta { color: var(--terracotta); }
.text-ocean { color: var(--ocean); }
.text-muted { color: var(--charcoal-muted); }

.bg-cream { background-color: var(--cream); }
.bg-sage { background-color: var(--sage); }
.bg-sage-light { background-color: #EEF1EB; }
.bg-ocean { background-color: var(--ocean); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-white { background-color: var(--white); }

.label-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1.5px solid var(--terracotta);
  border-radius: var(--radius-sm);
}

.label-tag--ocean {
  color: var(--ocean);
  border-color: var(--ocean);
}

.label-tag--sage {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px 0 28px;
  border: none;
  display: block;
}

.divider--ocean { background: var(--ocean); }
.divider--sage { background: var(--sage-dark); }
.divider--center { margin-left: auto; margin-right: auto; }

.btn-primary-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--ocean);
  color: var(--white);
  border: 2px solid var(--ocean);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45,93,124,0.25);
  transform: translateY(-1px);
}

.btn-secondary-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45,93,124,0.2);
  transform: translateY(-1px);
}

.btn-terracotta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200,122,91,0.3);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--ocean);
  border-color: var(--white);
  transform: translateY(-1px);
}

.card-custom {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}

.card-custom:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.card-body-custom {
  padding: 32px;
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-custom:hover .card-img-wrap img {
  transform: scale(1.03);
}

.section-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.section-img-tall {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.section-img-full {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.img-shadow {
  box-shadow: var(--shadow-medium);
}

.geo-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  background: var(--ocean);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.geo-strip-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.geo-strip-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.geo-strip-label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.geo-strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.callout-box {
  padding: 24px 28px;
  border-left: 4px solid var(--terracotta);
  background: rgba(200,122,91,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.callout-box--ocean {
  border-left-color: var(--ocean);
  background: rgba(45,93,124,0.06);
}

.callout-box--sage {
  border-left-color: var(--sage-dark);
  background: rgba(162,178,154,0.15);
}

.callout-box h5 {
  color: var(--charcoal);
  margin-bottom: 8px;
}

.callout-box p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin: 0;
}

.glossary-rail {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.glossary-rail h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
}

.glossary-term {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 4px;
}

.glossary-term dd {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(200,122,91,0.3);
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-content h5 {
  color: var(--charcoal);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.matrix-table thead {
  background: var(--ocean);
}

.matrix-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
}

.matrix-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}

.matrix-table tbody tr:hover {
  background: rgba(162,178,154,0.1);
}

.matrix-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.matrix-table tbody td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}

.matrix-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-dark);
}

.matrix-dot--high { background: var(--terracotta); }
.matrix-dot--med { background: var(--ocean); }
.matrix-dot--low { background: var(--sage-dark); opacity: 0.5; }

.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.myth-block {
  padding: 28px 32px;
  background: rgba(200,122,91,0.08);
  border-top: 3px solid var(--terracotta);
}

.myth-block h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.fact-block {
  padding: 28px 32px;
  background: rgba(45,93,124,0.06);
  border-top: 3px solid var(--ocean);
}

.fact-block h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}

.myth-block p, .fact-block p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--charcoal-light);
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.comparison-col {
  padding: 28px;
  border-radius: var(--radius-md);
}

.comparison-col--left {
  background: rgba(200,122,91,0.08);
  border: 1px solid rgba(200,122,91,0.2);
}

.comparison-col--right {
  background: rgba(45,93,124,0.06);
  border: 1px solid rgba(45,93,124,0.18);
}

.comparison-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
}

.comparison-col--left h5 { color: var(--terracotta); }
.comparison-col--right h5 { color: var(--ocean); }

.comparison-col li {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  list-style: none;
  padding-left: 0;
}

.comparison-col li::before {
  content: '—';
  margin-right: 10px;
  opacity: 0.5;
}

.habit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-top-color var(--transition);
  height: 100%;
}

.habit-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
  border-top-color: var(--terracotta);
}

.habit-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.habit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.8;
}

.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
}

.custom-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  padding: 22px 0;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition);
}

.custom-accordion .accordion-button:hover {
  color: var(--ocean);
}

.custom-accordion .accordion-button .acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.custom-accordion .accordion-button.active .acc-icon {
  background: var(--ocean);
  transform: rotate(45deg);
}

.custom-accordion .accordion-button .acc-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2.5;
  transition: stroke var(--transition);
}

.custom-accordion .accordion-button.active .acc-icon svg {
  stroke: var(--white);
}

.custom-accordion .accordion-body {
  display: none;
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

.custom-accordion .accordion-body.show {
  display: block;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(45,93,124,0.78) 0%, rgba(45,93,124,0.45) 55%, rgba(200,122,91,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-notice {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

.stat-strip {
  padding: 0;
}

.stat-strip-inner {
  background: var(--ocean);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-strip-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  border-radius: var(--radius-md);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  display: block;
}

.full-width-strip {
  background: #EEF1EB;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.full-width-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(162,178,154,0.2);
  pointer-events: none;
}

.full-width-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(45,93,124,0.07);
  pointer-events: none;
}

.dark-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--section-gap) 0;
}

.dark-section h2, .dark-section h3, .dark-section h4 {
  color: var(--white);
}

.dark-section p, .dark-section li {
  color: rgba(248,247,243,0.82);
}

.dark-section .divider {
  background: var(--terracotta);
}

.img-column {
  position: relative;
}

.img-column::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 3px solid var(--sage);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: -1;
}

.img-column--right::after {
  bottom: -16px;
  right: -16px;
  top: auto;
  left: auto;
}

.img-column--left::after {
  top: -16px;
  left: -16px;
  bottom: auto;
  right: auto;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(162,178,154,0.2);
  border: 1px solid rgba(162,178,154,0.4);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 4px 4px 4px 0;
}

.benefit-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.catalog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card-img {
  transform: scale(1.04);
}

.catalog-card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.catalog-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  flex: 1;
  margin-bottom: 16px;
}

.catalog-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.catalog-benefits li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-dark);
  flex-shrink: 0;
}

.featured-catalog-card {
  background: var(--white);
  border: 2px solid var(--sage);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-catalog-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-catalog-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recommendation-matrix {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
}

.recommendation-matrix th {
  background: var(--sage);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: left;
}

.recommendation-matrix td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--charcoal-light);
  vertical-align: middle;
}

.recommendation-matrix tr:last-child td {
  border-bottom: none;
}

.recommendation-matrix td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}

.dot-level {
  display: inline-flex;
  gap: 4px;
}

.dot-level span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  display: inline-block;
}

.dot-level span.filled { background: var(--terracotta); }

.info-notice {
  background: rgba(162,178,154,0.15);
  border: 1px solid rgba(162,178,154,0.4);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
}

.info-notice h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.info-notice p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.disclaimer-prominent {
  background: rgba(45,93,124,0.06);
  border: 1px solid rgba(45,93,124,0.2);
  border-left: 5px solid var(--ocean);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin: 32px 0;
}

.disclaimer-prominent h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}

.disclaimer-prominent p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
  line-height: 1.7;
}

.page-hero {
  background: var(--ocean);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(162,178,154,0.08);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1, .page-hero h2 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255,255,255,0.78);
}

.page-hero .label-tag {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}

.page-hero .divider {
  background: var(--terracotta);
}

.policy-content h2 {
  font-size: 1.35rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  color: var(--ocean);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.policy-content p, .policy-content li {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.78;
}

.policy-content ol > li {
  margin-bottom: 12px;
}

.toc-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.toc-block h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.toc-block ol {
  padding-left: 20px;
  margin: 0;
}

.toc-block li {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.toc-block a {
  color: var(--charcoal-light);
}

.toc-block a:hover {
  color: var(--ocean);
}

.critical-notice {
  background: rgba(200,122,91,0.08);
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  text-align: center;
  margin: 40px 0;
}

.critical-notice h3 {
  color: var(--terracotta);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.critical-notice p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.key-phrase-block {
  background: var(--ocean);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}

.key-phrase-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.contact-card {
  background: var(--ocean);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-medium);
}

.contact-card h3 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.85);
  fill: none;
  stroke-width: 1.8;
}

.contact-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  display: block;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.form-label-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-control-custom:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(45,93,124,0.12);
  background: var(--white);
}

.form-disclaimer {
  background: rgba(162,178,154,0.12);
  border: 1px solid rgba(162,178,154,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.about-mission {
  background: var(--ocean);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.about-mission h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.about-mission p {
  color: rgba(255,255,255,0.82);
}

.about-mission .divider {
  background: var(--terracotta);
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.value-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.value-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(162,178,154,0.5);
  line-height: 1;
  min-width: 52px;
}

.value-content h4 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.value-content p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.thank-you-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.thank-you-box {
  max-width: 540px;
  width: 100%;
  text-align: center;
  padding: 60px 48px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.thank-you-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(162,178,154,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thank-you-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.8;
}

.nav-links-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-top: 2px solid var(--sage);
  padding: 20px 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(248,247,243,0.82);
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--sage);
  color: var(--charcoal);
  border-color: var(--sage);
}

.cookie-btn--accept:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.cookie-btn--learn {
  background: transparent;
  color: var(--sage-light);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(188,201,182,0.5);
}

.cookie-btn--learn:hover {
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(51,51,51,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(162,178,154,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(51,51,51,0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span {
  color: var(--terracotta);
}

.site-logo:hover {
  color: var(--white);
  opacity: 0.9;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-menu a.active {
  color: var(--sage-light);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta a {
  background: var(--sage) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}

.nav-cta a:hover {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
}

.mobile-nav a:hover { color: var(--white); }

.site-footer {
  background: #1E1E1E;
  color: rgba(248,247,243,0.75);
  padding-top: 64px;
}

.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}

.footer-brand span { color: var(--terracotta); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(248,247,243,0.55);
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(248,247,243,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(248,247,243,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-item strong {
  color: rgba(248,247,243,0.85);
  font-weight: 600;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(248,247,243,0.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours-row:last-child { border-bottom: none; }

.footer-hours-row span:last-child {
  color: rgba(248,247,243,0.85);
}

.footer-bottom {
  background: #141414;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,247,243,0.4);
}

.footer-legal a {
  color: rgba(248,247,243,0.5);
}

.footer-legal a:hover { color: rgba(248,247,243,0.8); }

.footer-edu-notice {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.body-offset {
  padding-top: 70px;
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 24px; }

  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .myth-fact-grid {
    grid-template-columns: 1fr;
  }

  .featured-catalog-card {
    grid-template-columns: 1fr;
  }

  .featured-catalog-img {
    min-height: 240px;
  }

  .comparison-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .container-wide { padding: 0 20px; }
  .container { padding: 0 20px; }

  .hero-section { min-height: 80vh; }
  .hero-content { padding: 80px 0 60px; }

  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .geo-strip { padding: 24px 20px; }
  .geo-strip-divider { display: none; }

  .about-mission { padding: 40px 28px; }
  .key-phrase-block { padding: 32px 24px; }
  .key-phrase-block p { font-size: 1.05rem; }

  .contact-card, .contact-form-wrap { padding: 28px 24px; }
  .thank-you-box { padding: 40px 28px; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .catalog-benefits li { font-size: 0.78rem; }
}
