:root {
  --color-primary: #0284C7;
  --color-primary-dark: #0369A1;
  --color-secondary: #06B6D4;
  --color-accent: #0891B2;
  --color-bg: #F0F9FF;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0F4F8;
  --color-text: #0F172A;
  --color-text-light: #475569;
  --color-text-muted: #94A3B8;
  --color-border: #E0F0F8;
  --color-destructive: #DC2626;
  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(2, 132, 199, 0.08);
  --shadow-md: 0 4px 12px rgba(2, 132, 199, 0.12);
  --shadow-lg: 0 8px 30px rgba(2, 132, 199, 0.16);
}

*, *::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(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240, 249, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  padding: 12px 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
  padding: 8px 0;
}

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

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  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(2, 132, 199, 0.88), rgba(8, 145, 178, 0.65));
}

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

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.5;
}

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

.hero-stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  color: #fff;
}

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

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

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

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

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

.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}

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

section {
  padding: 60px 20px;
}

.section-light {
  background-color: var(--color-surface);
}

.section-alt {
  background-color: var(--color-surface-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.products-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  background: var(--color-surface);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

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

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

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f8fbfe;
  padding: 16px;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

.product-description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 8px;
  max-height: 4.5em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

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

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

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
}

.product-card .btn-primary {
  margin-top: auto;
  text-align: center;
  width: 100%;
  display: block;
}

.product-features {
  list-style: none;
  margin-bottom: 12px;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.categories-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.benefits-section {
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(2,132,199,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: 32px 24px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

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

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

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

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

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

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

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

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

.step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 250px;
  margin: 0 auto;
}

.about-brief {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.about-brief-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-brief-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

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

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

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

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

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

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

.review-card {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}

.review-meta strong {
  display: block;
  font-size: 0.95rem;
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.review-card .stars {
  margin-bottom: 8px;
}

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

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

.comparison-table-wrap {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  padding: 14px 16px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
  background: var(--color-primary-dark);
}

.comparison-table th.highlight {
  background: var(--color-secondary);
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

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

.comparison-table tr:hover {
  background: rgba(2, 132, 199, 0.04);
}

.check-yes {
  color: #22C55E;
  font-size: 1.2rem;
}

.check-no {
  color: var(--color-destructive);
  font-size: 1.2rem;
}

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

.who-card {
  background: var(--color-surface);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

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

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

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

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

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

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.blog-section {
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(2,132,199,0.03) 1.5px, transparent 1.5px), radial-gradient(circle, rgba(6,182,212,0.02) 1px, transparent 1px);
  background-size: 30px 30px, 15px 15px;
  background-position: 0 0, 7px 7px;
  pointer-events: none;
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-3px);
}

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

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

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

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-body 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 {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

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

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

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

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.newsletter-section h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsletter-section > .container > p,
.newsletter-content > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1rem;
}

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

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

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

.newsletter-form button {
  padding: 12px 28px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #05A5C2;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.site-footer {
  background: #0C1829;
  color: rgba(255,255,255,0.75);
  padding: 60px 20px 24px;
}

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

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

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

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

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

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

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--color-surface);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--color-text-light);
}

.cookie-banner a {
  font-weight: 600;
}

.cookie-btns {
  display: flex;
  gap: 8px;
}

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

.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 44px;
  font-family: var(--font-body);
}

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

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

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

.page-content {
  padding-top: 100px;
  min-height: 60vh;
}

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

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

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 0.2s ease;
  min-height: 44px;
}

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

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

.contact-form .btn-primary {
  width: 100%;
}

#formMessage {
  display: none;
  padding: 16px;
  background: #ECFDF5;
  color: #065F46;
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-top: 16px;
}

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

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

.about-story-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.about-story img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
}

.about-story-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

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

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

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

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

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

.terms-content h2,
.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

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

.terms-content ul,
.privacy-content ul {
  margin-left: 20px;
  margin-bottom: 14px;
  color: var(--color-text-light);
}

.terms-content li,
.privacy-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.expert-section {
  background: var(--color-surface);
}

.expert-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

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

.expert-quote {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.expert-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

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

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

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

  .hero p {
    font-size: 1.2rem;
  }

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

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

  .steps-container {
    flex-direction: row;
    justify-content: center;
  }

  .step {
    flex: 1;
  }

  .about-brief {
    flex-direction: row;
  }

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

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

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

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

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

  .about-story-grid {
    flex-direction: row;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .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-preview-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;
  }

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

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

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

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

@media (max-width: 767px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

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

  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 350px;
  }

  .hero-stats {
    gap: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

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