:root {
  --primary: #0b5cad;
  --secondary: #19a7ce;
  --dark: #12304a;
  --light: #eaf7fc;
  --background: #f7fbfd;
  --bg: #f7fbfd;
  --white: #ffffff;
  --text: #263746;
  --muted: #5b6b78;
  --border: #e3eef4;
  --line: #e3eef4;
  --whatsapp: #25d366;
  --shadow: 0 18px 50px rgba(18, 48, 74, 0.08);
  --shadow-sm: 0 8px 24px rgba(18, 48, 74, 0.06);
  --radius: 18px;
  --max: 1240px;
  --gutter: 40px;
  --header-h: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--dark); }
h1, h2, h3, h4 {
  font-family: Poppins, Inter, sans-serif;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 650;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.4vw, 1.45rem); }
p { margin: 0 0 1rem; }
.wrap { width: min(var(--max), calc(100% - var(--gutter))); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 8px; z-index: 80; background: #fff; padding: 8px 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.topbar { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e6eef3;
  overflow: visible;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(18, 48, 74, 0.08);
}
.header-shell {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: min-height 0.2s ease;
}
.site-header.is-scrolled .header-shell { min-height: 72px; }
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  width: 228px;
  max-width: 228px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  transition: width 0.2s ease, max-height 0.2s ease;
}
.site-header.is-scrolled .logo img { max-height: 48px; width: 210px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #d7e3ea;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.header-panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 16px;
}
.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.site-nav > ul > li { position: relative; flex: 0 0 auto; }
.site-nav > ul > li > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 transparent;
  transition: color .15s ease, box-shadow .15s ease;
}
.site-nav > ul > li > a:hover,
.dropdown-toggle:hover {
  color: var(--primary);
}
.site-nav > ul > li > a.is-active,
.dropdown-toggle.is-active {
  color: var(--primary);
  box-shadow: inset 0 -2px 0 var(--primary);
}
.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  display: inline-block;
  transition: transform .18s ease;
}
.has-dropdown:hover .nav-chevron,
.has-dropdown.is-open .nav-chevron {
  transform: rotate(225deg) translateY(1px);
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 268px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(18, 48, 74, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 130;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
.dropdown a:hover { background: #f4fafc; color: var(--primary); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.hdr-btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  line-height: 1;
  flex: 0 0 auto;
  box-shadow: none;
  transition: background-color .15s ease, filter .15s ease;
}
.hdr-btn svg { flex: 0 0 auto; display: block; }
.hdr-call { background: var(--primary); }
.hdr-call:hover { background: #094b8f; color: #fff; }
.hdr-wa { background: var(--whatsapp); }
.hdr-wa:hover { filter: brightness(0.95); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 9px; padding: 11px 18px; font-weight: 600; font-size: 0.92rem;
  border: 0; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #094b8f; color: #fff; }
.btn-secondary { background: var(--light); color: var(--dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { filter: brightness(0.96); color: #fff; }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid #c5dbeb; }
.btn-lg { padding: 14px 22px; }

.hero {
  position: relative;
  padding: 36px 0 20px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(25,167,206,.16), transparent 32%),
    linear-gradient(180deg, #eef8fc 0%, var(--background) 72%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.kicker {
  color: var(--primary); font-weight: 700; font-size: 0.78rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 10px; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 28px;
  background: #fff; box-shadow: var(--shadow);
}
.float-card {
  position: absolute; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-sm); padding: 12px 14px; font-size: 0.85rem; font-weight: 700; color: var(--dark);
}
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 0.75rem; }
.float-1 { left: -18px; top: 28px; }
.float-2 { right: -8px; top: 46%; }
.float-3 { left: 24px; bottom: 22px; }

.trust-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 28px 0 8px; }
.trust-card {
  background: #fff; border-radius: 16px; padding: 18px;
  box-shadow: var(--shadow-sm);
}
.trust-card h3 { margin: 8px 0 4px; font-size: 1.05rem; }
.trust-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.icon-sq {
  width: 42px; height: 42px; border-radius: 12px; background: var(--light);
  display: grid; place-items: center; color: var(--primary);
}

.section { padding: 72px 0; }
.section.alt { background: #fff; }
.section-head { max-width: 640px; margin-bottom: 28px; }
.muted { color: var(--muted); }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tab {
  border: 1px solid var(--border); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: 0.82rem; letter-spacing: .04em;
  color: var(--muted); cursor: pointer; font-family: inherit;
}
.tab.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  color: inherit; transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.product-card-media {
  aspect-ratio: 4/3; background: #f2f7fa; overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 12px;
  transition: transform .35s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
}
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pills span, .chip {
  background: var(--light); color: var(--dark); border-radius: 999px;
  padding: 4px 10px; font-size: 0.74rem; font-weight: 700;
}
.explore { margin-top: auto; font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.product-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.feature-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.feature-split.reverse { grid-template-columns: .95fr 1.05fr; }
.feature-split img {
  width: 100%; height: 380px; object-fit: cover; border-radius: 24px; background: #fff;
}
.feature-list { list-style: none; padding: 0; margin: 0 0 18px; }
.feature-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--dark); font-weight: 600;
}
.feature-list a:hover { color: var(--primary); }
.dark-band {
  background: var(--dark); color: #d7e8f2; border-radius: 28px; padding: 36px;
}
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band a { color: #fff; }
.dark-band .feature-list a { color: #eaf7fc; border-bottom-color: rgba(255,255,255,.12); }

.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; }
.step {
  background: #fff; border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm);
}
.step b { display: block; color: var(--secondary); font-size: 1.6rem; letter-spacing: -0.04em; }

.loc-groups { display: grid; gap: 28px; }
.loc-group h3 { font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.loc-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.location-card {
  background: #fff; border-radius: 999px; padding: 10px 16px; font-weight: 650;
  color: var(--dark); box-shadow: var(--shadow-sm); display: inline-flex; gap: 8px; align-items: center;
}
.location-card span { opacity: 0; transform: translateX(-4px); transition: .2s ease; }
.location-card:hover { color: var(--primary); }
.location-card:hover span { opacity: 1; transform: none; }

.page-hero { padding: 4px 0 24px; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero > p { color: var(--muted); margin: 0; max-width: 52ch; }
.inner-page { padding-top: 8px; padding-bottom: 56px; }
.inner-page .prose,
.inner-page .legal { max-width: 820px; }
#main > .wrap + .section { padding-top: 20px; }
#main > .wrap + .section.alt { padding-top: 48px; }
#main > .wrap + .section.inner-page { padding-top: 8px; padding-bottom: 56px; }
.breadcrumb { padding: 16px 0 4px; }
.blog-page { padding-top: 8px; padding-bottom: 56px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.grid-3 > .card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  color: inherit;
  min-width: 0;
}
.grid-3 > .card:hover { color: inherit; }
.grid-3 > .card h3 { margin: 0; }
.grid-3 > .card > p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.grid-3 > .card .kicker { margin-bottom: 2px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #9bb0bd; }

.page-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 36px; align-items: center;
  padding: 8px 0 28px;
}
.page-hero-grid > * { min-width: 0; }
.page-hero-grid img {
  width: 100%; height: 420px; object-fit: contain; background: #fff;
  border-radius: 24px; padding: 18px; box-shadow: var(--shadow-sm);
}
.mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 4px 0 0;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 4px 0 0;
}
.info-card, .mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  width: 100%;
  height: 100%;
}
.info-card h3, .mini-card h3 { margin: 0 0 6px; font-size: 1.02rem; }
.info-card p, .mini-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.gallery { display: grid; gap: 10px; }
.gallery-main img { width: 100%; height: 420px; object-fit: contain; background: #fff; border-radius: 20px; padding: 16px; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumbs img {
  width: 88px; height: 66px; object-fit: contain; background: #fff; border-radius: 10px; padding: 6px;
  border: 1px solid var(--border);
}

.card { background: #fff; border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); }
.prose { max-width: 760px; }
.content-grid .prose { max-width: none; min-width: 0; }
.prose h2 { margin-top: 1.4em; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}
.wrap.content-grid + .wrap { margin-top: 36px; }
.about-page { padding-top: 28px; }
.about-page h1 { margin-bottom: 28px; max-width: none; }
.side {
  position: sticky; top: 96px; background: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); min-width: 0;
}
.side .btn { width: 100%; }
.notice {
  background: #fff7e8; color: #6b4e12; border-radius: 12px; padding: 12px 14px; font-size: 0.92rem;
}

.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 16px 18px;
  font: inherit; font-weight: 700; color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; gap: 12px;
}
.faq-q::after {
  content: ""; width: 10px; height: 10px; border-right: 2px solid var(--dark); border-bottom: 2px solid var(--dark);
  transform: rotate(45deg); transition: transform .2s ease; margin-top: 2px; flex: 0 0 auto;
}
.faq-item.is-open .faq-q::after { transform: rotate(225deg); }
.faq-a { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq-item.is-open .faq-a { display: block; }

.cta {
  background:
    radial-gradient(circle at 90% 20%, rgba(25,167,206,.18), transparent 28%),
    linear-gradient(120deg, var(--dark), #0b5cad);
  color: #fff; padding: 56px 0; position: relative;
}
.cta h2, .cta p { color: #fff; }
.cta .wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }

.site-footer { background: #0d2438; color: #c9dbe6; padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; }
.site-footer a { color: #d7e8f2; display: block; margin: 7px 0; font-size: 0.92rem; }
.site-footer .copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}
.footer-legal a {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
}

.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: #fff; border-top: 1px solid var(--border);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr; gap: 8px;
}
.mobile-cta.is-visible { display: grid; }
.mobile-cta a { text-align: center; padding: 12px; border-radius: 10px; color: #fff; font-weight: 800; }
.mobile-cta .call { background: var(--primary); }
.mobile-cta .wa { background: var(--whatsapp); }

.wa-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 54;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp);
  color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.35);
}
.wa-float:hover { color: #fff; }
.back-top {
  position: fixed; right: 18px; bottom: 88px; z-index: 54;
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--dark); color: #fff;
  display: none; cursor: pointer;
}
.back-top.is-on { display: grid; place-items: center; }

.map-embed { border: 0; width: 100%; height: 280px; border-radius: 16px; }
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); font: inherit; background: #fff;
}

.reveal { animation: fadeUp .55s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1280px) and (min-width: 1101px) {
  .header-shell { gap: 14px; }
  .logo img { width: 210px; max-width: 210px; }
  .site-nav ul { gap: 4px 14px; }
  .hdr-btn { padding: 0 14px; }
}

@media (max-width: 1100px) {
  .site-header { position: sticky; }
  :root { --gutter: 32px; }
  .header-shell { min-height: 72px; }
  .logo img { width: 190px; max-width: 190px; max-height: 46px; }
  .nav-toggle { display: inline-flex; }
  .header-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid #e6eef3;
    box-shadow: 0 16px 32px rgba(18,48,74,.08);
    padding: 8px 20px 20px;
    gap: 14px;
    z-index: 120;
    max-height: calc(100vh - 72px);
    overflow: auto;
  }
  .header-panel.is-open { display: flex; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    white-space: normal;
    gap: 0;
    justify-content: flex-start;
  }
  .site-nav > ul > li > a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eef3f6;
    box-shadow: none;
  }
  .dropdown-toggle.is-active { box-shadow: none; }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    display: none;
    max-height: none;
    padding: 0 0 8px 10px;
    overflow: visible;
  }
  .has-dropdown.is-open > .dropdown,
  .has-dropdown.is-open:hover > .dropdown,
  .has-dropdown.is-open:focus-within > .dropdown {
    display: block;
  }
  .header-ctas { width: 100%; }
  .hdr-btn { flex: 1 1 auto; }
  .hero-grid, .feature-split, .feature-split.reverse, .content-grid, .page-hero-grid, .trust-row, .product-grid, .timeline, .footer-grid, .grid-3 {
    grid-template-columns: 1fr;
  }
  .mini-benefits, .info-cards { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-visual img, .page-hero-grid img, .gallery-main img, .feature-split img { height: 280px; }
  .float-card { display: none; }
  .side { position: static; }
  .wa-float { display: none; }
  body.nav-open { overflow: hidden; }
  .cta .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 639px) {
  body { font-size: 16px; }
  .logo img { width: 168px; max-width: 168px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .grid-3 { grid-template-columns: 1fr; }
  .loc-pills { display: grid; grid-template-columns: 1fr 1fr; }
  .location-card { border-radius: 14px; justify-content: space-between; }
  .mini-benefits, .info-cards { grid-template-columns: 1fr 1fr; }
}

.blog-index { padding: 8px 0 72px; }
.blog-index-hero { padding: 12px 0 28px; max-width: 760px; }
.blog-index-hero h1 { margin-bottom: 10px; }
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 22px; }
.blog-cat-btn {
  border: 1px solid var(--border); background: #fff; border-radius: 999px;
  padding: 8px 14px; font: inherit; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
}
.blog-cat-btn.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
.blog-search {
  width: 100%; max-width: 420px; margin-bottom: 28px;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); font: inherit; background: #fff;
}
.blog-featured { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; margin-bottom: 40px; }
.blog-featured a { color: inherit; display: grid; gap: 12px; }
.blog-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 18px; background: #eaf3f8; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.blog-card { color: inherit; display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #eaf3f8; }
.blog-card .blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .blog-card-body p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.blog-card .read-more { margin-top: auto; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.blog-empty { display: none; color: var(--muted); padding: 24px 0; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  padding: 8px 0 64px;
}
.blog-main { max-width: 820px; }
.blog-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.blog-main h1 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 8px; }
.blog-meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.blog-hero-img { margin: 0 0 28px; }
.blog-hero-img img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 18px; background: #eaf3f8;
}
.blog-copy { font-size: 17.5px; line-height: 1.7; color: var(--text); }
.blog-copy h2 { font-size: 1.35rem; margin: 1.6em 0 0.55em; scroll-margin-top: 96px; }
.blog-copy h3 { font-size: 1.12rem; margin: 1.2em 0 0.4em; scroll-margin-top: 96px; }
.blog-copy p { margin: 0 0 1em; }
.blog-copy ul, .blog-copy ol { margin: 0 0 1.1em; padding-left: 1.2em; }
.blog-copy li { margin: 0 0 0.35em; }
.blog-copy table { width: 100%; border-collapse: collapse; margin: 0 0 1.3em; font-size: 0.95em; }
.blog-copy th, .blog-copy td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.blog-copy th { background: #eef7fb; color: var(--dark); font-weight: 650; }
.blog-toc {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm);
  padding: 16px 18px; margin: 0 0 28px;
}
.blog-toc h2 { font-size: 1rem; margin: 0 0 10px; }
.blog-toc ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.blog-toc a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.blog-toc a:hover { color: var(--primary); }
.blog-toc-toggle { display: none; }
.blog-cta-inline, .blog-cta-end {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm);
  padding: 18px 20px; margin: 28px 0;
}
.blog-cta-inline p, .blog-cta-end p { margin: 0 0 12px; }
.blog-aside { position: sticky; top: 96px; display: grid; gap: 16px; }
.blog-aside .side-block {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 18px;
}
.blog-aside h2 { font-size: 1rem; margin: 0 0 10px; }
.blog-aside a { display: block; padding: 6px 0; color: var(--text); font-weight: 500; font-size: 0.94rem; border-bottom: 1px solid #f0f5f8; }
.blog-aside a:last-child { border-bottom: 0; }
.blog-related { margin-top: 40px; }
.blog-related h2 { margin-bottom: 16px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.callout, .tip { border-radius: 14px; padding: 14px 16px; margin: 0 0 1.2em; }
.callout { background: #fff7e8; color: #6b4e12; }
.tip { background: var(--light); color: var(--dark); }
.blog-byline { color: var(--muted); font-size: 0.9rem; margin-top: 28px; }

@media (max-width: 1100px) {
  .blog-featured, .blog-layout, .blog-related-grid, .blog-card-grid { grid-template-columns: 1fr; }
  .blog-aside { position: static; }
  .blog-toc-toggle {
    display: flex; width: 100%; justify-content: space-between; align-items: center;
    background: none; border: 0; font: inherit; font-weight: 700; color: var(--dark); cursor: pointer; padding: 0;
  }
  .blog-toc ol { display: none; }
  .blog-toc.is-open ol { display: grid; margin-top: 10px; }
}

@media print {
  .site-header, .mobile-cta, .topbar, .wa-float, .back-top { display: none !important; }
}
