/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;scroll-padding-top:72px}
body{font-family:'Outfit',system-ui,sans-serif;background:#f8f9fa;color:#374151;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;font-family:inherit;border:none;background:none}

/* ── Variables ──────────────────────────────────────────── */
:root{
  --green:        #059669;
  --green-light:  #10b981;
  --green-dark:   #047857;
  --green-dim:    rgba(5,150,105,.1);
  --green-dim2:   rgba(5,150,105,.06);
  --bg:           #f8f9fa;
  --bg-white:     #ffffff;
  --bg-subtle:    #f3f4f6;
  --text:         #111827;
  --text-muted:   #6b7280;
  --text-dim:     #9ca3af;
  --border:       #e5e7eb;
  --border-mid:   #d1d5db;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.1);
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
}

/* ── Typography ─────────────────────────────────────────── */
h1{font-size:clamp(2.4rem,6vw,4.2rem);font-weight:800;line-height:1.08;letter-spacing:-.04em;color:#111827}
h2{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:700;line-height:1.15;letter-spacing:-.03em;color:#111827}
h3{font-size:1.2rem;font-weight:700;line-height:1.3;color:#111827}
h4{font-size:1rem;font-weight:700;color:#111827}
p{color:var(--text-muted);line-height:1.75}
strong{color:var(--text)}

/* ── Buttons ────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 26px;border-radius:var(--radius);font-weight:700;font-size:14.5px;transition:all .2s;white-space:nowrap;letter-spacing:.01em}
.btn-amber{background:var(--green);color:#fff}
.btn-amber:hover{background:var(--green-dark);transform:translateY(-1px);box-shadow:0 8px 24px rgba(5,150,105,.3)}
.btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--border-mid)}
.btn-outline:hover{border-color:var(--green);color:var(--green);background:var(--green-dim)}
.btn-ghost{background:transparent;color:var(--text-muted);font-size:14px;font-weight:600}
.btn-ghost:hover{color:var(--green)}
.btn-lg{padding:15px 36px;font-size:15.5px;border-radius:10px}

/* ── Layout ─────────────────────────────────────────────── */
.wrap{max-width:1200px;margin:0 auto;padding:0 28px}
.wrap-narrow{max-width:840px;margin:0 auto;padding:0 28px}
.sec{padding:80px 0}
.sec-sm{padding:56px 0}

/* ── Top bar ────────────────────────────────────────────── */
.topbar{background:var(--green);color:#fff;text-align:center;padding:9px 20px;font-size:13px;font-weight:700;letter-spacing:.02em}
.topbar a{color:#fff;text-decoration:underline}

/* ── Navigation ─────────────────────────────────────────── */
.site-nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.96);backdrop-filter:blur(16px);border-bottom:1px solid var(--border);height:68px;display:flex;align-items:center;box-shadow:var(--shadow-sm)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:1200px;margin:0 auto;padding:0 28px}
.nav-logo{font-size:1.45rem;font-weight:800;letter-spacing:-.04em;color:#111827;display:flex;align-items:center;gap:8px}
.nav-logo span{color:var(--green)}
.nav-links{display:flex;align-items:center;gap:28px;list-style:none}
.nav-links a{font-size:14px;font-weight:600;color:var(--text-muted);transition:color .15s}
.nav-links a:hover{color:#111827}
.nav-links a.active{color:var(--green)}
.nav-cta{display:flex;align-items:center;gap:10px}

/* ── Hero (light) ───────────────────────────────────────── */
.hero-light{background:linear-gradient(135deg,#f0fdf4 0%,#fff 50%,#f0f9ff 100%);padding:48px 0 40px;border-bottom:1px solid var(--border)}
.hero-light-inner{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:48px;min-height:380px}
.hero-light-text{display:flex;flex-direction:column;align-items:flex-start}
.hero-tag{display:inline-flex;align-items:center;gap:7px;background:var(--green-dim);border:1px solid rgba(5,150,105,.25);color:var(--green-dark);border-radius:100px;padding:5px 14px;font-size:11.5px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;margin-bottom:20px}
.hero-light-h1{font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.1;letter-spacing:-.04em;color:#111827;margin-bottom:16px}
.hero-light-h1 em{font-style:normal;color:var(--green)}
.hero-light-sub{font-size:1.05rem;color:#6b7280;margin-bottom:28px;line-height:1.65;max-width:420px}
.hero-light-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-bottom:28px}
.hero-light-badges{display:flex;gap:16px;flex-wrap:wrap}
.hlb{display:inline-flex;align-items:center;gap:5px;font-size:12.5px;font-weight:600;color:#6b7280}
.hlb svg{color:var(--green);flex-shrink:0}
.hero-light-img{position:relative;display:flex;align-items:center;justify-content:center}
.hero-light-img img{max-height:340px;width:100%;object-fit:contain;drop-shadow(0 20px 40px rgba(0,0,0,.12));filter:drop-shadow(0 16px 32px rgba(0,0,0,.1))}
.hero-light-img-badge{position:absolute;top:16px;right:16px;background:var(--green);color:#fff;font-size:11px;font-weight:800;padding:5px 14px;border-radius:100px;letter-spacing:.06em;text-transform:uppercase}

/* ── Hero dark (legacy – article pages use this) ────────── */
.hero{position:relative;min-height:50vh;display:flex;align-items:center;overflow:hidden;background:#0f172a}
.hero-bg{position:absolute;inset:0;background-image:url('/img/hero.jpg');background-size:cover;background-position:center top;opacity:.35}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(15,23,42,.97) 30%,rgba(15,23,42,.65) 65%,rgba(15,23,42,.2) 100%)}
.hero-content{position:relative;z-index:2;max-width:580px;padding:56px 0}
.hero-stats{display:flex;gap:32px;margin-top:36px;flex-wrap:wrap}
.hero-stat .val{font-size:1.7rem;font-weight:800;color:#34d399;line-height:1}
.hero-stat .lbl{font-size:12px;color:#64748b;margin-top:3px;font-weight:500}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar{background:#fff;border-bottom:1px solid var(--border);padding:0;box-shadow:var(--shadow-sm)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trust-item{display:flex;align-items:center;gap:10px;padding:14px 24px;border-right:1px solid var(--border);font-size:13.5px;color:#374151}
.trust-item:last-child{border-right:none}
.trust-item svg{color:var(--green);flex-shrink:0}
.trust-item strong{color:#111827;font-weight:700}

/* ── Section header ─────────────────────────────────────── */
.section-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:28px;flex-wrap:wrap;gap:12px}

/* ── Section headings ───────────────────────────────────── */
.sec-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--green);margin-bottom:10px}
.sec-title{margin-bottom:14px;color:#111827}
.sec-sub{color:var(--text-muted);max-width:560px;font-size:15.5px}

/* ── Why strip ──────────────────────────────────────────── */
.why-strip{background:#f0fdf4;border-top:1px solid #d1fae5;border-bottom:1px solid #d1fae5;padding:40px 0}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.why-item{display:flex;align-items:flex-start;gap:14px}
.why-icon{width:44px;height:44px;border-radius:10px;background:var(--green-dim);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--green)}
.why-text{display:flex;flex-direction:column;gap:4px}
.why-text strong{font-size:14px;font-weight:700;color:#111827;line-height:1.3}
.why-text span{font-size:12.5px;color:var(--text-muted);line-height:1.5}

/* ── Catalog filters ────────────────────────────────────── */
.catalog-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.filter-btn{padding:8px 18px;border-radius:100px;font-size:13px;font-weight:600;color:var(--text-muted);border:1.5px solid var(--border-mid);background:#fff;transition:all .15s;cursor:pointer}
.filter-btn.active,.filter-btn:hover{color:var(--green);border-color:var(--green);background:var(--green-dim)}

/* ── Product cards ──────────────────────────────────────── */
.catalog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px}
.product-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color .2s,box-shadow .2s,transform .2s;display:block;box-shadow:var(--shadow-sm)}
.product-card:hover{border-color:var(--green);box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.product-card-img{position:relative;aspect-ratio:4/3;overflow:hidden;background:#f8f9fa}
.product-card-img img{width:100%;height:100%;object-fit:contain;padding:16px;transition:transform .4s}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-card-body{padding:16px 18px 18px;background:#fff;border-top:1px solid var(--border)}
.product-card-tech{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--green);margin-bottom:5px}
.product-card-name{font-size:.97rem;font-weight:700;color:#111827;margin-bottom:10px;line-height:1.35}
.product-card-specs{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:14px}
.spec-tag{font-size:11px;font-weight:600;color:#6b7280;background:#f3f4f6;padding:3px 8px;border-radius:4px}
.product-card-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid #f3f4f6}
.product-card-price{font-size:1.3rem;font-weight:800;color:#111827}
.product-card-price-old{font-size:12.5px;color:#9ca3af;text-decoration:line-through}
.pc-cta{font-size:12.5px;font-weight:700;color:var(--green);white-space:nowrap}
.product-card:hover .pc-cta{text-decoration:underline}
.pc-badge{position:absolute;top:10px;left:10px;font-size:10.5px;font-weight:800;padding:3px 10px;border-radius:4px;letter-spacing:.05em;text-transform:uppercase;z-index:2}
.pc-badge-top{background:#ef4444;color:#fff}
.pc-badge-green{background:#059669;color:#fff}
.pc-badge-amber{background:#f59e0b;color:#fff}
.pc-badge-blue{background:#3b82f6;color:#fff}

/* ── Blog cards ─────────────────────────────────────────── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:24px;margin-top:40px}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color .2s,box-shadow .2s,transform .2s;box-shadow:var(--shadow-sm)}
.blog-card:hover{border-color:var(--green);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.blog-card-img{aspect-ratio:16/9;overflow:hidden;background:#f3f4f6}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:20px 22px 22px}
.blog-card-cat{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--green);margin-bottom:8px}
.blog-card-title{font-size:1rem;font-weight:700;color:#111827;line-height:1.4;margin-bottom:8px}
.blog-card-excerpt{font-size:13.5px;color:var(--text-muted);line-height:1.65;margin-bottom:12px}
.blog-card-meta{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--text-dim)}

/* ── Article hero (stays dark – photo) ──────────────────── */
.article-hero{position:relative;height:60vh;overflow:hidden;display:flex;align-items:flex-end;background:#0f172a}
.article-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.5}
.article-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,23,42,1) 0%,rgba(15,23,42,.45) 60%,transparent 100%)}
.article-hero-content{position:relative;z-index:2;padding:0 0 48px}
.article-cat{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:#34d399;background:rgba(5,150,105,.2);padding:4px 12px;border-radius:4px;margin-bottom:14px}
.article-hero h1{font-size:clamp(1.8rem,4.5vw,3.2rem);max-width:760px;line-height:1.12;color:#fff}
.article-meta{display:flex;gap:20px;align-items:center;margin-top:16px;font-size:13px;color:#94a3b8;flex-wrap:wrap}

/* ── Article body (light) ───────────────────────────────── */
.article-body{padding:56px 0 80px;background:#fff}
.article-body p{font-size:16.5px;color:#374151;line-height:1.85;margin-bottom:22px;max-width:720px}
.article-body h2{font-size:1.65rem;color:#111827;margin:44px 0 16px}
.article-body h3{font-size:1.2rem;color:#1f2937;margin:32px 0 12px}
.article-body blockquote{border-left:3px solid var(--green);padding:16px 24px;background:#f0fdf4;border-radius:0 var(--radius) var(--radius) 0;margin:28px 0;font-style:italic;font-size:17px;color:#374151}
.article-body .highlight{background:linear-gradient(135deg,#f0fdf4,#f8fafc);border:1px solid #d1fae5;border-radius:var(--radius-lg);padding:28px 32px;margin:36px 0}
.article-body .highlight p{margin-bottom:0;max-width:none;color:#374151}
.article-body strong{color:#111827}
.article-body a{color:var(--green)}

/* ── Product cards in article ───────────────────────────── */
.article-products{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;margin:40px 0}
.article-product{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color .2s,box-shadow .2s;box-shadow:var(--shadow-sm)}
.article-product:hover{border-color:var(--green);box-shadow:var(--shadow-md)}
.article-product img{width:100%;aspect-ratio:16/9;object-fit:contain;background:#f8f9fa;padding:10px}
.article-product-body{padding:16px;border-top:1px solid var(--border)}
.article-product-name{font-size:14px;font-weight:700;color:#111827;margin-bottom:4px}
.article-product-tech{font-size:11px;color:var(--green);font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}
.article-product-price{font-size:1.15rem;font-weight:800;color:#111827;margin-bottom:12px}
.article-product a.btn{font-size:13px;padding:9px 18px;width:100%;justify-content:center}

/* ── Tech strip (kept for legacy pages) ─────────────────── */
.tech-strip{background:#f3f4f6;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:28px 0}
.tech-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border)}
.tech-item{background:#f3f4f6;padding:22px 28px;display:flex;align-items:center;gap:14px}
.tech-icon{width:42px;height:42px;border-radius:10px;background:var(--green-dim);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.tech-item .lbl{font-size:12.5px;font-weight:700;color:#111827;line-height:1.3}
.tech-item .sub{font-size:12px;color:var(--text-dim);margin-top:2px}

/* ── Footer (dark) ──────────────────────────────────────── */
.site-footer{background:#111827;border-top:1px solid #1f2937;padding:64px 0 32px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-logo{font-size:1.45rem;font-weight:800;letter-spacing:-.04em;color:#fff;margin-bottom:12px}
.footer-logo span{color:#34d399}
.footer-desc{font-size:13.5px;color:#9ca3af;line-height:1.7;max-width:280px}
.footer-col h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#6b7280;margin-bottom:16px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-col ul a{font-size:13.5px;color:#9ca3af;transition:color .15s}
.footer-col ul a:hover{color:#34d399}
.footer-contact{display:flex;flex-direction:column;gap:8px;margin-top:14px}
.footer-contact a{font-size:13px;color:#9ca3af;display:flex;align-items:center;gap:7px;transition:color .15s}
.footer-contact a:hover{color:#34d399}
.footer-bottom{border-top:1px solid #1f2937;padding-top:28px;display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap}
.footer-bottom-legal{font-size:12px;color:#6b7280;line-height:1.7}
.footer-legal-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-legal-links a{font-size:12px;color:#6b7280;transition:color .15s}
.footer-legal-links a:hover{color:#34d399}

/* ── Cookie banner ──────────────────────────────────────── */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;border-top:1px solid var(--border);padding:20px 28px;display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:space-between;transform:translateY(100%);transition:transform .35s ease;box-shadow:0 -4px 24px rgba(0,0,0,.08)}
.cookie-banner.visible{transform:translateY(0)}
.cookie-text{font-size:13.5px;color:#374151;line-height:1.6;flex:1;min-width:240px}
.cookie-text a{color:var(--green);text-decoration:underline}
.cookie-btns{display:flex;gap:10px;flex-shrink:0}
.btn-cookie-accept{background:var(--green);color:#fff;border:none;padding:10px 22px;border-radius:var(--radius);font-weight:700;font-size:13.5px;cursor:pointer}
.btn-cookie-decline{background:transparent;color:#6b7280;border:1.5px solid var(--border-mid);padding:10px 22px;border-radius:var(--radius);font-weight:700;font-size:13.5px;cursor:pointer}
.btn-cookie-decline:hover{border-color:var(--green);color:var(--green)}

/* ── Legal pages ────────────────────────────────────────── */
.legal-hero{background:#f8f9fa;border-bottom:1px solid var(--border);padding:48px 0 36px}
.legal-hero h1{color:#111827}
.legal-body{padding:56px 0 80px;font-size:15px;color:#374151;line-height:1.8;background:#fff}
.legal-body h2{font-size:1.35rem;color:#111827;margin:36px 0 12px;padding-top:8px}
.legal-body h3{font-size:1.05rem;color:#1f2937;margin:24px 0 8px}
.legal-body p{margin-bottom:14px;color:#374151}
.legal-body ul{padding-left:20px;margin-bottom:14px;display:flex;flex-direction:column;gap:6px}
.legal-body table{width:100%;border-collapse:collapse;font-size:13.5px;margin:14px 0}
.legal-body th{text-align:left;padding:10px 12px;background:#f3f4f6;color:#374151;font-size:12px;font-weight:700;text-transform:uppercase;border:1px solid var(--border)}
.legal-body td{padding:10px 12px;border:1px solid var(--border);color:#374151}
.legal-body a{color:var(--green);text-decoration:underline}

/* ── Contact form ───────────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;margin-top:48px}
.form-field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-field label{font-size:12.5px;font-weight:700;color:#374151;text-transform:uppercase;letter-spacing:.04em}
.form-field input,.form-field textarea,.form-field select{background:#fff;border:1.5px solid var(--border-mid);border-radius:var(--radius);padding:12px 14px;font-size:14px;color:#111827;font-family:inherit;transition:border .15s}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(5,150,105,.1)}
.form-field input.err,.form-field textarea.err{border-color:#ef4444}
.form-err-msg{font-size:12px;color:#ef4444;margin-top:4px;display:none}
.form-inline-error{background:#fef2f2;border:1px solid #fecaca;border-radius:var(--radius);padding:12px;font-size:13.5px;color:#dc2626;margin-bottom:14px;display:none}

/* ── Cart icon ──────────────────────────────────────────── */
.nav-cart{position:relative;display:flex;align-items:center;justify-content:center;width:38px;height:38px;color:#374151;border-radius:var(--radius);transition:background .15s}
.nav-cart:hover{background:var(--green-dim);color:var(--green)}
.nav-cart-badge{position:absolute;top:-4px;right:-4px;background:var(--green);color:#fff;font-size:10px;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid #fff}

/* ── Mobile nav ─────────────────────────────────────────── */
.nav-burger{display:none;flex-direction:column;justify-content:space-between;width:26px;height:20px;padding:0;background:none;border:none;cursor:pointer}
.nav-burger span{display:block;height:2px;background:#374151;border-radius:2px;transition:transform .25s,opacity .2s}
.nav-burger.open span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}
.nav-mobile-overlay{position:fixed;inset:0;top:0;z-index:99;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;transform:translateX(100%);transition:transform .3s ease;padding:80px 28px 40px;border-left:1px solid var(--border)}
.nav-mobile-overlay.open{transform:translateX(0)}
.nav-mobile-overlay ul{list-style:none;display:flex;flex-direction:column;align-items:center;gap:6px;width:100%}
.nav-mobile-overlay ul a{display:block;font-size:1.3rem;font-weight:700;color:#111827;padding:12px 20px;text-align:center;border-radius:var(--radius);transition:background .15s,color .15s}
.nav-mobile-overlay ul a:hover{background:var(--green-dim);color:var(--green)}

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1024px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(3){border-top:1px solid var(--border)}
  .trust-item:nth-child(4){border-top:1px solid var(--border);border-right:none}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .tech-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .sec{padding:56px 0}
  .nav-links{display:none}
  .nav-burger{display:flex}
  .nav-cta-desktop{display:none}
  .hero-light-inner{grid-template-columns:1fr;gap:24px;min-height:auto}
  .hero-light-img{display:none}
  .hero-light{padding:36px 0 32px}
  .hero{min-height:45vh}
  .hero-content{padding:40px 0}
  .trust-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .section-header{flex-direction:column;align-items:flex-start}
  .catalog-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .blog-grid{grid-template-columns:1fr}
  .article-hero{height:50vh}
  .article-hero h1{font-size:1.7rem}
  .article-body p{font-size:15.5px}
  .article-products{grid-template-columns:1fr}
}
@media(max-width:600px){
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:none;border-top:1px solid var(--border)}
  .trust-item:first-child{border-top:none}
  .why-grid{grid-template-columns:1fr}
  .catalog-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .wrap{padding:0 16px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{justify-content:center}
  .topbar{font-size:11.5px}
  .catalog-grid{grid-template-columns:1fr}
}
