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

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

:root {
  --primary: #2C3E50;
  --accent-green: #4CAF50;
  --accent-yellow: #FFC107;
  --accent-red: #E74C3C;
  --light-bg: #F5F5F2;
  --mid-bg: #ECEAE4;
  --white: #FFFFFF;
  --text-dark: #1a252f;
  --text-muted: #6b7a8a;
  --border-light: #D9D5CC;
  --shadow-sm: 0 2px 12px rgba(44,62,80,0.07);
  --shadow-md: 0 6px 28px rgba(44,62,80,0.12);
  --shadow-lg: 0 16px 56px rgba(44,62,80,0.18);
  --radius: 4px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.7rem; }

p { line-height: 1.75; color: var(--text-dark); }

a { color: var(--accent-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--dark { background: 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: var(--light-bg); }
.section--mid { background: var(--mid-bg); }
.section--white { background: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.section-label--yellow { color: var(--accent-yellow); }
.section-label--white { color: rgba(255,255,255,0.7); }

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle--center { margin: 0 auto; text-align: center; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent-green);
  margin: 20px 0 32px;
}

.divider--center { margin: 20px auto 32px; }
.divider--yellow { background: var(--accent-yellow); }
.divider--white { background: rgba(255,255,255,0.4); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--white);
  border-color: var(--accent-green);
}
.btn-primary:hover {
  background: #3d9140;
  border-color: #3d9140;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(76,175,80,0.35);
}

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

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

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--primary);
  border-color: var(--accent-yellow);
}
.btn-yellow:hover {
  background: #e6ad00;
  border-color: #e6ad00;
  color: var(--primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(44,62,80,0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo span {
  color: var(--accent-green);
}

.logo:hover { color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav a.active {
  color: var(--accent-green);
}

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

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--primary);
  z-index: 999;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--accent-green); }

.page-top { padding-top: 70px; }

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-green); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact strong {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.footer-hours {
  margin-top: 16px;
}

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 24px 0;
  margin-top: 0;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-edu-msg {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  margin: 0 0 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(44,62,80,0.92) 50%, rgba(44,62,80,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 .accent { color: var(--accent-green); }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.hero-disclaimer {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

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

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content.dark {
  background: var(--primary);
}

.split-content.dark h2 { color: var(--white); }
.split-content.dark p { color: rgba(255,255,255,0.8); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-green);
}

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

.problem-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(76,175,80,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ingredient-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ingredient-card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.ingredient-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(76,175,80,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: box-shadow var(--transition);
}

.quote-card:hover { box-shadow: var(--shadow-md); }

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-green);
  font-family: Georgia, serif;
  opacity: 0.4;
}

.quote-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.75;
  padding-top: 16px;
}

.quote-stars {
  display: flex;
  gap: 3px;
  margin-top: 20px;
}

.quote-stars span {
  width: 12px;
  height: 12px;
  background: var(--accent-yellow);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
}

.step-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.95rem;
}

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

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.comparison-table tr:nth-child(even) td { background: var(--light-bg); }
.comparison-table tr:hover td { background: rgba(76,175,80,0.05); }

.check-mark {
  color: var(--accent-green);
  font-weight: 700;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--light-bg); }

.accordion-trigger.open { background: var(--primary); color: var(--white); }

.accordion-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 20px 24px 24px;
  background: var(--light-bg);
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.accordion-body.open { display: block; }

.stat-strip {
  background: var(--accent-green);
  padding: 40px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.fullwidth-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.trust-bar {
  background: var(--primary);
  padding: 40px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-text h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.trust-bar-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.trust-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-it {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-it-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(76,175,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-it-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-it p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.4;
}

.cta-section {
  background: var(--light-bg);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 32px; color: var(--text-muted); max-width: 540px; margin-left: auto; margin-right: auto; }

.disclaimer-box {
  background: rgba(231,76,60,0.08);
  border-left: 3px solid var(--accent-red);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

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

.info-box {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

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

.page-hero {
  background: var(--primary);
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 16px auto 0; }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.policy-content h2 {
  font-size: 1.45rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #3d4f5f;
  line-height: 1.8;
}

.policy-content ul {
  margin: 12px 0 16px 20px;
}

.policy-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #3d4f5f;
  line-height: 1.7;
}

.policy-content .policy-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.policy-toc {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.policy-toc h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.policy-toc ol {
  margin: 0 0 0 18px;
}

.policy-toc ol li {
  margin-bottom: 6px;
}

.policy-toc ol li a {
  font-size: 0.9rem;
  color: var(--accent-green);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 20px 0;
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: #3d4f5f;
  line-height: 1.6;
  vertical-align: top;
}

.cookie-table tr:nth-child(even) td { background: var(--light-bg); }

.refund-timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}

.refund-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-step {
  position: relative;
  margin-bottom: 32px;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-hero {
  background: var(--primary);
  padding: 100px 0 80px;
}

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

.about-hero h1 { color: var(--white); margin-bottom: 20px; }
.about-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.8; }

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-yellow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
}

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

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--light-bg);
}

.thankyou-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px 56px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(76,175,80,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thankyou-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-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.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--accent-green);
  color: var(--white);
}

.cookie-btn-accept:hover { background: #3d9140; }

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-reject:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.cookie-btn-more {
  background: transparent;
  color: var(--accent-yellow);
  border: 1px solid rgba(255,193,7,0.35);
}

.cookie-btn-more:hover { background: rgba(255,193,7,0.08); }

.product-img-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-img-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(44,62,80,0.85) 0%, transparent 100%);
  padding: 32px 28px 24px;
}

.product-img-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}

.key-points {
  list-style: none;
  margin: 24px 0;
}

.key-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.key-points li .kp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  margin-top: 7px;
}

.quality-section {
  background: var(--mid-bg);
  padding: 80px 0;
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.quality-point {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.quality-point h4 {
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
}

.quality-point p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
}

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

.limit-context {
  background: #f0f7f0;
  border: 1px solid #c8e6c9;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0;
}

.limit-context h3 {
  font-size: 1rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.limit-context p {
  font-size: 0.88rem;
  color: #4a6741;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps::before { display: none; }
  .split-content { padding: 48px 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card { flex: 1; min-width: 240px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-img { max-height: 400px; }
  .about-img img { height: 400px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-inner { grid-template-columns: 1fr; }
}

.policy-cookie-table {
  margin: 32px 0;
}

.policy-cookie-table h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.policy-cookie-table .comparison-table {
  margin-top: 0;
}

.policy-timeline {
  margin: 40px 0;
  overflow-x: auto;
}

.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 480px;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-red);
  flex-shrink: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.timeline-dot--yellow {
  background: var(--accent-yellow);
  box-shadow: 0 0 0 2px var(--accent-yellow);
}

.timeline-dot--green {
  background: var(--accent-green);
  box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-connector {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  margin-top: 9px;
  position: relative;
  z-index: 0;
}

.timeline-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 120px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.35rem; }
  .section { padding: 56px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-img { min-height: 280px; }
  .split-content { padding: 40px 24px; }
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 1rem; }
  .hero-trust { gap: 12px; }
  .problem-grid { grid-template-columns: 1fr; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { flex-direction: column; text-align: center; }
  .trust-items { justify-content: center; }
  .cookie-banner-inner { flex-direction: column; }
  .hero-cta { flex-direction: column; }
  .thankyou-box { padding: 40px 24px; }
  .contact-form { padding: 28px 20px; }
  .about-hero { padding: 80px 0 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .quality-points { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table td, .comparison-table th { padding: 10px 12px; }
  .footer-edu-msg { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.7rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .fullwidth-img { height: 260px; }
  .product-img-block img { height: 300px; }
}
