:root {
  --navy: #0b1e33;
  --navy-2: #122a45;
  --blue: #1e5fa8;
  --blue-light: #2f7fd8;
  --orange: #f5a623;
  --orange-dark: #d4890f;
  --green: #25d366;
  --green-dark: #1eb054;
  --ink: #16202b;
  --ink-soft: #4a5a68;
  --paper: #ffffff;
  --paper-alt: #f4f6f9;
  --line: #e3e8ee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 30, 51, 0.12);
  --font-body: "Inter", system-ui, sans-serif;
  --font-head: "Barlow Condensed", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; margin: 0; letter-spacing: 0.2px; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--orange); color: var(--navy); padding: 10px 16px;
  z-index: 999; font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Topbar */
.topbar { background: var(--navy); color: #cfe0f2; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; gap: 12px; }
.topbar__msg { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 0 3px rgba(37,211,102,0.25); }
.topbar__phone { color: #fff; font-weight: 700; letter-spacing: 0.3px; }
.topbar__phone:hover { color: var(--orange); }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(11,30,51,0.97); backdrop-filter: blur(6px); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; }

.logo { display: flex; align-items: center; line-height: 1; }
.logo__img { height: 34px; width: auto; display: block; }
.logo__img--footer { height: 40px; }

.nav { display: flex; gap: 26px; }
.nav a { color: #d7e3f0; font-weight: 500; font-size: 15px; transition: color .15s; }
.nav a:hover { color: var(--orange); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: none; border: 0; cursor: pointer; }
.nav__toggle span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  white-space: nowrap; border: 2px solid transparent; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--whatsapp { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,0.35); }
.btn--whatsapp:hover { background: var(--green-dark); }
.btn--call { background: var(--orange); color: var(--navy); }
.btn--call:hover { background: var(--orange-dark); color: #fff; }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Hero */
.hero { position: relative; color: #fff; min-height: 640px; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,20,35,0.94) 20%, rgba(8,20,35,0.75) 55%, rgba(8,20,35,0.45) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 90px 20px 70px; max-width: 700px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; color: var(--orange); margin: 0 0 14px; }
.eyebrow--center { text-align: center; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; margin-bottom: 18px; }
.hero__lead { font-size: 17px; color: #dde6ef; max-width: 560px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__badges li { position: relative; padding-left: 20px; font-size: 14px; color: #cfe0f2; font-weight: 500; }
.hero__badges li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

/* Sections */
.section { padding: 88px 0; }
.section--alt { background: var(--paper-alt); }
.section__title { font-size: clamp(28px, 4vw, 38px); font-weight: 800; color: var(--navy); text-align: center; margin: 0 auto 18px; max-width: 640px; }
.section__title--left { text-align: left; margin: 0 0 18px; max-width: none; }
.section__lead { text-align: center; max-width: 620px; margin: 0 auto 46px; color: var(--ink-soft); font-size: 16.5px; }
.eyebrow--center + .section__title { margin-bottom: 46px; }

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Split layout */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.split--reverse .split__media { order: -1; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__text p { color: var(--ink-soft); font-size: 16px; margin: 0 0 16px; }
.split__text .btn { margin-top: 10px; }

.checklist { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 15.5px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue);
  color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.checklist strong { color: var(--navy); }

.split__media--stat { display: flex; align-items: center; justify-content: center; }
.stat-card {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.stat-card__num { font-family: var(--font-head); font-size: 96px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-card__label { font-size: 15px; color: #dde6ef; margin-top: 10px; letter-spacing: 0.5px; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* Contact */
.contact { background: var(--navy); color: #fff; }
.contact .section__title { color: #fff; }
.contact__grid { margin-top: 10px; }
.contact__card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 34px 20px; transition: transform .18s, background .18s;
}
.contact__card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.contact__card--whatsapp { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4); }
.contact__card--static { cursor: default; }
.contact__card--static:hover { transform: none; }
.icon--lg { width: 34px; height: 34px; margin-bottom: 6px; color: var(--orange); }
.contact__card--whatsapp .icon--lg { color: var(--green); }
.contact__card-title { font-size: 19px; font-weight: 800; }
.contact__card-sub { font-size: 13.5px; color: #b9c8d8; }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite;
}
.fab-whatsapp .icon { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 8px 22px rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 22px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 22px rgba(37,211,102,0.45); }
}

/* Footer */
.footer { background: #071522; color: #9fb2c4; padding: 46px 0 30px; }
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.logo--footer { align-items: center; margin-bottom: 4px; }
.footer p { margin: 0; font-size: 14px; }
.footer__meta { margin-top: 14px; font-size: 12.5px; color: #66798d; }

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav__toggle { display: flex; }
  .header__cta .btn--call { display: none; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar__inner { font-size: 12px; }
  .hero { min-height: 560px; }
  .hero__content { padding: 46px 20px 50px; }
  .eyebrow { margin-bottom: 10px; }
  .hero h1 { margin-bottom: 26px; }
  .hero__lead { display: none; }
  .hero__actions { margin-bottom: 20px; }
  .grid--3 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .stat-card__num { font-size: 68px; }
  .header__cta .btn--whatsapp span { display: none; }
}

.nav.is-open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy-2); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow);
}
