:root{
  --primary:#00396C;
  --accent:#2A9D8F;
  --bg:#ffffff;
  --muted:#F5F7FA;
  --text:#0B1220;
  --border:#E6EAF0;
}
html,body{height:100%;}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:var(--primary); text-decoration:none;}
a:hover{text-decoration:underline;}
.navbar{background:#fff; border-bottom:1px solid var(--border);}
.navbar-brand img{height:44px; width:auto;}
.nav-link{font-weight:600; color:#13233a !important;}
.nav-link:hover{color:var(--primary) !important;}
.btn-primary{
  background:var(--primary);
  border-color:var(--primary);
  font-weight:700;
}
.btn-primary:hover{filter:brightness(0.95);}
.btn-accent{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  font-weight:800;
}
.btn-accent:hover{filter:brightness(0.95); color:#fff;}
.badge-soft{
  background:rgba(0,57,108,.10);
  color:var(--primary);
  border:1px solid rgba(0,57,108,.15);
  font-weight:700;
}
.section{padding:72px 0;}
.section-muted{background:var(--muted);}
.hero{
  padding:88px 0 72px;
  background:linear-gradient(180deg, rgba(0,57,108,0.06), rgba(0,57,108,0.00));
}
.hero h1{font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight:900; letter-spacing:-0.02em;}
.hero p{font-size:1.1rem; color:#334155;}
.card-clean{
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(15,23,42,.04);
}
.card-clean .card-body{padding:22px;}
.icon-box{
  width:44px; height:44px; border-radius:12px;
  background:rgba(0,57,108,.12);
  display:flex; align-items:center; justify-content:center;
  color:var(--primary);
}
.brand-pill{
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px 14px;
  text-align:center;
  font-weight:800;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,.03);
}
.kpi-bar{
  background:var(--primary);
  color:#fff;
  padding:54px 0;
}
.kpi-num{font-size:2.4rem; font-weight:900; line-height:1;}
.kpi-label{opacity:.9; font-weight:600;}
.testimonial{
  position:relative;
  padding:22px;
}
.testimonial:before{
  content:"“";
  position:absolute;
  top:-10px; left:16px;
  font-size:64px;
  color:rgba(0,57,108,.15);
  font-weight:900;
}
.timeline{
  position:relative;
  margin: 30px auto 0;
  max-width: 980px;
}
.timeline:before{
  content:"";
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:4px;
  background:linear-gradient(180deg, rgba(0,57,108,.35), rgba(255,114,0,.55));
  transform:translateX(-50%);
  border-radius:4px;
}
.tl-item{
  display:flex;
  margin:34px 0;
  position:relative;
}
.tl-item.left{justify-content:flex-start;}
.tl-item.right{justify-content:flex-end;}
.tl-card{
  width:min(420px, 92%);
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
  padding:18px;
}
.tl-dot{
  position:absolute;
  left:50%;
  top:26px;
  transform:translate(-50%, -50%);
  width:16px; height:16px;
  background:#fff;
  border:4px solid var(--primary);
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.tl-year{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  font-size:.85rem;
}
.tl-logo{
  width:100%;
  max-height:120px;
  object-fit:contain;
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}
.whatsapp-float{
  position:fixed;
  right:18px; bottom:18px;
  z-index:999;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.whatsapp-float:hover{color:#fff; filter:brightness(.96); text-decoration:none;}
.small-muted{color:#64748b;}
.footer{
  border-top:1px solid var(--border);
  padding:36px 0;
  background:#fff;
}
.coverage-map{
  width:100%;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  padding:22px;
}
/* Responsive timeline */
@media (max-width: 992px){
  .timeline:before{left:18px; transform:none;}
  .tl-dot{left:18px; transform:translate(-50%, -50%);}
  .tl-item.left,.tl-item.right{justify-content:flex-start; padding-left:38px;}
  .tl-card{width:100%;}
}

/* ---- Animations & motion ---- */
@media (prefers-reduced-motion: no-preference){
  .reveal{opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in-view{opacity:1; transform:none;}
  .floaty{animation:floaty 6s ease-in-out infinite;}
  @keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
  .btn{transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;}
  .btn:hover{transform:translateY(-1px); box-shadow:0 10px 24px rgba(2, 19, 38, .12);}
  .card-clean{transition:transform .25s ease, box-shadow .25s ease;}
  .card-clean:hover{transform:translateY(-3px); box-shadow:0 18px 40px rgba(2, 19, 38, .12);}
  .brand-pill{transition:transform .2s ease, background .2s ease;}
  .brand-pill:hover{transform:translateY(-2px); background:#fff;}
  .section-figure{border-radius:18px; border:1px solid var(--border); background:var(--muted); overflow:hidden;}
  .section-figure img{width:100%; height:auto; display:block;}
}
/* Muted CTA button */
.btn-accent{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  font-weight:800;
}
.btn-accent:hover{filter:brightness(.95); color:#fff;}
/* Soft accent badge */
.badge-soft{background:rgba(0,57,108,.08); color:var(--primary); border:1px solid rgba(0,57,108,.12); font-weight:700;}
/* Decorative image blocks */
.hero-illustration{
  border-radius:22px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, #ffffff 0%, #F5F7FA 100%);
  overflow:hidden;
}
.hero-illustration img{width:100%; height:auto; display:block;}
