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

:root {
  --primary: #1B5E8C;
  --primary-dark: #0F3D5C;
  --primary-light: #2E8BC0;
  --accent: #E8762D;
  --accent-dark: #C55E1A;
  --accent-light: #F09850;
  --bg-primary: #ffffff;
  --bg-secondary: #F2F7FA;
  --bg-dark: #0F1B2D;
  --text-primary: #1A2332;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --text-white: #F7FAFB;
  --border: #D8E2EA;
  --success: #2E7D4F;
  --warning: #D4A017;
  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(15,59,92,0.08);
  --shadow-md: 0 4px 12px rgba(15,59,92,0.1);
  --shadow-lg: 0 8px 30px rgba(15,59,92,0.12);
  --transition: 200ms ease;
}

*, *::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;
}

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

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

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

h1 { font-size: 2rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
  gap: 8px;
}

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

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline: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.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.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.3rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { color: var(--primary-dark); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }

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

.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); background: var(--bg-secondary); }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  display: block;
}
.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;
  min-height: 50vh;
  display: flex;
  align-items: center;
  margin-top: 60px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,61,92,0.88), rgba(46,139,192,0.65));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 20px;
  max-width: 700px;
}
.hero-content h1 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 24px; }
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-stat { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-stat strong { display: block; font-size: 1.4rem; color: #fff; font-family: var(--font-heading); }

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

section {
  padding: 60px 20px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

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

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.product-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.stock-green { background: #DEF5E5; color: var(--success); }
.stock-yellow { background: #FFF3CD; color: #856404; }

.product-info { padding: 16px; }
.product-info h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.product-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-desc.expanded { max-height: 1000px; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 0;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.product-features {
  list-style: none;
  margin: 8px 0;
  font-size: 0.85rem;
}
.product-features li {
  padding: 3px 0 3px 18px;
  position: relative;
  color: var(--text-secondary);
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
}
.product-card .btn {
  width: 100%;
  margin-top: 12px;
}

.category-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.category-links a {
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}
.category-links a:hover { background: var(--primary); color: #fff; }
.view-all-wrap { text-align: center; margin-top: 20px; }

.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;
  position: relative;
}
.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-secondary);
  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; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { color: var(--text-secondary); font-size: 0.95rem; }

.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: 32px;
  position: relative;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step-item h3 { margin-bottom: 6px; }
.step-item p { color: var(--text-secondary); font-size: 0.9rem; }

.about-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); margin-bottom: 12px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: auto; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.stat-box {
  text-align: center;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}
.stat-box strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
}
.stat-box span { font-size: 0.85rem; color: var(--text-secondary); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 8px; }
.review-text { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.6; }
.review-author { font-weight: 600; font-size: 0.9rem; }
.review-badge {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
}
.review-product { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
}
.comparison-table .brand-col {
  background: rgba(27,94,140,0.06);
  font-weight: 600;
}
.comparison-table .brand-col-header {
  background: var(--primary);
  color: #fff;
}

.who-its-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.audience-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}
.audience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; }
.audience-card h3 { margin-bottom: 8px; }
.audience-card p { color: var(--text-secondary); font-size: 0.9rem; }

.expert-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.expert-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-light);
}
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-text blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 16px;
}
.expert-name { font-weight: 700; }
.expert-title { font-size: 0.9rem; color: var(--text-light); }

.faq-section { position: relative; }
.faq-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;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 40px 18px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-primary);
  position: relative;
  min-height: 44px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  content: '-';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.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.03) 2px, transparent 2px);
  background-size: 20px 20px, 33px 33px;
  pointer-events: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 6px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 10px; }
.blog-card-body a { font-weight: 500; font-size: 0.9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption {
  padding: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  background: var(--bg-secondary);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.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.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-section {
  background: var(--primary);
  position: relative;
  text-align: center;
}
.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: 8px; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn { background: var(--accent); color: #fff; }
.newsletter-form .btn:hover { background: var(--accent-dark); }
.newsletter-small { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 12px; }

.site-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-col p,
.footer-col a { color: rgba(247,250,251,0.7); font-size: 0.9rem; }
.footer-col a { display: block; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-brand p { margin-bottom: 8px; line-height: 1.5; }
.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.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247,250,251,0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 14px 20px;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--primary-light); }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept,
.cookie-decline {
  padding: 8px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  min-height: 44px;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-decline { background: rgba(255,255,255,0.1); color: #fff; }

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.form-success {
  display: none;
  padding: 24px;
  text-align: center;
  background: #DEF5E5;
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 500;
}
.contact-info-block h3 { margin-bottom: 16px; }
.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item p { color: var(--text-secondary); font-size: 0.95rem; }

.about-story { margin-bottom: 40px; }
.about-story p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  text-align: center;
}
.value-card h3 { margin: 12px 0 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.95rem; }

.terms-content h2 {
  margin: 32px 0 12px;
  font-size: 1.3rem;
}
.terms-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}
.terms-content ul {
  margin: 8px 0 16px 20px;
  color: var(--text-secondary);
}
.terms-content li { margin-bottom: 6px; }

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  section { padding: 80px 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .who-its-for-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); }
  .about-section { flex-direction: row; align-items: flex-start; }
  .about-text { flex: 1; }
  .about-img { flex: 0 0 45%; }
  .steps-row {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .step-item { flex: 1; }
  .expert-section { flex-direction: row; text-align: left; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 2.8rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .who-its-for-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .hamburger { display: none; }
  .nav-menu { display: flex; }
}

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

@media (max-width: 1023px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { padding: 12px 16px; width: 100%; }
}
