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

:root {
  --primary: #1B365D;
  --primary-light: #2A4A7F;
  --primary-dark: #0F2240;
  --secondary: #7B3F00;
  --secondary-light: #9A5A1A;
  --accent: #D4860B;
  --accent-light: #E89E2D;
  --accent-hover: #B87209;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F6F3;
  --bg-warm: #F5F0EB;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-light: #64748B;
  --text-on-dark: #F1F5F9;
  --text-on-accent: #FFFFFF;
  --border: #E2E0DC;
  --shadow: rgba(27, 54, 93, 0.08);
  --shadow-lg: rgba(27, 54, 93, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; color: var(--primary); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

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

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

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

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  min-height: 48px;
  min-width: 44px;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); color: var(--text-on-accent); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
  height: var(--header-height);
}
.site-header.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { color: var(--primary); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  padding: 8px 0;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.88), rgba(123, 63, 0, 0.55));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}
.hero-content h1 { color: #fff; font-size: 2.6rem; margin-bottom: 0.75rem; }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; line-height: 1.5; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 1.5rem;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-family: var(--font-heading); }
.hero-stat span { font-size: 0.85rem; opacity: 0.85; }

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

section { padding: 60px 20px; }
section:nth-of-type(odd) { background-color: var(--bg-primary); }
section:nth-of-type(even) { background-color: var(--bg-secondary); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
  min-height: 44px;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-lg); }
.product-card img { width: 100%; height: 280px; object-fit: cover; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
.product-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; max-height: 4.8em; overflow: hidden; transition: max-height 0.4s; }
.product-desc.expanded { max-height: 500px; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--accent-hover);
  font-weight: 600;
  margin: 8px 0 12px;
}
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.product-card .btn-primary { width: 100%; margin-top: 4px; }

.categories-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.categories-bar a {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.categories-bar a:hover { border-color: var(--primary); color: var(--primary); }

.benefits-section {
  position: relative;
  background-image: radial-gradient(circle, rgba(27, 54, 93, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--text-secondary); font-size: 0.92rem; }

.hiw-section {
  position: relative;
  background-image: repeating-linear-gradient(45deg, rgba(27, 54, 93, 0.04) 0, rgba(27, 54, 93, 0.04) 1px, transparent 1px, transparent 16px);
}
.hiw-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.hiw-step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
}
.hiw-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -24px;
  width: 40px;
  height: 2px;
  background: var(--border);
}
.hiw-step:last-child::after { display: none; }
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hiw-step h3 { margin-bottom: 8px; }
.hiw-step p { color: var(--text-secondary); font-size: 0.9rem; }

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-text h2 { text-align: left; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; }
.about-stats {
  display: flex;
  gap: 28px;
  margin: 1.5rem 0;
}
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 1.8rem; color: var(--primary); font-family: var(--font-heading); }
.about-stat span { font-size: 0.85rem; color: var(--text-secondary); }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 360px; object-fit: cover; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.review-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.review-badge {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 20px;
}
.review-text { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; margin-bottom: 12px; }
.review-author { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.review-product { color: var(--text-light); font-size: 0.82rem; margin-top: 2px; }

.who-section .who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.who-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}
.who-card:hover { transform: translateY(-3px); }
.who-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.who-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.who-card h3 { font-size: 1rem; margin-bottom: 6px; }
.who-card p { color: var(--text-secondary); font-size: 0.85rem; }

.comparison-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th { background: var(--primary); color: #fff; font-family: var(--font-heading); font-weight: 600; }
.comparison-table .check { color: #16a34a; font-weight: 700; font-size: 1.1rem; }
.comparison-table .cross { color: #dc2626; font-weight: 700; font-size: 1.1rem; }
.comparison-table tr:hover { background: var(--bg-warm); }

.faq-section {
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='rgba(27,54,93,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 20px;
  pointer-events: none;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"]::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer p { padding-bottom: 18px; }

.blog-section {
  position: relative;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(27,54,93,0.8) 0.5px, transparent 0.5px), radial-gradient(circle, rgba(27,54,93,0.5) 1px, transparent 1px);
  background-size: 16px 16px, 32px 32px;
  background-position: 0 0, 8px 8px;
  pointer-events: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 12px; }
.blog-card-body a { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

.gallery-section { background: var(--bg-secondary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s;
}
.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.7));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-section {
  position: relative;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}
.newsletter-section h2 { color: #fff; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  min-height: 48px;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-hover); }
.newsletter-fine { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 12px; position: relative; z-index: 1; }
.newsletter-thanks { display: none; color: var(--accent-light); font-weight: 600; margin-top: 12px; position: relative; z-index: 1; }

.expert-section {
  max-width: var(--max-width);
  margin: 0 auto;
}
.expert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 2px 20px var(--shadow);
  border-left: 4px solid var(--accent);
}
.expert-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.expert-quote { font-size: 1.05rem; font-style: italic; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.expert-name { font-family: var(--font-heading); font-weight: 600; color: var(--primary); }
.expert-title { color: var(--text-light); font-size: 0.88rem; }

.site-footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 60px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo-icon { background: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; margin-bottom: 4px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin-bottom: 6px; }

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--primary-dark);
  color: #fff;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--accent-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.inner-page { padding-top: calc(var(--header-height) + 40px); min-height: 100vh; }
.inner-page .container { max-width: 900px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 2rem;
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  min-height: 44px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); outline: none; }
.form-thank-you {
  display: none;
  padding: 24px;
  background: #f0fdf4;
  border-radius: var(--radius);
  color: #16a34a;
  font-weight: 600;
  text-align: center;
}

.contact-info-block h3 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.5; }
.contact-info-item strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

.about-page .about-story { margin-bottom: 3rem; }
.about-page .about-story p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.about-page .story-img { border-radius: var(--radius-lg); margin: 2rem 0; overflow: hidden; }
.about-page .story-img img { width: 100%; max-height: 400px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.value-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

.terms-page h2 { margin-top: 2rem; font-size: 1.4rem; }
.terms-page p, .terms-page ul { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.terms-page ul { padding-left: 1.5rem; }
.terms-page li { margin-bottom: 0.5rem; }
.terms-date { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }

.privacy-page h2 { margin-top: 2rem; font-size: 1.4rem; }
.privacy-page p, .privacy-page ul { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.privacy-page ul { padding-left: 1.5rem; }
.privacy-page li { margin-bottom: 0.5rem; }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .who-section .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 48px 16px; }

  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 10px 30px var(--shadow-lg);
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 8px; border-bottom: none; }

  .hero { height: auto; min-height: 50vh; padding: 40px 0; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-stats { gap: 20px; }

  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; align-items: center; gap: 24px; }
  .hiw-step::after { display: none; }
  .about-section .about-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .who-section .who-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 180px; }
  .newsletter-form { flex-direction: column; }
  .expert-card { grid-template-columns: 1fr; text-align: center; }
  .expert-avatar { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
}

@media (min-width: 1600px) {
  :root { --max-width: 1400px; }
}
