:root{
  --brand:#04445C;
  --brand2:#022a38;
  --accent:#f97316; /* orange dot */
  --bg:#0b1220;
  --paper:#ffffff;
  --muted:#64748b;
  --line:rgba(148,163,184,.28);
  --shadow: 0 18px 40px rgba(2,6,23,.20);
  --radius: 18px;
  --max: 1160px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:#0f172a; background:#f6f8fb; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; height:auto; }

.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.section{ padding:64px 0; }
.section.tight{ padding:42px 0; }

.topbar{ position:sticky; top:0; z-index:50; backdrop-filter: blur(10px);
  background: rgba(255,255,255,.78); border-bottom: 1px solid rgba(226,232,240,.9);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.2px; }
.brand img{ width:40px; height:40px; object-fit:contain; }
.brand .word{ display:flex; flex-direction:column; line-height:1.05; }
.brand .word small{ font-weight:700; color:var(--muted); margin-top:3px; }

.links{ display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.links a{ font-weight:800; color:#0b2230; opacity:.92; padding:10px 10px; border-radius:12px; }
.links a.active{ background: rgba(4,68,92,.08); color: var(--brand); }
.links a:hover{ background: rgba(2,132,199,.06); text-decoration:none; }

.ctaRow{ display:flex; gap:10px; align-items:center; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:14px; border:1px solid rgba(226,232,240,.95);
  background:white; font-weight:900; color:#0f172a; box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.btn.primary{ background: rgba(4,68,92,.08); border-color: rgba(4,68,92,.22); color: var(--brand); }
.btn.accent{ background: rgba(249,115,22,.10); border-color: rgba(249,115,22,.28); color:#9a3412; }
.btn:hover{ transform: translateY(-1px); text-decoration:none; }
.btn:active{ transform: translateY(0px); }

.mobileBtn{ display:none; width:44px; height:44px; border-radius:14px; border:1px solid rgba(226,232,240,.95); background:white; box-shadow: 0 10px 22px rgba(2,6,23,.06); }
.mobileBtn span{ display:block; width:18px; height:2px; background:#0f172a; margin:4px auto; border-radius:999px; opacity:.8; }
.mobileMenu{ display:none; padding:0 0 14px; }
.mobileMenu a{ display:block; padding:12px 10px; border-radius:12px; font-weight:900; color:#0b2230; }
.mobileMenu a:hover{ background: rgba(2,132,199,.06); text-decoration:none; }
@media (max-width: 900px){
  .links,.ctaRow{ display:none; }
  .mobileBtn{ display:inline-flex; align-items:center; justify-content:center; }
  .mobileMenu.open{ display:block; }
}

.hero{ position:relative; overflow:hidden; border-radius: 28px; margin-top:18px;
  background: radial-gradient(1200px 600px at 10% 15%, rgba(4,68,92,.22), transparent 60%),
              radial-gradient(900px 500px at 85% 40%, rgba(249,115,22,.16), transparent 60%),
              linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border:1px solid rgba(226,232,240,.95);
  box-shadow: var(--shadow);
}
.heroInner{ padding:48px 22px; display:grid; grid-template-columns: 1.25fr .75fr; gap:18px; align-items:center; }
@media (max-width: 900px){ .heroInner{ grid-template-columns: 1fr; } }

.kicker{ display:inline-flex; align-items:center; gap:10px; padding:7px 10px; border-radius:999px; border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.8); font-weight:900; color:#0b2230; width: fit-content;
}
.kicker .dot{ width:8px; height:8px; border-radius:999px; background: var(--accent); box-shadow: 0 0 0 4px rgba(249,115,22,.12); }
.h1{ font-size:44px; line-height:1.05; margin:14px 0 10px; letter-spacing:-.6px; color:#071827; }
@media (max-width: 520px){ .h1{ font-size:34px; } }
.lead{ font-size:16px; color:#334155; line-height:1.6; margin:0 0 18px; }
.heroCard{ border:1px solid rgba(226,232,240,.95); background:white; border-radius: 22px; padding:16px; box-shadow: 0 12px 30px rgba(2,6,23,.08); }
.heroCard h3{ margin:0 0 6px; font-size:14px; }
.heroCard p{ margin:0; color: var(--muted); font-size:13px; line-height:1.55; }
.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.badge{ font-weight:900; font-size:12px; padding:7px 10px; border-radius:999px; border:1px solid rgba(226,232,240,.95); background: rgba(4,68,92,.06); color: var(--brand); }

.grid3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
@media (max-width: 980px){ .grid3{ grid-template-columns: 1fr; } }

.card{ border:1px solid rgba(226,232,240,.95); background:white; border-radius: var(--radius); padding:18px; box-shadow: 0 12px 30px rgba(2,6,23,.06); }
.card h3{ margin:0 0 8px; font-size:14px; color:#0b2230; letter-spacing:.2px; }
.card p{ margin:0; color:#475569; line-height:1.6; }
.icon{ width:100px; height:34px; border-radius:14px; display:grid; place-items:center;
  background: rgba(4,68,92,.07); border:1px solid rgba(4,68,92,.16); color: var(--brand); font-weight:950;
}
.cardTop{ display:flex; gap:12px; align-items:flex-start; margin-bottom:12px; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:center; }
@media (max-width: 980px){ .split{ grid-template-columns: 1fr; } }

.panel{ border:1px solid rgba(226,232,240,.95); background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-radius: 22px; padding:22px; box-shadow: var(--shadow);
}
.panel h2{ margin:0 0 10px; font-size:22px; color:#0b2230; }
.panel p{ margin:0 0 12px; color:#475569; line-height:1.7; }
.ul{ margin:10px 0 0 18px; color:#475569; line-height:1.8; }
.ul li{ margin:6px 0; }

.faq details{ border:1px solid rgba(226,232,240,.95); border-radius: 16px; padding:12px 14px; background:white; box-shadow: 0 12px 30px rgba(2,6,23,.05); }
.faq details + details{ margin-top:10px; }
.faq summary{ cursor:pointer; font-weight:950; list-style:none; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:after{ content:"▾"; float:right; opacity:.65; }
.faq details[open] summary:after{ content:"▴"; }

.footer{ margin-top:50px; border-top:1px solid rgba(226,232,240,.95); background: white; }
.footerInner{ padding:18px 0; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.small{ color: var(--muted); font-size:12px; }
.footer a{ font-weight:900; color: var(--brand); }

.notice{ border:1px solid rgba(4,68,92,.18); background: rgba(4,68,92,.06); padding:12px 14px; border-radius: 16px; color:#0b2230; }
.kpis{ display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:10px; margin-top:12px; }
@media (max-width: 980px){ .kpis{ grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 520px){ .kpis{ grid-template-columns: 1fr; } }
.kpi{ border:1px solid rgba(226,232,240,.95); background:white; border-radius: 18px; padding:14px; box-shadow: 0 12px 30px rgba(2,6,23,.06); }
.kpi .n{ font-size:24px; font-weight:950; }
.kpi .t{ color: var(--muted); font-weight:900; font-size:12px; margin-top:4px; }

.table{ width:100%; border-collapse:collapse; font-size:13px; }
.table th,.table td{ padding:10px 10px; border-bottom:1px solid rgba(226,232,240,.9); text-align:left; vertical-align:top; }
.table th{ color: var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.3px; }
/* -----------------------------
   Contact form styling (WCL)
------------------------------*/
.formCard{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.wclForm{ display:block; }

.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 820px){
  .formGrid{ grid-template-columns: 1fr; }
}

.field label{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-bottom: 8px;
}
.field .req{ color: rgba(255,255,255,.9); }

.wclForm input[type="text"],
.wclForm input[type="email"],
.wclForm select,
.wclForm textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  outline: none;
}

.wclForm textarea{ resize: vertical; min-height: 140px; }

.wclForm input::placeholder,
.wclForm textarea::placeholder{
  color: rgba(255,255,255,.45);
}

.wclForm input:focus,
.wclForm select:focus,
.wclForm textarea:focus{
  border-color: rgba(122,168,255,.38);
  box-shadow: 0 0 0 4px rgba(122,168,255,.12);
}

.formRow{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.notice{
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(4, 68, 92, .08);
  color: rgb(33 32 32 / 86%);
}
.notice.ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.10);
}
.notice.bad{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.10);
}

.hint{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}
.hint.small{ margin-top: 12px; }

/* Honeypot (spam trap) */
.hp{ display:none !important; }
/* Don't underline the logo/brand text on hover */
.brand:hover,
.brand:hover *{
  text-decoration: none !important;
}
a:hover{ text-decoration:underline; }
/* NEVER underline the brand/logo link */
a.brand,
a.brand:hover,
a.brand:focus,
a.brand:active{
  text-decoration: none !important;
}
