@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
:root {
  --primary: #1B3A5C;
  --primary-light: #2D5F8A;
  --primary-dark: #0F2440;
  --accent: #E8650A;
  --accent-hover: #D45800;
  --text: #1A1A2E;
  --text-light: #4A5568;
  --bg-primary: #ffffff;
  --bg-secondary: #F5F7FA;
  --bg-dark: #0F1B2D;
  --bg-footer: #111827;
  --border: #E2E8F0;
  --white: #ffffff;
  --star: #F59E0B;
  --success: #10B981;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --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);
  line-height: 1.6;
  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(--accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  min-height: 44px;
  min-width: 44px;
  text-align: center;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
: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: box-shadow var(--transition);
  height: var(--header-height);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.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-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  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 {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,0.88), rgba(27,58,92,0.7));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--white);
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 700px;
}
.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 550px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.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 {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
section {
  padding: 60px 20px;
}
section:nth-of-type(odd) {
  background-color: var(--bg-primary);
}
section:nth-of-type(even) {
  background-color: var(--bg-secondary);
}
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fafafa;
  padding: 16px;
}
.product-info {
  padding: 16px;
}
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-description {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.product-description.expanded {
  max-height: 500px;
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.product-stock {
  display: inline-block;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 8px 0;
  font-weight: 600;
}
.stock-in {
  background: #D1FAE5;
  color: #065F46;
}
.stock-low {
  background: #FEF3C7;
  color: #92400E;
}
.product-card .btn-primary {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: 0.9rem;
}
.categories-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.categories-links a {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.categories-links a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.view-all-wrap {
  text-align: center;
  margin-top: 24px;
}
.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: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
}
.benefit-card {
  text-align: center;
  padding: 32px 24px;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--text-light);
  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.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}
.steps-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.step-item {
  text-align: center;
  flex: 1;
  max-width: 240px;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  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 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  color: var(--border);
  font-size: 1.5rem;
}
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: left;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0;
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}
.about-image img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow-md);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars {
  color: var(--star);
  font-size: 1rem;
  margin-bottom: 8px;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-light);
}
.review-author {
  font-weight: 600;
  font-size: 0.9rem;
}
.review-verified {
  font-size: 0.8rem;
  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;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}
.comparison-table th.brand-col {
  background: var(--accent);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.comparison-table tr:hover {
  background: var(--bg-secondary);
}
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.who-for-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.who-for-card:hover {
  transform: translateY(-4px);
}
.who-for-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.who-for-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.who-for-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.who-for-card p {
  font-size: 0.9rem;
  color: var(--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' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10' fill='none' stroke='%23000' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: var(--text);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  content: '-';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
}
.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: 18px 18px, 32px 32px;
  pointer-events: none;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  position: relative;
}
.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: 8px;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-card .read-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  padding: 10px 14px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  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;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-section {
  background: var(--primary) !important;
  position: relative;
  text-align: center;
  color: var(--white);
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}
.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
}
.newsletter-section .section-subtitle {
  color: rgba(255,255,255,0.85);
  position: relative;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  min-height: 44px;
}
.newsletter-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  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(--accent-hover);
}
.newsletter-spam {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 12px;
  position: relative;
}
.expert-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.expert-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
}
.expert-quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}
.expert-name {
  font-weight: 700;
  font-size: 1rem;
}
.expert-title {
  color: var(--text-light);
  font-size: 0.9rem;
}
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.8);
  padding: 60px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .logo-mark {
  background: var(--accent);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-col a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.social-links a:hover {
  background: var(--accent);
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p {
  margin-bottom: 4px;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-footer);
  color: var(--white);
  padding: 14px 20px;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-accept,
.cookie-decline {
  padding: 8px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 44px;
}
.cookie-accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 44px;
}
.page-content {
  padding-top: calc(var(--header-height) + 40px);
  min-height: 60vh;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.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: 1rem;
  transition: border-color var(--transition);
  min-height: 44px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.contact-detail p {
  color: var(--text-light);
  font-size: 0.95rem;
}
#formThankYou {
  display: none;
  text-align: center;
  padding: 40px 0;
}
#formThankYou h3 {
  color: var(--success);
  margin-bottom: 8px;
}
.about-story {
  max-width: 800px;
  margin: 0 auto 48px;
}
.about-story p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-story img {
  border-radius: var(--radius);
  margin: 24px 0;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 12px;
}
.value-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.terms-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.terms-content h2,
.privacy-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  text-align: left;
}
.terms-content p,
.privacy-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.terms-content ul,
.privacy-content ul {
  margin: 0 0 14px 24px;
  color: var(--text-light);
}
.terms-content li,
.privacy-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.metrics-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.metric-item {
  text-align: center;
}
.metric-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.metric-label {
  font-size: 0.9rem;
  color: var(--text-light);
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 48px 16px;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .hero {
    min-height: 350px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-number {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .about-preview {
    grid-template-columns: 1fr;
  }
  .about-text h2 {
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }
  .steps-row {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .expert-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .expert-avatar {
    display: flex;
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  section {
    padding: 80px 40px;
  }
}
@media (min-width: 1600px) {
  :root {
    --max-width: 1400px;
  }
}
