/*
Theme Name: Bewertungen Happy Detox
Theme URI: https://bewertungen-happy-detox.de/
Author: Bewertungen Happy Detox
Description: Redaktionelle Analyse- und Affiliate-Website für Happy Detox auf dem deutschen Markt.
Version: 1.7.4
License: All rights reserved
Text Domain: hd
*/

:root {
  --hd-green:        #162711;
  --hd-green-light:  #2a4020;
  --hd-green-mid:    #3d5c30;
  --hd-beige:        #f0ede3;
  --hd-beige-light:  #f7f5ee;
  --hd-beige-dark:   #e4e0d4;
  --hd-tan:          #D8A379;
  --hd-tan-dark:     #c4895e;
  --hd-white:        #ffffff;
  --hd-text:         #162711;
  --hd-text-muted:   #5a6855;
  --hd-border:       #d4cfc3;
  --hd-star:         #f4b400;
  --hd-radius:       10px;
  --hd-shadow:       0 4px 24px rgba(22,39,17,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--hd-beige-light);
  color: var(--hd-text);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.hd-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hd-section { padding: 80px 0; }
.hd-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hd-tan-dark);
  background: rgba(216,163,121,0.15);
  border: 1px solid rgba(216,163,121,0.4);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hd-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--hd-green);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hd-section-subtitle {
  font-size: 17px;
  color: var(--hd-text-muted);
  max-width: 620px;
}
.hd-center { text-align: center; }
.hd-center .hd-section-subtitle { margin: 0 auto; }

.hd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}
.hd-btn-primary { background: var(--hd-green); color: var(--hd-white); }
.hd-btn-primary:hover {
  background: var(--hd-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,39,17,0.3);
}
.hd-btn-accent { background: var(--hd-tan); color: var(--hd-white); }
.hd-btn-accent:hover {
  background: var(--hd-tan-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,137,94,0.4);
}
.hd-btn-white { background: var(--hd-white); color: var(--hd-green); }
.hd-btn-white:hover {
  background: var(--hd-beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.hd-btn-lg { padding: 18px 36px; font-size: 17px; }

.hd-stars { color: var(--hd-star); font-size: 18px; letter-spacing: 1px; }
.hd-stars-sm { color: var(--hd-star); font-size: 14px; }
.hd-divider { border: none; border-top: 1px solid var(--hd-border); margin: 24px 0; }

.hd-topbar {
  background: var(--hd-green);
  color: var(--hd-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hd-topbar span { color: var(--hd-tan); }

.hd-nav {
  background: var(--hd-white);
  border-bottom: 1px solid var(--hd-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(22,39,17,0.06);
}
.hd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.hd-nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--hd-green);
  letter-spacing: -0.5px;
}
.hd-nav-logo span { color: var(--hd-tan); }
.hd-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}
.hd-nav-links a { color: var(--hd-text-muted); transition: color 0.2s; }
.hd-nav-links a:hover { color: var(--hd-green); }
.hd-nav-cta { font-size: 14px; }
.hd-nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hd-nav-brand img { height: 48px; object-fit: contain; }
.hd-nav-brand-text { font-size: 18px; font-weight: 900; color: var(--hd-green); }
.hd-nav-home {
  color: var(--hd-green);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.hd-nav-home:hover { background: var(--hd-beige); color: var(--hd-green); }

.hd-hero {
  background: var(--hd-green);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding: 80px 0 120px;
  color: var(--hd-white);
}
.hd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hd-hero-badge {
  display: inline-block;
  background: rgba(216,163,121,0.2);
  border: 1px solid rgba(216,163,121,0.5);
  color: var(--hd-tan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hd-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hd-hero h1 span { color: var(--hd-tan); }
.hd-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 520px;
}
.hd-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.hd-hero-rating-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.hd-hero-rating-text strong { color: var(--hd-white); }
.hd-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hd-hero-card {
  background: var(--hd-white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: var(--hd-text);
}
.hd-hero-card-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.hd-hero-card-img-ph {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hd-beige) 0%, var(--hd-beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.hd-hero-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--hd-green);
  margin-bottom: 4px;
}
.hd-hero-card-sub { font-size: 13px; color: var(--hd-text-muted); margin-bottom: 12px; }
.hd-hero-card-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--hd-green);
  margin-bottom: 6px;
}
.hd-hero-card-price span { font-size: 14px; font-weight: 400; color: var(--hd-text-muted); }
.hd-hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}
.hd-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(22,39,17,0.08);
  color: var(--hd-green);
}
.hd-hero-card-benefits { list-style: none; margin-bottom: 20px; }
.hd-hero-card-benefits li {
  font-size: 13px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--hd-beige-dark);
}
.hd-hero-card-benefits li:last-child { border: none; }
.hd-hero-card-benefits li::before {
  content: '✓';
  color: var(--hd-green);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

.hd-trust-bar {
  background: var(--hd-beige);
  border-bottom: 1px solid var(--hd-border);
  padding: 20px 0;
}
.hd-trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hd-text-muted);
}
.hd-trust-icon { font-size: 22px; }

.hd-problems { background: var(--hd-white); }
.hd-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.hd-problem-card {
  background: var(--hd-beige-light);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.hd-problem-card:hover { box-shadow: var(--hd-shadow); }
.hd-problem-icon { font-size: 36px; flex-shrink: 0; }
.hd-problem-card h3 { font-size: 17px; font-weight: 700; color: var(--hd-green); margin-bottom: 6px; }
.hd-problem-card p { font-size: 14px; color: var(--hd-text-muted); line-height: 1.6; }

.hd-usecases { background: var(--hd-beige); }
.hd-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hd-usecase-card {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  padding: 28px;
  border: 1px solid var(--hd-border);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hd-usecase-card:hover { box-shadow: var(--hd-shadow); transform: translateY(-3px); }
.hd-usecase-emoji { font-size: 44px; margin-bottom: 14px; }
.hd-usecase-card h3 { font-size: 17px; font-weight: 800; color: var(--hd-green); margin-bottom: 10px; }
.hd-usecase-card p { font-size: 14px; color: var(--hd-text-muted); line-height: 1.6; }

.hd-products { background: var(--hd-white); }
.hd-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hd-product-card {
  background: var(--hd-beige-light);
  border: 2px solid var(--hd-border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.hd-product-card:hover { box-shadow: var(--hd-shadow); transform: translateY(-3px); }
.hd-product-card.is-featured {
  border-color: var(--hd-tan);
  background: var(--hd-white);
  box-shadow: 0 8px 40px rgba(216,163,121,0.25);
}
.hd-product-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hd-tan);
  color: var(--hd-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.hd-product-card-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 10px;
}
.hd-product-offer {
  font-size: 13px;
  font-weight: 700;
  color: var(--hd-tan-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hd-product-name { font-size: 18px; font-weight: 800; color: var(--hd-green); margin-bottom: 4px; }
.hd-product-sub { font-size: 13px; color: var(--hd-text-muted); margin-bottom: 16px; }
.hd-product-price { font-size: 32px; font-weight: 900; color: var(--hd-green); }
.hd-product-price-per { font-size: 13px; color: var(--hd-text-muted); margin-bottom: 16px; }
.hd-product-old { text-decoration: line-through; color: var(--hd-text-muted); font-size: 15px; margin-bottom: 4px; }
.hd-product-save {
  display: inline-block;
  background: rgba(22,39,17,0.08);
  color: var(--hd-green-mid);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hd-product-features { list-style: none; margin-bottom: 20px; text-align: left; }
.hd-product-features li {
  font-size: 13px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--hd-border);
  color: var(--hd-text-muted);
}
.hd-product-features li:last-child { border: none; }
.hd-product-features li .hd-check { color: var(--hd-green); font-weight: 900; }
.hd-products-extra {
  margin-top: 48px;
  background: var(--hd-beige-light);
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.hd-products-extra h3 { font-size: 20px; font-weight: 800; color: var(--hd-green); margin-bottom: 12px; }
.hd-products-extra p { color: var(--hd-text-muted); font-size: 15px; margin-bottom: 24px; }
.hd-products-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.hd-products-extra-tags .hd-tag { font-size: 13px; padding: 8px 16px; }

.hd-composition { background: var(--hd-beige); }
.hd-composition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hd-ingredient-card {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  padding: 28px;
  border: 1px solid var(--hd-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.hd-ingredient-card:hover { box-shadow: var(--hd-shadow); }
.hd-ingredient-icon { font-size: 40px; flex-shrink: 0; }
.hd-ingredient-name { font-size: 17px; font-weight: 800; color: var(--hd-green); margin-bottom: 6px; }
.hd-ingredient-latin { font-size: 12px; color: var(--hd-text-muted); font-style: italic; margin-bottom: 10px; }
.hd-ingredient-desc { font-size: 14px; color: var(--hd-text-muted); line-height: 1.6; }
.hd-ingredient-benefit {
  display: inline-block;
  margin-top: 10px;
  background: rgba(22,39,17,0.07);
  color: var(--hd-green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.hd-dosage { background: var(--hd-white); }
.hd-dosage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.hd-dosage-steps { display: flex; flex-direction: column; gap: 20px; }
.hd-dosage-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.hd-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hd-green);
  color: var(--hd-white);
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hd-step-content h4 { font-size: 16px; font-weight: 700; color: var(--hd-green); margin-bottom: 4px; }
.hd-step-content p { font-size: 14px; color: var(--hd-text-muted); }
.hd-dosage-visual {
  background: var(--hd-beige-light);
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--hd-border);
  text-align: center;
}
.hd-dosage-visual .hd-big-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--hd-green);
  line-height: 1;
}
.hd-dosage-visual .hd-big-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--hd-tan-dark);
  margin-bottom: 20px;
}
.hd-dosage-meta { font-size: 15px; color: var(--hd-text-muted); line-height: 1.7; }
.hd-dosage-meta > div { margin-bottom: 8px; }
.hd-dosage-tip {
  background: rgba(216,163,121,0.1);
  border: 1px solid rgba(216,163,121,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--hd-text-muted);
  margin-top: 20px;
  text-align: left;
}
.hd-dosage-tip strong { color: var(--hd-tan-dark); }

.hd-reviews { background: var(--hd-beige); }
.hd-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.hd-reviews-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.hd-reviews-score {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  padding: 24px 32px;
  border: 1px solid var(--hd-border);
  text-align: center;
  min-width: 200px;
}
.hd-score-number { font-size: 52px; font-weight: 900; color: var(--hd-green); line-height: 1; }
.hd-score-label { font-size: 13px; color: var(--hd-text-muted); margin-top: 4px; }
.hd-reviews-bars { flex: 1; max-width: 340px; }
.hd-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--hd-text-muted);
}
.hd-bar-label { width: 56px; text-align: right; font-weight: 600; }
.hd-bar-track { flex: 1; height: 8px; background: var(--hd-border); border-radius: 4px; overflow: hidden; }
.hd-bar-fill { height: 100%; background: var(--hd-green); border-radius: 4px; transition: width 1s ease; }
.hd-bar-pct { width: 36px; font-weight: 600; }
.hd-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hd-review-card {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  padding: 24px;
  border: 1px solid var(--hd-border);
  transition: box-shadow 0.2s;
}
.hd-review-card:hover { box-shadow: var(--hd-shadow); }
.hd-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.hd-reviewer-info { display: flex; gap: 12px; align-items: center; }
.hd-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hd-green);
  color: var(--hd-white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hd-reviewer-name { font-size: 14px; font-weight: 700; }
.hd-reviewer-date { font-size: 12px; color: var(--hd-text-muted); }
.hd-review-verified {
  font-size: 11px;
  font-weight: 700;
  color: var(--hd-green-mid);
  background: rgba(22,39,17,0.07);
  padding: 3px 8px;
  border-radius: 20px;
}
.hd-review-text { font-size: 14px; color: var(--hd-text-muted); line-height: 1.6; }
.hd-review-product {
  margin-top: 12px;
  font-size: 12px;
  color: var(--hd-tan-dark);
  font-weight: 600;
}

.hd-transformations { background: var(--hd-white); }
.hd-transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hd-transformation-card {
  border-radius: var(--hd-radius);
  overflow: hidden;
  border: 1px solid var(--hd-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hd-transformation-card:hover { box-shadow: var(--hd-shadow); transform: translateY(-3px); }
.hd-ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.hd-ba-side {
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}
.hd-ba-before { background: linear-gradient(160deg, #8b9e82 0%, #5a6e52 100%); }
.hd-ba-after { background: linear-gradient(160deg, #162711 0%, #2a4020 100%); }
.hd-ba-info { padding: 16px; }
.hd-ba-quote { font-size: 13px; color: var(--hd-text-muted); line-height: 1.5; margin-bottom: 10px; font-style: italic; }
.hd-ba-name { font-size: 13px; font-weight: 700; color: var(--hd-green); }
.hd-ba-verified { font-size: 11px; color: var(--hd-green-mid); }

.hd-video-testimonial { background: #f8f6f0; padding: 60px 0; }
.hd-video-wrap { display: flex; justify-content: center; }
.hd-video-box {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  background: #000;
  aspect-ratio: 9/16;
  position: relative;
}
.hd-video-box video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hd-video-cta { display: flex; justify-content: center; margin-top: 32px; }

.hd-faq { background: var(--hd-beige); }
.hd-faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}
.hd-faq-item {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--hd-white);
}
.hd-faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--hd-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s, color 0.2s;
}
.hd-faq-question:hover { background: var(--hd-beige-light); }
.hd-faq-item.is-open .hd-faq-question {
  background: var(--hd-beige-light);
  color: var(--hd-green);
}
.hd-faq-chevron {
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--hd-tan-dark);
}
.hd-faq-item.is-open .hd-faq-chevron { transform: rotate(180deg); }
.hd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.hd-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--hd-text-muted);
  line-height: 1.7;
}

.hd-final-cta {
  background: var(--hd-green);
  padding: 80px 0;
  text-align: center;
  color: var(--hd-white);
}
.hd-final-cta h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}
.hd-final-cta h2 span { color: var(--hd-tan); }
.hd-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hd-final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hd-guarantee-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hd-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.hd-guarantee-badge .hd-icon { font-size: 20px; }

.hd-footer {
  background: #0e1c0a;
  color: rgba(255,255,255,0.55);
  padding: 48px 0 28px;
  font-size: 13px;
}
.hd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.hd-footer-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--hd-white);
  margin-bottom: 12px;
}
.hd-footer-logo span { color: var(--hd-tan); }
.hd-footer-desc { line-height: 1.7; margin-bottom: 16px; }
.hd-footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}
.hd-footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--hd-white);
  margin-bottom: 16px;
}
.hd-footer ul { list-style: none; }
.hd-footer ul li { margin-bottom: 8px; }
.hd-footer ul a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.hd-footer ul a:hover { color: var(--hd-tan); }
.hd-footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 12px 0; list-style: none; }
.hd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

.hd-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--hd-green);
  color: var(--hd-white);
  padding: 14px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hd-sticky-bar.is-visible { transform: translateY(0); }
.hd-sticky-bar-text { font-size: 14px; font-weight: 600; }
.hd-sticky-bar-text strong { color: var(--hd-tan); }
.hd-sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hd-sticky-close:hover { color: var(--hd-white); }

.hd-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 39, 17, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hd-exit-overlay.is-visible { opacity: 1; visibility: visible; }
.hd-exit-modal {
  background: var(--hd-beige-light);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 6px solid var(--hd-tan);
}
.hd-exit-overlay.is-visible .hd-exit-modal { transform: translateY(0) scale(1); }
.hd-exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--hd-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.hd-exit-close:hover { background: var(--hd-beige-dark); color: var(--hd-green); }
.hd-exit-emoji { font-size: 44px; line-height: 1; margin-bottom: 12px; }
.hd-exit-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--hd-green);
  line-height: 1.25;
  margin-bottom: 10px;
}
.hd-exit-subtitle {
  font-size: 16px;
  color: var(--hd-text-muted);
  margin-bottom: 24px;
}
.hd-exit-code-box {
  background: var(--hd-white);
  border: 2px dashed var(--hd-tan);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.hd-exit-code-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--hd-text-muted);
  margin-bottom: 6px;
}
.hd-exit-code-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--hd-green);
  font-family: 'Courier New', monospace;
}
.hd-exit-discount {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hd-tan-dark);
}
.hd-exit-cta {
  display: block;
  width: 100%;
  background: var(--hd-tan);
  color: var(--hd-white);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 24px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 12px;
}
.hd-exit-cta:hover { background: var(--hd-tan-dark); transform: translateY(-1px); }
.hd-exit-decline {
  background: none;
  border: none;
  color: var(--hd-text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px;
}
.hd-exit-decline:hover { color: var(--hd-green); }

.hd-page-header {
  background: linear-gradient(180deg, var(--hd-beige) 0%, var(--hd-beige-light) 100%);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--hd-border);
}
.hd-page-header h1 {
  font-size: 38px;
  color: var(--hd-green);
  line-height: 1.2;
  margin-bottom: 10px;
}
.hd-page-header p {
  color: var(--hd-text-muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.hd-legal-main { padding: 50px 0 70px; }
.hd-legal-main h2 {
  font-size: 22px;
  color: var(--hd-green);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hd-tan);
}
.hd-legal-main h2:first-child { margin-top: 0; }
.hd-legal-main h3 {
  font-size: 17px;
  color: var(--hd-green-light);
  margin: 20px 0 8px;
}
.hd-legal-main p { margin-bottom: 14px; color: var(--hd-text); }
.hd-legal-main ul { margin: 8px 0 16px 22px; }
.hd-legal-main ul li { margin-bottom: 6px; }
.hd-legal-main a {
  color: var(--hd-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hd-legal-main a:hover { color: var(--hd-tan-dark); }
.hd-info-block {
  background: var(--hd-white);
  border: 1px solid var(--hd-border);
  border-left: 4px solid var(--hd-tan);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--hd-shadow);
}
.hd-info-block p { margin-bottom: 4px; }
.hd-small-note {
  font-size: 13px;
  color: var(--hd-text-muted);
  font-style: italic;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--hd-border);
}

.hd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.hd-info-card {
  background: var(--hd-white);
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--hd-shadow);
}
.hd-info-card h2 {
  font-size: 20px;
  color: var(--hd-green);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--hd-tan);
}
.hd-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--hd-border);
}
.hd-info-item:last-child { border-bottom: none; }
.hd-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--hd-beige);
  color: var(--hd-tan-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hd-info-content { flex: 1; line-height: 1.5; }
.hd-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hd-text-muted);
  margin-bottom: 2px;
}
.hd-info-value { font-size: 15px; color: var(--hd-text); font-weight: 500; }
.hd-info-value a { color: var(--hd-green); }
.hd-info-value a:hover { text-decoration: underline; color: var(--hd-tan-dark); }
.hd-response-time {
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--hd-beige);
  border-radius: 10px;
  font-size: 13px;
  color: var(--hd-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hd-response-time strong { color: var(--hd-green); }

.hd-form-card {
  background: var(--hd-white);
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--hd-shadow);
}
.hd-form-card h2 { font-size: 22px; color: var(--hd-green); margin-bottom: 8px; }
.hd-form-intro { color: var(--hd-text-muted); margin-bottom: 24px; font-size: 14px; }
.hd-form-row { margin-bottom: 18px; }
.hd-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hd-green);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hd-form-row input,
.hd-form-row select,
.hd-form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--hd-text);
  background: var(--hd-beige-light);
  border: 1px solid var(--hd-border);
  border-radius: 8px;
  transition: border 0.2s, background 0.2s;
}
.hd-form-row input:focus,
.hd-form-row select:focus,
.hd-form-row textarea:focus {
  outline: none;
  border-color: var(--hd-tan);
  background: var(--hd-white);
  box-shadow: 0 0 0 3px rgba(216,163,121,0.18);
}
.hd-form-row textarea { min-height: 130px; resize: vertical; }
.hd-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--hd-text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.hd-form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.hd-form-checkbox a { color: var(--hd-green); text-decoration: underline; }
.hd-submit-btn {
  width: 100%;
  background: var(--hd-tan);
  color: var(--hd-white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hd-submit-btn:hover { background: var(--hd-tan-dark); transform: translateY(-1px); }
.hd-form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.hd-form-status.is-success {
  display: block;
  background: #e8f3e0;
  color: #2a4020;
  border: 1px solid #b8d8a3;
}

@media (max-width: 900px) {
  .hd-hero-inner { grid-template-columns: 1fr; }
  .hd-hero-card { max-width: 420px; margin: 0 auto; }
  .hd-problems-grid { grid-template-columns: 1fr; }
  .hd-usecases-grid { grid-template-columns: 1fr; }
  .hd-products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
  .hd-composition-grid { grid-template-columns: 1fr; }
  .hd-dosage-inner { grid-template-columns: 1fr; }
  .hd-reviews-grid { grid-template-columns: 1fr; }
  .hd-transformations-grid { grid-template-columns: 1fr; max-width: 380px; margin: 48px auto 0; }
  .hd-footer-grid { grid-template-columns: 1fr; }
  .hd-nav-links { display: none; }
  .hd-reviews-header { flex-direction: column; align-items: flex-start; }
  .hd-hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
}

@media (max-width: 860px) {
  .hd-contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .hd-page-header h1 { font-size: 28px; }
  .hd-page-header { padding: 40px 0 30px; }
  .hd-legal-main { padding: 36px 0 50px; }
  .hd-legal-main h2 { font-size: 19px; }
  .hd-nav-brand-text { display: none; }
  .hd-form-card, .hd-info-card { padding: 22px; }
}

@media (max-width: 600px) {
  .hd-section { padding: 56px 0; }
  .hd-hero { padding: 60px 0 100px; }
  .hd-sticky-bar { flex-direction: column; text-align: center; }
  .hd-trust-items { flex-direction: column; align-items: center; gap: 16px; }
  .hd-guarantee-badges { gap: 20px; }
}

@media (max-width: 480px) {
  .hd-exit-modal { padding: 32px 20px 24px; }
  .hd-exit-title { font-size: 22px; }
  .hd-exit-code-value { font-size: 26px; letter-spacing: 2px; }
}
