
:root {
  --navy: #0d2f57;
  --navy-2: #123d71;
  --blue: #2b7de9;
  --green: #2f9e44;
  --green-2: #39b54a;
  --yellow: #f4b400;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #162338;
  --muted: #5f6f82;
  --line: #dfe7f1;
  --shadow: 0 18px 42px rgba(15, 39, 71, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1220px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43,125,233,.09), transparent 22%),
    radial-gradient(circle at top right, rgba(47,158,68,.09), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.wrap { width: var(--container); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(13,47,87,.08);
}
.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 260px; max-width: 100%; object-fit: contain; }

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  position: relative;
}
.nav-toggle span::before { top: -6px; position: absolute; }
.nav-toggle span::after { top: 6px; position: absolute; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(18,61,113,.25);
}
.btn-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.hero { padding: 34px 0 18px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 22px;
  align-items: stretch;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 30px;
}
.hero-copy {
  background:
    radial-gradient(circle at top right, rgba(57,181,74,.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(43,125,233,.10), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(43,125,233,.10);
  border: 1px solid rgba(43,125,233,.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: Montserrat, Inter, Arial, sans-serif;
  letter-spacing: -0.7px;
}
h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 18px 0 16px;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
  max-width: 740px;
}
.searchbox {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,39,71,.07);
}
.searchbox input {
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
}
.pills {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-media {
  background: linear-gradient(145deg, #10233f, #17477f 60%, #1e6ce0);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(57,181,74,.32), transparent 70%);
  pointer-events: none;
}
.media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.media-head strong { font-size: 16px; }
.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
}
.hero-collage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 230px 150px;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.hero-collage .photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.hero-collage .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .big { grid-row: 1 / span 2; }
.hero-note {
  margin-top: 16px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
  font-size: 14px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.stats-strip { padding: 10px 0 14px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 6px;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

section.block { padding: 18px 0; }
.section-head { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 8px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
  max-width: 840px;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43,125,233,.12), rgba(47,158,68,.15));
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.highlight {
  background: linear-gradient(135deg, rgba(43,125,233,.06), rgba(47,158,68,.08));
}

.map-layout, .proof-layout, .case-layout, .manager-layout {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.map-layout { grid-template-columns: .95fr 1.05fr; }
.proof-layout { grid-template-columns: .96fr 1.04fr; }
.case-layout { grid-template-columns: .95fr 1.05fr; }
.manager-layout { grid-template-columns: .98fr 1.02fr; }

.map-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px;
}
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.proof-gallery .photo,
.case-mosaic .photo,
.manager-photo,
.unit-card .unit-photo {
  overflow: hidden;
  border-radius: 20px;
  background: #eef3fa;
  border: 1px solid var(--line);
}
.proof-gallery .photo img,
.case-mosaic .photo img,
.manager-photo img,
.unit-card .unit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-gallery .photo { min-height: 220px; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--text);
  line-height: 1.55;
}
.checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.unit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.unit-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  padding: 18px 16px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.unit-logo-box img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
.unit-card .unit-photo {
  border: none;
  border-radius: 0;
  min-height: 180px;
}
.unit-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.unit-card h4 {
  font-size: 18px;
  margin-bottom: 0;
}
.unit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.unit-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(47,158,68,.10);
  color: var(--green);
  border: 1px solid rgba(47,158,68,.12);
}
.chip.blue {
  background: rgba(43,125,233,.10);
  color: var(--blue);
  border-color: rgba(43,125,233,.12);
}
.unit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-size: 14px;
  font-weight: 800;
}
.unit-url {
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.time-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.time-item strong {
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(43,125,233,.10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.time-item p { margin: 6px 0 0; color: var(--muted); line-height: 1.65; }
.case-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.case-mosaic .photo { min-height: 215px; }
.manager-photo { min-height: 440px; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.quote p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.faq { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  color: var(--navy);
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-final {
  margin: 26px 0 56px;
  background: linear-gradient(145deg, var(--navy), #17467f 62%, #2474e6);
  color: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-final p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  max-width: 760px;
}
.cta-contact-card {
  max-width: 430px;
  width: 100%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.cta-contact-card h3 {
  color: white;
  margin-bottom: 8px;
}
.cta-contact-card p {
  max-width: none;
}
.contact-lines {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.contact-lines a {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}
.contact-lines a strong {
  color: white;
}
footer a { color: inherit; }

footer {
  background: #0b1c33;
  color: #d3dceb;
  padding: 30px 0 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.footer-grid p {
  margin: 8px 0 0;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
}
.footer-logo { width: 280px; max-width: 100%; }

@media (max-width: 1120px) {
  .hero-grid, .map-layout, .proof-layout, .case-layout, .manager-layout, .grid-4, .grid-3, .grid-2, .footer-grid, .quote-grid, .units-grid, .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .units-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  nav {
    display: none;
    width: 100%;
    padding-bottom: 14px;
  }
  nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .map-layout, .proof-layout, .case-layout, .manager-layout, .grid-4, .grid-3, .grid-2, .footer-grid, .quote-grid, .units-grid, .stats-grid, .proof-gallery, .case-mosaic, .hero-collage {
    grid-template-columns: 1fr;
  }
  .panel, .card, .quote, .cta-final, .stat, .cta-contact-card { padding: 22px; }
  .hero-collage { grid-template-rows: 220px 180px 180px; }
  .hero-collage .big { grid-row: auto; }
  .searchbox { grid-template-columns: 1fr; }
  .brand img { width: 220px; }
}



/* INTERNAL PAGES */
.internal-main { padding: 18px 0 42px; }
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumbs a { color: var(--blue); }
.municipio-hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}
.municipio-copy {
  background:
    radial-gradient(circle at top right, rgba(57,181,74,.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(43,125,233,.10), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47,158,68,.10);
  border: 1px solid rgba(47,158,68,.14);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.logo-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 6px;
}
.logo-line img {
  width: 120px;
  max-height: 80px;
  object-fit: contain;
}
.municipio-copy .lead { font-size: 17px; }
.internal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.link-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 800;
}
.municipio-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #10233f, #17477f 60%, #1e6ce0);
}
.municipio-media .cover {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 22px;
}
.logo-floating {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}
.logo-floating img {
  width: 100px;
  max-height: 58px;
  object-fit: contain;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.quick-card strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}
.quick-card span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.internal-two-col {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 18px;
  align-items: stretch;
}
.site-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.site-card .site-url-large {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  word-break: break-all;
}
.municipio-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 12px;
}
.municipio-gallery .photo {
  min-height: 210px;
  overflow: hidden;
  border-radius: 20px;
  background: #eef3fa;
  border: 1px solid var(--line);
}
.municipio-gallery .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.municipio-gallery .photo.large { min-height: 434px; grid-row: 1 / span 2; }
.back-home {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}
.unit-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.unit-link-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1120px) {
  .municipio-hero, .internal-two-col, .quick-grid, .municipio-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .municipio-gallery .photo.large { grid-row: auto; min-height: 280px; }
}
@media (max-width: 780px) {
  .municipio-hero, .internal-two-col, .quick-grid, .municipio-gallery {
    grid-template-columns: 1fr;
  }
  .municipio-media .cover { min-height: 320px; }
  .logo-floating { position: static; margin: 14px; display: inline-flex; }
  .logo-line { flex-direction: column; align-items: flex-start; }
}



/* FINAL POLISH */
body { background-attachment: fixed; }
.topbar { box-shadow: 0 8px 24px rgba(13,47,87,.05); }
.panel, .card, .quote, .stat, .unit-card, .site-card, .quick-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover, .unit-card:hover, .quick-card:hover, .site-card:hover, .quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15,39,71,.11);
  border-color: rgba(13,47,87,.12);
}
.hero-copy, .municipio-copy { position: relative; overflow: hidden; }
.hero-copy::before, .municipio-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--city-primary, var(--blue)), var(--city-secondary, var(--green)));
  opacity: .95;
}
.card.highlight, .site-card, .quick-card {
  position: relative;
  overflow: hidden;
}
.card.highlight::before, .site-card::before, .quick-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--city-primary, var(--blue)), var(--city-secondary, var(--green)));
}
.unit-card {
  position: relative;
  --city-primary: var(--navy);
  --city-secondary: var(--blue);
  --city-soft: #f4f8ff;
}
.unit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--city-primary), var(--city-secondary));
}
.unit-logo-box {
  background: linear-gradient(180deg, #ffffff 0%, var(--city-soft) 100%);
}
.unit-card .chip {
  background: var(--city-soft);
  color: var(--city-primary);
  border-color: rgba(13,47,87,.08);
}
.unit-card .chip.blue {
  background: rgba(255,255,255,.86);
  color: var(--city-secondary);
  border-color: rgba(13,47,87,.08);
}
.unit-card .unit-link {
  background: linear-gradient(135deg, var(--city-primary), var(--city-secondary));
  box-shadow: 0 12px 24px rgba(15,39,71,.15);
}
.unit-link-secondary:hover { border-color: rgba(13,47,87,.15); }
.city-badge, .breadcrumbs a, .link-soft, .back-home {
  color: var(--city-primary, var(--blue));
}
.city-badge {
  background: var(--city-soft, rgba(43,125,233,.10));
  border-color: rgba(13,47,87,.06);
}
.municipio-copy h1 {
  color: var(--city-primary, var(--navy));
}
.logo-floating {
  border-color: rgba(13,47,87,.10);
}
.logo-floating img, .logo-line img {
  filter: saturate(1.03);
}
.site-url-large {
  box-shadow: inset 0 0 0 1px rgba(13,47,87,.03);
}
footer {
  background: linear-gradient(180deg, #0b1c33 0%, #0c223f 100%);
}


/* LAUNCH REVIEW */
.hero-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-point {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(13,47,87,.08);
  box-shadow: 0 10px 24px rgba(15,39,71,.05);
}
.hero-point strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.hero-point span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.footer-grid-launch {
  grid-template-columns: 1.25fr .85fr 1fr;
  align-items: start;
}
.footer-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-list a {
  color: rgba(255,255,255,.82);
}
.footer-list a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-contact p {
  margin: 0 0 12px;
}
.footer-contact code {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
@media (max-width: 1120px) {
  .hero-points { grid-template-columns: 1fr; }
}
