:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --surface2:#f1f5f9;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --efs:#009062;     /* EFS green */
  --navy:#0b2447;
  --shadow:0 10px 24px rgba(2,6,23,.10);
  --radius:14px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:12px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand img{height:34px;width:auto;display:block}
.brand .sep{width:1px;height:26px;background:var(--line)}
.nav{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.nav a{
  font-size:14px;
  color:rgba(15,23,42,.88);
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:var(--surface2)}
.nav a.active{background:var(--surface2);font-weight:600}

.hero{
  padding:56px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero{padding:42px 0 24px}
  .hero-grid{grid-template-columns:1fr}
}

.panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.panel.flat{box-shadow:none;background:transparent;border:none;padding:0}
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;
  color:rgba(71,85,105,.9);
  background:rgba(0,144,98,.08);
  border:1px solid rgba(0,144,98,.18);
  padding:6px 10px;
  border-radius:999px;
}
.h1{
  font-size:44px;
  line-height:1.06;
  margin:14px 0 10px;
  letter-spacing:-.02em;
}
.lead{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  margin:0;
}
.p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}
.section{
  padding:46px 0;
  border-top:1px solid var(--line);
}
.section.alt{
  background:var(--surface2);
}
.h2{
  font-size:28px;
  margin:0 0 10px;
  letter-spacing:-.01em;
}
.h3{
  font-size:16px;
  margin:0 0 6px;
}
.grid{
  display:grid;
  gap:16px;
}
.two{
  grid-template-columns:1fr 1fr;
}
.three{
  grid-template-columns:repeat(3,1fr);
}
@media (max-width: 900px){
  .two,.three{grid-template-columns:1fr}
}

.btnrow{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--surface);
  font-weight:600;
  font-size:14px;
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 8px 16px rgba(2,6,23,.08)}
.btn.primary{
  border-color:rgba(0,144,98,.35);
  background:linear-gradient(90deg, rgba(0,144,98,.10), rgba(0,144,98,.20));
  color:var(--text);
}
.btn.ghost{background:transparent}

.statbox{
  display:grid;gap:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px;
  background:var(--surface);
}
.stat .label{font-size:12px;color:var(--muted)}
.stat .value{font-size:20px;font-weight:700;margin-top:4px;color:var(--navy)}
.stat .value b{color:var(--efs)}

.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--efs);
  margin-top:6px;
  flex:0 0 auto;
}
.hr{height:1px;background:var(--line);margin:14px 0}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.table th{
  background:var(--surface2);
  color:rgba(15,23,42,.86);
}
.table tr:last-child td{border-bottom:none}

.form{display:grid;gap:12px;margin-top:12px}
label{font-size:13px;color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px;resize:vertical}
.fine{font-size:12px;color:rgba(71,85,105,.9);line-height:1.55}

/* Dark hero override */
.hero.dark{
  background: linear-gradient(180deg, #0b2447 0%, #071a33 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero.dark .panel.flat,
.hero.dark .panel{
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero.dark .h1,
.hero.dark .h2,
.hero.dark .p,
.hero.dark .lead,
.hero.dark .fine{
  color: #f8fafc;
}
.hero.dark .kicker{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: #e5e7eb;
}
.hero.dark .stat{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.hero.dark .stat .label{color:#cbd5f5}
.hero.dark .stat .value{color:#ffffff}
.hero.dark .btn.primary{
  background: linear-gradient(90deg, #00b27a, #27d9a1);
}
.hero.dark .btn{
  background: rgba(255,255,255,.08);
  color:#ffffff;
  border-color: rgba(255,255,255,.25);
}

/* Explainer callout */
.callout{
  border:1px solid rgba(0,144,98,.28);
  background:rgba(0,144,98,.08);
  border-radius:14px;
  padding:18px;
}
.callout .title{
  font-weight:700;
  margin:0 0 8px;
}
.callout .small{
  margin:0;
  color:rgba(248,250,252,.84);
  line-height:1.65;
}
.callout.light{
  background:rgba(0,144,98,.06);
  color:inherit;
}
.callout.light .small{color:rgba(71,85,105,.95);}

/* Dark header for logo contrast */
.header{
  background: linear-gradient(180deg, #0b2447 0%, #081a33 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header .nav a{
  color: rgba(248,250,252,.9);
}
.header .nav a:hover{
  background: rgba(255,255,255,.12);
}
.header .nav a.active{
  background: rgba(255,255,255,.18);
  color: #ffffff;
}
.header .sep{
  background: rgba(255,255,255,.35);
}

  .product-name .block{font-size:40px;letter-spacing:.10em}
}


/* Emphasize EFS logo */
.efs-logo{
  height: 42px;
}
@media (max-width: 720px){
  .efs-logo{
    height: 36px;
  }
}

/* Enlarge both header logos */
.header .brand img{
  height: 44px;
}
@media (max-width: 720px){
  .header .brand img{
    height: 38px;
  }
}

/* Hero sub-brand typography */
.subbrand{
  margin:6px 0 2px;
  font-family:Poppins, system-ui, sans-serif;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(248,250,252,.9);
}
.subbrand.muted{
  margin:0 0 14px;
  font-size:13px;
  letter-spacing:.14em;
  color:rgba(248,250,252,.75);
}
