@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Varela+Round&display=swap');
:root {
  --color-primary: #5A6B50;
  --color-primary-dark: #465540;
  --color-secondary: #A8956E;
  --color-secondary-light: #C4B48E;
  --color-accent: #C17B3A;
  --color-accent-dark: #A5682E;
  --color-bg: #FAFAF7;
  --color-surface: #F3EFE8;
  --color-text: #2D2926;
  --color-text-light: #5C5652;
  --color-text-muted: #8A8480;
  --color-white: #FFFFFF;
  --color-border: #E2DDD5;
  --color-success: #5A6B50;
  --color-error: #C0392B;
  --font-heading: 'Varela Round', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.08);
  --shadow-md: 0 4px 12px rgba(45,41,38,0.1);
  --shadow-lg: 0 8px 30px rgba(45,41,38,0.12);
  --transition: 200ms ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
button { cursor: pointer; font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--color-text); }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.85rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.btn-primary:hover { background: var(--color-accent-dark); color: var(--color-white); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--color-primary); color: var(--color-white); }
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--color-text-light); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250,250,247,0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.logo span { color: var(--color-accent); }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.92rem;
  color: var(--color-text-light);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.header-cta .btn-primary { padding: 10px 24px; font-size: 0.9rem; }
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle svg { width: 28px; height: 28px; stroke: var(--color-text); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  z-index: 999;
  padding: 80px 30px 30px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.15rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,107,80,0.88), rgba(168,149,110,0.65));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 60px 20px 60px;
  color: var(--color-white);
}
.hero h1 { color: var(--color-white); font-size: 2.6rem; margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.15rem; opacity: 0.92; margin-bottom: 1.5rem; line-height: 1.6; }
.hero-bullets { list-style: none; margin-bottom: 1.8rem; }
.hero-bullets li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.98rem;
  opacity: 0.9;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-cta .btn-primary { padding: 16px 36px; font-size: 1.05rem; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; }
.hero-stat .stat-label { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }

.trust-badges {
  background: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-badges-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.trust-badge svg { width: 24px; height: 24px; stroke: var(--color-primary); flex-shrink: 0; }

.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { width: 100%; height: 50px; display: block; }

section { padding: 60px 20px; }
.section-light { background: var(--color-white); }
.section-alt { background: var(--color-surface); }
.section-pattern-dots {
  position: relative;
}
.section-pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,41,38,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.section-pattern-diagonal {
  position: relative;
}
.section-pattern-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(45,41,38,0.03) 0, rgba(45,41,38,0.03) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}
.section-pattern-wave {
  position: relative;
}
.section-pattern-wave::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(45,41,38,0.02) 0, rgba(45,41,38,0.02) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(45deg, rgba(45,41,38,0.02) 0, rgba(45,41,38,0.02) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}
.section-pattern-grain {
  position: relative;
}
.section-pattern-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,41,38,0.04) 1px, transparent 1px), radial-gradient(circle, rgba(45,41,38,0.03) 1.5px, transparent 1.5px);
  background-size: 20px 20px, 33px 33px;
  pointer-events: none;
}
.newsletter-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-content h2 { color: var(--color-white); margin-bottom: 0.5rem; }
.newsletter-content p { opacity: 0.9; margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 0.8rem;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form .btn-primary { background: var(--color-accent); white-space: nowrap; }
.newsletter-small { font-size: 0.8rem; opacity: 0.7; }

.products-section { position: relative; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-white);
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 16px; }
.product-card-body h3 { font-size: 1rem; margin-bottom: 6px; line-height: 1.35; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--color-accent);
}
.product-rating .stars { letter-spacing: 1px; }
.product-rating .count { color: var(--color-text-muted); }
.product-description {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.55;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.product-description.expanded { max-height: 500px; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 0;
  margin-top: 4px;
}
.stock-indicator {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.stock-in { background: #e8f5e9; color: #2e7d32; }
.stock-low { background: #fff8e1; color: #f57f17; }
.product-card .btn-primary { width: 100%; padding: 12px; font-size: 0.9rem; margin-top: 10px; }
.categories-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.categories-links a {
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  transition: all var(--transition);
}
.categories-links a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.view-all-link { text-align: center; margin-top: 1.5rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 28px; height: 28px; stroke: var(--color-primary); }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.9rem; color: var(--color-text-light); }

.how-it-works-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.how-step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.how-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.how-step p { font-size: 0.88rem; color: var(--color-text-light); }
.step-connector {
  position: absolute;
  top: 26px;
  left: calc(50% + 36px);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--color-border);
}
.how-step:last-child .step-connector { display: none; }

.features-section { position: relative; }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-image { order: 2; }
.feature-block.reverse .feature-text { order: 1; }
.feature-image { border-radius: var(--radius-lg); overflow: hidden; }
.feature-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-text h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--color-text); }
.feature-text > p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.65; margin-bottom: 16px; }
.feature-bullets { list-style: none; margin-bottom: 20px; }
.feature-bullets li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; object-fit: cover; }
.about-text h2 { text-align: left; }
.about-text p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.7; }
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 1.5rem;
}
.about-stat { text-align: center; }
.about-stat .stat-val { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); font-weight: 700; }
.about-stat .stat-lbl { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-author { font-weight: 600; font-size: 0.95rem; }
.review-verified { font-size: 0.75rem; color: var(--color-success); font-weight: 600; }
.review-stars { color: var(--color-accent); font-size: 0.9rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-product { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 8px; font-style: italic; }
.review-text { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }

.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table th {
  background: var(--color-surface);
  font-weight: 600;
  color: var(--color-text);
}
.comparison-table th.highlight {
  background: var(--color-primary);
  color: var(--color-white);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.comparison-table .check { color: var(--color-success); font-weight: 700; font-size: 1.1rem; }
.comparison-table .cross { color: var(--color-error); font-weight: 700; font-size: 1.1rem; }

.timeline-section .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.timeline-item {
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
}
.timeline-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.timeline-item p { font-size: 0.9rem; color: var(--color-text-light); }

.fears-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fear-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.fear-card .fear-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: #fef3ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fear-card .fear-icon svg { width: 24px; height: 24px; stroke: var(--color-accent); }
.fear-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.fear-card p { font-size: 0.88rem; color: var(--color-text-light); }
.fear-card .fear-stat { font-size: 0.8rem; color: var(--color-accent); font-weight: 600; margin-top: 8px; }

.who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.who-card {
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
}
.who-card .who-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-card .who-icon svg { width: 24px; height: 24px; stroke: var(--color-primary); }
.who-card h3 { font-size: 1rem; margin-bottom: 6px; }
.who-card p { font-size: 0.88rem; color: var(--color-text-light); }

.expert-section .expert-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 2rem auto 0;
}
.expert-avatar { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; }
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-info blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 12px;
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
}
.expert-name { font-weight: 700; font-size: 1rem; }
.expert-title { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 12px; }
.expert-tips { list-style: none; }
.expert-tips li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.expert-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.faq-section { position: relative; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 40px 18px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  content: '-';
}
.faq-answer {
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.65;
}
.faq-expand-btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 12px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.faq-expand-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-date { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 6px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 10px; }
.blog-link { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 300ms ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

.site-footer {
  background: #1E1C1A;
  color: #C5BFBA;
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand .logo { color: var(--color-white); font-size: 1.4rem; display: inline-block; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--color-accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 6px; }
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #C5BFBA;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-accent); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--color-accent); }
.social-links svg { width: 18px; height: 18px; fill: #C5BFBA; }
.social-links a:hover svg { fill: var(--color-white); }
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-align: center;
  color: #8A8480;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 14px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: var(--color-text-light); }
.cookie-inner p a { color: var(--color-primary); font-weight: 600; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  padding: 8px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: rgba(30,28,26,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  color: var(--color-white);
}
.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sticky-cta-text { font-size: 0.95rem; font-weight: 500; }
.sticky-cta-bar .btn-primary { padding: 10px 28px; font-size: 0.9rem; }
.sticky-cta-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-header { padding-top: 100px; padding-bottom: 30px; background: var(--color-surface); }
.page-header .container { max-width: 1200px; }
.back-link { display: inline-block; margin-bottom: 12px; font-size: 0.88rem; color: var(--color-text-muted); }
.back-link:hover { color: var(--color-primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--color-text); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-primary); outline: none; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { color: var(--color-success); margin-bottom: 8px; }
.contact-info-block h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item svg { width: 22px; height: 22px; stroke: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.5; }

.about-page .about-story { padding: 40px 20px 60px; max-width: 900px; margin: 0 auto; }
.about-page .about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-page .story-text p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: 1rem; }
.about-page .story-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-page .story-image img { width: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.value-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.88rem; color: var(--color-text-light); }
.about-metrics {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background: var(--color-surface);
}
.about-metric { text-align: center; }
.about-metric .metric-val { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-primary); font-weight: 700; }
.about-metric .metric-lbl { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 4px; }

.terms-page .terms-content, .privacy-page .privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.terms-page h2, .privacy-page h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  text-align: left;
}
.terms-page p, .privacy-page p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.terms-page ul, .privacy-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-light);
}
.terms-page li, .privacy-page li { margin-bottom: 0.3rem; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-block { gap: 30px; }
}
@media (max-width: 768px) {
  section { padding: 50px 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { min-height: 55vh; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 1.3rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .how-it-works-steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .how-step { max-width: 100%; }
  .feature-block { grid-template-columns: 1fr; gap: 24px; }
  .feature-block.reverse .feature-image { order: 0; }
  .feature-block.reverse .feature-text { order: 0; }
  .about-section .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .fears-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-page .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .expert-section .expert-grid { grid-template-columns: 1fr; text-align: center; }
  .expert-avatar { margin: 0 auto; width: 120px; height: 120px; }
  .expert-info blockquote { text-align: left; }
  .sticky-cta-bar .btn-primary { width: 100%; }
  .sticky-cta-inner { flex-direction: column; gap: 8px; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .who-cards { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .about-stats { gap: 16px; flex-wrap: wrap; }
  .about-metrics { gap: 20px; flex-wrap: wrap; }
  .trust-badges-inner { gap: 20px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 10px; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1200px) {
  section { padding: 80px 40px; }
  .container { padding: 0 40px; }
}
