:root{
  --bg:#f4f8fc;
  --bg-2:#eef4fa;
  --panel:#ffffff;
  --panel-2:#f8fbff;
  --text:#10213a;
  --muted:#5f718b;
  --line:#d9e3ef;
  --primary:#0d3f84;
  --primary-2:#1a5bb1;
  --accent:#63b32e;
  --accent-2:#7cd63f;
  --shadow:0 18px 45px rgba(12,34,68,.08);
  --shadow-soft:0 10px 24px rgba(12,34,68,.05);
  --radius:24px;
  --radius-sm:18px;
  --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(13,63,132,.06), transparent 28%),
    radial-gradient(circle at top right, rgba(99,179,46,.06), transparent 22%),
    linear-gradient(180deg,#f8fbff 0%,#f4f8fc 100%);
  line-height:1.7;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,227,239,.92);
}
.nav-shell{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-logo{height:48px;width:auto}
.site-nav{
  display:flex;
  align-items:center;
  gap:22px;
}
.site-nav a{
  font-size:.95rem;
  font-weight:700;
  color:var(--muted);
}
.site-nav a:hover,.site-nav a:focus{color:var(--primary)}
.nav-cta{
  min-height:48px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#0b1b2e !important;
  box-shadow:0 10px 24px rgba(99,179,46,.22);
}
.nav-toggle{
  display:none;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--primary);
  font-weight:800;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  padding:10px 14px;
  border-radius:999px;
  background:#eff7e9;
  border:1px solid #d9ecc9;
  color:#447c20;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.btn{
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:-.01em;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 14px 28px rgba(13,63,132,.16);
}
.btn-secondary{
  background:#fff;
  border:1px solid var(--line);
  color:var(--primary);
}
.hero-actions,.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.home-hero{
  padding:82px 0 36px;
}
.home-hero-grid,
.page-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}
.home-hero h1,
.page-hero h1{
  margin:0;
  font-size:clamp(2.3rem,4.3vw,3.8rem);
  line-height:1.08;
  letter-spacing:-.045em;
  max-width:760px;
}
.home-hero h1 .accent{color:var(--primary)}
.lead{
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.06rem;
  max-width:760px;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.hero-points span{
  padding:12px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--primary);
  font-size:.92rem;
  font-weight:700;
  box-shadow:var(--shadow-soft);
}
.hero-logo-card{
  position:relative;
  padding:34px;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.hero-logo-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  background:
    radial-gradient(circle at 12% 16%, rgba(13,63,132,.08), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(99,179,46,.10), transparent 20%);
  pointer-events:none;
}
.hero-logo-image{
  width:min(100%, 560px);
  margin:0 auto;
}
.hero-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:26px;
}
.hero-mini-card{
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.hero-mini-card strong{
  display:block;
  font-size:1rem;
  margin-bottom:6px;
}
.hero-mini-card span{
  color:var(--muted);
  font-size:.92rem;
}
.hero-floating{
  position:absolute;
  max-width:220px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-floating strong{
  display:block;
  font-size:.96rem;
  margin-bottom:6px;
}
.hero-floating span{
  color:var(--muted);
  font-size:.88rem;
}
.hero-floating.left{left:-22px;bottom:82px}
.hero-floating.right{right:-18px;top:34px}

.quick-links{
  padding:12px 0 10px;
}
.quick-links-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.quick-link{
  display:block;
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.quick-link:hover{
  transform:translateY(-4px);
  border-color:#c5d8ee;
  box-shadow:var(--shadow);
}
.quick-link strong{
  display:block;
  margin-bottom:8px;
  font-size:1.05rem;
}
.quick-link p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.section{
  padding:78px 0 0;
}
.section-head{
  margin-bottom:24px;
}
.section-head h2{
  margin:0;
  font-size:clamp(1.95rem,3.2vw,2.9rem);
  line-height:1.1;
  letter-spacing:-.04em;
}
.section-head p{
  margin:12px 0 0;
  color:var(--muted);
  max-width:820px;
}

.card-grid-3,
.card-grid-4{
  display:grid;
  gap:22px;
}
.card-grid-3{grid-template-columns:repeat(3,1fr)}
.card-grid-4{grid-template-columns:repeat(4,1fr)}

.home-card{
  display:block;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.home-card:hover{
  transform:translateY(-5px);
  border-color:#c5d8ee;
  box-shadow:var(--shadow);
}
.home-card-visual{
  position:relative;
  min-height:170px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(13,63,132,.10), rgba(99,179,46,.08)),
    linear-gradient(180deg,#f8fbff 0%,#eef4fa 100%);
  overflow:hidden;
}
.home-card-visual:before{
  content:"";
  position:absolute;
  left:24px;
  top:24px;
  width:112px;
  height:84px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid #dfe8f2;
  box-shadow:var(--shadow-soft);
}
.home-card-visual:after{
  content:"";
  position:absolute;
  right:24px;
  bottom:24px;
  width:86px;
  height:86px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(13,63,132,.9), rgba(99,179,46,.9));
  box-shadow:0 16px 28px rgba(12,34,68,.12);
}
.visual-bars{
  position:absolute;
  left:42px;
  top:48px;
  width:72px;
  height:36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
  align-items:end;
  z-index:1;
}
.visual-bars span{
  display:block;
  border-radius:6px 6px 3px 3px;
  background:linear-gradient(180deg,var(--accent),var(--primary));
}
.visual-bars span:nth-child(1){height:34%}
.visual-bars span:nth-child(2){height:58%}
.visual-bars span:nth-child(3){height:76%}
.visual-bars span:nth-child(4){height:48%}
.visual-pill{
  position:absolute;
  left:24px;
  bottom:22px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--primary);
  font-size:.82rem;
  font-weight:800;
  z-index:1;
}
.home-card-body{
  padding:24px;
}
.home-card-body h3{
  margin:0 0 10px;
  font-size:1.15rem;
  letter-spacing:-.03em;
}
.home-card-body p{
  margin:0;
  color:var(--muted);
  font-size:.96rem;
}
.card-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  color:var(--primary);
  font-weight:800;
}
.card-cta:after{content:"→"}

.feature-split{
  padding:84px 0 0;
}
.feature-split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.split-card{
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
}
.split-card h2{
  margin:0;
  font-size:clamp(1.95rem,3vw,2.7rem);
  line-height:1.1;
  letter-spacing:-.04em;
}
.split-card p{
  color:var(--muted);
}
.tick-list{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.tick{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  background:var(--panel-2);
  border:1px solid var(--line);
}
.tick i{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-style:normal;
  font-weight:900;
  flex:0 0 auto;
}
.tick strong{display:block;font-size:1rem;margin-bottom:2px}
.tick span{color:var(--muted);font-size:.94rem}

.audience-stack{
  display:grid;
  gap:16px;
}
.audience-tile{
  display:block;
  padding:22px;
  border-radius:22px;
  background:linear-gradient(180deg,#fff 0%,#f9fcff 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.audience-tile strong{
  display:block;
  font-size:1.08rem;
  margin-bottom:8px;
}
.audience-tile p{
  margin:0;
  color:var(--muted);
}

.cta-block{
  padding:92px 0 98px;
}
.cta-panel{
  text-align:center;
  padding:48px 28px;
  border-radius:30px;
  background:linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.cta-panel h2{
  margin:0;
  font-size:clamp(2rem,3.4vw,3rem);
  line-height:1.1;
  letter-spacing:-.04em;
}
.cta-panel p{
  margin:14px auto 0;
  color:var(--muted);
  max-width:820px;
}

.site-footer{
  margin-top:20px;
  padding:58px 0 24px;
  border-top:1px solid var(--line);
  background:#fbfdff;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
  gap:24px;
}
.footer-logo{height:54px;width:auto}
.footer-lead,.footer-col a,.footer-bottom{color:var(--muted)}
.footer-col h3{
  margin:0 0 14px;
  font-size:1rem;
  color:var(--text);
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-col li+li{margin-top:9px}
.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.page-hero{
  padding:90px 0 52px;
}
.page-hero-visual{
  position:relative;
}
.page-card{
  margin-top:28px;
  padding:28px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.page-card p{margin:0;color:var(--muted)}

@media (max-width:1180px){
  .home-hero-grid,
  .page-hero-grid,
  .quick-links-grid,
  .card-grid-4,
  .card-grid-3,
  .feature-split-grid,
  .footer-top{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:920px){
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  .site-nav{
    position:absolute;
    left:16px;
    right:16px;
    top:calc(100% + 12px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:18px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .site-nav.is-open{display:flex}
  .home-hero-grid,
  .page-hero-grid,
  .quick-links-grid,
  .card-grid-4,
  .card-grid-3,
  .feature-split-grid,
  .footer-top,
  .hero-mini-grid{grid-template-columns:1fr}
  .hero-floating{
    position:relative;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    max-width:none;
    margin-top:14px;
  }
  .footer-bottom{flex-direction:column;align-items:flex-start}
}
@media (max-width:620px){
  .brand-logo{height:40px}
  .home-hero h1,
  .page-hero h1,
  .split-card h2,
  .section-head h2,
  .cta-panel h2{font-size:clamp(1.9rem,8vw,2.35rem)}
  .btn,.hero-actions .btn,.cta-actions .btn{width:100%}
}
