:root {
  --base: #071320;
  --panel: #08192a;
  --footer: #060f1a;
  --card: #0b1d31;
  --card-deep: #0b1f33;
  --text: #eaf1f8;
  --muted: #a0b4c8;
  --muted-2: #93a9c0;
  --dim: #7c96ae;
  --cyan: #38c6f4;
  --cyan-hover: #7eddf9;
  --green: #25d366;
  --green-text: #052015;
  --border: #12263c;
  --card-border: #1a3453;
  --input-border: #24435f;
  --wide-border: #2b4d6e;
  --container: 1200px;
  --page-pad: clamp(18px, 5vw, 56px);
  --section-pad: clamp(56px, 8vw, 104px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--base);
  color: var(--text);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection { background: rgba(56, 198, 244, .28); }

img, svg { display: block; max-width: 100%; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-hover); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.1; letter-spacing: -.5px; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(56, 198, 244, .85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--base);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section { padding-block: var(--section-pad); }
.section-alt { background: var(--panel); border-block: 1px solid var(--border); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid #14283e;
  background: rgba(7, 19, 32, .84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 12px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }

.brand-logo-shell {
  width: 164px;
  height: 46px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .14);
}

.brand-logo-shell img { width: 164px; height: 46px; object-fit: contain; }

.navlinks { display: none; align-items: center; gap: clamp(18px, 2.4vw, 30px); font-size: 14.5px; }
.navlinks a { color: #b4c6d8; white-space: nowrap; transition: color .18s ease; }
.navlinks a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 10px 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }

.button-whatsapp {
  background: var(--green);
  color: var(--green-text);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .14);
}

.button-whatsapp:hover {
  background: #4bdf82;
  color: var(--green-text);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .22);
}

.whatsapp-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 3px solid var(--green-text);
  border-radius: 50%;
  opacity: .82;
}

.button-large { min-height: 52px; padding: 14px 23px; border-radius: 11px; font-size: 16px; }

.button-secondary {
  border-color: var(--wide-border);
  background: rgba(7, 19, 32, .16);
  color: var(--text);
}

.button-secondary:hover { border-color: #46698a; background: rgba(13, 43, 71, .55); color: var(--text); }

.header-cta { flex: 0 0 auto; font-size: 14px; white-space: nowrap; }
.header-cta-short { display: none; }

.hero {
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(70% 120% at 96% -10%, rgba(56, 198, 244, .08), transparent 52%),
    radial-gradient(120% 120% at 85% -10%, #103257 0%, #0a1c30 45%, #071320 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-block: clamp(48px, 8vw, 96px);
}

.hero-copy { align-self: center; }

.trust-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 6px 13px;
  border: 1px solid #23486b;
  border-radius: 100px;
  background: #0c2033;
  color: #8fd9f4;
  font-size: 12.5px;
  letter-spacing: .4px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 198, 244, .18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56, 198, 244, .16); }
  50% { box-shadow: 0 0 0 8px rgba(56, 198, 244, .03); }
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--cyan); }

.hero-intro {
  max-width: 590px;
  margin: 22px 0 0;
  color: #a9bdd1;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.coverage-note { margin: 20px 0 0; color: var(--dim); font-size: 13.5px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 34px);
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #16304a;
}

.hero-stats > div { display: grid; gap: 2px; }
.hero-stats strong { color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: 26px; line-height: 1.1; }
.hero-stats span { color: #8aa0b7; font-size: 12.5px; }

.hero-image-card {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #1d3a58;
  border-radius: 16px;
  background: #0c2135;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .25);
  isolation: isolate;
}

.hero-image-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-image-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,19,32,0) 42%, rgba(7,19,32,.78)); }
.hero-image-card figcaption {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid #24486a;
  border-radius: 8px;
  background: rgba(7, 19, 32, .7);
  color: #dce9f5;
  font-family: "Space Grotesk", monospace;
  font-size: 12px;
  letter-spacing: .5px;
  backdrop-filter: blur(7px);
}

.section-heading { max-width: 640px; margin-bottom: clamp(32px, 4vw, 52px); }
.compact-heading { margin-bottom: clamp(32px, 4vw, 48px); }
.section-heading > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}

.service-card {
  min-height: 225px;
  padding: 28px 26px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #0d2138, #0a1a2c);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.015);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover { transform: translateY(-3px); border-color: #285177; box-shadow: 0 18px 40px rgba(0,0,0,.16); }
.card-number { display: block; margin-bottom: 16px; color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.22rem; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted-2); font-size: .97rem; line-height: 1.6; }

.cta-band { border-block: 1px solid #1a3a5a; background: linear-gradient(100deg, #0d2b47, #123a5e); }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(40px, 6vw, 64px); }
.cta-band h2 { max-width: 700px; margin-bottom: 12px; font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.12; }
.cta-band p { margin: 0; color: #b7cadc; font-size: 1.05rem; }

.credibility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { margin: 0; padding: 26px 24px; border: 1px solid var(--card-border); border-radius: 14px; background: var(--card); }
.stat-card strong { display: block; color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1; }
.stat-card p { margin: 10px 0 0; color: var(--muted); font-size: .98rem; line-height: 1.45; }

.compliance-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 22px 26px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--card);
  color: var(--muted-2);
  font-size: 13.5px;
}

.compliance-strip strong { color: var(--text); font-size: 14px; }
.compliance-check { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: rgba(56, 198, 244, .12); color: var(--cyan); font-weight: 700; }
.tpin { margin-left: auto; color: #5f7a93; font-family: "Space Grotesk", monospace; font-size: 13px; white-space: nowrap; }

.coverage-grid, .quote-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); }
.coverage-grid > div:first-child, .quote-grid > div:first-child { align-self: center; }
.coverage-copy, .quote-intro { margin: 16px 0 24px; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.province-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.province-chips span { padding: 7px 14px; border: 1px solid #234261; border-radius: 100px; background: var(--card-deep); color: #b4c6d8; font-size: 13px; }

.coverage-map-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #1d3a58;
  border-radius: 16px;
  background:
    radial-gradient(circle at 42% 42%, rgba(56,198,244,.1), transparent 36%),
    repeating-linear-gradient(48deg, #0f2740, #0f2740 13px, #12314f 13px, #12314f 26px);
}

.coverage-map-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding: 18px 22px 34px;
  object-fit: contain;
}
.coverage-map-card figcaption { position: absolute; right: 18px; bottom: 16px; display: flex; align-items: center; gap: 7px; color: #88a6c4; font-size: 12px; }
.coverage-map-card figcaption span { color: var(--cyan); }

.contact-list { display: grid; gap: 14px; color: #b4c6d8; font-size: 14.5px; font-style: normal; }
.contact-list div { display: flex; align-items: flex-start; gap: 12px; }
.contact-list a { color: #b4c6d8; }
.contact-list a:hover { color: var(--cyan-hover); }

.quote-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #0d2138, #0a1a2c);
}

.quote-form { display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: #8fa6bd; font-size: 13px; }
.quote-form input, .quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--input-border);
  border-radius: 9px;
  outline: none;
  background: #081726;
  color: var(--text);
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.quote-form input::placeholder { color: #627a91; }
.quote-form input:focus, .quote-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(56, 198, 244, .1); }
.quote-submit { width: 100%; margin-top: 4px; border: 0; }
.form-note { margin: 2px 0 0; color: #5f7a93; font-size: 12px; text-align: center; }

.quote-success { padding: 26px 8px; text-align: center; }
.success-icon { display: grid; width: 54px; height: 54px; margin: 0 auto 16px; place-items: center; border: 1px solid rgba(37,211,102,.32); border-radius: 50%; background: rgba(37,211,102,.11); color: var(--green); font-family: "Space Grotesk", sans-serif; font-size: 27px; font-weight: 700; }
.quote-success h3 { margin-bottom: 10px; font-size: 1.3rem; }
.quote-success p { max-width: 440px; margin: 0 auto 20px; color: var(--muted); font-size: .98rem; line-height: 1.6; }
.text-button { display: block; margin: 18px auto 0; border: 0; background: transparent; color: var(--cyan); cursor: pointer; }
.text-button:hover { color: var(--cyan-hover); }

.faq-section { border-bottom: 0; }
.faq-container { max-width: 820px; }
.faq-heading { margin-bottom: clamp(30px, 4vw, 48px); text-align: center; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--card-border); border-radius: 12px; background: var(--card); }
.faq-item.open { border-color: #265073; }
.faq-item h3 { margin: 0; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-sign { flex: 0 0 auto; color: var(--cyan); font-size: 22px; line-height: 1; }
.faq-answer { padding: 0 22px 22px; color: #9db2c8; font-size: .99rem; line-height: 1.65; }
.faq-answer p { margin: 0; }

.site-footer { border-top: 1px solid var(--border); background: var(--footer); padding-bottom: 84px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-block: clamp(48px, 7vw, 72px) 28px; }
.footer-logo-shell { width: 242px; max-width: 100%; margin-bottom: 16px; overflow: hidden; border-radius: 10px; background: #fff; }
.footer-logo-shell img { width: 100%; height: auto; }
.footer-brand p { max-width: 340px; margin: 0; color: var(--dim); font-size: 13.5px; line-height: 1.7; }
.footer-brand p span { color: #54708a; }
.site-footer h2 { margin: 0 0 16px; color: #5f7a93; font-family: "IBM Plex Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer a { color: #b4c6d8; font-size: 14px; }
.site-footer a:hover { color: var(--text); }
.site-footer .footer-whatsapp { color: var(--green); font-weight: 500; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-block: 20px; border-top: 1px solid var(--border); color: #54708a; font-size: 12.5px; }

.mobile-bar {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 10px;
  padding: 11px 14px max(11px, env(safe-area-inset-bottom));
  border-top: 1px solid #1a3350;
  background: rgba(7, 19, 32, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-bar .button { min-height: 49px; }
.mobile-bar .button-whatsapp { flex: 1 1 auto; }
.mobile-call { flex: 0 0 auto; border-color: var(--wide-border); background: transparent; color: var(--text); }
.mobile-call:hover { color: var(--text); background: rgba(13, 43, 71, .7); }

@media (max-width: 560px) {
  .brand-logo-shell { width: 66px; }
  .brand-logo-shell img { width: 164px; max-width: none; object-position: left center; }
  .header-cta-text { display: none; }
  .header-cta-short { display: inline; }
  .header-cta { padding-inline: 13px; }
  .hero-actions .button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stats span { font-size: 11px; line-height: 1.35; }
  .hero-image-card { min-height: 360px; }
  .cta-band .button { width: 100%; }
  .compliance-strip { align-items: flex-start; }
  .tpin { width: 100%; margin-left: 36px; }
  .coverage-map-card, .coverage-map { min-height: 290px; }
  .map-label text { font-size: 12px; }
}

@media (min-width: 920px) {
  .navlinks { display: flex; }
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 0; }
  .hero-grid, .coverage-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .quote-grid { grid-template-columns: .9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .hero-image-card { aspect-ratio: 4 / 5; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
