@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: #2D6A4F;
  --primary-dark: #1B4332;
  --primary-light: #52B788;
  --secondary: #74C69D;
  --accent: #D4A373;
  --accent-dark: #B07D4F;
  --bg-primary: #FAFDF7;
  --bg-secondary: #F0F5EA;
  --bg-dark: #1B4332;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --text-light: #B2BEC3;
  --text-on-dark: #F0F5EA;
  --white: #FFFFFF;
  --border: #D8E4D0;
  --shadow: rgba(45, 106, 79, 0.08);
  --shadow-md: rgba(45, 106, 79, 0.12);
  --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: 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);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.3; }
h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  min-height: 48px;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,163,115,0.3); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,253,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  height: var(--header-height);
}
.site-header.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  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-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg { width: 32px; height: 32px; }
.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.header-cta .btn { padding: 10px 24px; font-size: 0.9rem; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 60px;
  background: url('imgs/hero-outdoor.jpg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.88), rgba(45,106,79,0.65));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 1rem; max-width: 700px; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; }
.hero .btn { margin-right: 12px; margin-bottom: 12px; }
.hero-stats { display: flex; gap: 40px; margin-top: 2rem; }
.hero-stat { color: var(--white); }
.hero-stat .number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.hero-stat .label { font-size: 0.85rem; opacity: 0.8; }
.wave-divider {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 100%; }

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-md); }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-info { padding: 20px; }
.product-info h3 { margin-bottom: 8px; font-size: 1.05rem; line-height: 1.4; }
.product-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; overflow: hidden; max-height: 4.5em; transition: max-height 0.3s; }
.product-desc.expanded { max-height: 500px; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 0;
  margin-top: 4px;
}
.read-more-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.product-card .btn { display: block; margin: 16px 20px 20px; text-align: center; }
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}
.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
}
.stock-low .stock-dot { background: #E17055; }
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  min-height: 44px;
}
.filter-btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.filter-btn:hover,
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.products-footer { text-align: center; margin-top: 2.5rem; }
.products-footer .categories-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; }
.products-footer .categories-links a {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
}
.products-footer .categories-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

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

.how-it-works-section {
  background-image: repeating-linear-gradient(45deg, rgba(45,106,79,0.04) 0, rgba(45,106,79,0.04) 1px, transparent 1px, transparent 16px);
}
.steps-grid { display: flex; align-items: flex-start; gap: 24px; justify-content: center; position: relative; }
.step-item { text-align: center; flex: 1; max-width: 250px; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step-item p { color: var(--text-secondary); font-size: 0.9rem; }
.step-connector {
  position: absolute;
  top: 28px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: var(--border);
}
.step-item:last-child .step-connector { display: none; }

.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-preview img { border-radius: var(--radius-lg); width: 100%; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; }
.about-stats { display: flex; gap: 32px; margin-top: 1.5rem; }
.about-stat .number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.about-stat .label { font-size: 0.85rem; color: var(--text-secondary); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow);
}
.review-stars { color: #F9A825; font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-card h4 { margin-bottom: 8px; }
.review-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.review-meta {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.verified { color: var(--primary-light); font-weight: 600; }

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}
.who-card svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 12px; }
.who-card h3 { font-size: 1rem; margin-bottom: 6px; }
.who-card p { color: var(--text-secondary); font-size: 0.85rem; }

.expert-section { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.expert-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
}
.expert-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.expert-name { font-weight: 700; color: var(--primary-dark); }
.expert-title { font-size: 0.9rem; color: var(--text-secondary); }

.faq-section {
  background-image: repeating-linear-gradient(0deg, rgba(45,106,79,0.03) 0, rgba(45,106,79,0.03) 1px, transparent 1px, transparent 8px),
                    repeating-linear-gradient(90deg, rgba(45,106,79,0.03) 0, rgba(45,106,79,0.03) 1px, transparent 1px, transparent 8px);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  min-height: 48px;
}
.faq-question:focus-visible { outline: 3px solid var(--primary); outline-offset: -3px; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-answer p { padding-bottom: 18px; color: var(--text-secondary); line-height: 1.6; font-size: 0.95rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-section {
  position: relative;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}
.blog-grid { position: relative; z-index: 1; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.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: 6px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 12px; }
.blog-card .read-more { font-weight: 600; font-size: 0.9rem; color: var(--primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; aspect-ratio: 1/1; 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.6));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); cursor: default; }

section.newsletter-section {
  background-color: var(--primary) !important;
  position: relative;
  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: var(--white); position: relative; z-index: 1; }
.newsletter-section p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; 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 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  min-height: 48px;
}
.newsletter-form input:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
  font-family: var(--font-body);
}
.newsletter-form button:hover { background: var(--accent-dark); }
.newsletter-form button:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.newsletter-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.8rem; position: relative; z-index: 1; }

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: rgba(240,245,234,0.7); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(240,245,234,0.7); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.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;
  color: var(--white);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary-light); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(240,245,234,0.5);
}
.footer-bottom a { color: rgba(240,245,234,0.6); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1500;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-banner a { text-decoration: underline; }
.cookie-accept, .cookie-decline {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  font-family: var(--font-body);
  min-height: 44px;
}
.cookie-accept { background: var(--primary); color: var(--white); }
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline { background: var(--bg-secondary); color: var(--text-primary); }
.cookie-decline:hover { background: var(--border); }
.cookie-accept:focus-visible, .cookie-decline:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

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

.inner-page { padding-top: calc(var(--header-height) + 40px); }
.inner-page .page-header { max-width: var(--max-width); margin: 0 auto; padding: 0 20px 40px; }
.inner-page .page-header h1 { margin-bottom: 8px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary);
}
.back-link:hover { color: var(--primary-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.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;
  transition: border-color 0.2s;
  min-height: 48px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); outline: none; }
.contact-form input:focus-visible,
.contact-form textarea:focus-visible { outline: 3px solid var(--primary); outline-offset: -3px; }
.contact-info-block h3 { margin-bottom: 16px; }
.contact-info-block p { color: var(--text-secondary); margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; }
#formThankYou {
  display: none;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
#formThankYou h3 { color: var(--primary); margin-bottom: 8px; }

.about-story { max-width: var(--max-width); margin: 0 auto; padding: 0 20px 60px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-story-grid img { border-radius: var(--radius-lg); width: 100%; }
.about-story-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}
.value-card svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }
.about-metrics { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding: 40px 20px 0; }

.terms-content, .privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.terms-content h2, .privacy-content h2 { margin-top: 2rem; margin-bottom: 0.8rem; font-size: 1.4rem; }
.terms-content p, .privacy-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.terms-content ul, .privacy-content ul { color: var(--text-secondary); margin-bottom: 1rem; padding-left: 24px; }
.terms-content li, .privacy-content li { margin-bottom: 6px; }

.wave-footer-divider { margin-bottom: -1px; }

@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  section { padding: 80px 40px; }
  .hero { padding: 140px 40px 80px; }
  .hero h1 { font-size: 3.2rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.4rem; }
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .who-for-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-section { grid-template-columns: 1fr; text-align: center; }
  .expert-photo { margin: 0 auto; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .nav-menu.active { transform: translateX(0); }
  .header-cta { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .who-for-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .who-for-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1600px) {
  :root { --max-width: 1400px; }
}
