/* ==========================================================================
   INDEK — Hoja de estilos global
   ========================================================================== */

:root {
  --navy-900: #05192b;
  --navy-800: #0a2c4a;
  --navy-700: #0e3a60;
  --navy-600: #124a78;
  --steel-500: #6b7684;
  --steel-300: #aab2bb;
  --steel-100: #eef1f4;
  --orange-500: #f5941f;
  --orange-600: #db7f0d;
  --orange-700: #9c5608;
  --orange-100: #fdecd4;
  --bg: #f7f9fb;
  --white: #ffffff;
  --ink: #16232f;
  --ink-soft: #4b5866;
  --border: #e2e7ec;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(10, 30, 50, 0.06), 0 1px 1px rgba(10, 30, 50, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 30, 50, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 30, 50, 0.16);
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--orange-500);
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(245, 148, 31, 0.35);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(245, 148, 31, 0.4); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.72); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-ghost {
  background: var(--steel-100);
  color: var(--navy-800);
}
.btn-ghost:hover { background: #e4e9ee; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
}
.brand img { height: 38px; width: auto; }
.brand-word { height: 17px; width: auto; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--steel-100);
  color: var(--navy-800);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown-menu a:hover { background: var(--steel-100); }
.nav-dropdown-menu .cat-ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800); flex: none;
}
.nav-dropdown-menu .cat-ico svg { width: 18px; height: 18px; stroke: var(--orange-500); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (min-width: 981px) { .nav-cta { display: inline-flex; } }

@media (max-width: 980px) {
  .nav-actions { display: none; }
  .nav-links {
    position: fixed;
    inset: 76px 0 0 0;
    height: calc(100vh - 76px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 2px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { width: 100%; padding: 14px 16px; border-radius: 10px; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; margin-top: 4px;
    background: var(--steel-100);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
  .nav-toggle { display: inline-flex; }
  .nav-links .nav-cta-mobile { display: inline-flex; margin-top: 14px; }
}
@media (min-width: 981px) { .nav-cta-mobile { display: none; } }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 46%, var(--navy-600) 100%);
  color: var(--white);
  padding: 88px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px 300px at 85% -10%, rgba(245,148,31,0.20), transparent 60%),
    radial-gradient(500px 260px at 100% 100%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow { color: var(--orange-500); }
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--orange-500); }
.hero p.lead {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 34px;
}
.hero-stats div b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.hero-stats div span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero-panel-header img { height: 42px; width: auto; }
.hero-panel-header div b { display: block; font-size: 15px; }
.hero-panel-header div span { font-size: 12.5px; color: rgba(255,255,255,0.72); }
.hero-mini-list { display: grid; gap: 10px; }
.hero-mini-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.hero-mini-list li .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500); flex: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ---------- Section basics ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 14px;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16.5px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.bg-alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Category cards (home) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7dde3; }
.cat-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cat-card-icon svg { width: 28px; height: 28px; stroke: var(--orange-500); }
.cat-card h3 { font-size: 19px; font-weight: 800; color: var(--navy-900); }
.cat-card p { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.cat-card .cat-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--navy-800);
}
.cat-card .cat-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
.cat-card .badge-tag {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--steel-500); text-transform: uppercase;
}

@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}
.value-card svg { width: 26px; height: 26px; stroke: var(--orange-500); margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 800; color: var(--navy-900); }
.value-card p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 960px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Contact / CTA band ---------- */
.contact-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 100% 0%, rgba(245,148,31,0.22), transparent 60%);
}
.contact-band h2 { position: relative; font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; }
.contact-band p { position: relative; margin-top: 14px; color: rgba(255,255,255,0.75); max-width: 460px; }
.contact-band .hero-actions { position: relative; }
.contact-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 20px; height: 20px; stroke: var(--orange-500); flex: none; margin-top: 2px; }
.contact-row b { display: block; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }
.contact-row span, .contact-row a { display: block; font-size: 15px; font-weight: 700; margin-top: 2px; }
.contact-row a:hover { color: var(--orange-500); }

@media (max-width: 900px) {
  .contact-band { grid-template-columns: 1fr; padding: 36px 24px; border-radius: 18px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; width: auto; flex: none; }
.footer-brand-word { height: 15px; width: auto; flex: none; }
.footer-col h3 {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.68); font-weight: 700; margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--orange-500); }
.footer-col p { font-size: 14.5px; color: rgba(255,255,255,0.72); max-width: 300px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.68); flex-wrap: wrap; gap: 12px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp floating bubble ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-tooltip {
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.6s infinite;
}
.wa-btn svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 26px rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.45); }
}

/* ---------- Category page template ---------- */
.cat-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 64px 0 90px;
}
.cat-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(520px 260px at 90% -10%, rgba(245,148,31,0.22), transparent 60%);
}
.cat-hero-inner { position: relative; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cat-hero-icon {
  width: 76px; height: 76px; border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.cat-hero-icon svg { width: 38px; height: 38px; stroke: var(--orange-500); }
.cat-hero h1 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-top: 6px; }
.breadcrumb {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange-500); }
.breadcrumb svg { width: 13px; height: 13px; flex: none; opacity: 0.6; }
.cat-hero p.lead { position: relative; margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.78); max-width: 640px; }

.cat-body {
  margin-top: -46px;
  position: relative;
}
.cat-body-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: flex-start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.panel h2 { font-size: 21px; font-weight: 800; color: var(--navy-900); }
.panel > p.desc { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; }

.family-list { margin-top: 26px; display: grid; gap: 12px; }
.family-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.family-item .num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--navy-800); color: var(--orange-500);
  font-size: 12.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.family-item b { display: block; font-size: 14.5px; color: var(--navy-900); font-weight: 700; }
.family-item span { display: block; font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

.download-card {
  position: sticky; top: 100px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.download-card .pdf-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,148,31,0.16);
  border: 1px solid rgba(245,148,31,0.4);
  color: var(--orange-500);
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em;
  padding: 6px 12px; border-radius: 999px;
}
.download-card h3 { margin-top: 16px; font-size: 20px; font-weight: 800; }
.download-card p { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,0.72); }
.download-card .btn { margin-top: 22px; }
.download-card .file-meta {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.7);
}
.mini-contact { margin-top: 18px; }
.mini-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,0.75); margin-top: 10px;
}
.mini-contact-row svg { width: 16px; height: 16px; stroke: var(--orange-500); flex: none; }

.stat-row { display: flex; gap: 22px; margin-top: 24px; flex-wrap: wrap; }
.stat-row div b { display: block; font-size: 22px; font-weight: 800; color: var(--navy-900); }
.stat-row div span { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .cat-body-grid { grid-template-columns: 1fr; }
  .download-card { position: static; }
}

/* ---------- Cross-sell strip ---------- */
.crosssell { padding: 70px 0 90px; }
.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.crosssell-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.crosssell-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.crosssell-item .cat-card-icon { width: 42px; height: 42px; border-radius: 10px; margin-bottom: 0; }
.crosssell-item .cat-card-icon svg { width: 22px; height: 22px; }
.crosssell-item span { font-size: 13.5px; font-weight: 700; color: var(--navy-900); }
@media (max-width: 960px) { .crosssell-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .crosssell-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Brand strip ---------- */
.brand-strip { padding: 64px 0; }
.brand-strip-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.brand-strip-head h2 { font-size: 20px; font-weight: 800; color: var(--navy-900); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.brand-grid .brand-item {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 64px;
  padding: 8px 14px;
  cursor: default;
}
.brand-grid img {
  max-height: 40px; max-width: 100%; width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.brand-grid .brand-item:hover img { filter: grayscale(0%); opacity: 1; }
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sector tags ---------- */
/* ---------- Map embed ---------- */
.map-embed {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(15%);
}
.map-embed iframe { display: block; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-list span {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: var(--steel-100);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700; color: var(--navy-800);
}

/* ---------- Benefit list (sidebar) ---------- */
.benefit-list { display: grid; gap: 14px; margin-top: 22px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.benefit-item .check {
  width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  background: rgba(245,148,31,0.16);
  border: 1px solid rgba(245,148,31,0.4);
  display: flex; align-items: center; justify-content: center;
}
.benefit-item .check svg { width: 12px; height: 12px; stroke: var(--orange-500); }
.benefit-item b { display: block; font-size: 14px; color: var(--white); }
.benefit-item span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.72); margin-top: 2px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
