:root {
  --primary: #0b68be;
  --primary-dark: #084f92;
  --ink: #1f2430;
  --ink-soft: #5c6575;
  --line: #e8edf4;
  --white: #ffffff;
  --panel: #f7faff;
  --shadow: 0 14px 40px rgba(20, 42, 74, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(11,104,190,0.08);
  backdrop-filter: blur(10px);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; min-height: 72px;
}
.brand-mini { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.phone-link {
  font-weight: 700; color: var(--primary);
  border: 1px solid rgba(11,104,190,0.15); padding: 10px 14px; border-radius: 999px;
}
.hero {
  position: relative; overflow: hidden; padding: 56px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 34px; align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.hero h1, .section-head h2, .split-box h2, .cta-box h2, .intro h2 {
  margin: 0 0 14px;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 4.3rem); max-width: 9.5ch; }
.hero p, .section-head p, .intro p, .cta-box p { color: var(--ink-soft); font-size: 1.03rem; }
.hero-actions, .cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 20px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 22px; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; box-shadow: 0 16px 26px rgba(11,104,190,0.18);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: white; color: var(--ink); border: 1px solid var(--line);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-card {
  background: white; border-radius: 36px; padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(11,104,190,0.08);
}
.hero-logo {
  width: 100%; height: auto; object-fit: contain; border-radius: 24px; background: #f1f3f7;
}
.coverage-chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-chip {
  padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--line); font-weight: 600; font-size: .92rem;
}
.hero-bg-shape {
  position: absolute; border-radius: 999px; filter: blur(10px); opacity: .12; pointer-events: none;
}
.hero-bg-shape-1 { width: 340px; height: 340px; background: var(--primary); top: -90px; right: -70px; }
.hero-bg-shape-2 { width: 280px; height: 280px; background: #111827; bottom: -100px; left: -70px; }
.section { padding: 84px 0; }
.section-head { margin-bottom: 28px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.service-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 42, 74, 0.04); min-height: 130px; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), #1f2430);
}
.service-card h3 { margin: 0; font-size: 1rem; }
.split-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}
.split-box {
  border-radius: 28px; padding: 32px; background: var(--panel); border: 1px solid var(--line);
}
.split-box.dark {
  background: linear-gradient(135deg, #1e2431, #111827); color: white; border: 0;
}
.light { color: #93c8ff; }
.feature-list { margin: 18px 0 0; padding-left: 18px; }
.feature-list li { margin: 10px 0; }
.light-list li { color: rgba(255,255,255,0.92); }
.coverage-panel {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 24px;
}
.coverage-panel > div {
  background: white; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 20px; font-weight: 700; box-shadow: 0 10px 22px rgba(20,42,74,0.04);
}
.cta-box {
  background: linear-gradient(135deg, #f7fbff, #eef5ff); border: 1px solid var(--line);
  border-radius: 30px; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer {
  background: #101723; color: rgba(255,255,255,0.9); padding: 34px 0 46px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: start;
}
.footer h3 { margin-top: 0; margin-bottom: 8px; color: white; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(135deg, #18c55b, #0aa543); color: white;
  font-weight: 800; box-shadow: 0 16px 28px rgba(24,197,91,0.28); z-index: 60;
}
.reveal {
  opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .footer-grid, .cta-box { grid-template-columns: 1fr; display: grid; }
  .cards-grid, .coverage-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { max-width: none; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .cards-grid, .coverage-panel { grid-template-columns: 1fr; }
  .topbar-inner { min-height: 66px; }
  .phone-link { font-size: .92rem; padding: 9px 12px; }
  .hero { padding-top: 38px; }
  .hero-card { padding: 18px; }
  .cta-box { padding: 24px; }
}
