:root{
  --bg: #f6f7fb;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
  --shadow2: 0 10px 22px rgba(15, 23, 42, .08);

  /* Accent (change this one value to rebrand) */
  --accent: #2563eb;
  --accentSoft: rgba(37, 99, 235, .12);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(37, 99, 235, .12), transparent 60%),
    radial-gradient(1200px 600px at 90% 0%, rgba(99, 102, 241, .10), transparent 60%),
    var(--bg);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* Notice */
.notice{
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.notice__inner{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 0;
  color: var(--muted);
}
.badge{
  font-size:12px;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  background: var(--accentSoft);
  color: var(--accent);
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 10;
  background: rgba(246,247,251,.70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.02em;
}
.logo__mark{
  width:14px; height:14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  box-shadow: 0 10px 18px rgba(37,99,235,.18);
}
.logo__text{ font-size: 15px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:700;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover{ color: var(--ink); }
.nav__cta{
  padding:10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 12px 18px rgba(37,99,235,.18);
}
.nav__cta:hover{ filter: brightness(.98); }

.menuBtn{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: 12px;
  padding:10px;
  cursor:pointer;
}
.menuBtn span{
  display:block;
  width:18px; height:2px;
  background: var(--ink);
  margin:4px 0;
  opacity:.85;
}

/* Base hero text/layout */
.hero{
  padding: 34px 0 8px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.eyebrow{
  margin:0;
  font-weight:900;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 12px;
}
h1{
  margin: 10px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.subhead{
  margin:0 0 18px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 16px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,.22);
  background: var(--accent);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 12px 18px rgba(37,99,235,.15);
}
.btn:hover{ filter: brightness(.98); }

.btn--ghost{
  background: rgba(255,255,255,.8);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}
.btn--ghost:hover{ border-color: rgba(37,99,235,.18); }

.btn--full{ width:100%; border-radius: 14px; }

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat{
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow2);
}
.stat__k{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.stat__v{
  display:block;
  margin-top: 2px;
  font-weight: 900;
  letter-spacing: -.01em;
}

/* Main layout */
.main{ padding: 22px 0 52px; }

.section{ padding: 26px 0; }
.section__head{
  display:grid;
  gap: 6px;
  max-width: 75ch;
}
h2{
  margin:0;
  font-size: 24px;
  letter-spacing: -.02em;
}
.section__head p{
  margin:0;
  color: var(--muted);
}

/* Feature cards */
.featureGrid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.icon{
  width:40px; height:40px;
  border-radius: 14px;
  background: var(--accentSoft);
  display:grid;
  place-items:center;
  font-size: 18px;
  margin-bottom: 10px;
}
.feature h3{ margin:0 0 6px; font-size: 16px; }
.feature p{ margin:0; color: var(--muted); }

/* Products */
.productGrid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.product__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.product h3{ margin:0; font-size: 16px; letter-spacing: -.01em; }
.tag{
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);
  background: var(--accentSoft);
  padding: 6px 10px;
  border-radius: 999px;
}
.product p{ margin: 10px 0 10px; color: var(--muted); }
.product ul{ margin: 0 0 0 18px; color: var(--muted); }

/* Why us panels */
.twoCol{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.panel{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.panel h3{ margin:0 0 8px; font-size: 16px; }
.panel p{ margin:0; color: var(--muted); }

/* FAQ accordion */
.accordion{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.acc__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-weight: 900;
  text-align:left;
  box-shadow: var(--shadow2);
}
.acc__q:hover{ border-color: rgba(37,99,235,.22); }
.acc__icon{ color: rgba(15,23,42,.55); font-size: 18px; }
.acc__a{
  padding: 0 16px 14px;
  color: var(--muted);
}
.acc__a p{ margin: 10px 0 0; }

/* Contact */
.section--contact{ padding-bottom: 10px; }
.contactCard{
  display:grid;
  gap: 16px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form{
  display:grid;
  gap: 10px;
}
label span{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 6px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.90);
  outline:none;
  font: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.formMsg{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:center;
  padding: 18px 0;
  color: var(--muted);
}
.footer strong{ color: var(--ink); }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .featureGrid{ grid-template-columns: 1fr; }
  .productGrid{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .menuBtn{ display:inline-block; }
  .nav{
    display:none;
    position:absolute;
    right:20px;
    top: 60px;
    width: min(280px, calc(100% - 40px));
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 10px;
  }
  .nav.nav--open{ display:flex; }
}

/* HERO BACKGROUND MODE (used by your updated hero HTML) */
.hero--bg{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 46px 0 38px;
  border-radius: 0 0 28px 28px;
}
.heroBg{
  position:absolute;
  inset:0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.heroOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.55) 45%, rgba(15,23,42,.22) 100%),
    linear-gradient(180deg, rgba(15,23,42,.18), rgba(15,23,42,.48));
}
.hero__grid--bg{
  position: relative;
  z-index: 2;
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}
.hero__copy--bg{ color: #fff; }
.hero__copy--bg .subhead{ color: rgba(255,255,255,.82); }
.hero__copy--bg .eyebrow{ color: rgba(255,255,255,.92); }

.stats--bg .stat--bg{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.stats--bg .stat__k{ color: rgba(255,255,255,.74); }
.stats--bg .stat__v{ color: rgba(255,255,255,.95); }

.btn--ghostOnImage{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  box-shadow: none;
}
.btn--ghostOnImage:hover{ background: rgba(255,255,255,.18); }

@media (max-width: 980px){
  .heroOverlay{
    background: linear-gradient(180deg, rgba(15,23,42,.62), rgba(15,23,42,.62));
  }
  .hero__grid--bg{ grid-template-columns: 1fr; }
}