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

:root {
  --primary: #5C3D2E;
  --primary-dark: #3E2518;
  --primary-light: #7A5540;
  --accent: #D4722C;
  --accent-dark: #B85E1F;
  --accent-light: #E8944F;
  --bg-primary: #ffffff;
  --bg-secondary: #F5F0EB;
  --bg-dark: #2A1A10;
  --text-primary: #2C1810;
  --text-secondary: #5A4535;
  --text-light: #8A7565;
  --text-on-dark: #F5F0EB;
  --border: #D4C4B5;
  --success: #4A7C3F;
  --warning: #D4972C;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(44,24,16,0.08);
  --shadow-lg: 0 8px 30px rgba(44,24,16,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

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

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

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

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.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 var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 60px;
}

.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(62,37,24,0.88), rgba(212,114,44,0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

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

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.hero-stat span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.wave-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

section {
  padding: 60px 20px;
}

.section-light {
  background: var(--bg-primary);
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  min-height: 44px;
}

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

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: none;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 60px;
  overflow: hidden;
  transition: max-height var(--transition);
}

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

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 600;
  min-height: 44px;
}

.stock-indicator {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 8px 0;
}

.stock-in {
  background: #e8f5e3;
  color: var(--success);
}

.product-card .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  padding: 12px;
  font-size: 0.9rem;
}

.categories-block {
  margin-top: 30px;
  text-align: center;
}

.categories-block a {
  display: inline-block;
  margin: 5px 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.benefits-section {
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.how-it-works {
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.step-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

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

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

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

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--warning);
  margin-bottom: 8px;
  font-size: 1rem;
}

.review-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
}

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

.review-meta {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.review-meta .verified {
  color: var(--success);
  font-weight: 600;
}

.comparison-section {
  position: relative;
}

.comparison-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 8px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.92rem;
}

.comparison-table thead th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-table thead th.brand-col {
  background: var(--accent);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-secondary);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.check { color: var(--success); font-size: 1.2rem; }
.cross { color: #c0392b; font-size: 1.2rem; }

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.who-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.who-card .who-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  text-transform: none;
}

.who-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.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 Q25 0 50 10 Q75 20 100 10' fill='none' stroke='rgba(0,0,0,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 20px;
  pointer-events: none;
}

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

.faq-item {
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 16px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-section {
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,0.02) 2px, transparent 2px);
  background-size: 20px 20px, 33px 33px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 16px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-transform: none;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.blog-card a {
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-caption {
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  min-height: 44px;
  min-width: 44px;
}

.newsletter-section {
  background: var(--accent);
  position: relative;
  text-align: center;
  color: #fff;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    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-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.newsletter-section h2 {
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-section p {
  margin-bottom: 20px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.95rem;
  min-height: 44px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}

.newsletter-form button:hover {
  background: var(--primary);
}

.newsletter-small {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 10px;
}

.expert-section {
  position: relative;
}

.expert-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.expert-text blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.expert-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

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

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: rgba(245,240,235,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(245,240,235,0.7);
  font-size: 1rem;
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,240,235,0.5);
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--accent-light);
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 44px;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-decline {
  background: transparent;
  color: rgba(245,240,235,0.7);
  border: 1px solid rgba(245,240,235,0.3);
}

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

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-link {
  display: inline-block;
  margin-top: 80px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.92rem;
}

.inner-page {
  padding-top: 10px;
}

.inner-page h1 {
  margin-bottom: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.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;
  min-height: 44px;
}

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

.contact-info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

#formMessage {
  display: none;
  padding: 20px;
  background: #e8f5e3;
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 600;
  text-align: center;
}

.about-story {
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.about-mission {
  max-width: 1000px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card h3 {
  margin: 10px 0;
  font-size: 1.1rem;
}

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

.value-icon {
  font-size: 2rem;
}

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

.terms-content h2,
.privacy-content h2 {
  margin: 30px 0 12px;
  font-size: 1.3rem;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px auto;
  max-width: 600px;
}

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

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
}

.stat-card span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  section { padding: 80px 40px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }

  .steps-row { flex-direction: row; }

  .hero h1 { font-size: 2.8rem; }

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

  .expert-card { flex-direction: row; text-align: left; }
  .expert-text blockquote { text-align: left; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  .hamburger { display: none; }
  .nav-menu { display: flex; }

  .who-for-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

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

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

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