/* ============ BASE ============ */
:root{
  --ink:#0E1417;
  --ink-2:#26333A;
  --ink-3:#4A585F;
  --muted:#6B7A81;
  --muted-2:#7C8A91;
  --green:#0F7A44;
  --green-dark:#0B5D34;
  --green-bright:#17A05A;
  --green-neon:#35D08A;
  --amber:#F2A93B;
  --paper:#FAFAF7;
  --paper-2:#F4F3EF;
  --line:#E3E1DA;
  --line-soft:#EDEBE4;
  --dark-line:#26333A;
  --dark-muted:#8FA3AC;
}

*{box-sizing:border-box}
[hidden]{display:none !important}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink-2);
  font-family:"IBM Plex Sans",system-ui,sans-serif;
  font-size:16px;
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;border:none;background:none;cursor:pointer;padding:0;color:inherit}
h1,h2,h3{font-family:Archivo,sans-serif;color:var(--ink)}
h2{margin:0;font-weight:700;font-size:34px;letter-spacing:-1px}

@keyframes hxCore{0%,100%{opacity:.45}45%{opacity:1}}
@keyframes hxRoll{0%{transform:translateY(0)}100%{transform:translateY(-100%)}}
@keyframes hxWave{0%{stroke-dashoffset:0}100%{stroke-dashoffset:-240}}

/* ============ BUTTONS ============ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:600;border-radius:10px;white-space:nowrap;transition:background .15s,border-color .15s,color .15s,box-shadow .15s}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 1px 0 rgba(0,0,0,.12)}
.btn-primary:hover{background:var(--green-dark)}
.btn-outline{border:1px solid #CFD5D2;color:var(--ink)}
.btn-outline:hover{border-color:var(--ink);background:#fff}
.btn-dark{background:var(--ink);color:#fff;border-radius:9px}
.btn-dark:hover{background:#1C262C}
.btn-lg{padding:15px 26px;font-size:16px}
.btn-primary.btn-lg{box-shadow:0 6px 18px -8px rgba(15,122,68,.9)}
.btn-header{padding:11px 20px;border-radius:9px;font-size:14.5px}
.btn-block{width:100%;padding:14px 20px;font-size:15px;margin-top:4px}

.eyebrow{font-family:"IBM Plex Mono",monospace;font-size:11px;letter-spacing:1.8px;color:var(--muted-2);margin-bottom:12px}
.eyebrow.light{color:var(--dark-muted)}
.eyebrow.green{color:var(--green)}

.link-arrow{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:var(--green)}
.link-arrow:hover{color:var(--green-dark)}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;gap:32px;
  padding:0 40px;height:76px;background:#fff;border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:11px}
.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-name{font-family:Archivo,sans-serif;font-weight:800;font-size:19px;letter-spacing:-.4px;color:var(--ink)}
.brand-name.light{color:#fff;font-size:18px}
.brand-sub{font-family:"IBM Plex Mono",monospace;font-size:9.5px;letter-spacing:2.4px;color:var(--muted-2);margin-top:3px}

.main-nav{display:flex;align-items:center;gap:26px;font-size:14.5px;font-weight:500;color:var(--ink-2)}
.nav-link{display:flex;align-items:center;gap:5px;padding:6px 0;font-size:14.5px;font-weight:500;color:var(--ink-2)}
.nav-link:hover{color:var(--ink)}
.nav-products{font-weight:600;color:var(--ink)}
.nav-products svg{transition:transform .2s}
.nav-products[aria-expanded="true"] svg{transform:rotate(180deg)}

.header-actions{display:flex;align-items:center;gap:14px}
.lang-switch{display:flex;align-items:center;gap:7px;padding:7px 11px;border:1px solid #DDDBD4;border-radius:8px;font-family:"IBM Plex Mono",monospace;font-size:12px;font-weight:600;color:var(--ink-2)}
.lang-switch:hover{border-color:#B4BEC3}

.header-accent{position:absolute;left:0;right:0;bottom:-1px;height:2px;background:linear-gradient(90deg,var(--green-bright) 0%,var(--green-bright) 22%,transparent 22%)}

/* ---- hamburger ---- */
.hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;padding:9px;border:1px solid #DDDBD4;border-radius:8px}
.hamburger:hover{border-color:#B4BEC3}
.hamburger-line{display:block;height:2px;border-radius:1px;background:var(--ink);transition:transform .2s,opacity .2s}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2){opacity:0}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---- mobile menu ---- */
.mobile-menu{
  position:absolute;left:0;right:0;top:100%;
  display:flex;flex-direction:column;
  max-height:calc(100vh - 76px);overflow-y:auto;
  background:#fff;border-bottom:1px solid var(--line);
  box-shadow:0 18px 34px -26px rgba(14,20,23,.5);
}
.mobile-nav{display:flex;flex-direction:column;padding:8px 20px}
.mobile-nav-link{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  padding:15px 4px;font-size:16px;font-weight:600;color:var(--ink);
  border-bottom:1px solid var(--line-soft);text-align:left;
}
.mobile-nav-link:last-child{border-bottom:none}
.mobile-products-toggle svg{transition:transform .2s}
.mobile-products-toggle[aria-expanded="true"] svg{transform:rotate(180deg)}
.mobile-products{display:flex;flex-direction:column;padding:4px 0 10px;border-bottom:1px solid var(--line-soft)}
.mobile-products a{padding:11px 16px;font-size:14.5px;font-weight:500;color:var(--ink-2);border-left:2px solid var(--line);transition:border-color .15s,color .15s}
.mobile-products a:hover{border-left-color:var(--green-bright);color:var(--ink)}
.mobile-menu-foot{display:flex;flex-direction:column;gap:16px;padding:18px 20px 24px;border-top:1px solid var(--line-soft);background:var(--paper)}
.mobile-menu-foot .lang-tabs{align-self:flex-start;border-color:var(--line);background:#fff}
.mobile-menu-foot .lang-tab{color:var(--muted-2)}
.mobile-menu-foot .lang-tab.is-active{background:var(--green);color:#fff}

/* ============ MEGA MENU ============ */
.mega-menu{
  position:absolute;left:0;right:0;top:100%;
  background:#fff;border-bottom:1px solid var(--line);
  padding:26px 40px 30px;
  box-shadow:0 18px 34px -26px rgba(14,20,23,.5);
}
.mega-head{display:flex;align-items:baseline;gap:10px;margin-bottom:18px}
.mega-count{font-family:"IBM Plex Mono",monospace;font-size:10.5px;letter-spacing:1.8px;color:var(--muted-2)}
.mega-rule{height:1px;flex:1;background:var(--line-soft)}
.mega-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px 26px}
.mega-item{display:flex;gap:11px;align-items:flex-start;padding:9px 11px;border-radius:9px;transition:background .15s}
.mega-item:hover,.mega-item.is-active{background:#F3F7F4}
.mega-item svg{flex:none;margin-top:1px}
.mega-item b{display:block;font-size:14px;font-weight:600;color:var(--ink)}
.mega-item small{display:block;font-size:12.5px;color:var(--muted);margin-top:2px}
.mega-quiz{display:flex;flex-direction:column;justify-content:center;gap:6px;padding:11px 14px;border-left:2px solid var(--green-bright);background:var(--paper)}
.mega-quiz b{font-size:13.5px;font-weight:600;color:var(--ink)}
.mega-quiz small{font-size:12.5px;color:var(--muted);line-height:1.45}
.mega-quiz-cta{font-size:13px;font-weight:600;color:var(--green)}
.mega-quiz:hover .mega-quiz-cta{color:var(--green-dark)}

/* ============ HERO ============ */
.hero{
  position:relative;display:grid;grid-template-columns:1fr 560px;gap:64px;align-items:center;
  padding:74px 40px 78px;background:var(--paper);overflow:hidden;
}
.hero-grid-bg{
  position:absolute;inset:0;
  background-image:linear-gradient(#0E14170A 1px,transparent 1px),linear-gradient(90deg,#0E14170A 1px,transparent 1px);
  background-size:44px 44px;
  -webkit-mask-image:radial-gradient(120% 90% at 70% 40%,#000 30%,transparent 78%);
  mask-image:radial-gradient(120% 90% at 70% 40%,#000 30%,transparent 78%);
}
.hero-copy{position:relative;max-width:620px}
.hero h1{margin:0;font-weight:800;font-size:62px;line-height:1.03;letter-spacing:-2.2px;text-wrap:balance}
.hero h1 .accent{color:var(--green)}
.hero-lead{margin:22px 0 0;font-size:18.5px;line-height:1.6;color:var(--ink-3);max-width:560px;text-wrap:pretty}

.hero-points{list-style:none;margin:30px 0 0;padding:0;display:flex;flex-direction:column;gap:13px}
.hero-points li{display:flex;align-items:flex-start;gap:11px;font-size:15.5px;color:var(--ink-2)}
.hero-points svg{flex:none;margin-top:1px}
.hero-points b{font-weight:600;color:var(--ink)}

.hero-actions{display:flex;align-items:center;gap:14px;margin-top:34px}
.hero-note{margin:18px 0 0;font-size:13px;color:var(--muted-2)}

/* ---- loss counter card ---- */
.loss-wrap{position:relative}
.loss-card{padding:32px 34px 28px;background:var(--ink);border-radius:16px;box-shadow:0 30px 60px -40px rgba(14,20,23,.9)}
.loss-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.loss-label{font-family:"IBM Plex Mono",monospace;font-size:11px;letter-spacing:1.6px;color:var(--dark-muted)}
.loss-live{display:flex;align-items:center;gap:7px;font-family:"IBM Plex Mono",monospace;font-size:10.5px;letter-spacing:1.2px;color:var(--green-neon)}
.live-dot{width:7px;height:7px;border-radius:50%;background:var(--green-neon);display:block;animation:hxCore 1.8s ease-in-out infinite}

.loss-total{display:flex;align-items:flex-end;gap:16px;padding-bottom:24px;border-bottom:1px solid var(--dark-line)}
.loss-figure{display:flex;align-items:baseline;font-family:Archivo,sans-serif;font-weight:800;font-size:76px;letter-spacing:-3.4px;color:#fff;line-height:1}
.digit-roll{display:inline-block;height:76px;overflow:hidden;width:.62em}
.digit-strip{display:block;animation:hxRoll 1.4s steps(10) infinite}
.digit-strip span{display:block;height:76px;line-height:76px}
.loss-currency{color:var(--green-neon);margin-left:8px}
.loss-asof{padding-bottom:12px;font-family:"IBM Plex Mono",monospace;font-size:11px;letter-spacing:1.3px;color:#6E7F87;line-height:1.5}

.loss-rows{display:flex;flex-direction:column;gap:16px;padding:22px 0 4px}
.loss-row-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:7px;font-size:14px;color:#C4D0D5}
.loss-amt{font-family:"IBM Plex Mono",monospace;font-size:13px;color:#fff}
.loss-amt.warn{color:var(--amber)}
.loss-bar{height:5px;border-radius:3px;background:#1C262C}
.loss-bar-fill{height:5px;border-radius:3px;background:var(--green-neon)}
.loss-bar-fill.warn{background:var(--amber)}
.loss-disclaimer{margin:14px 2px 0;font-size:12px;color:#98A2A8}

/* ============ SECTION HEADS ============ */
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:34px}
.section-side{margin:0;max-width:340px;font-size:14.5px;line-height:1.6;color:var(--muted);text-wrap:pretty}
.section-head-main{max-width:640px}
.section-head-main h2{margin-bottom:14px;font-size:38px;letter-spacing:-1.2px}
.section-lead{margin:0;font-size:16px;line-height:1.6;color:var(--ink-3);text-wrap:pretty}

/* ============ TRUST ============ */
.trust{padding:64px 40px 60px;background:#fff;border-top:1px solid var(--line-soft)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.trust-card{padding:24px;border:1px solid var(--line);border-radius:12px;background:var(--paper)}
.trust-card svg{margin-bottom:16px}
.trust-card h3{margin:0 0 7px;font-family:"IBM Plex Sans",system-ui,sans-serif;font-size:16px;font-weight:600}
.trust-card p{margin:0;font-size:13.5px;line-height:1.6;color:var(--muted)}

/* ============ PRODUCTS ============ */
.products{padding:76px 40px 82px;background:var(--paper-2);border-top:1px solid var(--line)}
.products .section-head{margin-bottom:38px}
.products .link-arrow{padding-bottom:6px}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}

.product-card{
  display:flex;flex-direction:column;justify-content:space-between;min-height:238px;
  padding:24px;background:#fff;border:1px solid var(--line);border-radius:14px;
  transition:border-color .15s,box-shadow .15s,transform .15s;
}
.product-card:hover{border-color:#C8CFC9;box-shadow:0 10px 28px -18px rgba(14,20,23,.35);transform:translateY(-2px)}
.product-icon{margin-bottom:18px}
.product-card h3{margin:0 0 8px;font-weight:700;font-size:19px;letter-spacing:-.4px}
.product-card p{margin:0;font-size:13.5px;line-height:1.6;color:var(--muted)}
.product-more{display:flex;align-items:center;gap:7px;margin-top:20px;font-size:13.5px;font-weight:600;color:var(--green)}
.product-card:hover .product-more{color:var(--green-dark)}

.product-featured{grid-column:span 2;position:relative;background:var(--ink);border:none;padding:28px;overflow:hidden}
.product-featured:hover{border:none}
.product-featured-art{position:absolute;right:-30px;top:-20px;opacity:.5}
.product-featured-body{position:relative}
.product-featured-head{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.product-featured-icon{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid #2A3A42;border-radius:11px;background:#151E23}
.product-badge{padding:4px 10px;border:1px solid #2A3A42;border-radius:999px;font-family:"IBM Plex Mono",monospace;font-size:10.5px;letter-spacing:1.2px;color:var(--dark-muted)}
.product-featured h3{margin:0 0 10px;font-size:26px;letter-spacing:-.6px;color:#fff}
.product-featured p{max-width:330px;font-size:14.5px;color:#A8B8BF}
.product-more.light{position:relative;margin-top:22px;font-size:14.5px;color:var(--green-neon)}
.product-featured:hover .product-more.light{color:#5FE0A5}

/* ============ STATS ============ */
.stats{position:relative;padding:66px 40px 60px;background:var(--ink);overflow:hidden}
.stats-grid-bg{position:absolute;inset:0;background-image:linear-gradient(#FFFFFF08 1px,transparent 1px),linear-gradient(90deg,#FFFFFF08 1px,transparent 1px);background-size:56px 56px}
.stats-head{position:relative;margin-bottom:40px}
.stats-head h2{color:#fff;max-width:620px;text-wrap:balance}
.stats-note{max-width:300px;padding:14px 16px;border:1px solid var(--dark-line);border-radius:10px;font-size:12.5px;line-height:1.6;color:var(--dark-muted)}
.stats-grid{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--dark-line);border:1px solid var(--dark-line);border-radius:14px;overflow:hidden}
.stat{padding:30px 26px;background:var(--ink)}
.stat-value{font-family:Archivo,sans-serif;font-weight:800;font-size:50px;letter-spacing:-2px;color:#fff;line-height:1}
.stat-value.green{color:var(--green-neon)}
.stat-value.amber{color:var(--amber)}
.stat-unit{font-size:26px;letter-spacing:-.5px}
.stat-title{margin-top:12px;font-size:14.5px;font-weight:600;color:#fff}
.stat-sub{margin-top:5px;font-size:13px;line-height:1.55;color:var(--dark-muted)}

/* ============ CTA ============ */
.cta{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;padding:76px 40px;background:var(--paper);border-top:1px solid var(--line)}
.cta .eyebrow{margin-bottom:14px}
.cta h2{margin:0 0 16px;font-weight:800;font-size:42px;line-height:1.1;letter-spacing:-1.5px;max-width:560px;text-wrap:balance}
.cta-lead{margin:0 0 28px;max-width:520px;font-size:16.5px;line-height:1.6;color:var(--ink-3);text-wrap:pretty}
.cta-steps{list-style:none;margin:0 0 32px;padding:0;display:flex;flex-direction:column;gap:14px}
.cta-steps li{display:flex;align-items:center;gap:12px;font-size:15.5px;color:var(--ink-2)}
.step-num{display:flex;align-items:center;justify-content:center;width:26px;height:26px;flex:none;border-radius:50%;background:#EEF7F1;font-family:"IBM Plex Mono",monospace;font-size:11.5px;font-weight:600;color:var(--green)}
.cta-actions{display:flex;align-items:center;gap:14px}
.cta-phone{font-size:14px;color:var(--muted-2)}
.cta-phone a{font-weight:600;color:var(--green)}

/* ---- apply form ---- */
.apply-card{padding:28px;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 18px 40px -30px rgba(14,20,23,.6)}
.apply-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.apply-title{font-size:17px;font-weight:600;color:var(--ink)}
.apply-sla{font-family:"IBM Plex Mono",monospace;font-size:10.5px;letter-spacing:1.2px;color:var(--muted-2)}
.apply-fields{display:flex;flex-direction:column;gap:14px}
.field label{display:block;font-size:12.5px;font-weight:600;color:var(--ink-3);margin-bottom:6px}
.field input,.field select{
  width:100%;height:44px;border:1px solid #DDDBD4;border-radius:9px;background:#FCFCFA;
  padding:0 13px;font-family:inherit;font-size:14.5px;color:var(--ink-2);
  appearance:none;-webkit-appearance:none;
}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' stroke='%237C8A91' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 13px center;
}
.field input::placeholder{color:#A8B2B7}
.field input:focus,.field select:focus{outline:none;border:2px solid var(--green);background:#fff;box-shadow:0 0 0 3px rgba(15,122,68,.14);padding:0 12px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.apply-consent{margin:0;font-size:11.5px;line-height:1.55;color:#8B979D;text-align:center}
.apply-consent a{color:var(--green);font-weight:500}

/* ============ FOOTER ============ */
.site-footer{padding:60px 40px 28px;background:var(--ink);color:#C4D0D5}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:40px;padding-bottom:44px;border-bottom:1px solid var(--dark-line)}
.footer-brand .brand{margin-bottom:18px}
.footer-brand .brand-sub{font-size:9px;color:var(--dark-muted)}
.footer-brand p{margin:0 0 20px;max-width:280px;font-size:13.5px;line-height:1.65;color:var(--dark-muted)}
.footer-social{display:flex;gap:10px}
.footer-social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:1px solid var(--dark-line);border-radius:9px;transition:border-color .15s}
.footer-social a:hover{border-color:var(--dark-muted)}
.footer-title{font-family:"IBM Plex Mono",monospace;font-size:10.5px;letter-spacing:1.6px;color:#5F717A;margin-bottom:16px}
.footer-grid nav{display:flex;flex-direction:column;gap:11px;font-size:13.5px}
.footer-grid nav a:hover{color:#fff}
.footer-contact{display:flex;flex-direction:column;gap:11px;font-size:13.5px;margin-bottom:20px}
.footer-email{color:var(--green-neon)}
.footer-contact a:hover{color:#fff}
.footer-email:hover{color:#5FE0A5}

.lang-tabs{display:inline-flex;padding:3px;border:1px solid var(--dark-line);border-radius:9px;background:#151E23}
.lang-tab{padding:6px 13px;border-radius:6px;font-family:"IBM Plex Mono",monospace;font-size:12px;font-weight:600;color:var(--dark-muted)}
.lang-tab.is-active{background:var(--green);color:#fff}
.lang-tab:not(.is-active):hover{color:#fff}

.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:22px;font-size:12.5px;color:#6E7F87}
.footer-legal{display:flex;gap:24px}
.footer-legal a:hover{color:#fff}

/* ============ INNER PAGES ============ */
.page-hero{position:relative;padding:70px 40px 64px;background:var(--paper);overflow:hidden}
.page-hero .hero-grid-bg{-webkit-mask-image:radial-gradient(120% 100% at 30% 20%,#000 25%,transparent 75%);mask-image:radial-gradient(120% 100% at 30% 20%,#000 25%,transparent 75%)}
.page-hero-inner{position:relative;max-width:760px}
.page-hero h1{margin:0;font-weight:800;font-size:46px;line-height:1.08;letter-spacing:-1.6px;text-wrap:balance}
.page-lead{margin:18px 0 0;font-size:17.5px;line-height:1.6;color:var(--ink-3);max-width:640px;text-wrap:pretty}
.page-hero .hero-actions{margin-top:30px}

.page-section{padding:64px 40px}
.page-section.alt{background:#fff;border-top:1px solid var(--line-soft)}
.page-section.tint{background:var(--paper-2);border-top:1px solid var(--line)}

.band-cta{position:relative;padding:64px 40px;background:var(--ink);overflow:hidden;text-align:center}
.band-cta .stats-grid-bg{position:absolute;inset:0}
.band-cta-inner{position:relative;max-width:640px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:22px}
.band-cta h2{margin:0;color:#fff;font-size:32px;letter-spacing:-1px;text-wrap:balance}
.band-cta p{margin:0;font-size:15.5px;line-height:1.6;color:var(--dark-muted);text-wrap:pretty}

.prose{max-width:720px;font-size:16px;line-height:1.7;color:var(--ink-3)}
.prose p{margin:0 0 18px}
.prose p:last-child{margin-bottom:0}

/* ---- contact page ---- */
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:22px}
.contact-item{display:flex;gap:14px;align-items:flex-start}
.contact-item svg{flex:none;margin-top:2px}
.contact-item b{display:block;font-size:15px;font-weight:600;color:var(--ink);margin-bottom:3px}
.contact-item span,.contact-item a{font-size:14.5px;color:var(--muted);line-height:1.55}
.contact-item a:hover{color:var(--green)}
.field textarea{
  width:100%;min-height:110px;border:1px solid #DDDBD4;border-radius:9px;background:#FCFCFA;
  padding:11px 13px;font-family:inherit;font-size:14.5px;color:var(--ink-2);resize:vertical;
}
.field textarea::placeholder{color:#A8B2B7}
.field textarea:focus{outline:none;border:2px solid var(--green);background:#fff;box-shadow:0 0 0 3px rgba(15,122,68,.14);padding:10px 12px}

/* ============ RESPONSIVE ============ */
@media (max-width:1180px){
  .hero{grid-template-columns:1fr;gap:48px}
  .section-head{flex-direction:column;align-items:flex-start;gap:16px}
  .section-side{max-width:560px}
  .loss-wrap{max-width:560px}
  .products-grid,.trust-grid,.stats-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr 1fr}
  .cta{grid-template-columns:1fr;gap:48px}
  .apply-card{max-width:560px}
  .main-nav{display:none}
  .hamburger{display:flex}
  .mega-menu{display:none}
}
@media (min-width:1181px){
  .mobile-menu{display:none}
}
@media (max-width:1180px){
  .contact-grid{grid-template-columns:1fr;gap:40px}
}
@media (max-width:720px){
  .site-header,.hero,.trust,.products,.stats,.cta,.site-footer,.page-hero,.page-section,.band-cta{padding-left:20px;padding-right:20px}
  .page-hero h1{font-size:34px;letter-spacing:-1px}
  .site-header{gap:12px}
  .btn-header{padding:10px 14px;font-size:13.5px}
  .hero-actions{flex-direction:column;align-items:stretch;gap:12px}
  .hero-actions .btn{width:100%}
  .cta-actions{flex-direction:column;align-items:stretch;gap:12px}
  .cta-actions .btn{width:100%}
  .cta-phone{text-align:center}
  .hero h1{font-size:42px;letter-spacing:-1.4px}
  .loss-figure{font-size:56px;letter-spacing:-2.4px}
  .digit-roll,.digit-strip span{height:56px;line-height:56px}
  .products-grid,.trust-grid,.stats-grid{grid-template-columns:1fr}
  .product-featured{grid-column:span 1}
  .section-head{flex-direction:column;align-items:flex-start;gap:16px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:12px;align-items:flex-start}
  .lang-switch{display:none}
  .mega-grid{grid-template-columns:1fr}
}
