*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;line-height:1.5;scroll-behavior:smooth}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background:#ffffff;
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

.container{
  width:100%;
  max-width: 1200px;
  margin-left:auto;
  margin-right:auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center{text-align:center}
.d-flex{display:flex}
.align-center{align-items:center}
.mt-0{margin-top:0 !important}
.mb-0{margin-bottom:0 !important}

.dot{
  display:inline-block;width:7px;height:7px;border-radius:50%;
  background:#16a34a;margin:0 8px 0 0;vertical-align:2px;
}
.dot.amber{background:#d97706}
.bullet{color:#16a34a;font-weight:700;margin-right:8px;flex:0 0 14px}

.topPhone-strip{
  background:#052e16;
  color:#d1fae5;
  font-size:0.78rem;
  padding:7px 0 8px;
}
.topPhone-strip .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.topPhone-strip .tp-num{color:#fff;font-weight:600}
.tp-right{font-size:12px;color:#94a3b8;letter-spacing:.3px}

.site-header{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  position:sticky;top:0;z-index:50;
}
.site-header .container{display:flex;align-items:center;gap:24px;padding-top:14px;padding-bottom:13px}
.brand-mark{display:flex;align-items:center;gap:10px}
.brand-mark .logo-dot{
  width:38px;height:38px;border-radius:0.625rem;
  background:#16a34a;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;
}
.brand-mark .brand-txt{display:flex;flex-direction:column;line-height:1.05}
.brand-mark .brand-name{font-weight:800;font-size:17px;letter-spacing:-0.3px}
.brand-mark .brand-sub{font-size:10.5px;color:#64748b;text-transform:uppercase;letter-spacing:1.2px}

.main-nav{margin-left:auto}
.main-nav ul{list-style:none;padding:0;margin:0;display:flex;gap:26px}
.main-nav a{font-size:14px;font-weight:500;color:#0f172a;padding:6px 0}
.main-nav a:hover{color:#16a34a}

.hdr-cart{
  position:relative;cursor:pointer;
  width:44px;height:44px;border-radius:12px;
  background:#f8fafc;border:1px solid #e2e8f0;
  display:flex;align-items:center;justify-content:center;
  color:#0f172a;
  transition:background .15s;
}
.hdr-cart:hover{background:#dcfce7;color:#16a34a;border-color:#16a34a}
.hdr-cart .material-icons{font-size:22px}
.hdr-cart .cart-badge{
  position:absolute;top:-6px;right:-6px;
  min-width:20px;height:20px;padding:0 5px;
  background:#dc2626;color:#fff;
  border-radius:999px;
  font-size:11px;font-weight:700;
  display:none;align-items:center;justify-content:center;
  border:2px solid #fff;
}
.hdr-cart .cart-badge.show{display:flex}

.mob-burger{display:none;width:44px;height:44px;border-radius:12px;background:#f8fafc;border:1px solid #e2e8f0;align-items:center;justify-content:center;cursor:pointer;color:#0f172a}
.mob-burger .material-icons{font-size:24px}

.hero {
    background: #16a34a;
    color: #ffffff;
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  right:-120px;top:-120px;
  width:440px;height:440px;border-radius:50%;
  background:rgba(255,255,255,.06);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:50px;
  align-items:center;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.15);
  padding:6px 14px 7px;border-radius:999px;
  font-size:0.78em;font-weight:600;
  letter-spacing:.5px;
  margin-bottom:20px;
}
.hero-eyebrow .dot{background:#fff;margin:0}
.hero h1{
  font-size: 3.5rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.hero h1 .hl-sub{display:block;color:#052e16}
.hero p {font-size: 16.5px; line-height: 1.65; max-width: 500px; margin: 0 0 28px; color:#ecfdf5}
.hero-actions{display:flex;gap:0.75rem;flex-wrap:wrap;align-items:center}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration:none;
  transition: all .2s ease;
  cursor:pointer;
  border: 0;
}
.btn .material-icons{font-size:18px}
.btn-primary{background:#0f172a;color:#fff}
.btn-primary:hover{background:#1f2937}
.btn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-white{background:#ffffff;color:#0f172a}
.btn-white:hover{background:#f1f5f9}
.btn-green{background:#16a34a;color:#fff}
.btn-green:hover{background:#15803d}

.hero-img-wrap{
  position:relative;
}
.hero-img{
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(5,46,22,.35);
  background:#052e16;
  aspect-ratio: 4/3.2;
}
.hero-img img{width:100%;height:100%;object-fit:cover}
.hero-floatchip{
  position:absolute;
  left:-18px;bottom:42px;
  background:#fff;color:#0f172a;
  border-radius:14px;
  padding:14px 20px 13px;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
  display:flex;align-items:center;gap:12px;
  max-width:240px;
}
.fc-bigmark{
  width:38px;height:38px;border-radius:10px;
  background:#dcfce7;color:#16A34A;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:16px;
  font-family:'Inter',sans-serif;
}
.hero-floatchip .fc-num{font-size:1.125rem;font-weight:800;line-height:1}
.hero-floatchip .fc-lbl{font-size:11.5px;color:#64748b;margin-top:3px;letter-spacing:.3px}

.services-section{padding-top:48px}
.services-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;position:relative;z-index:2}
.service-pill{
  background:#ffffff;
  border-radius: 14px;
  padding: 1.25rem 18px;
  box-shadow: 0 6px 20px rgba(15,23,42,.06);
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  border:1px solid #eef2f6;
  transition:border-color .15s,transform .15s;
}
.service-pill:hover{border-color:#16a34a;transform:translateY(-2px)}
.srv-letter{
  width:42px;height:42px;border-radius:10px;
  background:#dcfce7;color:#16A34A;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:15px;
  letter-spacing:.5px;
  font-family:'Inter',sans-serif;
  flex-shrink:0;
}
.service-pill .label{font-weight:600;font-size:15px;color:#0f172a;display:block}
.service-pill .sub{font-size:11.5px;color:#64748b;margin-top:2px;display:block}

.about{
    background:#052e16;
    color:#ffffff;
    padding: 5rem 0;
    margin-top:48px;
}
.about-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:center}
.about-img{border-radius:16px;overflow:hidden;aspect-ratio:5/4;background:#0a3a1f}
.about-img img{width:100%;height:100%;object-fit:cover;opacity:.95}
.about h2{font-size:2.125rem;font-weight:800;margin:0 0 18px;color:#16a34a;line-height:1.15}
.about .ab-eye{display:inline-block;font-size:12px;color:#86efac;letter-spacing:2px;text-transform:uppercase;font-weight:700;margin-bottom:10px}
.about p{color:#cbd5e1;line-height:1.75;font-size:15px;max-width: 540px;margin-bottom:14px}

.stats{display:flex;gap:3rem;margin-top:32px;flex-wrap:wrap}
.stat .num{font-size:36px;font-weight:800;color:#16a34a;line-height:1}
.stat .lbl{font-size:13px;color:#94a3b8;margin-top:6px;max-width:140px}

.catalog{padding:76px 0 3rem;background:#f9fafb}
.sec-head{text-align:center;max-width:680px;margin:0 auto 36px;padding:0 12px}
.sec-eye{display:inline-block;font-size:12px;color:#16a34a;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;margin-bottom:8px}
.sec-head h2{font-size:2rem;font-weight:800;margin:0 0 10px;letter-spacing:-0.3px;line-height:1.2}
.sec-head .sub{color:#64748b;font-size:15px;margin:0;line-height:1.6}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.prod-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  display:flex;flex-direction:column;
  transition:box-shadow .2s,transform .2s;
}
.prod-card:hover{box-shadow:0 14px 30px rgba(15,23,42,.08);transform:translateY(-3px)}
.prod-card .pc-img{
  aspect-ratio:1/1;
  background:#f1f5f9;
  position:relative;overflow:hidden;
}
.prod-card .pc-img img{width:100%;height:100%;object-fit:cover}
.prod-card .pc-flag{
  position:absolute;top:12px;left:12px;
  background:#16a34a;color:#fff;
  font-size:10.5px;font-weight:700;
  padding:4px 10px;border-radius:999px;
  letter-spacing:.5px;text-transform:uppercase;
}
.prod-card .pc-flag.sale{background:#dc2626}
.prod-card .pc-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.prod-card .pc-cat{font-size:11px;color:#64748b;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;margin-bottom:6px}
.prod-card .pc-name{font-size:1.0625rem;font-weight:700;color:#0f172a;margin:0 0 6px;line-height:1.25}
.prod-card .pc-specs{font-size:12.5px;color:#64748b;margin-bottom:14px;line-height:1.55}
.prod-card .pc-stock{font-size:12px;color:#16a34a;font-weight:600;margin-bottom:14px;display:flex;align-items:center;gap:5px}
.prod-card .pc-stock.low{color:#d97706}
.prod-card .pc-stock .dot{margin:0 4px 0 0}
.prod-card .pc-priceline{display:flex;align-items:baseline;gap:10px;margin-bottom:14px;margin-top:auto}
.prod-card .pc-old{font-size:13.5px;color:#9ca3af;text-decoration:line-through}
.prod-card .pc-price{font-size:1.375em;font-weight:800;color:#0f172a}
.prod-card .pc-add{
  width:100%;
  border:0;background:#0f172a;color:#fff;
  padding:13px 12px;border-radius:10px;
  font-size:13.5px;font-weight:700;letter-spacing:.5px;
  cursor:pointer;transition:background .15s;
  display:flex;align-items:center;justify-content:center;gap:6px;
  min-height:46px;
}
.prod-card .pc-add:hover{background:#16a34a}
.prod-card .pc-add .material-icons{font-size:17px}

.features{padding:5rem 0 84px}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card{
  background:#fff;
  padding: 1.625rem 24px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.feature-card:hover{border-color:#16a34a}
.ft-num{
  flex:0 0 44px;
  width:44px;height:44px;
  background:#dcfce7;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:#16a34a;
  font-weight:800;font-size:0.95rem;
  font-family:'Inter',sans-serif;letter-spacing:0;
}
.feature-card h3{margin:0 0 6px;font-size:16px;font-weight:700;letter-spacing:-0.2px}
.feature-card p{margin:0;color:#64748b;font-size:13.5px;line-height:1.6}

.why{padding:80px 0 78px;background:#f9fafb}
.why .row{display:grid;grid-template-columns: 1fr 1fr;gap: 60px;align-items:center}
.why h2{font-size:1.875rem;margin:0 0 22px;font-weight:800;letter-spacing:-0.3px;line-height:1.2}
.why .ab-eye{display:inline-block;font-size:12px;color:#16a34a;letter-spacing:2.5px;text-transform:uppercase;font-weight:700;margin-bottom:8px}
.why-img{border-radius:16px;overflow:hidden;aspect-ratio:5/4;background:#e5e7eb}
.why-img img{width:100%;height:100%;object-fit:cover}
.check-list{list-style:none;padding:0;margin:0}
.check-list li{display:flex;gap:14px;margin-bottom:18px}
.check-list li .check{
  flex:0 0 24px;width:24px;height:24px;border-radius:50%;
  background:#dcfce7;color:#15a34a;
  display:flex;align-items:center;justify-content:center;font-size:12px;
}
.check-list li .check .material-icons{font-size:16px}
.check-list li strong{display:block;font-weight:700;font-size:15px;margin-bottom:3px;color:#0f172a}
.check-list li span.txt{color:#6b7280;font-size:13.5px;line-height:1.55;display:block}

.process{padding:4.875rem 0 80px}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.process-step{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:1.625rem 1.375rem;
  position:relative;
}
.process-step .step-num{
  font-size:38px;font-weight:800;color:#dcfce7;line-height:1;margin-bottom:14px;
  font-family:'Inter',sans-serif;
}
.process-step h3{font-size:16px;font-weight:700;margin:0 0 8px;color:#0f172a}
.process-step p{font-size:13.5px;color:#64748b;line-height:1.6;margin:0}

.testimonials{padding:80px 0 5rem;background:#052e16;color:#fff}
.testimonials .sec-head h2{color:#fff}
.testimonials .sec-head .sub{color:#cbd5e1}
.testimonials .sec-eye{color:#86efac}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:10px}
.testi-card{
  background:#0a3a1f;
  border-radius:14px;
  padding:1.625rem;
  border:1px solid #064425;
}
.testi-stars{color:#fbbf24;margin-bottom:12px;display:flex;gap:2px}
.testi-stars .material-icons{font-size:18px}
.testi-card blockquote{margin:0 0 18px;font-size:14.5px;line-height:1.7;color:#e2e8f0;font-style:italic}
.testi-by{display:flex;align-items:center;gap:12px}
.testi-by .by-pic{
  width:42px;height:42px;border-radius:50%;
  background:#16a34a;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:15px;
  flex-shrink:0;
}
.testi-by .by-name{font-weight:700;font-size:13.5px;color:#fff}
.testi-by .by-loc{font-size:11.5px;color:#94a3b8;margin-top:2px}

.faq-section{padding:78px 0 82px}
.faq-wrap{max-width:780px;margin:0 auto}
.faq-item{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  padding:18px 22px;
  cursor:pointer;
  font-weight:600;
  font-size:15px;
  display:flex;justify-content:space-between;align-items:center;
  gap:14px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .material-icons{
  color:#16a34a;transition:transform .2s;flex-shrink:0;
}
.faq-item[open] summary .material-icons{transform:rotate(45deg)}
.faq-item .faq-ans{padding:0 22px 20px;color:#64748b;font-size:14px;line-height:1.7}
.faq-item .faq-ans p{margin:0 0 8px}
.faq-item .faq-ans p:last-child{margin-bottom:0}

.cta-band{background:#16a34a;color:#fff;padding:3.75rem 0;text-align:center}
.cta-band h2{font-size:2rem;font-weight:800;margin:0 0 12px;letter-spacing:-0.3px;text-transform:uppercase}
.cta-band p{margin:0 0 24px;font-size:16px;color:#ecfdf5;max-width:540px;margin-left:auto;margin-right:auto}
.cta-band .cta-row{display:inline-flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:center}
.cta-band .cta-link{color:#fff;font-size:14px}

.contact-bottom{padding:88px 0 72px}
.contact-bottom .row{display:grid;grid-template-columns: 1fr 1.15fr;gap:60px;align-items:flex-start}
.contact-bottom h2{font-size:1.875em;font-weight:800;margin:0 0 14px;letter-spacing:-0.3px;line-height:1.15}
.contact-bottom .lead-p{color:#64748b;font-size:15px;line-height:1.7;margin:0 0 22px}
.cb-usp{list-style:none;padding:0;margin:22px 0 0}
.cb-usp li{display:flex;align-items:flex-start;font-size:14px;color:#0f172a;margin-bottom:10px;line-height:1.55}

.sumBlk{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:1.25rem 22px 18px;
  margin-bottom:22px;
}
.sumBlk h4{margin:0 0 12px;font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:#0f172a;font-weight:700}
.sb-item{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid #e5e7eb;font-size:13.5px;gap:12px}
.sb-item:last-child{border-bottom:none}
.sb-item .sb-name{color:#374151}
.sb-item .sb-total{font-weight:700;color:#0f172a;flex-shrink:0}
.sb-empty{padding:10px 0;color:#94a3b8;font-size:13px}
.sb-total-row{display:flex;justify-content:space-between;padding-top:14px;margin-top:6px;border-top:2px solid #0f172a;font-weight:800;font-size:15px}
.sb-total-row .sb-tval{color:#16a34a;font-size:18px}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-grid .f-full{grid-column:1 / -1}
.form-grid label{display:block;font-size:12px;font-weight:600;color:#0f172a;margin-bottom:5px;letter-spacing:.3px}
.form-grid input,.form-grid select,.form-grid textarea{
  width:100%;padding:13px 14px;border:1px solid #e5e7eb;
  border-radius:10px;background:#f9fafb;font-size:15px;
  font-family:inherit;color:#0f172a;
  transition:border-color .15s,background .15s;
  min-height:46px;
}
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{outline:none;border-color:#16a34a;background:#fff}
.form-grid textarea{min-height:96px;resize:vertical}
.payBox{grid-column:1/-1;margin-top:4px;border:1px solid #e5e7eb;border-radius:12px;padding:1rem 18px 14px;background:#fff}
.payBox .pb-title{font-size:12px;text-transform:uppercase;letter-spacing:1.5px;font-weight:700;margin-bottom:12px;color:#0f172a}
.pay-opt{display:flex;align-items:flex-start;gap:10px;padding:10px 0;border-bottom:1px solid #f1f5f9;cursor:pointer}
.pay-opt:last-child{border-bottom:none}
.pay-opt input{margin-top:4px;accent-color:#16a34a;flex-shrink:0}
.pay-opt .po-name{font-weight:600;font-size:14px;color:#0f172a}
.pay-opt .po-desc{font-size:12px;color:#64748b;margin-top:2px;line-height:1.5}
.form-submit{
  grid-column:1/-1;
  margin-top:8px;
  background:#0f172a;color:#fff;
  padding:15px 22px;border-radius:999px;
  font-weight:700;font-size:14px;letter-spacing:.5px;
  border:0;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  text-transform:uppercase;
  min-height:50px;
}
.form-submit:hover{background:#16a34a}
.form-submit .material-icons{font-size:18px}
.form-err{
  grid-column:1/-1;
  padding:10px 14px;border-radius:8px;
  background:#fef2f2;border:1px solid #fecaca;color:#991b1b;
  font-size:13px;display:none;
}
.form-err.show{display:block}

.site-footer{background:#022c22;color:#cbd5e1;padding:60px 0 24px}
.site-footer .row{display:grid;grid-template-columns: 2fr 1fr 1fr 1.2fr;gap:40px}
.site-footer h4{color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:1px;margin:0 0 14px;font-weight:700}
.site-footer a{color:#cbd5e1;text-decoration:none;display:block;padding:4px 0;font-size:14px}
.site-footer a:hover{color:#16a34a}
.brand-col p{font-size:14px;line-height:1.7;color:#94a3b8;margin:14px 0 18px;max-width:300px}
.brand-col .foot-logo{display:flex;align-items:center;gap:10px}
.brand-col .foot-logo .logo-dot{width:38px;height:38px;border-radius:10px;background:#16a34a;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:18px}
.brand-col .foot-logo .brand-name{color:#fff;font-weight:800;font-size:17px}
.foot-contact{display:flex;flex-direction:column;gap:8px;font-size:13px}
.foot-contact span{display:block;color:#cbd5e1;line-height:1.55}
.foot-contact strong{color:#94a3b8;font-weight:600;text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-right:6px;display:inline-block}
.footer-bottom{margin-top:40px;padding-top:20px;border-top:1px solid #0b3b2e;display:flex;justify-content:space-between;font-size:12px;flex-wrap:wrap;gap:10px;color:#94a3b8}
.footer-bottom a{display:inline}

.cartModal{
  position:fixed;inset:0;
  background:rgba(15,23,42,.65);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  z-index:200;
  display:none;
  align-items:center;justify-content:center;
  padding:24px;
}
.cartModal.open{
  display:flex;
  animation:cartFade .22s ease;
}
.cartBox{
  background:#fff;
  width:100%;
  max-width:640px;
  max-height:88vh;
  border-radius:22px;
  display:flex;flex-direction:column;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  animation:cartPop .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes cartFade{from{opacity:0}to{opacity:1}}
@keyframes cartPop{from{opacity:0;transform:scale(.92) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)}}

.cartTop{
  background:#0f172a;
  color:#fff;
  padding:22px 26px;
  display:flex;justify-content:space-between;align-items:center;
}
.cartTop-eye{font-size:11px;letter-spacing:2.5px;text-transform:uppercase;color:#86efac;font-weight:700;margin-bottom:4px}
.cartTop-title{font-size:1.25rem;font-weight:800;letter-spacing:-0.3px}
.cartTop-num{display:inline-block;background:#16a34a;color:#fff;border-radius:999px;padding:2px 10px;font-size:13px;margin-left:8px;font-weight:700;vertical-align:2px}
.cartTop-close{
  background:rgba(255,255,255,.1);color:#fff;border:0;
  width:38px;height:38px;border-radius:50%;
  font-size:22px;font-weight:300;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .15s;
}
.cartTop-close:hover{background:rgba(255,255,255,.22)}

.cartScroll{
  flex:1;overflow-y:auto;
  padding:22px 26px;
  background:#fafafa;
}

.cartEmpty{text-align:center;padding:50px 16px}
.cartEmpty-circle{
  width:84px;height:84px;border-radius:50%;
  background:#fff;
  border:2px dashed #cbd5e1;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  font-size:36px;color:#cbd5e1;font-weight:300;
}
.cartEmpty-h{font-size:18px;font-weight:800;color:#0f172a;margin-bottom:6px}
.cartEmpty-p{font-size:13.5px;color:#64748b;line-height:1.6;max-width:300px;margin:0 auto}

.cItem{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px;
  margin-bottom:10px;
  display:grid;
  grid-template-columns:84px 1fr auto;
  gap:14px;
  align-items:center;
}
.cItem:last-child{margin-bottom:0}
.cItem-thumb{
  width:84px;height:84px;
  border-radius:12px;
  background:#f1f5f9;
  overflow:hidden;
}
.cItem-thumb img{width:100%;height:100%;object-fit:cover}
.cItem-meta{min-width:0}
.cItem-name{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:3px;line-height:1.3}
.cItem-unit{font-size:12.5px;color:#64748b;margin-bottom:10px}
.cItem-qrow{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.cItem-qbox{
  display:inline-flex;align-items:center;
  background:#f1f5f9;border-radius:999px;padding:3px;
}
.cItem-qb{
  width:30px;height:30px;border-radius:50%;
  background:#fff;border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:#0f172a;transition:background .15s,color .15s;
}
.cItem-qb:hover{background:#dcfce7;color:#16a34a}
.cItem-qb .material-icons{font-size:14px}
.cItem-qv{min-width:28px;text-align:center;font-weight:700;font-size:14px;padding:0 4px}
.cItem-rm{
  background:transparent;border:0;cursor:pointer;
  color:#94a3b8;font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:1px;
  padding:6px 4px;text-decoration:underline;text-underline-offset:3px;
}
.cItem-rm:hover{color:#dc2626}
.cItem-sum{font-size:17px;font-weight:800;color:#0f172a;align-self:start;padding-top:2px}

.cartBottom{
  padding:20px 26px 22px;
  background:#fff;
  border-top:1px solid #e5e7eb;
}
.cartBottom-line{
  display:flex;justify-content:space-between;
  font-size:13px;color:#64748b;
  margin-bottom:6px;
  gap:12px;
}
.cartBottom-line .cb-light{color:#94a3b8;font-style:italic}
.cartBottom-tot{
  display:flex;justify-content:space-between;align-items:baseline;
  padding-bottom:16px;margin-bottom:16px;
  border-bottom:2px dashed #e5e7eb;
}
.cartBottom-tot .cb-tlbl{font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:#0f172a}
.cartBottom-tot .cb-tval{font-size:30px;font-weight:800;color:#16a34a;letter-spacing:-0.8px}
.cartBottom-actions{display:flex;gap:10px}
.cartBottom-actions .btn{flex:1;justify-content:center}
.cartBtn-back{background:#f1f5f9;color:#0f172a}
.cartBtn-back:hover{background:#e2e8f0}
.cartBtn-go{background:#0f172a;color:#fff}
.cartBtn-go:hover{background:#16a34a}

.cart-notif{
  position:fixed;
  bottom:-80px;left:50%;transform:translateX(-50%);
  background:#0f172a;color:#fff;
  padding:14px 22px;border-radius:999px;
  display:flex;align-items:center;gap:10px;
  font-size:14px;font-weight:600;
  box-shadow:0 14px 36px rgba(0,0,0,.25);
  z-index:300;
  transition:bottom .3s;
  max-width:92vw;
}
.cart-notif.show{bottom:24px}
.cart-notif .notif-mark{
  width:22px;height:22px;border-radius:50%;background:#22c55e;color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;
  flex-shrink:0;
}

.thanks-block{display:none;text-align:center;padding:40px 20px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:14px}
.thanks-block.show{display:block}
.thanks-block .check-big{
  width:60px;height:60px;border-radius:50%;
  background:#dcfce7;color:#16a34a;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;
}
.thanks-block .check-big .material-icons{font-size:34px}
.thanks-block h3{margin:0 0 8px;font-size:22px;font-weight:800}
.thanks-block p{color:#64748b;font-size:14.5px;line-height:1.65;margin:0 auto;max-width:480px}

.mobNav{
  position:fixed;inset:0;
  background:rgba(15,23,42,.5);
  z-index:150;display:none;
}
.mobNav.open{display:block}
.mobNav-panel{
  position:absolute;left:0;top:0;bottom:0;
  width:288px;background:#fff;padding:24px 22px;
  display:flex;flex-direction:column;gap:14px;
}
.mobNav-panel a{padding:12px 0;font-size:15px;font-weight:600;color:#0f172a;border-bottom:1px solid #f1f5f9}
.mobNav-panel a:last-of-type{border-bottom:none}
.mobNav-close{position:absolute;right:14px;top:14px;background:#f1f5f9;width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#0f172a;font-size:22px;font-weight:300;line-height:1}

.ckBanner{
  position:fixed;left:16px;right:16px;bottom:16px;
  background:#0f172a;color:#fff;
  border-radius:18px;
  padding:20px 24px;
  box-shadow:0 18px 50px rgba(0,0,0,.32);
  z-index:180;
  max-width:1140px;margin:0 auto;
  display:none;
  animation:ckSlideUp .35s ease;
}
.ckBanner.show{display:block}
@keyframes ckSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.ckBanner-inner{display:flex;gap:24px;align-items:center;flex-wrap:wrap}
.ckBanner-txt{flex:1;min-width:240px}
.ckBanner-h{font-size:14px;font-weight:800;letter-spacing:.3px;margin-bottom:4px;color:#fff}
.ckBanner-txt p{margin:0;font-size:13px;line-height:1.6;color:#cbd5e1}
.ckBanner-txt p a{color:#86efac;text-decoration:underline;text-underline-offset:2px}
.ckBanner-btns{display:flex;gap:8px;flex-wrap:wrap}
.ckBtn{
  padding:11px 18px;border-radius:999px;
  font-size:13px;font-weight:700;letter-spacing:.3px;
  cursor:pointer;border:0;
  transition:background .15s,color .15s;
  white-space:nowrap;
}
.ckBtn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.25)}
.ckBtn-ghost:hover{background:rgba(255,255,255,.08)}
.ckBtn-go{background:#16a34a;color:#fff}
.ckBtn-go:hover{background:#15803d}

.ckModal{
  position:fixed;inset:0;
  background:rgba(15,23,42,.65);
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
  z-index:250;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.ckModal.open{display:flex;animation:cartFade .22s ease}
.ckModal-box{
  background:#fff;
  width:100%;max-width:520px;
  max-height:90vh;
  border-radius:18px;
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  animation:cartPop .28s cubic-bezier(.2,.8,.2,1);
}
.ckModal-head{
  padding:22px 24px 18px;
  border-bottom:1px solid #e5e7eb;
  display:flex;justify-content:space-between;align-items:flex-start;
  gap:14px;
}
.ckModal-eye{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:#16a34a;font-weight:700;margin-bottom:4px}
.ckModal-head h3{margin:0;font-size:1.125rem;font-weight:800;color:#0f172a;letter-spacing:-0.3px}
.ckModal-close{
  background:#f1f5f9;color:#0f172a;border:0;
  width:32px;height:32px;border-radius:8px;
  font-size:20px;font-weight:300;line-height:1;cursor:pointer;flex-shrink:0;
}
.ckModal-close:hover{background:#e2e8f0}
.ckModal-body{flex:1;overflow-y:auto;padding:8px 24px}
.ckRow{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px 0;border-bottom:1px solid #f1f5f9;
}
.ckRow:last-child{border-bottom:none}
.ckRow-info{flex:1;min-width:0}
.ckRow-info strong{display:block;font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.ckRow-info p{margin:0;font-size:12.5px;color:#64748b;line-height:1.55}
.ckTog{position:relative;flex-shrink:0;display:inline-block;width:46px;height:26px;cursor:pointer}
.ckTog input{position:absolute;opacity:0;width:0;height:0}
.ckTog-slider{
  position:absolute;inset:0;background:#cbd5e1;border-radius:999px;
  transition:background .15s;
}
.ckTog-slider::before{
  content:"";position:absolute;left:3px;top:3px;
  width:20px;height:20px;background:#fff;border-radius:50%;
  transition:transform .18s ease;
  box-shadow:0 2px 4px rgba(0,0,0,.15);
}
.ckTog input:checked + .ckTog-slider{background:#16a34a}
.ckTog input:checked + .ckTog-slider::before{transform:translateX(20px)}
.ckTog-slider.locked{background:#16a34a;cursor:not-allowed}
.ckTog-slider.locked::before{transform:translateX(20px)}
.ckTog-slider.locked-off{background:#cbd5e1;cursor:not-allowed}
.ckModal-foot{
  display:flex;gap:10px;
  padding:18px 24px 22px;border-top:1px solid #e5e7eb;
  background:#f9fafb;
}
.ckModal-foot .ckBtn{flex:1}
.ckModal-foot .ckBtn-ghost{color:#0f172a;border-color:#e2e8f0}
.ckModal-foot .ckBtn-ghost:hover{background:#f1f5f9}

#kat-produkte{scroll-margin-top:78px}

@media (max-width: 1024px){
  .hero h1{font-size:2.5rem}
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .services-row{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:36px}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .why .row{grid-template-columns:1fr;gap:32px}
  .why-img{order:-1}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .testi-grid{grid-template-columns:1fr;gap:14px}
  .contact-bottom .row{grid-template-columns:1fr;gap:36px}
  .site-footer .row{grid-template-columns:1fr 1fr;gap:32px}
}

@media (max-width: 768px){
  .topPhone-strip{font-size:0.72rem;padding:6px 0 7px}
  .topPhone-strip .tp-right{display:none}
  .topPhone-strip .container{justify-content:center}
  .main-nav{display:none}
  .mob-burger{display:flex}
  .site-header .container{gap:12px}
  .brand-mark .brand-sub{display:none}
  .brand-mark .brand-name{font-size:15px}

  .hero{padding:2.25rem 0 2.5rem}
  .hero h1{font-size:1.875rem;letter-spacing:0;margin-bottom:16px}
  .hero p{font-size:14.5px;line-height:1.6;margin-bottom:22px}
  .hero-actions{gap:8px}
  .hero-actions .btn{font-size:13.5px;padding:12px 18px}
  .hero-img{aspect-ratio:5/3.5}
  .hero-floatchip{left:auto;right:12px;bottom:12px;padding:10px 14px 10px 12px;max-width:200px;gap:10px}
  .hero-floatchip .fc-num{font-size:14px}
  .hero-floatchip .fc-lbl{font-size:10.5px}
  .fc-bigmark{width:32px;height:32px;font-size:13px}

  .services-section{padding-top:32px}
  .services-row{grid-template-columns:1fr;gap:10px}
  .service-pill{padding:14px 16px}

  .about{padding:3rem 0;margin-top:32px}
  .about h2{font-size:1.5rem;margin-bottom:12px}
  .about .ab-eye{font-size:11px;margin-bottom:6px}
  .about p{font-size:14px;line-height:1.65;margin-bottom:10px}
  .stats{gap:22px;margin-top:22px}
  .stat .num{font-size:26px}
  .stat .lbl{font-size:12px;margin-top:4px}

  .catalog{padding:48px 0 2rem}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .prod-card{border-radius:14px}
  .prod-card .pc-body{padding:14px 14px 16px}
  .prod-card .pc-name{font-size:14.5px;margin-bottom:4px}
  .prod-card .pc-specs{font-size:11.5px;margin-bottom:10px;line-height:1.5}
  .prod-card .pc-cat{font-size:10px;letter-spacing:1px}
  .prod-card .pc-stock{font-size:11px;margin-bottom:10px}
  .prod-card .pc-price{font-size:1.125em}
  .prod-card .pc-old{font-size:12px}
  .prod-card .pc-add{font-size:12px;padding:11px 8px;min-height:42px}
  .prod-card .pc-add .material-icons{font-size:15px}

  .features{padding:3rem 0 3rem}
  .feature-grid{grid-template-columns:1fr;gap:12px}
  .feature-card{padding:16px 18px;gap:14px}
  .feature-card h3{font-size:15px}
  .feature-card p{font-size:13px}
  .ft-num{flex:0 0 40px;width:40px;height:40px;font-size:0.85rem}

  .why{padding:3rem 0}
  .why h2{font-size:1.5rem;margin-bottom:16px}
  .check-list li{margin-bottom:14px}
  .check-list li strong{font-size:14px}
  .check-list li span.txt{font-size:13px}

  .process{padding:3rem 0}
  .process-grid{grid-template-columns:1fr;gap:12px}
  .process-step{padding:18px 18px}
  .process-step .step-num{font-size:30px;margin-bottom:8px}

  .testimonials{padding:3rem 0 3rem}
  .testi-card{padding:20px 18px}
  .testi-card blockquote{font-size:13.5px;line-height:1.65}

  .faq-section{padding:3rem 0}
  .faq-item summary{padding:14px 18px;font-size:14px;gap:10px}
  .faq-item .faq-ans{padding:0 18px 16px;font-size:13.5px}

  .cta-band{padding:3rem 0}
  .cta-band h2{font-size:1.5rem}
  .cta-band p{font-size:14px;margin-bottom:18px}
  .cta-band .cta-link{font-size:13px}

  .contact-bottom{padding:3rem 0 2.5rem}
  .contact-bottom h2{font-size:1.5em;margin-bottom:10px}
  .contact-bottom .lead-p{font-size:14px}
  .form-grid{grid-template-columns:1fr;gap:10px}
  .sumBlk{padding:1rem 16px 14px}
  .sumBlk h4{font-size:12px}
  .sb-item{font-size:13px}

  .sec-head{margin-bottom:24px}
  .sec-head h2{font-size:1.4rem;letter-spacing:-0.2px}
  .sec-head .sub{font-size:14px}
  .sec-eye{font-size:11px;letter-spacing:2px}

  .site-footer{padding:44px 0 18px}
  .site-footer .row{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column;text-align:center;gap:6px}

  .cartModal{padding:0;align-items:flex-end}
  .cartBox{
    max-height:94vh;border-radius:22px 22px 0 0;
    animation:cartSlideUp .3s ease;
  }
  @keyframes cartSlideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
  .cartTop{padding:18px 20px}
  .cartTop-title{font-size:1.05rem}
  .cartScroll{padding:16px 18px}
  .cItem{padding:12px;gap:10px;grid-template-columns:64px 1fr;grid-template-rows:auto auto}
  .cItem-thumb{width:64px;height:64px;border-radius:10px;grid-row:1 / 3}
  .cItem-name{font-size:14px}
  .cItem-unit{font-size:11.5px;margin-bottom:8px}
  .cItem-sum{font-size:15px;grid-column:2;justify-self:start;grid-row:auto;padding-top:0;color:#16a34a}
  .cItem-meta{grid-column:2}
  .cItem-qrow{gap:10px}
  .cItem-qb{width:28px;height:28px}
  .cartBottom{padding:18px 20px}
  .cartBottom-tot .cb-tval{font-size:24px}
  .cartBottom-actions{flex-direction:column}
  .cartBottom-actions .btn{font-size:14px;padding:13px 18px;min-height:48px}

  .ckBanner{left:8px;right:8px;bottom:8px;padding:16px 18px;border-radius:14px}
  .ckBanner-inner{gap:14px}
  .ckBanner-btns{width:100%}
  .ckBanner-btns .ckBtn{flex:1;padding:11px 10px;font-size:12px;text-align:center;justify-content:center;display:inline-flex;align-items:center}
  .ckModal-foot{flex-direction:column-reverse}
  .ckModal-foot .ckBtn{padding:13px 16px}
}

@media (max-width: 480px){
  .container{padding-left:14px;padding-right:14px}
  .hero h1{font-size:1.625rem}
  .product-grid{grid-template-columns:1fr;gap:14px}
  .prod-card .pc-name{font-size:15px}
  .prod-card .pc-add{font-size:13px;padding:12px 10px;min-height:46px}
  .feature-card{padding:14px 14px 16px;gap:12px}
  .ft-num{flex:0 0 36px;width:36px;height:36px;font-size:0.8rem;border-radius:8px}
  .hero-floatchip{max-width:170px;padding:8px 12px 8px 10px;left:auto;right:8px;bottom:8px}
  .hero-floatchip .fc-num{font-size:12.5px}
  .hero-floatchip .fc-lbl{font-size:9.5px;letter-spacing:.2px}
  .fc-bigmark{width:28px;height:28px;font-size:11px}
  .cItem{grid-template-columns:54px 1fr}
  .cItem-thumb{width:54px;height:54px}
  .cartTop-num{font-size:11px;padding:1px 8px}
  .cartBottom-tot .cb-tval{font-size:22px}
  .ckBanner-btns{flex-direction:column}
  .ckBanner-btns .ckBtn{width:100%;flex:none}
}
.legalPage{padding:3rem 0 5rem;background:#fff}
.legalPage .container{max-width:760px}
.legalPage-eye{display:inline-block;font-size:11.5px;color:#16a34a;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;margin-bottom:12px}
.legalPage h1{font-size:2.25rem;font-weight:800;margin:0 0 18px;letter-spacing:-0.5px;line-height:1.15;color:#0f172a}
.legalPage-lead{font-size:16px;color:#64748b;line-height:1.7;margin:0 0 32px;padding-bottom:28px;border-bottom:1px solid #e5e7eb}
.legalPage h2{font-size:1.125rem;font-weight:800;margin:30px 0 12px;color:#0f172a;letter-spacing:-0.2px;line-height:1.3}
.legalPage h2:first-of-type{margin-top:0}
.legalPage p{font-size:14.5px;line-height:1.75;color:#374151;margin:0 0 14px}
.legalPage p strong{color:#0f172a;font-weight:700}
.legalPage a{color:#16a34a;text-decoration:underline;text-underline-offset:2px}
.legalPage a:hover{color:#15803d}

.legalPage-toc{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:1.25rem 24px 18px;
  margin:8px 0 36px;
}
.legalPage-toc .toc-h{font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:#16a34a;margin-bottom:14px}
.legalPage-toc ul{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:8px 24px}
.legalPage-toc li{font-size:13.5px;color:#0f172a;display:flex;gap:10px;align-items:baseline;font-weight:500}
.legalPage-toc .toc-no{display:inline-block;min-width:34px;color:#94a3b8;font-weight:700;font-size:12px;letter-spacing:.3px}

.legalPage-clist{
  display:flex;flex-direction:column;gap:12px;
  margin:14px 0 24px;
}
.legalPage-clist .cl-item{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-left:3px solid #16a34a;
  border-radius:10px;
  padding:16px 20px 14px;
}
.legalPage-clist .cl-head{display:flex;flex-wrap:wrap;align-items:center;gap:10px 14px;margin-bottom:6px}
.legalPage-clist .cl-name{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:13.5px;font-weight:700;color:#0f172a;
  background:#fff;padding:3px 9px;border-radius:6px;
  border:1px solid #e5e7eb;
}
.legalPage-clist .cl-tag{font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:#16a34a;font-weight:700}
.legalPage-clist .cl-tag.cl-opt{color:#d97706}
.legalPage-clist .cl-item p{margin:0;font-size:13.5px;line-height:1.65;color:#475569}

.legalPage-tail{
  margin-top:42px;
  padding:22px 26px 24px;
  background:#052e16;color:#cbd5e1;
  border-radius:14px;
  font-size:13.5px;line-height:1.7;
}
.legalPage-tail strong{color:#fff;font-weight:700;display:inline-block;margin-bottom:2px}
.legalPage-tail .btn{margin-top:6px}

.climatePage{padding:3rem 0 5rem}
.climateIntro{max-width:760px;margin:0 auto 56px;text-align:center;padding:0 12px}
.climateIntro .legalPage-eye{margin-bottom:10px}
.climateIntro h1{font-size:2.25rem;font-weight:800;margin:6px 0 16px;letter-spacing:-0.5px;line-height:1.18;color:#0f172a}
.climateIntro p{font-size:16px;color:#64748b;line-height:1.7;margin:0 auto;max-width:580px}

.climateSec{
  display:grid;grid-template-columns:1fr 1fr;
  gap:52px;align-items:center;
  margin-bottom:72px;
}
.climateSec.flipped .climateSec-img{order:-1}
.climateSec.noImg{grid-template-columns:1fr;max-width:760px;margin-left:auto;margin-right:auto}

.climateSec-text .ab-eye{display:inline-block;font-size:11px;color:#16a34a;letter-spacing:2.5px;text-transform:uppercase;font-weight:700;margin-bottom:10px}
.climateSec-text h2{font-size:1.625rem;font-weight:800;margin:0 0 16px;letter-spacing:-0.4px;line-height:1.2;color:#0f172a}
.climateSec-text p{font-size:15px;line-height:1.75;color:#374151;margin:0 0 12px}
.climateSec-text p:last-child{margin-bottom:0}
.climateSec-text strong{color:#0f172a}
.climateSec-text a{color:#16a34a;text-decoration:underline;text-underline-offset:2px}
.climateSec-text a:hover{color:#15803d}

.climateSec-img{
  border-radius:18px;overflow:hidden;
  aspect-ratio:5/4;background:#e5e7eb;
  box-shadow:0 14px 36px rgba(15,23,42,.08);
}
.climateSec-img img{width:100%;height:100%;object-fit:cover}

.climateValueBlock{
  background:#052e16;color:#ecfdf5;
  border-radius:14px;padding:1rem 22px 18px;
  margin-top:18px;
}
.climateValueBlock dl{margin:0;display:grid;grid-template-columns:1fr 1fr;gap:10px 28px}
.climateValueBlock dt{font-size:12.5px;font-weight:700;color:#86efac;letter-spacing:.3px;margin-top:4px}
.climateValueBlock dd{margin:0;font-size:13px;color:#ecfdf5;line-height:1.5}

@media (max-width:768px){
  .legalPage{padding:32px 0 56px}
  .legalPage h1{font-size:1.625rem}
  .legalPage h2{font-size:1rem;margin:24px 0 10px}
  .legalPage p{font-size:14px;line-height:1.7}
  .legalPage-lead{font-size:14.5px;margin-bottom:24px;padding-bottom:20px}
  .legalPage-toc{padding:1rem 18px 14px;margin-bottom:28px}
  .legalPage-toc ul{grid-template-columns:1fr;gap:8px}
  .legalPage-toc li{font-size:13px}
  .legalPage-clist .cl-item{padding:14px 16px 12px}
  .legalPage-clist .cl-head{gap:8px 10px}
  .legalPage-clist .cl-name{font-size:12.5px}
  .legalPage-clist .cl-tag{font-size:10px;letter-spacing:1px}
  .legalPage-tail{padding:18px 20px;font-size:13px}

  .climatePage{padding:32px 0 56px}
  .climateIntro{margin-bottom:36px}
  .climateIntro h1{font-size:1.625rem}
  .climateIntro p{font-size:14.5px}
  .climateSec{grid-template-columns:1fr;gap:20px;margin-bottom:44px}
  .climateSec.flipped .climateSec-img{order:0}
  .climateSec-text h2{font-size:1.25rem;margin-bottom:12px}
  .climateSec-text p{font-size:14px;line-height:1.7}
  .climateValueBlock{padding:14px 16px 14px}
  .climateValueBlock dl{grid-template-columns:1fr;gap:8px 16px}
  .climateValueBlock dt{margin-top:0}
}