/* Sinfra-SG Corporate Platform — mobile-first */
:root{
  --bg:#0b1020;
  --panel:#0f1730;
  --panel2:#101c3a;
  --text:#e9eefc;
  --muted:#b7c3e6;
  --line:rgba(233,238,252,.12);
  --brand:#6ee7ff;
  --brand2:#8b5cf6;
  --ok:#34d399;
  --warn:#fbbf24;
  --danger:#fb7185;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:14px;
  --radius2:18px;
  --max:1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(110,231,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(139,92,246,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), #070a14 70%);
  line-height:1.6;
}

a{ color:var(--brand); text-decoration:none; }
a:hover{ text-decoration:underline; }

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

header.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(11,16,32,.72);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}
.brand-mark{
  width:34px; height:34px;
  border-radius:10px;
  background:
    linear-gradient(135deg, rgba(110,231,255,.95), rgba(139,92,246,.95));
  box-shadow:0 10px 22px rgba(110,231,255,.18);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.brand-mark svg{ width:22px; height:22px; }
.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-title strong{ font-size:14px; letter-spacing:.6px; text-transform:uppercase; }
.brand-title span{ font-size:12px; color:var(--muted); }

.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  justify-content:flex-end;
}
.nav-links a{
  font-size:13px;
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav-links a[aria-current="page"]{
  border-color:rgba(110,231,255,.28);
  background:rgba(110,231,255,.08);
}
.nav-links a:hover{
  border-color:rgba(233,238,252,.18);
  background:rgba(233,238,252,.06);
  text-decoration:none;
}

.hero{
  padding:46px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.hero h1{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.3px;
}
.hero p.lead{
  margin:0 0 16px;
  color:var(--muted);
  max-width:70ch;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(15,23,48,.62);
  color:var(--text);
  font-size:12px;
}
.badge i{
  width:8px; height:8px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 4px rgba(110,231,255,.14);
}

.panel{
  background:rgba(15,23,48,.76);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}
.panel.pad{ padding:18px; }

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.16);
  background:rgba(233,238,252,.06);
  color:var(--text);
  cursor:pointer;
  font-weight:650;
  font-size:13px;
}
.btn:hover{ background:rgba(233,238,252,.1); text-decoration:none; }
.btn.primary{
  border-color:rgba(110,231,255,.34);
  background:linear-gradient(135deg, rgba(110,231,255,.18), rgba(139,92,246,.16));
}
.btn.primary:hover{
  border-color:rgba(110,231,255,.5);
}
.btn.ghost{
  background:transparent;
}

main{ padding:20px 0 60px; }

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.card{
  padding:16px;
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(16,28,58,.62), rgba(15,23,48,.62));
}
.card h2, .card h3{ margin:0 0 8px; }
.card h2{ font-size:18px; }
.card h3{ font-size:16px; color:var(--text); }
.card p{ margin:0 0 10px; color:var(--muted); }
.card ul{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.card li{ margin:6px 0; }

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:18px 0 10px;
}
.section-title h2{ margin:0; font-size:20px; }
.section-title p{ margin:0; color:var(--muted); font-size:13px; max-width:70ch; }

.kpi{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.kpi .metric{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(11,16,32,.35);
}
.metric strong{ display:block; font-size:15px; }
.metric span{ color:var(--muted); font-size:12px; }

.prose{
  color:var(--muted);
}
.prose h2,.prose h3{ color:var(--text); }
.prose p{ margin:0 0 12px; }
.prose .callout{
  border-left:3px solid rgba(110,231,255,.55);
  background:rgba(110,231,255,.06);
  padding:12px 14px;
  border-radius:12px;
  margin:14px 0;
}
.prose code{
  background:rgba(233,238,252,.08);
  border:1px solid rgba(233,238,252,.12);
  padding:2px 6px;
  border-radius:8px;
  color:var(--text);
}

form{
  display:grid;
  gap:10px;
}
label{ font-size:13px; color:var(--muted); }
input, textarea, select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.16);
  background:rgba(11,16,32,.45);
  color:var(--text);
  padding:11px 12px;
  outline:none;
}
textarea{ min-height:130px; resize:vertical; }
input:focus, textarea:focus{
  border-color:rgba(110,231,255,.5);
  box-shadow:0 0 0 4px rgba(110,231,255,.12);
}
.hint{ color:var(--muted); font-size:12px; }
.fineprint{
  font-size:12px;
  color:var(--muted);
  border-top:1px solid var(--line);
  padding-top:12px;
}

.faq details{
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(11,16,32,.25);
  padding:10px 12px;
}
.faq details + details{ margin-top:10px; }
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
}
.faq p{ margin:10px 0 0; color:var(--muted); }

footer.site-footer{
  border-top:1px solid var(--line);
  background:rgba(7,10,20,.8);
  padding:26px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.footer-grid h3{ margin:0 0 10px; font-size:14px; letter-spacing:.4px; text-transform:uppercase; }
.footer-grid a{ color:var(--muted); }
.footer-grid a:hover{ color:var(--text); }
.footer-meta{
  margin-top:14px;
  color:var(--muted);
  font-size:12px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.legal-identity{
  margin-top:10px;
  padding:12px 14px;
  border:1px solid rgba(233,238,252,.12);
  border-radius:14px;
  background:rgba(15,23,48,.55);
}
.legal-identity strong{ color:var(--text); }

.cookie-banner{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:200;
  border-radius:18px;
  border:1px solid rgba(233,238,252,.18);
  background:rgba(15,23,48,.92);
  backdrop-filter: blur(10px);
  box-shadow:var(--shadow);
  padding:14px;
  display:none;
}
.cookie-banner.show{ display:block; }
.cookie-row{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cookie-row p{ margin:0; color:var(--muted); font-size:13px; }
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.toast{
  position:fixed;
  right:14px;
  top:74px;
  z-index:220;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.16);
  background:rgba(11,16,32,.85);
  padding:10px 12px;
  color:var(--text);
  display:none;
  max-width:min(420px, calc(100vw - 28px));
}
.toast.show{ display:block; }
.toast small{ display:block; color:var(--muted); margin-top:3px; }

.map-placeholder{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:
    radial-gradient(800px 220px at 20% 20%, rgba(110,231,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(16,28,58,.40), rgba(11,16,32,.45));
  padding:16px;
}
.map-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

@media (min-width: 760px){
  .hero{ padding:62px 0 24px; }
  .hero-grid{ grid-template-columns: 1.2fr .8fr; align-items:stretch; }
  .hero h1{ font-size:40px; }
  .grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .kpi{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr; gap:18px; }
  .cookie-row{ flex-direction:row; justify-content:space-between; align-items:flex-end; gap:16px; }
  .cookie-actions{ justify-content:flex-end; }
  .map-grid{ grid-template-columns:1.15fr .85fr; align-items:start; }
}
