@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2D5F2D;
  --primary-light: #3A7A3A;
  --primary-dark: #1E4A1E;
  --secondary: #7BA05B;
  --secondary-light: #94B87A;
  --accent: #D48B2C;
  --accent-hover: #B87524;
  --bg-primary: #FEFDF5;
  --bg-secondary: #F4F1E8;
  --bg-dark: #1A2E1A;
  --bg-dark-lighter: #243824;
  --text-primary: #1A2E1A;
  --text-secondary: #4A6B4A;
  --text-light: #F4F1E8;
  --text-muted: #6B8A6B;
  --border: #D4CEBC;
  --shadow: rgba(26, 46, 26, 0.1);
  --shadow-md: rgba(26, 46, 26, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

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

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
  height: var(--header-height);
}

header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

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

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-text h1 {
  margin-bottom: 16px;
  font-size: 2.8rem;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-md);
}

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

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: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.filter-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.product-card-body {
  padding: 20px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.4;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  max-height: 72px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product-card-desc.expanded {
  max-height: 500px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 12px;
  font-family: var(--font-body);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.read-more-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.stock-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  background: #E8F5E8;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-card .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}

.categories-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.categories-links a {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.categories-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.view-all-wrap {
  text-align: center;
  margin-top: 28px;
}

.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: 36px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.about-stat {
  text-align: center;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
}

.about-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

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

.review-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

.review-verified {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.review-product {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

.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: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.who-card:hover {
  transform: translateY(-2px);
}

.who-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 1.1rem;
  margin-bottom: 8px;
}

.who-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.expert-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.expert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--accent);
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

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

.expert-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.expert-name {
  font-weight: 700;
  color: var(--primary);
}

.expert-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.expert-tips {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.expert-tips h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.expert-tips ul {
  list-style: none;
  padding: 0;
}

.expert-tips li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.expert-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.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;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  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: var(--text-light);
  margin-bottom: 12px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, 0.7);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: rgba(244, 241, 232, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-col ul a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-dark-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--bg-dark-lighter);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244, 241, 232, 0.5);
}

.footer-bottom p {
  margin-bottom: 4px;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 14px 20px;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-accept {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 44px;
  font-family: var(--font-body);
}

.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(244, 241, 232, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  min-height: 44px;
  font-family: var(--font-body);
}

.cookie-accept:focus-visible,
.cookie-decline:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.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 fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.back-link:hover {
  color: var(--accent);
}

.page-header {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  background: var(--bg-secondary);
}

.page-header h1 {
  font-size: 2.2rem;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.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: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s ease;
  min-height: 44px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -1px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-block h3 {
  margin-bottom: 16px;
}

.contact-info-block p {
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-block strong {
  color: var(--text-primary);
}

.form-thank-you {
  display: none;
  padding: 40px;
  text-align: center;
  background: #E8F5E8;
  border-radius: var(--radius);
}

.form-thank-you h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.about-page .about-story {
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-page .about-story p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-page .about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: 0 10px 40px var(--shadow);
}

.about-page .about-story-img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

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

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 48px auto 0;
}

.metric-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.metric-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
}

.metric-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.terms-page .terms-content,
.privacy-page .privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-page h2,
.privacy-page h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.terms-page p,
.privacy-page p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.terms-page ul,
.privacy-page ul {
  margin-bottom: 12px;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  section {
    padding: 80px 40px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .hero {
    padding: 120px 40px 80px;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }
}

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-avatar {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 20px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-height: 280px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-header {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
