@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #111827;
  --primary: #1F2937;
  --card: #1F2937;
  --card-alt: #243044;
  --accent: #F97316;
  --accent-dk: #EA6C0A;
  --text: #F9FAFB;
  --muted: #9CA3AF;
  --border: #374151;
  --dark: #0D1117;
  --font-h: 'Righteous', cursive;
  --font-b: 'Poppins', sans-serif;
  --nav-h: 72px;
  --r: 10px;
  --r-lg: 16px;
  --tr: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.2; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 620px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--r); font-weight: 600; font-size: 15px; transition: all var(--tr); cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,24,39,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: all var(--tr);
}
nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 20px; color: var(--text); }
.nav-logo span span { color: var(--accent); }
.nav-logo-icon { font-size: 26px; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all var(--tr); }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(249,115,22,0.1); }
.nav-cta { margin-left: 12px; padding: 9px 22px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a { padding: 14px 16px; border-radius: var(--r); font-size: 17px; font-weight: 500; color: var(--text); border: 1px solid var(--border); display: block; }
.mobile-menu a:hover { background: var(--primary); border-color: var(--accent); }
.mobile-menu .btn { margin-top: 12px; }

#hero {
  min-height: 480px;
  height: 50vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1117 0%, #111827 60%, #1a2235 100%);
}
.hero-bg {
  position: absolute; top: 0; right: 0; width: 48%; height: 100%;
  background-size: cover; background-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-content h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; line-height: 1.15; }
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-content p { font-size: 17px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-proof { display: flex; gap: 24px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.proof-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.proof-star { color: #FBBF24; font-size: 14px; }

#products { background: var(--bg); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px; border-radius: 30px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--muted); transition: all var(--tr); cursor: pointer;
  background: transparent;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,0.3); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--card); border-radius: var(--r-lg); border: 1px solid var(--border);
  overflow: hidden; transition: all var(--tr); cursor: default;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: rgba(249,115,22,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(249,115,22,0.15); transform: translateY(-4px); }
.product-card.hidden { display: none; }
.product-img-wrap {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  background: #1a2235; display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-name { font-family: var(--font-h); font-size: 15px; line-height: 1.3; color: var(--text); }
.stock-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: rgba(34,197,94,0.12); color: #4ADE80; border: 1px solid rgba(74,222,128,0.25); white-space: nowrap; flex-shrink: 0; }
.product-desc-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.product-desc-text.collapsed { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-btn { background: none; border: none; color: var(--accent); font-size: 12px; font-weight: 600; cursor: pointer; padding: 0; transition: color var(--tr); align-self: flex-start; }
.read-more-btn:hover { color: var(--accent-dk); }
.product-features { display: flex; flex-direction: column; gap: 5px; }
.product-features li { font-size: 12px; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; }
.product-features li::before { content: '✓'; color: var(--accent); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.product-footer { margin-top: auto; padding-top: 4px; }
.products-view-all { text-align: center; margin-top: 48px; }

.benefits-section { background: var(--primary); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg); transition: all var(--tr); }
.benefit-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-3px); }
.benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(249,115,22,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--accent); }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px rgba(249,115,22,0.2); }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.about-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: var(--font-h); font-size: 28px; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.reviews-section { background: var(--primary); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--bg); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; transition: border-color var(--tr); }
.review-card:hover { border-color: rgba(249,115,22,0.3); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.reviewer-info { display: flex; flex-direction: column; gap: 3px; }
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-product { font-size: 12px; color: var(--accent); }
.review-stars { display: flex; gap: 2px; }
.star { color: #FBBF24; font-size: 14px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.verified-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: #4ADE80; font-weight: 600; }

.comparison-section { background: var(--bg); }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comparison-table th { background: var(--dark); padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); }
.comparison-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid rgba(55,65,81,0.5); vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.comparison-table tbody tr:hover { background: rgba(249,115,22,0.05); }
.check { color: #4ADE80; font-size: 16px; font-weight: 700; }
.cross { color: #EF4444; font-size: 16px; }
.td-name { font-weight: 600; font-family: var(--font-h); font-size: 13px; }
.td-tag { font-size: 11px; color: var(--muted); display: block; font-family: var(--font-b); font-weight: 400; margin-top: 2px; }

.faq-section { background: var(--primary); }
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: border-color var(--tr); }
.faq-item.open { border-color: rgba(249,115,22,0.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--text); text-align: left; gap: 16px; transition: color var(--tr); }
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 18px; font-weight: 400; line-height: 1; transition: all var(--tr); }
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }

.gallery-section { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: flex-end; padding: 16px; transition: background var(--tr); }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); }
.gallery-caption { font-size: 13px; font-weight: 600; color: #fff; opacity: 0; transform: translateY(8px); transition: all var(--tr); }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-zoom { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr); }
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 18px; height: 18px; color: #fff; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.92); padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; cursor: pointer; transition: background var(--tr); }
.lightbox-close:hover { background: rgba(249,115,22,0.6); }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.7); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 13px; white-space: nowrap; }

footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 18px; }
.footer-logo span span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-line svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-col h4 { font-family: var(--font-h); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--text); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color var(--tr); }
.footer-col ul a:hover { color: var(--accent); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: var(--primary); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; color: var(--muted); transition: color var(--tr); }
.social-link:hover svg { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-disclaimer { font-size: 12px; color: rgba(156,163,175,0.6); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 13px; color: var(--muted); transition: color var(--tr); }
.footer-legal a:hover { color: var(--accent); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--dark); border-top: 2px solid var(--accent);
  padding: 12px 24px; display: none; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-text { font-size: 13px; color: var(--muted); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { padding: 8px 18px; background: var(--accent); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: background var(--tr); }
.cookie-accept:hover { background: var(--accent-dk); }
.cookie-decline { padding: 8px 18px; background: transparent; color: var(--muted); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; transition: all var(--tr); }
.cookie-decline:hover { border-color: var(--muted); color: var(--text); }

.inner-page { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; }
.page-header { margin-bottom: 40px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 20px; transition: color var(--tr); }
.back-link:hover { color: var(--accent); }
.back-link svg { width: 16px; height: 16px; }
.page-header h1 { font-size: clamp(32px, 5vw, 48px); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  background: var(--primary); border: 1px solid var(--border); border-radius: var(--r);
  padding: 12px 16px; color: var(--text); font-family: var(--font-b); font-size: 14px;
  transition: border-color var(--tr); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success { display: none; background: rgba(34,197,94,0.1); border: 1px solid rgba(74,222,128,0.3); border-radius: var(--r); padding: 20px; text-align: center; }
.form-success.show { display: block; }
.form-success p { color: #4ADE80; font-weight: 600; }
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.contact-info-block h3 { font-size: 18px; margin-bottom: 4px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--primary); border-radius: var(--r); border: 1px solid var(--border); }
.info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(249,115,22,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--accent); }
.info-content { display: flex; flex-direction: column; gap: 2px; }
.info-content strong { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.info-content span { font-size: 14px; color: var(--text); line-height: 1.5; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-story-img { position: sticky; top: calc(var(--nav-h) + 24px); border-radius: var(--r-lg); overflow: hidden; }
.about-story-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-text { display: flex; flex-direction: column; gap: 18px; }
.about-story-text p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.about-mission { margin-top: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.value-card { background: var(--primary); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border); }
.value-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(249,115,22,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.about-metrics { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 48px; padding: 32px; background: var(--primary); border-radius: var(--r-lg); border: 1px solid var(--border); }
.metric-item { display: flex; flex-direction: column; gap: 4px; }
.metric-num { font-family: var(--font-h); font-size: 36px; color: var(--accent); }
.metric-label { font-size: 13px; color: var(--muted); }

.legal-page { max-width: 800px; }
.legal-page h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.legal-page p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page ul li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-date { font-size: 14px; color: var(--muted); margin-bottom: 32px; padding: 12px 20px; background: var(--primary); border-radius: var(--r); display: inline-block; }

@media (min-width: 1024px) {
  .gallery-grid .gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 1199px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { height: auto; min-height: auto; padding: calc(var(--nav-h) + 32px) 0 48px; }
  .hero-bg { display: none; }
  .hero-content h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-proof { gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }
  .about-metrics { gap: 24px; }
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
