@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
:root {
  --primary: #1a4b7a;
  --primary-dark: #0f3259;
  --secondary: #2d8fca;
  --accent: #e8722a;
  --accent-dark: #c95e1f;
  --bg-primary: #ffffff;
  --bg-secondary: #f3f6fa;
  --bg-dark: #0f1e2e;
  --text: #1e293b;
  --text-light: #64748b;
  --text-white: #f8fafc;
  --border: #e2e8f0;
  --shadow: rgba(26,75,122,0.08);
  --radius: 8px;
  --max-width: 1200px;
  --header-height: 70px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}
*, *::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); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
.container { max-width: var(--max-width); 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-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
  height: var(--header-height);
}
.header.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:focus-visible { outline: 2px solid var(--secondary); outline-offset: 4px; }
.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 {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  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,50,89,0.88), rgba(45,143,202,0.65));
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  color: var(--text-white);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero p { font-size: 1.15rem; margin-bottom: 24px; max-width: 540px; opacity: 0.92; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 700; }
.hero-stat span { font-size: 0.85rem; opacity: 0.8; }
section { padding: 60px 20px; }
.section-light { background: var(--bg-primary); }
.section-alt { background: var(--bg-secondary); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,75,122,0.12); }
.product-card img { width: 100%; height: 280px; object-fit: contain; background: #f8f9fc; padding: 16px; }
.product-card-body { padding: 20px; }
.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; margin-bottom: 8px; }
.product-desc:not(.expanded) { max-height: 4.5em; overflow: hidden; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 600;
}
.read-more-btn:focus-visible { outline: 2px solid var(--secondary); }
.product-features { list-style: none; margin: 10px 0; }
.product-features li { font-size: 0.85rem; padding: 3px 0 3px 18px; position: relative; color: var(--text); }
.product-features li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
}
.stock-badge { font-size: 0.8rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.stock-low { background: #fef3c7; color: #92400e; }
.stock-out { background: #fecaca; color: #991b1b; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.filter-btn.active,
.filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-btn:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }
.view-all-wrap { text-align: center; margin-top: 32px; }
.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(3, 1fr);
  gap: 24px;
  position: relative;
}
.benefit-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-dark); }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); }
.how-it-works-section { position: relative; }
.how-it-works-section::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;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
}
.step-item {
  text-align: center;
  flex: 1;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}
.step-item h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; color: var(--primary-dark); }
.step-item p { font-size: 0.85rem; color: var(--text-light); }
.step-connector {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item:last-child .step-connector { display: none; }
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-preview img { border-radius: var(--radius); width: 100%; }
.about-text h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0;
}
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.about-stat span { font-size: 0.85rem; color: var(--text-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
}
.review-stars { color: #f59e0b; margin-bottom: 8px; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.review-product { font-size: 0.8rem; color: var(--text-light); }
.review-badge { display: inline-block; font-size: 0.75rem; color: var(--secondary); font-weight: 600; margin-top: 4px; }
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s;
}
.who-card:hover { transform: translateY(-4px); }
.who-icon { font-size: 2rem; margin-bottom: 12px; }
.who-card h3 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 6px; }
.who-card p { font-size: 0.85rem; color: var(--text-light); }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
}
.comparison-table .brand-col { background: rgba(45,143,202,0.08); font-weight: 600; }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-wrap { overflow-x: auto; }
.faq-section { position: relative; }
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 25 30 30 Q45 35 60 30' fill='none' stroke='rgba(0,0,0,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.faq-list { max-width: 800px; margin: 0 auto; position: relative; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 48px 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  min-height: 44px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-question:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 18px; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-section { position: relative; }
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1.2px, transparent 1.2px), radial-gradient(circle, rgba(0,0,0,0.03) 0.8px, transparent 0.8px);
  background-size: 20px 20px, 13px 13px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s;
  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-family: var(--font-heading); font-size: 1rem; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.blog-card a { font-weight: 600; font-size: 0.9rem; color: var(--accent); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.8rem;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
}
.lightbox-close:focus-visible { outline: 2px solid #fff; }
.newsletter-section {
  position: relative;
  background: var(--primary);
  color: #fff;
  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-section .container { position: relative; max-width: 600px; }
.newsletter-section h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; }
.newsletter-section p { opacity: 0.9; margin-bottom: 24px; font-size: 1rem; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  min-height: 44px;
}
.newsletter-form input[type="email"]:focus-visible { outline: 3px solid var(--accent); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 44px;
}
.newsletter-form button:hover { background: var(--accent-dark); }
.newsletter-form button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.newsletter-small { font-size: 0.8rem; opacity: 0.7; margin-top: 12px; }
.subscribe-msg { display: none; color: #a7f3d0; font-weight: 600; margin-top: 12px; }
.wave-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 100%; }
.expert-section { position: relative; }
.expert-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--shadow);
  border-left: 4px solid var(--accent);
}
.expert-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; }
.expert-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.expert-name { font-family: var(--font-heading); font-weight: 600; color: var(--primary-dark); }
.expert-title { font-size: 0.85rem; color: var(--text-light); }
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.footer p { font-size: 0.85rem; opacity: 0.8; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(248,250,252,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-links a:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
}
.social-links a:hover { background: var(--accent); }
.social-links a:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 14px 20px;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--secondary); }
.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.2s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-dark); }
.cookie-decline { background: rgba(255,255,255,0.15); color: #fff; }
.cookie-decline:hover { background: rgba(255,255,255,0.25); }
.cookie-btn:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.inner-page { padding-top: calc(var(--header-height) + 40px); }
.inner-page .container { max-width: 900px; }
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}
.back-link:hover { color: var(--accent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.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;
  transition: border-color 0.2s;
  min-height: 44px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(45,143,202,0.15); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-info-block h3 { font-family: var(--font-heading); color: var(--primary-dark); margin-bottom: 20px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--text-light); }
#formThankYou {
  display: none;
  text-align: center;
  padding: 40px;
  background: #ecfdf5;
  border-radius: var(--radius);
}
#formThankYou h3 { color: #065f46; font-family: var(--font-heading); margin-bottom: 8px; }
#formThankYou p { color: #047857; }
.about-page .about-story { margin-bottom: 48px; }
.about-page .about-story p { margin-bottom: 16px; color: var(--text-light); line-height: 1.7; }
.about-page .about-story img { border-radius: var(--radius); margin: 24px 0; max-height: 400px; width: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.value-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary-dark); margin: 12px 0 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }
.terms-page h2 { font-family: var(--font-heading); color: var(--primary-dark); margin: 32px 0 12px; font-size: 1.3rem; }
.terms-page p, .terms-page li { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.terms-page ul { padding-left: 20px; }
.privacy-page h2 { font-family: var(--font-heading); color: var(--primary-dark); margin: 32px 0 12px; font-size: 1.3rem; }
.privacy-page p, .privacy-page li { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.privacy-page ul { padding-left: 20px; }
@media (min-width: 768px) {
  section { padding: 80px 40px; }
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .who-for-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-card { grid-template-columns: 1fr; text-align: center; }
  .expert-card img { margin: 0 auto; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px var(--shadow);
    gap: 16px;
  }
  .nav-links.active { display: flex; }
  .hero { min-height: 350px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 16px; }
  .about-preview { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { flex-wrap: wrap; text-align: center; }
}
@media (max-width: 480px) {
  .who-for-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
}
@media (min-width: 1600px) {
  :root { --max-width: 1400px; }
}
