:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#556070;
  --line:rgba(15,23,42,.10);

  --blue:#1e66ff;
  --orange:#fa5e07;
  --orange2:#ff8a3d;

  --shadow: 0 18px 55px rgba(15,23,42,.10);
  --shadow2: 0 12px 30px rgba(15,23,42,.08);
  --r:18px;
}

html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(30,102,255,.08), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(250,94,7,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), #f3f6fb);
}

.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 2000;
}

.nav-glass{
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: blur(10px);
  transition: .25s ease;
}
.nav-glass.is-scrolled{
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.navbar .nav-link{ color: rgba(15,23,42,.78) !important; font-weight: 600; }
.navbar .nav-link:hover{ color: rgba(15,23,42,.95) !important; }
.navbar .dropdown-menu{ border: 1px solid rgba(15,23,42,.08); border-radius: 14px; }

.brand-logo{ height:34px; width:auto; }
.brand-name{ font-weight: 900; letter-spacing:.2px; line-height: 1; }
.brand-sub{ color: rgba(15,23,42,.55); font-size: .86rem; margin-top: 2px; }

.btn-accent{
  color:#fff !important;
  border:0;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 18px 50px rgba(250,94,7,.18);
}
.btn-accent:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn-soft{
  border: 1px solid rgba(250,94,7,.28);
  background: rgba(250,94,7,.06);
  color: rgba(15,23,42,.90);
}
.btn-soft:hover{ background: rgba(250,94,7,.10); border-color: rgba(250,94,7,.40); }
.btn-ghost{
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.74);
  color: rgba(15,23,42,.92);
}
.btn-ghost:hover{ background: rgba(255,255,255,.92); }

.btn-ghost2{
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.btn-ghost2:hover{ background: rgba(255,255,255,.16); }

.hero{ padding-top: 104px; padding-bottom: 44px; }
.eyetag{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  font-weight: 800;
  color: rgba(15,23,42,.82);
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 0 0 5px rgba(250,94,7,.14);
}
.hero-lead{ font-size: 1.08rem; color: rgba(15,23,42,.70); max-width: 56ch; }

.kpis{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.kpi{
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
  padding: 14px;
}
.kpi-label{ color: rgba(15,23,42,.60); font-size: .92rem; }
.kpi-value{ font-weight: 900; font-size: 1.25rem; }

.brandstrip{ display:flex; gap:10px; flex-wrap:wrap; }
.brandchip{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 18px rgba(15,23,42,.05);
}
.brandchip img{ height: 18px; width:auto; display:block; opacity:.90; filter: saturate(.9); }

.hero-card{
  border-radius: calc(var(--r) + 6px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  min-height: 470px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.55), rgba(255,255,255,.12)),
    var(--img) center/cover no-repeat;
  position:relative;
}
.hero-overlay{ position:absolute; inset:0; padding:18px; display:flex; flex-direction:column; justify-content:space-between; }

.badges{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(250,94,7,.22);
  color: rgba(15,23,42,.78);
  font-weight: 700;
}

.quickform-wrap{
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.quickform-title{
  display:flex; align-items:center; gap:10px;
  font-weight: 900;
  margin-bottom: 10px;
}
.quickform .form-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
}
.quickform .form-control:focus{
  border-color: rgba(250,94,7,.45);
  box-shadow: 0 0 0 .25rem rgba(250,94,7,.14);
}
.formhint{ color: rgba(15,23,42,.70); font-size: .88rem; }

.hero-strip{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.96);
}
.strip{ padding: 14px; }
.strip + .strip{ border-left: 1px solid rgba(15,23,42,.08); }
.strip-title{ font-weight: 900; display:flex; gap:10px; align-items:center; }
.strip-title i{ color: var(--orange); }
.strip-text{ color: rgba(15,23,42,.62); font-size: .92rem; margin-top: 2px; }

.section{ padding: 86px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.34));
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section-head .eyebrow{
  color: rgba(250,94,7,.96);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  margin-bottom: 10px;
}
.leadtext{ color: rgba(15,23,42,.75); font-weight: 600; }

.splitmedia{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.split-a{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  background: var(--img) center/cover no-repeat;
  min-height: 320px;
}
.split-b{ display:flex; flex-direction:column; gap:12px; }
.statcard{
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.staticon{
  width:42px;height:42px;border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(250,94,7,.18), rgba(30,102,255,.10));
  border: 1px solid rgba(250,94,7,.22);
  color: var(--orange);
  flex:0 0 auto;
}
.stattitle{ font-weight: 900; }
.stattext{ color: rgba(15,23,42,.62); font-size: .92rem; }

.cardx{
  display:block;
  text-decoration:none;
  color: inherit;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
  padding: 20px;
  height:100%;
  transition: .22s ease;
}
.cardx:hover{
  transform: translateY(-2px);
  border-color: rgba(250,94,7,.28);
  box-shadow: var(--shadow);
}
.cardx-top{ display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.ico{
  width:46px;height:46px;border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(250,94,7,.18), rgba(30,102,255,.12));
  border: 1px solid rgba(250,94,7,.22);
  color: var(--orange);
  font-size: 1.15rem;
}
.pill2{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(250,94,7,.06);
  border: 1px solid rgba(250,94,7,.22);
  color: rgba(15,23,42,.78);
  font-weight: 800;
  font-size: .85rem;
}

.widepromo{
  position:relative;
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 260px;
}
.widepromo-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 320px at 18% 25%, rgba(250,94,7,.20), transparent 55%),
    linear-gradient(120deg, rgba(10,14,26,.64), rgba(10,14,26,.36)),
    var(--img) center/cover no-repeat;
}
.widepromo-content{
  position:relative;
  padding: 22px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height: 260px;
}
.widepromo-title{ font-weight: 950; font-size: 1.25rem; }
.widepromo-sub{ opacity:.88; margin-top: 4px; }
.widepromo-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

.tile{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
  padding: 18px;
  height:100%;
}
.tile-ico{
  width:48px;height:48px;border-radius:18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(250,94,7,.18), rgba(30,102,255,.12));
  border: 1px solid rgba(250,94,7,.22);
  color: var(--orange);
  font-size: 1.1rem;
}
.tile-title{ font-weight: 900; margin-top: 12px; }
.tile-text{ color: rgba(15,23,42,.66); margin-top: 6px; line-height: 1.45; }

.widecard{
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
  overflow:hidden;
  height:100%;
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}
.widecard-media{
  background:
    radial-gradient(220px 220px at 50% 35%, rgba(250,94,7,.14), transparent 55%),
    var(--img) center/contain no-repeat;
  background-color: rgba(250,94,7,.03);
  border-right: 1px solid rgba(15,23,42,.08);
}
.widecard-body{ padding: 16px 18px; }
.widecard-title{ font-weight: 950; }
.widecard-text{ color: rgba(15,23,42,.66); margin-top: 6px; line-height: 1.45; }

.iconcard{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
  padding: 18px;
  height:100%;
}
.iconcard-ico{
  width:48px;height:48px;border-radius:18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(250,94,7,.18), rgba(30,102,255,.10));
  border: 1px solid rgba(250,94,7,.22);
  color: var(--orange);
  font-size: 1.15rem;
}
.iconcard-title{ font-weight: 950; margin-top: 12px; }
.iconcard-text{ color: rgba(15,23,42,.66); margin-top: 6px; line-height: 1.45; }

.product{
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  overflow:hidden;
  height:100%;
}
.product-media{
  height: 210px;
  background:
    radial-gradient(600px 240px at 20% 30%, rgba(250,94,7,.18), transparent 55%),
    var(--img) center/contain no-repeat;
  background-color: rgba(250,94,7,.03);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.product-body{ padding: 18px 18px 20px; }
.listx{ padding-left: 18px; color: rgba(15,23,42,.70); }
.listx li{ margin: 6px 0; }

.contactcard, .footform{
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  padding: 22px;
  height:100%;
}
.contactlist{ display:flex; flex-direction:column; gap: 14px; }
.contactitem{ display:flex; gap: 12px; align-items:flex-start; }
.cico{
  width:42px;height:42px;border-radius:16px;
  display:grid; place-items:center;
  background: rgba(250,94,7,.08);
  border: 1px solid rgba(250,94,7,.18);
  color: var(--orange);
  flex:0 0 auto;
}
.ctitle{ font-weight: 950; }
.csub{ color: rgba(15,23,42,.62); font-size: .92rem; line-height: 1.35; }
.contactitem a{ color: inherit; text-decoration:none; }
.contactitem a:hover{ text-decoration: underline; }

.contactnote{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(250,94,7,.18);
  background: rgba(250,94,7,.06);
  color: rgba(15,23,42,.78);
  font-weight: 600;
}
.contactnote i{ color: var(--orange); margin-top: 2px; }

.footform .form-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
}
.footform .form-control:focus{
  border-color: rgba(250,94,7,.45);
  box-shadow: 0 0 0 .25rem rgba(250,94,7,.14);
}

.footerline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 14px;
}
.iconbtn{
  width:38px;height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.70);
  text-decoration:none;
}
.iconbtn:hover{ color: var(--orange); border-color: rgba(250,94,7,.28); }

.videomodal{ border-radius: 18px; }

[data-animate]{ opacity: 1; transform: none; }
html.js.anim-on [data-animate]{ opacity: 0; transform: translateY(16px); }
html.js.anim-on .in{ opacity: 1; transform: none; transition: opacity .70s ease, transform .70s ease; }

@media (max-width: 991px){
  .hero-media{ min-height: 520px; }
  .kpis{ grid-template-columns: 1fr; }
  .splitmedia{ grid-template-columns: 1fr; }
  .widecard{ grid-template-columns: 1fr; }
  .widecard-media{ min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(15,23,42,.08); }
}
@media (max-width: 575px){
  .hero{ padding-top: 96px; }
  .brandchip img{ height: 16px; }
}
