/* =========================================================
   RoboShield Official — Design System
   Primary: #0B5CFF   Accent: #00C8FF   Dark: #101010
   Light: #F8F9FA     Success: #28C76F  Text: #333333
   Display font: Poppins  Body font: Inter
========================================================= */

:root{
  --primary:#0B5CFF;
  --primary-dark:#083FBF;
  --accent:#00C8FF;
  --dark:#101010;
  --dark-soft:#171A21;
  --light:#F8F9FA;
  --success:#28C76F;
  --text:#333333;
  --text-muted:#6B7280;
  --white:#FFFFFF;
  --border:#E8EAED;

  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(180deg, #0C0E13 0%, #101418 100%);

  --shadow-sm: 0 2px 10px rgba(16,16,16,0.06);
  --shadow-md: 0 12px 32px rgba(11,92,255,0.10);
  --shadow-lg: 0 24px 60px rgba(16,16,16,0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --container: 1240px;
  --nav-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5{
  font-family:'Poppins', 'Inter', sans-serif;
  color:var(--dark);
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.02em;
}

h1{ font-weight:700; }
h2{ font-weight:700; }
h3,h4{ font-weight:600; }

p{ margin:0 0 1em; color:var(--text); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--gradient-brand);
  border-radius:2px;
  display:inline-block;
}

.section{ padding:110px 0; }
.section-tight{ padding:70px 0; }
@media (max-width:900px){
  .section{ padding:72px 0; }
  .section-tight{ padding:48px 0; }
}

.section-head{
  max-width:680px;
  margin:0 0 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size:18px; color:var(--text-muted); }

.section-alt{ background:var(--light); }
.section-dark{ background:var(--gradient-dark); color:#EAEDF2; }
.section-dark h2, .section-dark h3, .section-dark p{ color:#EAEDF2; }
.section-dark .text-muted{ color:#9AA3B2; }

.text-muted{ color:var(--text-muted); }
.text-center{ text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.98); }

.btn-primary{
  background:var(--gradient-brand);
  color:var(--white);
  box-shadow:var(--shadow-md);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(11,92,255,0.28); }

.btn-dark{
  background:var(--dark);
  color:var(--white);
}
.btn-dark:hover{ background:#000; transform:translateY(-2px); }

.btn-ghost{
  background:rgba(255,255,255,0.06);
  color:var(--white);
  border-color:rgba(255,255,255,0.35);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.16); }

.btn-outline{
  background:transparent;
  color:var(--dark);
  border-color:var(--border);
}
.btn-outline:hover{ border-color:var(--primary); color:var(--primary); }

.btn-sm{ padding:11px 22px; font-size:14px; }
.btn-block{ width:100%; }

/* ---------- Nav ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(248,249,250,0.7);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-bottom:1px solid rgba(16,16,16,0.06);
  transition:background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{ box-shadow:0 8px 24px rgba(16,16,16,0.06); }
.nav-inner{
  width:100%; max-width:var(--container); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:19px; color:var(--dark);
}
.brand .shield-mark{ width:30px; height:30px; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--text);
  position:relative; padding:6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gradient-brand); transition:width .25s ease; border-radius:2px;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--primary); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none; background:none; border:none; padding:8px;
}
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--dark); margin:5px 0; transition:.3s; border-radius:2px; }

@media (max-width:980px){
  .nav-links{
    position:fixed; top:var(--nav-h); left:0; right:0; bottom:0;
    background:var(--white); flex-direction:column; justify-content:flex-start;
    padding:36px 24px; gap:22px; transform:translateX(100%); transition:transform .35s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------- Hero shield signature ---------- */
.shield-hero{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  width:100%; max-width:460px; margin:0 auto;
}
.shield-hero svg{ width:100%; height:auto; }
.shield-layer{ transform-box:fill-box; transform-origin:center; }
.shield-hero .layer-1{ animation:floatY 6s ease-in-out infinite; }
.shield-hero .layer-2{ animation:floatY 7s ease-in-out infinite .4s; }
.shield-hero .layer-3{ animation:floatY 8s ease-in-out infinite .8s; }
@keyframes floatY{
  0%,100%{ transform:translateY(0px); }
  50%{ transform:translateY(-9px); }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:calc(var(--nav-h) + 90px) 0 100px;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(0,200,255,0.16) 0%, rgba(0,200,255,0) 60%),
    radial-gradient(50% 50% at 10% 30%, rgba(11,92,255,0.14) 0%, rgba(11,92,255,0) 60%),
    var(--light);
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-grid .hero-cta, .hero-grid .hero-badges{ justify-content:center; }
}
.hero h1{ font-size:clamp(38px,5vw,60px); margin-bottom:22px; }
.hero h1 .grad{
  background:var(--gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{ font-size:19px; color:var(--text-muted); max-width:520px; margin-bottom:34px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-badges{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-badge{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:var(--text); }
.hero-badge svg{ width:20px; height:20px; color:var(--primary); flex-shrink:0; }

/* ---------- Category cards ---------- */
.cat-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
@media (max-width:980px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .cat-grid{ grid-template-columns:1fr; } }
.cat-card{
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:32px 26px; text-align:left;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.cat-icon{
  width:52px; height:52px; border-radius:16px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(11,92,255,0.12), rgba(0,200,255,0.12));
  color:var(--primary);
}
.cat-icon svg{ width:26px; height:26px; }
.cat-card h4{ margin-bottom:6px; font-size:18px; }
.cat-card p{ font-size:14.5px; color:var(--text-muted); margin-bottom:14px; }
.cat-card .cat-link{ font-size:13.5px; font-weight:600; color:var(--primary); display:inline-flex; align-items:center; gap:6px; }

/* ---------- Feature list (Why RoboShield) ---------- */
.feature-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:20px;
}
@media (max-width:980px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-item{
  padding:26px 20px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  text-align:center;
}
.feature-item .ic{
  width:44px; height:44px; margin:0 auto 16px; color:var(--accent);
}
.feature-item h4{ font-size:14.5px; margin-bottom:0; }

/* ---------- Product cards ---------- */
.product-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
@media (max-width:980px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }
.product-card{
  background:var(--white); border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--border);
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.product-media{
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg,#EEF3FF 0%, #F8F9FA 60%);
  position:relative;
}
.product-media svg{ width:58%; height:58%; }
.product-tag{
  position:absolute; top:14px; left:14px; background:var(--dark); color:var(--white);
  font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding:5px 10px; border-radius:100px;
}
.product-body{ padding:22px; flex:1; display:flex; flex-direction:column; }
.product-body h4{ font-size:17px; margin-bottom:6px; }
.product-body p{ font-size:14px; color:var(--text-muted); margin-bottom:16px; flex:1; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; }
.price{ font-weight:700; color:var(--dark); font-family:'Poppins',sans-serif; }

/* ---------- Filters (products page) ---------- */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px;
}
.filter-chip{
  padding:10px 20px; border-radius:100px; border:1px solid var(--border);
  font-size:14px; font-weight:600; color:var(--text); background:var(--white);
  transition:all .2s ease;
}
.filter-chip.active, .filter-chip:hover{ background:var(--gradient-brand); color:#fff; border-color:transparent; }

/* ---------- Steps (install guide) ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; counter-reset:step; }
@media (max-width:900px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step .step-num{
  font-family:'Poppins',sans-serif; font-weight:800; font-size:15px;
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--gradient-brand); color:#fff; margin-bottom:20px;
}
.step h4{ margin-bottom:8px; }
.step p{ color:var(--text-muted); font-size:14.5px; }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:30px; box-shadow:var(--shadow-sm);
}
.testi-stars{ color:var(--accent); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testi-card p.quote{ font-size:15px; color:var(--text); margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%; background:var(--gradient-brand);
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:14px; font-family:'Poppins',sans-serif;
}
.testi-name{ font-weight:600; font-size:14px; color:var(--dark); }
.testi-role{ font-size:12.5px; color:var(--text-muted); }

/* ---------- Dealer CTA band ---------- */
.dealer-band{
  border-radius:var(--radius-lg);
  background:var(--gradient-brand);
  padding:64px; display:flex; align-items:center; justify-content:space-between; gap:40px;
  color:#fff; position:relative; overflow:hidden;
}
.dealer-band::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(40% 60% at 90% 10%, rgba(255,255,255,0.25), transparent 60%);
}
.dealer-band > *{ position:relative; z-index:1; }
.dealer-band h2{ color:#fff; margin-bottom:10px; font-size:32px; }
.dealer-band p{ color:rgba(255,255,255,0.9); margin-bottom:0; max-width:480px; }
@media (max-width:800px){
  .dealer-band{ flex-direction:column; text-align:center; padding:44px 28px; }
}

/* ---------- Newsletter ---------- */
.newsletter-box{
  background:var(--dark); border-radius:var(--radius-lg); padding:56px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; color:#fff;
}
@media (max-width:800px){ .newsletter-box{ flex-direction:column; text-align:center; padding:40px 26px; } }
.newsletter-form{ display:flex; gap:10px; width:100%; max-width:420px; }
.newsletter-form input{
  flex:1; padding:14px 18px; border-radius:100px; border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08); color:#fff; font-size:14.5px;
}
.newsletter-form input::placeholder{ color:rgba(255,255,255,0.55); }

/* ---------- Forms (contact / dealer / warranty) ---------- */
.form-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:40px; box-shadow:var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field label{ font-size:13.5px; font-weight:600; color:var(--dark); }
.field input, .field select, .field textarea{
  padding:13px 16px; border-radius:12px; border:1px solid var(--border);
  font-family:inherit; font-size:14.5px; color:var(--text); background:var(--light);
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--primary); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:13px; color:var(--text-muted); margin-top:8px; }
.form-success{
  background:rgba(40,199,111,0.1); border:1px solid rgba(40,199,111,0.35); color:#1B7F49;
  padding:16px 20px; border-radius:12px; margin-bottom:24px; font-size:14.5px; font-weight:500;
}
.form-error{
  background:rgba(255,59,48,0.08); border:1px solid rgba(255,59,48,0.3); color:#B3261E;
  padding:16px 20px; border-radius:12px; margin-bottom:24px; font-size:14.5px; font-weight:500;
}

/* ---------- Info cards / stats ---------- */
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
@media (max-width:800px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }
.stat-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:42px; color:var(--dark); }
.stat-num .u{ color:var(--primary); }
.stat-label{ font-size:14px; color:var(--text-muted); margin-top:6px; }

.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{ padding:30px; border-radius:var(--radius-md); border:1px solid var(--border); }
.value-card .ic{ width:40px; height:40px; color:var(--primary); margin-bottom:16px; }

/* ---------- Timeline (about) ---------- */
.timeline{ position:relative; padding-left:32px; border-left:2px solid var(--border); }
.timeline-item{ position:relative; padding-bottom:38px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-39px; top:2px; width:16px; height:16px; border-radius:50%;
  background:var(--gradient-brand); border:3px solid #fff; box-shadow:0 0 0 2px var(--border);
}
.timeline-year{ font-family:'Poppins',sans-serif; font-weight:700; color:var(--primary); font-size:14px; }

/* ---------- Accordion (FAQ) ---------- */
.accordion-item{ border-bottom:1px solid var(--border); }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 4px; background:none; border:none; text-align:left;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:16.5px; color:var(--dark);
}
.accordion-trigger .plus{
  width:22px; height:22px; flex-shrink:0; position:relative; color:var(--primary);
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after{
  content:""; position:absolute; background:currentColor; border-radius:2px; transition:transform .3s ease;
}
.accordion-trigger .plus::before{ width:14px; height:2px; top:10px; left:4px; }
.accordion-trigger .plus::after{ width:2px; height:14px; top:4px; left:10px; }
.accordion-item.open .plus::after{ transform:rotate(90deg); opacity:0; }
.accordion-panel{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.accordion-panel-inner{ padding:0 4px 22px; color:var(--text-muted); font-size:15px; max-width:760px; }

/* ---------- Breadcrumb / page header ---------- */
.page-header{
  padding:calc(var(--nav-h) + 56px) 0 56px;
  background:var(--light);
}
.breadcrumb{ font-size:13.5px; color:var(--text-muted); margin-bottom:14px; }
.breadcrumb a{ color:var(--primary); font-weight:600; }
.page-header h1{ font-size:clamp(30px,4vw,44px); margin-bottom:12px; }
.page-header p{ font-size:17px; color:var(--text-muted); max-width:640px; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--dark); color:#C7CBD3; padding:76px 0 28px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:32px; margin-bottom:56px;
}
@media (max-width:980px){ .footer-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; color:#fff; margin-bottom:14px; }
.footer-grid p{ font-size:14px; color:#9AA3B2; }
.footer-col h5{ color:#fff; font-size:14px; margin-bottom:18px; letter-spacing:.03em; text-transform:uppercase; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul li a{ font-size:14.5px; color:#B7BCC6; transition:color .2s ease; }
.footer-col ul li a:hover{ color:var(--accent); }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.footer-social a:hover{ background:var(--gradient-brand); border-color:transparent; }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1); padding-top:26px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-size:13px; color:#8A90A0;
}
.footer-bottom a{ color:#8A90A0; }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:20px; }

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px rgba(37,211,102,0.4);
  transition:transform .25s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; color:#fff; }

/* ---------- Cookie consent ---------- */
.cookie-bar{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:1100;
  max-width:560px; margin:0 auto;
  background:var(--dark); color:#EAEDF2; border-radius:18px; padding:20px 22px;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  transform:translateY(140%); transition:transform .5s ease;
}
.cookie-bar.show{ transform:translateY(0); }
.cookie-bar p{ font-size:13.5px; color:#C7CBD3; margin:0; flex:1; min-width:200px; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- Compatibility search ---------- */
.compat-box{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px; box-shadow:var(--shadow-sm);
}
.compat-row{ display:grid; grid-template-columns:1fr 1fr 1fr auto; gap:14px; }
@media (max-width:800px){ .compat-row{ grid-template-columns:1fr; } }

/* ---------- Utility ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .grid-2{ grid-template-columns:1fr; gap:32px; } }
.badge-soft{
  display:inline-block; padding:6px 14px; border-radius:100px; font-size:12.5px; font-weight:700;
  background:rgba(11,92,255,0.1); color:var(--primary); margin-bottom:16px;
}
