:root{
  --primary:#0033A0;
  --secondary:#E6E8EC;
  --accent:#5DA9E9;

  --bg:#f7f8fb;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:rgba(17,24,39,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --radius:18px;
  --maxw:1100px;
  --navH:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:var(--bg);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{
  width:min(var(--maxw), calc(100% - 32px));
  margin:0 auto;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:50;
  background: var(--accent);
  border-bottom:1px solid rgba(0,0,0,.12);
}

.siteHeader .navLinks{
  display:flex;
  align-items:center;
}

.siteHeader .navLinks a{
  color:#ffffff;
  font-weight:700;
}

.siteHeader .navLinks a:hover{
  opacity:.85;
}

.siteHeader .navLinks .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 16px;
  background:#ffffff;
  color:var(--primary);
  font-weight:800;
  border-radius:14px;
  box-shadow:none;
}
.siteHeader .navLinks .btn:hover{
  background:#f8fafc;
  opacity:1;
}

.siteHeader .brandName{
  color:#ffffff;
}

.siteHeader .brandTag{
  color:rgba(255,255,255,.85);
}

.navRow{
  height:var(--navH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brandLogo{
  width:44px;
  height:44px;
  object-fit:contain;
}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.brandName{font-weight:800}
.brandTag{font-size:12px; color:var(--muted)}

.navLinks{
  display:flex;
  align-items:center;
  gap:18px;
}

.navLinks a{font-weight:600;}
.siteHeader .navLinks a{ color:#fff; font-weight:700; }

.navToggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  background:var(--card);
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}
.navToggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:var(--text);
  border-radius:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  border:1px solid rgba(0,0,0,0);
  box-shadow:0 10px 20px rgba(0,0,0,.10);
  font-weight:800;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btnSmall{padding:10px 12px; border-radius:12px; font-weight:800}

.btnGhost{
  background:transparent;
  color:var(--primary);
  border:1px solid rgba(0,51,160,.25);
  box-shadow:none;
}
.btnInvert{
  background:#fff;
  color:var(--primary);
  box-shadow:none;
}

.hero{
  position:relative;
  padding:56px 0 24px;
  background:
    radial-gradient(900px 400px at 15% 10%, rgba(93,169,233,.35), transparent 60%),
    radial-gradient(900px 420px at 85% 15%, rgba(0,51,160,.18), transparent 60%);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}

.hero h1{
  margin:0 0 12px;
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing:-.02em;
  line-height:1.03;
}
.hero .accent{color:var(--primary)}

.heroVisual{
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroScreenshot{
  width:100%;
  max-width:620px;           /* controls visual dominance */
  height:auto;
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  background:#fff;
}

.heroLogo{
  margin-bottom:14px;
}

.heroLogo img{
  width:110px;
  max-width:100%;
  height:auto;
}

.heroVisualLogo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroVisualLogo img{
  width:260px;
  max-width:100%;
  height:auto;
}

.lead{
  color:#334155;
  font-size:18px;
  line-height:1.6;
  margin:0 0 18px;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap}

.stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.statCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.statNum{font-weight:900; color:var(--primary); font-size:18px}
.statLabel{color:var(--muted); font-size:12px; margin-top:2px}

.heroVisual .panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.panelTop{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  background:linear-gradient(90deg, rgba(0,51,160,.12), rgba(93,169,233,.10));
  border-bottom:1px solid var(--border);
}
.dot{width:10px; height:10px; border-radius:999px; background:rgba(17,24,39,.15)}
.panelTitle{margin-left:6px; font-weight:800; color:#1f2937; font-size:13px}
.panelBody{padding:14px}
.fakeRow{
  height:10px;
  border-radius:999px;
  background:rgba(17,24,39,.08);
  margin:10px 0;
}
.fakeCardGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:12px;
}
.fakeCard{
  height:58px;
  border-radius:16px;
  background:
    linear-gradient(135deg, rgba(0,51,160,.14), rgba(93,169,233,.18));
  border:1px solid rgba(0,0,0,.04);
}
.panelNote{margin:12px 0 0; color:var(--muted); font-size:12px}

.section{padding:64px 0}
.sectionAlt{background:var(--secondary)}
h2{
  margin:0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing:-.02em;
}
.subhead{margin:0 0 22px; color:var(--muted); font-size:16px; line-height:1.6}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:#374151; line-height:1.6}

.cardBadge{
  display:inline-block;
  margin-bottom:8px;
  padding:4px 10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  border-radius:999px;
  color:#0033A0;
  background:rgba(93,169,233,.20);
  border:1px solid rgba(0,51,160,.25);
}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}
.step{
  display:flex;
  gap:14px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.stepNum{
  width:38px; height:38px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color:#fff;
  background:var(--primary);
  flex:0 0 auto;
}
.stepBody h3{margin:0 0 6px}
.stepBody p{margin:0; color:#374151; line-height:1.6}

.sectionHeadRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.shot img{width:100%; height:160px; object-fit:cover}
.shot figcaption{
  padding:12px 12px 14px;
  font-weight:800;
  color:#1f2937;
  font-size:13px;
}

.note{color:var(--muted); font-size:13px; margin-top:12px}

.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{
  margin:0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.quote p{margin:0 0 10px; color:#111827; line-height:1.6}
.quote footer{color:var(--muted); font-weight:700; font-size:12px}

.features{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.feature{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}

.feature h3{ margin:0 0 8px; }
.feature p{ margin:0; color:#374151; line-height:1.6; }

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.bullets{
  margin:10px 0 0;
  padding-left:18px;
  color:#374151;
  line-height:1.7;
}

.form label{ display:block; font-weight:800; font-size:12px; color:#1f2937; }
.form input{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-size:14px;
}
.formMsg{ margin:10px 0 0; color:var(--muted); font-size:13px; }

.form form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* CTA Band */
.ctaBand{
  padding:34px 0;
  background: linear-gradient(90deg, rgba(0,51,160,.10), rgba(93,169,233,.18));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.ctaBandGrid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  padding:40px 0 18px;
  background: #0b1220;
  color:#e5e7eb;
}

.footerRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
}

.footerLeft{
  max-width:520px;
}

.footerLogo{
  width:210px;
  height:auto;
  margin:0 0 10px;
}

.footerTagline{
  margin:0 0 8px;
  color:rgba(229,231,235,.85);
  font-weight:600;
}

.footerEmail{
  display:inline-block;
  color:rgba(229,231,235,.9);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footerLinks{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.footerLinks a{
  color:rgba(229,231,235,.92);
  font-weight:700;
}

.footerLinks a:hover{
  opacity:.85;
}

.footerBottom{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid rgba(229,231,235,.12);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(229,231,235,.75);
  font-size:13px;
}

.footerSmall{
  color:rgba(229,231,235,.65);
}

@media (max-width: 600px){
  .footerLinks{ justify-content:flex-start; }
  .footerLogo{ width:190px; }
}
.footer .muted{ color: rgba(229,231,235,.75); }
.footerRight{ display:flex; gap:14px; flex-wrap:wrap; }
.footer a{ color:#e5e7eb; }

/* Modal */
.modal[hidden]{ display:none !important; }
.modal{
  position:fixed;
  inset:0;
  z-index:9999;
}
.modalBackdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.modalPanel{
  position:relative;
  width:min(900px, calc(100% - 28px));
  margin: min(8vh, 70px) auto 0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.modalClose{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.modalTitle{
  padding:14px 16px;
  font-weight:900;
  border-bottom:1px solid var(--border);
}
.modalImg{
  width:100%;
  height:auto;
  display:block;
}

/* Responsive */
@media (max-width: 760px){
  .heroScreenshot{
    max-width:100%;
    margin-top:20px;
  }
}

@media (max-width: 900px){
  .grid4{ grid-template-columns: repeat(2, 1fr); }
  .cards3{ grid-template-columns: 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .navLinks{ display:none; }
  .navLinks.open{
    display:flex;
    position:absolute;
    top:var(--navH);
    right:16px;
    left:16px;
    flex-direction:column;
    gap:10px;
    padding:14px;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 18px 50px rgba(0,0,0,.18);
  }

  /* keep the accent header, but make the dropdown readable */
  .siteHeader .navLinks.open a{ color:#1f2937; font-weight:800; }
  .siteHeader .navLinks.open a.btn{ color:#fff; }

  .navToggle{
    display:block;
    background:#ffffff;
  }

  .heroGrid{ grid-template-columns: 1fr; }
}

