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

:root {
  --color-primary: #F97316;
  --color-primary-dark: #C2410C;
  --color-secondary: #FB923C;
  --color-accent: #2563EB;
  --color-accent-dark: #1D4ED8;
  --color-bg: #FFF7ED;
  --color-bg-alt: #FFFFFF;
  --color-surface: #FFFDF7;
  --color-text: #1F1410;
  --color-text-muted: #6B5A4F;
  --color-text-light: #A08776;
  --color-foreground: #9A3412;
  --color-border: #FED7AA;
  --color-border-soft: #F3E8D8;
  --color-success: #16A34A;
  --color-danger: #DC2626;
  --color-warn: #EAB308;
  --color-dark: #2A1A10;
  --color-dark-2: #1A0F08;

  --font-head: 'Lexend', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(31, 20, 16, 0.06), 0 1px 3px rgba(31, 20, 16, 0.08);
  --shadow-md: 0 4px 14px rgba(31, 20, 16, 0.08), 0 2px 6px rgba(31, 20, 16, 0.06);
  --shadow-lg: 0 14px 40px rgba(31, 20, 16, 0.12), 0 6px 14px rgba(31, 20, 16, 0.06);
  --shadow-accent: 0 10px 30px rgba(249, 115, 22, 0.25);

  --container: 1200px;
  --container-wide: 1320px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-4); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section { padding: 72px 0; position: relative; }
section:nth-of-type(even) { background: var(--color-bg-alt); }
.section-alt { background: var(--color-bg-alt); }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #EA580C);
  color: #FFF;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(249, 115, 22, 0.35); }

.btn-secondary {
  background: transparent;
  color: var(--color-foreground);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: #FFF; }

.btn-accent {
  background: var(--color-accent);
  color: #FFF;
}
.btn-accent:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

.btn-ghost {
  color: var(--color-foreground);
  background: rgba(249, 115, 22, 0.08);
}
.btn-ghost:hover { background: rgba(249, 115, 22, 0.14); }

.btn-lg { padding: 17px 32px; font-size: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border-soft);
}
.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 14px var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: grid;
  place-items: center;
  color: #FFF;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
  position: relative;
  padding: 6px 2px;
  transition: color 160ms ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-foreground); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta .btn { min-height: 42px; padding: 10px 20px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 26px; height: 26px; }

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 60px 0 70px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(251, 146, 60, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(37, 99, 235, 0.08), transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, #FFEED9 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(154, 52, 18, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-foreground);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

.hero h1 { margin-bottom: var(--space-4); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: var(--space-5);
}
.hero-body p { color: var(--color-text-muted); line-height: 1.7; }
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border-soft);
}
.hero-bullets svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--color-primary);
  margin-top: 1px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.hero-cta-row .trust-line {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #FDECD4;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  right: 16px; top: 16px;
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
}
.hero-badge strong { color: var(--color-primary); font-size: 16px; }
.hero-stats-row {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-stats-row div {
  padding: 10px 16px;
  font-family: var(--font-head);
  text-align: center;
  border-right: 1px solid var(--color-border-soft);
}
.hero-stats-row div:last-child { border-right: none; }
.hero-stats-row strong { display: block; color: var(--color-foreground); font-size: 17px; font-weight: 700; }
.hero-stats-row span { font-size: 11px; color: var(--color-text-muted); letter-spacing: 0.02em; }

.trust-badges {
  background: var(--color-bg-alt);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
}
.trust-badge-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-foreground);
  display: grid;
  place-items: center;
}
.trust-badge-icon svg { width: 26px; height: 26px; }
.trust-badge-item strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--color-text); }
.trust-badge-item span { font-size: 13px; color: var(--color-text-muted); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.section-head h2 { margin-bottom: var(--space-3); }
.section-head p { color: var(--color-text-muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

.products {
  background: var(--color-bg);
  position: relative;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-7);
}
.filter-bar button {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  transition: all 160ms ease;
}
.filter-bar button:hover { border-color: var(--color-primary); color: var(--color-foreground); }
.filter-bar button.active {
  background: var(--color-primary);
  color: #FFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.product-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FAF0E3;
  overflow: hidden;
  position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-stock.in-stock { color: var(--color-success); }
.product-stock.low-stock { color: #B45309; }
.product-stock::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}

.product-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.product-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.product-rating .stars { color: #EAB308; letter-spacing: -1px; font-size: 16px; }
.product-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--color-text);
  min-height: 40px;
}
.product-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.product-desc.collapsed { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-read-more {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 13px;
  align-self: flex-start;
  padding: 0;
}
.product-read-more:hover { text-decoration: underline; }
.product-highlights {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--color-text-muted);
  display: grid;
  gap: 6px;
}
.product-highlights li {
  padding-left: 20px;
  position: relative;
}
.product-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.product-cta { margin-top: auto; display: flex; gap: 8px; }
.product-cta .btn-primary { flex: 1; }

.categories-strip {
  margin-top: var(--space-7);
  padding: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.categories-strip strong { font-family: var(--font-head); margin-right: 8px; }
.categories-strip a {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.10);
  color: var(--color-foreground);
  font-weight: 500;
  font-size: 14px;
  transition: background 160ms ease;
}
.categories-strip a:hover { background: rgba(249, 115, 22, 0.22); }

.section-footer-cta { text-align: center; margin-top: var(--space-7); }

.benefits {
  background: var(--color-bg-alt);
  position: relative;
}
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.08) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.7;
  pointer-events: none;
}
.benefits .container { position: relative; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.benefit-card {
  background: var(--color-bg);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(251, 146, 60, 0.12));
  color: var(--color-foreground);
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.benefit-card p { font-size: 15px; color: var(--color-text-muted); margin: 0; line-height: 1.65; }

.how-it-works {
  background: var(--color-bg);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(154, 52, 18, 0.04) 0, rgba(154, 52, 18, 0.04) 1px, transparent 1px, transparent 18px);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  top: 36px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: var(--space-4);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #FFF;
  display: grid; place-items: center;
  margin: 0 auto var(--space-4);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  box-shadow: var(--shadow-accent);
  border: 4px solid var(--color-bg);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

.features {
  background: var(--color-bg-alt);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(251, 146, 60, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.03), transparent 40%);
  pointer-events: none;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-9);
  position: relative;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block:nth-child(even) .feature-media { order: 2; }
.feature-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F6E6D0;
  box-shadow: var(--shadow-md);
  position: relative;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0), rgba(37, 99, 235, 0.05));
  pointer-events: none;
}
.feature-content h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); margin-bottom: var(--space-4); }
.feature-content > p { font-size: 1.02rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); }
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: grid;
  gap: 12px;
}
.feature-bullets li {
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.55;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 2px solid var(--color-primary);
}
.feature-bullets li::after {
  content: '';
  position: absolute;
  left: 6px; top: 12px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--color-foreground);
  border-bottom: 2px solid var(--color-foreground);
  transform: rotate(-45deg);
}

.about-brief {
  background: var(--color-bg);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: var(--space-4); }
.about-content p { color: var(--color-text-muted); line-height: 1.75; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-5) 0;
}
.about-stats .stat {
  padding: 18px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  text-align: center;
}
.about-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-foreground);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stats .stat span { font-size: 13px; color: var(--color-text-muted); }

.reviews {
  background: var(--color-bg-alt);
  position: relative;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}
.review-card {
  background: var(--color-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -4px; left: 18px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
}
.review-stars { color: #EAB308; letter-spacing: -1px; font-size: 17px; margin-bottom: 10px; }
.review-text { font-size: 15px; color: var(--color-text); line-height: 1.65; margin-bottom: var(--space-4); font-style: italic; }
.review-author { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.review-author .author-name { font-family: var(--font-head); font-weight: 600; color: var(--color-text); }
.review-author .verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.review-product { font-size: 12px; color: var(--color-text-muted); margin-top: 6px; }

.comparison {
  background: var(--color-bg);
  position: relative;
}
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
}
.comparison table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comparison th, .comparison td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-soft);
}
.comparison thead th {
  background: var(--color-bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.comparison .col-brand { background: rgba(249, 115, 22, 0.10) !important; color: var(--color-foreground); position: relative; }
.comparison thead .col-brand { background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(251, 146, 60, 0.10)) !important; font-weight: 800; }
.comparison tbody tr:hover td { background: rgba(249, 115, 22, 0.03); }
.comparison tbody tr:hover td.col-brand { background: rgba(249, 115, 22, 0.16) !important; }
.comparison td:first-child { font-weight: 600; color: var(--color-text); background: var(--color-bg); }

.what-you-get {
  background: var(--color-bg-alt);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}
.timeline::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%; right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  opacity: 0.35;
  z-index: 0;
}
.timeline-item {
  background: var(--color-bg);
  padding: 64px 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  position: relative;
  z-index: 1;
}
.timeline-dot {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-primary);
  z-index: 2;
}
.timeline-item h3 { font-size: 1.05rem; color: var(--color-foreground); margin-bottom: 10px; }
.timeline-item p { font-size: 14px; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

.fears {
  background: var(--color-bg);
  position: relative;
}
.fears::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><path d='M0 30 Q15 20 30 30 T60 30' stroke='%23F97316' stroke-width='0.5' fill='none' opacity='0.3'/></svg>");
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.fears .container { position: relative; }
.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}
.fear-card {
  background: var(--color-bg-alt);
  padding: 26px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.fear-card h3 { font-size: 1.02rem; margin-bottom: 10px; color: var(--color-foreground); line-height: 1.35; }
.fear-card p { font-size: 14.5px; color: var(--color-text-muted); margin: 0; line-height: 1.7; }

.mission {
  background: var(--color-bg-alt);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.mission-card {
  padding: 32px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  text-align: center;
}
.mission-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #FFF;
  display: grid; place-items: center;
  margin: 0 auto var(--space-4);
}
.mission-icon svg { width: 32px; height: 32px; }
.mission-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.mission-card p { font-size: 14.5px; color: var(--color-text-muted); margin: 0; line-height: 1.65; }

.use-cases { background: var(--color-bg); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-4);
}
.use-case-card {
  background: var(--color-bg-alt);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  transition: transform 180ms ease;
}
.use-case-card:hover { transform: translateY(-3px); }
.use-case-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--color-foreground);
  display: grid; place-items: center;
  margin-bottom: var(--space-3);
}
.use-case-icon svg { width: 22px; height: 22px; }
.use-case-card h3 { font-size: 1rem; margin-bottom: 8px; }
.use-case-card p { font-size: 14px; color: var(--color-text-muted); margin: 0; line-height: 1.55; }

.expert {
  background: var(--color-bg-alt);
}
.expert-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-7);
  align-items: start;
  background: var(--color-bg);
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-sm);
}
.expert-avatar {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--color-bg-alt);
  box-shadow: var(--shadow-md);
  background: #F3E8D8;
}
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin: 8px 0 2px; color: var(--color-text); }
.expert-title { font-size: 13px; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.expert-quote {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  padding-left: var(--space-5);
  border-left: 4px solid var(--color-primary);
  margin-bottom: var(--space-5);
}
.expert-tips {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: 10px;
}
.expert-tips li {
  padding: 12px 16px;
  background: rgba(249, 115, 22, 0.07);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--color-text);
  line-height: 1.55;
  border-left: 3px solid var(--color-primary);
}
.expert-disclosure { font-size: 12px; color: var(--color-text-light); font-style: italic; margin: 0; }

.faq { background: var(--color-bg); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq-item[aria-expanded="true"], .faq-item.open { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-text);
  background: none;
  border: none;
  min-height: 48px;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-foreground);
  display: grid; place-items: center;
  font-weight: 700;
  transition: transform 220ms ease, background 160ms ease;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--color-primary); color: #FFF; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-expand-btn {
  display: block;
  margin: var(--space-5) auto 0;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  border: 2px solid var(--color-primary);
  color: var(--color-foreground);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: background 160ms ease;
}
.faq-expand-btn:hover { background: var(--color-primary); color: #FFF; }

.blog { background: var(--color-bg-alt); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.blog-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F6E6D0;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .blog-image img { transform: scale(1.04); }
.blog-body { padding: 20px 22px 24px; }
.blog-meta { font-size: 12px; color: var(--color-text-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head); font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--space-3); line-height: 1.6; }
.blog-read-more { color: var(--color-accent); font-weight: 600; font-size: 14px; }
.blog-read-more:hover { text-decoration: underline; }

.gallery { background: var(--color-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F6E6D0;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--color-border-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(26, 15, 8, 0.85));
  color: #FFF;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  opacity: 0;
  transition: opacity 180ms ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  z-index: 1000;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none !important; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  display: grid; place-items: center;
  font-size: 26px;
  backdrop-filter: blur(8px);
}

.newsletter {
  background-color: #9A3412;
  background-image: linear-gradient(135deg, #9A3412 0%, #C2410C 45%, #EA580C 100%);
  color: #FFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    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-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; padding: 0 var(--space-5); color: #FFF; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.newsletter h2 { color: #FFF; margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.newsletter p { color: rgba(255, 255, 255, 0.92); font-size: 1.03rem; margin-bottom: var(--space-5); }
.newsletter form {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.newsletter input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-sm);
  background: #FFF;
  font: inherit;
  font-size: 15px;
  color: var(--color-text);
  min-height: 48px;
}
.newsletter input[type="email"]:focus { outline: none; }
.newsletter button {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: #FFF;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: background 160ms ease;
  min-height: 48px;
}
.newsletter button:hover { background: #000; }
.newsletter small { display: block; margin-top: 14px; color: rgba(255, 255, 255, 0.75); font-size: 12px; }

.site-footer {
  background: var(--color-dark-2);
  color: #D6C7BA;
  padding: 72px 0 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.footer-brand .brand-logo { color: #FFF; margin-bottom: var(--space-3); }
.footer-brand p { color: #A89683; font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer-contact { margin-top: var(--space-4); display: grid; gap: 10px; font-size: 14px; color: #A89683; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--color-primary); margin-top: 3px; }
.footer-col h4 { color: #FFF; font-size: 1rem; margin-bottom: var(--space-4); letter-spacing: 0.02em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  color: #A89683;
  font-size: 14px;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--color-primary); }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid; place-items: center;
  color: #A89683;
  transition: background 160ms ease, color 160ms ease;
}
.social-icons a:hover { background: var(--color-primary); color: #FFF; }
.social-icons svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8A7868;
}
.footer-bottom .affiliate-disclosure { max-width: 700px; font-size: 12px; color: #6A5A4B; line-height: 1.5; margin: var(--space-4) 0 0; font-style: italic; }

.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(26, 15, 8, 0.96);
  color: #F5E8D9;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13.5px; flex: 1 1 340px; }
.cookie-banner p a { color: var(--color-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  min-height: 36px;
  transition: background 160ms ease;
}
.cookie-accept { background: var(--color-primary); color: #FFF; }
.cookie-accept:hover { background: var(--color-primary-dark); }
.cookie-decline { background: rgba(255, 255, 255, 0.1); color: #F5E8D9; }

.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(26, 15, 8, 0.94);
  color: #FFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(120%);
  transition: transform 280ms ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; flex: 1 1 auto; }
.sticky-cta-text small { display: block; font-weight: 400; font-size: 12px; color: #C9B9A9; margin-top: 2px; }
.sticky-cta .btn { padding: 10px 18px; font-size: 14px; min-height: 38px; }
.sticky-cta-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  display: grid; place-items: center;
}

.wave-divider {
  height: 60px;
  background: inherit;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

.inner-page { padding: 100px 0 64px; background: var(--color-bg); min-height: 60vh; }
.inner-page h1 { margin-bottom: var(--space-2); }
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { text-decoration: underline; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  margin-top: var(--space-6);
}
.contact-form {
  background: var(--color-bg-alt);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
}
.contact-form .form-group { margin-bottom: var(--space-4); }
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--color-text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 160ms ease;
  min-height: 44px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-success {
  padding: 18px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-success);
  font-weight: 600;
  text-align: center;
}
.contact-info-block {
  background: var(--color-bg-alt);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
}
.contact-info-block h3 { margin-bottom: var(--space-4); }
.contact-info-block .info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--space-4); }
.contact-info-block .info-row:last-child { margin-bottom: 0; }
.contact-info-block svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--color-primary); margin-top: 3px; }
.contact-info-block strong { display: block; font-family: var(--font-head); font-size: 14px; margin-bottom: 2px; }
.contact-info-block span { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

.about-story, .terms-page-content, .privacy-page-content {
  max-width: 860px;
  margin: 0 auto;
}
.about-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: var(--space-5) 0;
  box-shadow: var(--shadow-md);
}
.about-story p, .terms-page-content p, .privacy-page-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 1.03rem;
}
.about-story h2, .terms-page-content h2, .privacy-page-content h2 {
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.values-grid .value-card {
  padding: 28px 22px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
}
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.back-home:hover { text-decoration: underline; }

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

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .benefits-grid, .mission-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; gap: var(--space-5); }
  .feature-block:nth-child(even) .feature-media { order: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .expert-inner { grid-template-columns: 1fr; text-align: center; }
  .expert-avatar { max-width: 200px; margin: 0 auto; }
  .expert-quote { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--color-bg); flex-direction: column; padding: var(--space-5); gap: var(--space-4); border-top: 1px solid var(--color-border-soft); box-shadow: var(--shadow-md); max-height: calc(100vh - 70px); overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; font-size: 16px; }
  .menu-toggle { display: grid; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 48px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .benefits-grid, .mission-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .newsletter form { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .sticky-cta { padding: 10px 14px; }
  .sticky-cta .btn { width: 100%; }
  .sticky-cta-text { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .comparison table { font-size: 13px; }
  .comparison th, .comparison td { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
}
