*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:#182534;
  background:#f4f7fb;
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
ul{list-style:none}
.container{
  width:min(1240px,calc(100% - 28px));
  margin:0 auto;
}
:root{
  --primary:#183b63;
  --primary-deep:#0f2540;
  --secondary:#d88b19;
  --secondary-deep:#a86104;
  --accent:#ecf3fa;
  --text:#182534;
  --muted:#697a8c;
  --line:#d9e3ed;
  --card:#ffffff;
  --shadow:0 18px 45px rgba(16,39,67,.10);
  --radius:22px;
}

/* mobile drawer */
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(8,18,31,.55);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:80;
}
.drawer-overlay.show{
  opacity:1;
  visibility:visible;
}
.mobile-drawer{
  position:fixed;
  top:0;
  left:0;
  width:min(88vw,380px);
  height:100vh;
  background:linear-gradient(180deg,#10253f,#16385f);
  color:#fff;
  transform:translateX(-100%);
  transition:.35s ease;
  z-index:90;
  overflow:auto;
  box-shadow:20px 0 60px rgba(0,0,0,.26);
}
.mobile-drawer.show{
  transform:translateX(0);
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 20px 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.drawer-close{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.drawer-nav{
  display:grid;
  gap:8px;
  padding:18px 18px 8px;
}
.drawer-nav a{
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
  font-size:15px;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.drawer-nav a:hover{
  background:rgba(255,255,255,.08);
}
.drawer-actions{
  display:grid;
  gap:12px;
  padding:18px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  border:1px solid transparent;
  transition:.28s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--secondary),var(--secondary-deep));
  box-shadow:0 14px 28px rgba(168,97,4,.20);
}
.btn-outline{
  color:var(--primary);
  background:#fff;
  border-color:#cfd9e4;
}
.btn-outline:hover{
  border-color:var(--primary);
}
.btn-light{
  color:var(--primary-deep);
  background:#fff;
}
.btn-ghost{
  color:var(--primary);
  border:1px solid #d8e3ee;
  background:#f9fbfd;
}

/* top rail */
.site-rail{
  background:linear-gradient(90deg,var(--primary-deep),var(--primary));
  color:#fff;
}
.site-rail-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:10px 0;
}
.site-rail p{
  font-size:13px;
  color:rgba(255,255,255,.9);
}
.site-rail strong{
  color:#ffd48b;
}
.site-rail-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.site-rail-links a{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.92);
}

/* new nav */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(24,59,99,.08);
}
.nav-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  min-height:88px;
}
.nav-left{
  display:flex;
  align-items:center;
  gap:16px;
}
.mobile-menu-btn{
  width:48px;
  height:48px;
  border:none;
  background:#eef4fa;
  border-radius:16px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.mobile-menu-btn span{
  width:20px;
  height:2px;
  background:#173758;
  border-radius:3px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:26px;
  color:var(--primary-deep);
  line-height:1;
}
.logo::before{
  content:"";
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--secondary),var(--secondary-deep));
  box-shadow:0 12px 24px rgba(168,97,4,.18);
}
.logo span{
  color:var(--secondary-deep);
}

.nav-center{
  display:flex;
  justify-content:center;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  background:#f4f8fc;
  border:1px solid #e1eaf2;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(19,51,86,.05);
}
.nav-menu a{
  padding:12px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  color:#2b435e;
  transition:.25s ease;
}
.nav-menu a:hover{
  background:#fff;
  color:var(--primary);
  box-shadow:0 8px 18px rgba(15,37,64,.08);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* hero */
.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(105deg,rgba(12,28,47,.92),rgba(24,59,99,.80)),
    url('https://images.unsplash.com/photo-1502740479091-635887520276?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color:#fff;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,211,139,.18), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(255,255,255,.10), transparent 16%);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:center;
  min-height:780px;
  padding:54px 0 70px;
}
.hero-copy .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  color:#ffd48b;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:22px;
}
.hero-copy h1{
  font-size:clamp(40px,6vw,72px);
  line-height:1.02;
  font-weight:900;
  max-width:760px;
  margin-bottom:18px;
}
.hero-copy h1 strong{
  color:#ffcf74;
}
.hero-copy p{
  max-width:690px;
  font-size:18px;
  color:rgba(255,255,255,.84);
  margin-bottom:28px;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px;
}
.hero-tags span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  font-size:13px;
  font-weight:700;
  color:#f2f7fb;
}
.hero-numbers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:760px;
}
.hero-number{
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}
.hero-number strong{
  display:block;
  font-size:30px;
  line-height:1;
  margin-bottom:8px;
}
.hero-number span{
  font-size:14px;
  color:rgba(255,255,255,.76);
}

.hero-right{
  display:grid;
  gap:18px;
}

/* ===== new hero slider ===== */
.hero-slider{
  position:relative;
  padding:16px;
  border-radius:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 70px rgba(0,0,0,.22);
  overflow:hidden;
}
.hero-slider-track{
  display:flex;
  transition:transform .65s ease;
  will-change:transform;
}
.hero-slide{
  min-width:100%;
  position:relative;
}
.hero-slide img{
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:22px;
}
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(10,24,40,.10),rgba(10,24,40,.28));
  pointer-events:none;
}
.hero-slide-card{
  position:absolute;
  max-width:240px;
  padding:18px 18px;
  border-radius:18px;
  background:rgba(12,28,47,.84);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  z-index:2;
}
.hero-slide-card strong{
  display:block;
  font-size:24px;
  color:#ffcf74;
  margin-bottom:6px;
}
.hero-slide-card small{
  display:block;
  color:rgba(255,255,255,.80);
  font-size:13px;
  line-height:1.55;
}
.hero-slide-card.left-top{
  left:18px;
  top:20px;
}
.hero-slide-card.right-bottom{
  right:18px;
  bottom:20px;
}
.hero-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:rgba(8,18,31,.48);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:5;
  transition:.25s ease;
  backdrop-filter:blur(8px);
}
.hero-slider-arrow:hover{
  background:rgba(8,18,31,.72);
}
.hero-slider-prev{left:28px}
.hero-slider-next{right:28px}
.hero-slider-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:26px;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:5;
}
.hero-slider-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.42);
  cursor:pointer;
  transition:.25s ease;
}
.hero-slider-dot.active{
  width:28px;
  border-radius:999px;
  background:#ffcf74;
}

.hero-panel{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.mini-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px 16px;
  text-align:center;
}
.mini-card strong{
  display:block;
  font-size:20px;
  color:#fff;
  margin-bottom:5px;
}
.mini-card span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,.74);
}

/* sections */
section{position:relative}
.trust,
.showcase,
.categories,
.applications,
.why,
.news,
.quote{
  padding:92px 0;
}
.eyebrow{
  color:var(--secondary-deep);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}
.section-head{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:28px;
  align-items:end;
  margin-bottom:36px;
}
.section-head h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  color:var(--primary-deep);
}
.section-head p{
  color:var(--muted);
  font-size:16px;
}

/* trust */
.trust-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}
.trust-left{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:36px;
  box-shadow:var(--shadow);
}
.trust-left h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  margin-bottom:14px;
  color:var(--primary-deep);
}
.trust-left p{
  color:var(--muted);
  font-size:16px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.trust-item{
  background:linear-gradient(180deg,#183b63,#10253f);
  border-radius:26px;
  padding:28px 20px;
  color:#fff;
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
}
.trust-item strong{
  display:block;
  font-size:34px;
  color:#ffcf74;
  line-height:1;
  margin-bottom:10px;
}
.trust-item span{
  font-size:14px;
  color:rgba(255,255,255,.82);
}

/* showcase */
.showcase-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:24px;
}
.feature-main{
  position:relative;
  min-height:620px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.feature-main > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.feature-main:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(10,24,40,.18),rgba(10,24,40,.90));
}
.feature-content{
  position:relative;
  z-index:2;
  max-width:640px;
  padding:42px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  height:100%;
}
.feature-content .eyebrow{
  color:#ffd48b;
}
.feature-content h3{
  font-size:clamp(28px,3.8vw,44px);
  line-height:1.08;
  margin-bottom:14px;
}
.feature-content p{
  color:rgba(255,255,255,.82);
  margin-bottom:18px;
}
.feature-points{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}
.feature-points li{
  padding-left:18px;
  position:relative;
  color:#fff;
  font-size:15px;
}
.feature-points li:before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ffcf74;
}
.feature-side{
  display:grid;
  gap:20px;
}
.quick-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}
.quick-card h4{
  font-size:25px;
  color:var(--primary-deep);
  margin-bottom:10px;
}
.quick-card p{
  color:var(--muted);
  margin-bottom:18px;
}
.quick-list{
  display:grid;
  gap:14px;
}
.quick-list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px dashed #d9e4ee;
}
.quick-list li:last-child{
  border-bottom:none;
}
.quick-list strong{
  color:#223a56;
  font-size:15px;
}
.quick-list span{
  color:var(--secondary-deep);
  font-size:14px;
  font-weight:700;
  text-align:right;
}

/* categories */
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.category-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.28s ease;
}
.category-card:hover{transform:translateY(-6px)}
.category-media img{
  width:100%;
  height:245px;
  object-fit:cover;
}
.category-body{
  padding:26px;
}
.category-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:#edf4fb;
  color:var(--primary);
  margin-bottom:14px;
}
.category-body h3{
  font-size:24px;
  line-height:1.18;
  color:var(--primary-deep);
  margin-bottom:12px;
}
.category-body p{
  color:var(--muted);
  font-size:15px;
  margin-bottom:16px;
}
.spec-list{
  display:grid;
  gap:10px;
  margin-bottom:20px;
}
.spec-list div{
  padding:10px 12px;
  border-radius:14px;
  background:#f8fbfe;
  border:1px solid #e5edf4;
  font-size:14px;
  color:#39506a;
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* applications */
.application-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.application-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.application-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.application-body{
  padding:22px;
}
.application-body h3{
  font-size:22px;
  color:var(--primary-deep);
  margin-bottom:10px;
}
.application-body p{
  color:var(--muted);
  font-size:15px;
  margin-bottom:12px;
}
.application-body a{
  color:var(--secondary-deep);
  font-weight:800;
  font-size:14px;
}

/* why */
.why{
  background:linear-gradient(180deg,#10253f,#17385c);
  color:#fff;
}
.why .eyebrow,
.why .section-head h2,
.why .section-head p{
  color:#fff;
}
.why-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.why-left{
  padding-right:10px;
}
.why-left h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  margin-bottom:14px;
}
.why-left > p{
  color:rgba(255,255,255,.78);
  margin-bottom:26px;
}
.why-points{
  display:grid;
  gap:16px;
}
.why-points li{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
  align-items:start;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}
.why-points i{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-style:normal;
  font-weight:900;
  background:linear-gradient(135deg,var(--secondary),var(--secondary-deep));
  color:#fff;
}
.why-points strong{
  display:block;
  margin-bottom:6px;
  font-size:19px;
}
.why-points span{
  color:rgba(255,255,255,.74);
  font-size:14px;
}
.why-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.why-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:26px;
}
.why-card strong{
  display:block;
  font-size:24px;
  margin-bottom:10px;
}
.why-card p{
  color:rgba(255,255,255,.74);
  font-size:15px;
}
.why-card.large{
  grid-column:span 2;
  overflow:hidden;
  padding:0;
}
.why-large-media img{
  width:100%;
  height:280px;
  object-fit:cover;
}
.why-large-content{
  padding:28px;
}
.why-large-content h3{
  font-size:30px;
  line-height:1.12;
  margin-bottom:10px;
}
.why-large-content p{
  color:rgba(255,255,255,.76);
  margin-bottom:18px;
}

/* news */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.news-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.news-media img{
  width:100%;
  height:230px;
  object-fit:cover;
}
.news-body{
  padding:22px;
}
.news-meta{
  color:var(--secondary-deep);
  font-size:13px;
  font-weight:800;
  margin-bottom:8px;
}
.news-title{
  font-size:22px;
  font-weight:800;
  color:var(--primary-deep);
  line-height:1.25;
  margin-bottom:10px;
}
.news-body p{
  color:var(--muted);
  font-size:15px;
  margin-bottom:18px;
}

/* quote */
.quote-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.quote-info{
  background:linear-gradient(180deg,#183b63,#10253f);
  border-radius:30px;
  padding:36px;
  color:#fff;
  box-shadow:var(--shadow);
}
.quote-info h3{
  font-size:clamp(28px,3.5vw,42px);
  line-height:1.08;
  margin-bottom:14px;
}
.quote-info p{
  color:rgba(255,255,255,.78);
  margin-bottom:20px;
}
.quote-list{
  display:grid;
  gap:12px;
  margin-bottom:28px;
}
.quote-list li{
  padding-left:18px;
  position:relative;
  font-size:15px;
  color:#fff;
}
.quote-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ffcf74;
}
.quote-metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.metric{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.metric strong{
  display:block;
  font-size:20px;
  color:#ffcf74;
  margin-bottom:4px;
}
.metric span{
  font-size:13px;
  color:rgba(255,255,255,.72);
}

.quote-form-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-group.full{
  grid-column:span 2;
}
.form-group label{
  font-size:14px;
  font-weight:800;
  color:#27415d;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #d8e3ed;
  background:#f8fbfe;
  border-radius:16px;
  padding:14px 16px;
  font-size:14px;
  color:#21384f;
  outline:none;
  transition:.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#8fb1d3;
  background:#fff;
}
.form-group textarea{
  min-height:150px;
  resize:vertical;
}
.checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-weight:500 !important;
}
.checkbox input{
  width:18px;
  height:18px;
  margin-top:2px;
}

/* footer keep similar */
.site-footer{
  background:#0c1826;
  color:#dbe6f2;
  padding-top:72px;
}
.footer-top{
  padding-bottom:34px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr .9fr .9fr;
  gap:28px;
}
.footer-logo a{
  font-size:30px;
  font-weight:900;
  color:#fff;
}
.footer-logo span{
  color:#d88b19;
}
.footer-desc{
  margin-top:14px;
  color:#aebfd0;
  max-width:430px;
  font-size:15px;
}
.footer-title{
  font-size:18px;
  color:#fff;
  margin-bottom:16px;
}
.footer-links{
  display:grid;
  gap:12px;
}
.footer-links a,
.footer-contact div,
.footer-contact a{
  color:#b9c9d8;
  font-size:15px;
}
.footer-links a:hover,
.footer-contact a:hover{
  color:#fff;
}
.footer-contact{
  display:grid;
  gap:12px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#a9bbcc;
  font-size:14px;
}
.footer-bottom a{
  color:#fff;
}
.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
}

/* responsive */
@media (max-width:1180px){
  .hero-inner,
  .trust-wrap,
  .showcase-grid,
  .why-wrap,
  .quote-wrap,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .category-grid,
  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .application-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .section-head{
    grid-template-columns:1fr;
  }
}
@media (max-width:980px){
  .nav-shell{
    grid-template-columns:auto 1fr auto;
  }
  .nav-center,
  .nav-actions .btn-outline{
    display:none;
  }
  .mobile-menu-btn{
    display:flex;
  }
  .hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
    padding:42px 0 66px;
  }
  .hero-slide img{
    height:420px;
  }
  .trust-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:768px){
  .hero-number,
  .mini-card{
    padding:16px 14px;
  }
  .hero-numbers,
  .hero-panel,
  .form-grid,
  .quote-metrics,
  .category-grid,
  .application-grid,
  .news-grid{
    grid-template-columns:1fr;
  }
  .form-group.full{
    grid-column:span 1;
  }
  .why-right{
    grid-template-columns:1fr;
  }
  .why-card.large{
    grid-column:span 1;
  }
  .site-rail-inner{
    justify-content:center;
  }
  .hero-slider-arrow{
    width:40px;
    height:40px;
    font-size:18px;
  }
  .hero-slider-prev{left:20px}
  .hero-slider-next{right:20px}
  .hero-slide-card{
    max-width:200px;
    padding:14px;
  }
}
@media (max-width:520px){
  .container{
    width:min(100% - 20px,1240px);
  }
  .logo{
    font-size:22px;
  }
  .hero-copy h1{
    font-size:36px;
  }
  .hero-copy p{
    font-size:16px;
  }
  .feature-content,
  .trust-left,
  .quote-info,
  .quote-form-wrap,
  .quick-card{
    padding:24px;
  }
  .feature-main{
    min-height:540px;
  }
  .hero-slider{
    padding:12px;
  }
  .hero-slide img{
    height:340px;
  }
  .hero-slide-card{
    max-width:160px;
    padding:12px;
    border-radius:14px;
  }
  .hero-slide-card strong{
    font-size:18px;
    margin-bottom:4px;
  }
  .hero-slide-card small{
    font-size:11px;
    line-height:1.45;
  }
  .hero-slide-card.left-top{
    left:12px;
    top:12px;
  }
  .hero-slide-card.right-bottom{
    right:12px;
    bottom:12px;
  }
}