:root {
  --bg: #f5f9f5;
  --bg-top: #ffffff;
  --surface: rgba(255,255,255,.78);
  --surface-strong: #ffffff;
  --line: rgba(29, 74, 38, .10);
  --text: #16311f;
  --muted: #5d7367;
  --accent: #279442;
  --accent-2: #86b53c;
  --accent-3: #2a9d46;
  --shadow: 0 18px 50px rgba(31, 70, 40, .08);
  --max: 1140px;
}
body.dark {
  --bg: #08120c;
  --bg-top: #102017;
  --surface: rgba(255,255,255,.05);
  --surface-strong: #0d1911;
  --line: rgba(255,255,255,.10);
  --text: #edf7ef;
  --muted: #adc2b3;
  --accent: #86b53c;
  --accent-2: #2a9d46;
  --accent-3: #279442;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 32%),
    radial-gradient(circle at top, var(--bg-top) 0%, var(--bg) 50%);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img { height: 46px; width: auto; }
.links { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.links a.active, .links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: .75rem; align-items: center; }

.mobile-toggle { display: none; }
.theme-toggle { width: 46px; min-width: 46px; padding: .9rem; }
.mobile-menu {
  display: none;
  padding: 0 0 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu .menu-panel {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: .75rem;
  display: grid;
  gap: .35rem;
}
.mobile-menu a {
  padding: .85rem .9rem;
  border-radius: 14px;
  color: var(--text);
}
.mobile-menu a.active, .mobile-menu a:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .92rem 1.24rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #08140b; }
.btn-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.hero { padding: 5.5rem 0 4rem; }
.hero-grid, .grid-2, .grid-3, .grid-4, .cta-grid { display: grid; gap: 1.2rem; }
.hero-grid { grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.cta-grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
.eyebrow, .kicker {
  display: inline-block; padding: .35rem .7rem; border: 1px solid var(--line);
  border-radius: 999px; color: var(--accent); font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; background: var(--surface);
}
.kicker { margin-bottom: .85rem; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); }
h3 { font-size: 1.12rem; }
p.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.card {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--line); border-radius: 24px; padding: 1.35rem; box-shadow: var(--shadow);
}
.card.soft { background: color-mix(in srgb, var(--surface-strong) 80%, transparent); }
.stat { display: grid; gap: .35rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.stat:last-child { border-bottom: 0; }
.num { font-size: 1.85rem; font-weight: 800; }
.muted { color: var(--muted); }
section { padding: 4rem 0; }
.section-head { margin-bottom: 1.85rem; }
.icon {
  width: 44px; height: 44px; border-radius: 14px; display: inline-grid; place-items: center;
  margin-bottom: .9rem; background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); font-weight: 800;
}
.list { display: grid; gap: .75rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.list li { color: var(--muted); position: relative; padding-left: 1.1rem; }
.list li::before { content: "•"; color: var(--accent); position: absolute; left: 0; }
.band { background: color-mix(in srgb, var(--accent) 4%, transparent); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-hero { padding: 4rem 0 2.5rem; }
.hero-panel {
  position: relative;
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute; inset: auto -10% -35% 35%; height: 220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 62%);
  pointer-events: none;
}
.badge-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.2rem; }
.badge {
  padding: .5rem .8rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--muted); font-size: .92rem;
}
.metric { padding: 1rem 0; border-top: 1px solid var(--line); }
.metric:first-child { border-top: 0; padding-top: 0; }
.metric strong { display: block; font-size: 1.2rem; margin-bottom: .2rem; }
.callout {
  border-left: 4px solid var(--accent);
  padding: 1rem 1rem 1rem 1.1rem;
  background: color-mix(in srgb, var(--accent) 5%, var(--surface-strong));
  border-radius: 14px;
}
footer { padding: 2rem 0 3rem; color: var(--muted); font-size: .95rem; border-top: 1px solid var(--line); }
.small { font-size: .95rem; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .cta-grid { grid-template-columns: 1fr; }
  .links { display: none; }
  .nav-actions .btn-secondary[href="contacto.html"] { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-inner { min-height: 74px; }
  .hero { padding-top: 3.8rem; }
}

.product-logo { height: 42px; width: auto; margin-bottom: .9rem; }
.product-featured { grid-column: span 2; }
@media (max-width: 980px) { .product-featured { grid-column: span 1; } }

.video-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.2rem;
  align-items: center;
}
.video-thumb {
  min-height: 240px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, #a53c37 18%, transparent)),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.08), transparent 58%);
}
.play-badge {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #a53c37;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
@media (max-width: 980px) { .video-card { grid-template-columns: 1fr; } }

.page-title { font-size: clamp(1.15rem, 1.7vw, 2.2rem); max-width: 22ch; margin-bottom: .8rem; }
.home-title { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 14ch; }

.hero-photo {
  overflow: hidden;
  padding: .7rem;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}
@media (max-width: 980px) {
  .hero-photo img { min-height: 260px; }
}

.section-photo {
  overflow: hidden;
  padding: .6rem;
}
.section-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}

.module-hero { padding: 3.8rem 0 2.4rem; background: linear-gradient(135deg, #f7faf7, #eef7f0 48%, #f7faf7); }
body.dark .module-hero { background: linear-gradient(135deg, #0c1710, #122218 48%, #0c1710); }
.icon-chip {
  width: 54px; height: 54px; border-radius: 16px; display: inline-grid; place-items: center;
  background: #fff;
  color: #a53c37; border: 1px solid rgba(165,60,55,.18);
  font-size: 1.45rem; font-weight: 800; margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(165,60,55,.10);
}
body.dark .icon-chip { background:#fff; color:#a53c37; }
.module-photo img { width: 100%; min-height: 300px; object-fit: cover; border-radius: 18px; }
.module-nav-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
.module-nav-card { display:block; }
.module-nav-card .small { color: var(--muted); }
@media (max-width: 980px){ .module-nav-grid { grid-template-columns: 1fr; } }


.orion-map {
  display: grid;
  gap: 1.15rem;
}
.orion-map-core {
  text-align: center;
  padding: 1.2rem 1rem;
  border: 1px dashed color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, transparent), color-mix(in srgb, var(--surface-strong) 92%, transparent));
  position: relative;
}
.orion-map-core::after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  margin: .75rem auto -0.25rem;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
}
.orion-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  position: relative;
}
.orion-map-grid::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: -14px;
  height: 2px;
  background: color-mix(in srgb, var(--accent) 24%, transparent);
}
.orion-map-link {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  color: var(--text);
  box-shadow: var(--shadow);
  position: relative;
}
.orion-map-link::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: color-mix(in srgb, var(--accent) 24%, transparent);
}
.orion-map-link:hover { transform: translateY(-1px); }
.orion-map-link.active {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface-strong));
}
.orion-map-icon { font-size: 1.35rem; margin-bottom: .45rem; display: block; }
.orion-map-label { font-weight: 700; display:block; margin-bottom: .2rem; }
.orion-map-desc { color: var(--muted); font-size: .88rem; }
.orion-map-bands {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .9rem;
}
.orion-band {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent) 4%, var(--surface-strong));
  border-radius: 18px;
  padding: .9rem 1rem;
}
.orion-band strong { display:block; margin-bottom:.2rem; }
@media (max-width: 980px){ .orion-map-grid { grid-template-columns: repeat(2, 1fr); } .orion-map-grid::before,.orion-map-link::before,.orion-map-core::after { display:none; } .orion-map-bands { grid-template-columns:1fr; } }
@media (max-width: 640px){ .orion-map-grid { grid-template-columns: 1fr; } }

.orion-accent-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.orion-accent-card {
  border: 1px solid rgba(165,60,55,.18);
  background: linear-gradient(180deg, rgba(165,60,55,.06), rgba(255,255,255,.72));
  border-radius: 20px;
  padding: 1rem;
}
body.dark .orion-accent-card {
  background: linear-gradient(180deg, rgba(165,60,55,.14), rgba(255,255,255,.04));
  border-color: rgba(165,60,55,.28);
}
.orion-accent-icon {
  width: 52px; height: 52px; border-radius: 16px; display:inline-grid; place-items:center;
  background: #fff;
  color: #a53c37; font-size: 1.35rem; font-weight: 800; margin-bottom: .85rem;
  border: 1px solid rgba(165,60,55,.18);
  box-shadow: 0 10px 24px rgba(165,60,55,.10);
}
body.dark .orion-accent-icon { background:#fff; color:#a53c37; }
@media (max-width:980px){ .orion-accent-grid { grid-template-columns:1fr; } }


/* Home-specific */
.home-hero-full {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12,35,18,.82) 0%, rgba(16,44,24,.68) 36%, rgba(16,44,24,.28) 62%, rgba(16,44,24,.12) 100%),
    url('../img/hero-equipo.jpg') center/cover no-repeat;
  color: #fff;
}
.home-hero-full .wrap { padding-top: 5rem; padding-bottom: 5rem; }
.home-hero-full .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7f3db; }
.home-hero-full .lead { color: rgba(255,255,255,.84); max-width: 56ch; }
.home-benefits { margin-top: -56px; position: relative; z-index: 2; }
.home-benefits .card { border-radius: 20px; }
.product-band {
  background: linear-gradient(135deg, #1f6d33, #279442 42%, #86b53c 100%);
  color: #fff;
}
.product-band .muted, .product-band p { color: rgba(255,255,255,.88); }
.product-band .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.home-footer-grid { display:grid; grid-template-columns: 1.1fr .9fr .9fr; gap:1.2rem; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }

/* ORION-specific */
.orion-hero{padding:4rem 0 2.8rem;background:linear-gradient(135deg,#f7faf7,#eef7f0 48%,#f7faf7)}
body.dark .orion-hero{background:linear-gradient(135deg,#0c1710,#122218 48%,#0c1710)}
.orion-logo{height:56px;width:auto;margin-bottom:1rem}
.orion-layout{display:grid;grid-template-columns:260px 1fr;gap:1.2rem;align-items:start}
.orion-side{position:sticky;top:96px}
.orion-side a{display:block;padding:.8rem .95rem;border-radius:14px;color:var(--text);border:1px solid transparent}
.orion-side a:hover,.orion-side a.active{background:color-mix(in srgb,var(--accent) 8%, transparent);border-color:var(--line)}
.arch-shell{display:grid;gap:1rem}
.arch-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.arch-core{padding:1.2rem;border:1px dashed color-mix(in srgb,var(--accent) 35%, transparent);border-radius:22px;background:color-mix(in srgb,var(--accent) 3%, transparent)}
.module-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.cloud-band{background:linear-gradient(135deg,#7d2f2f,#a53c37 55%,#c15b55);color:#fff}
.cloud-band .card{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.24);box-shadow:none}
.cloud-band .muted,.cloud-band p{color:rgba(255,255,255,.88)}
.mini{font-size:.92rem;color:var(--muted)}

/* Utility classes replacing inline styles */
.title-tight-home { max-width: 12ch; }
.title-tight-orion { max-width: 17ch; }
.title-tight-module { max-width: 18ch; }
.lead-narrow { max-width: 56ch; }
.grid-center { align-items: center; }
.card-module-side { min-height: 320px; display: grid; align-items: center; gap: 1rem; }
.brand-logo-md { height: 56px; width: auto; margin-bottom: .25rem; }
.brand-logo-sm { height: 44px; width: auto; margin-bottom: 1rem; }
.no-pad { padding: 0; }
.img-module-ui { min-height: 0; max-height: 360px; object-fit: contain; background:#fff; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-2 { margin-bottom: 1.2rem; }
.grid-2-center { display:grid; grid-template-columns:repeat(2,1fr); gap:1.2rem; align-items:center; }

@media (max-width: 980px) {
  .home-hero-full { min-height: 62vh; background-position: center; }
  .home-benefits { margin-top: -24px; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .orion-layout,.module-grid,.arch-row,.grid-2-center{grid-template-columns:1fr}
  .orion-side{position:static}
}

.diagram-photo {
  padding: 1rem;
}
.diagram-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}

.module-hero-media img { width: 100%; min-height: 0; max-height: 360px; object-fit: cover; object-position: center; background:#fff; border-radius: 18px; }

.org-logo-row { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; margin-top:1rem; }
.org-logo-card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:.75rem 1rem; box-shadow: var(--shadow); }
.org-logo-card img { height:48px; width:auto; object-fit:contain; }

.products-hero-full {
  position: relative;
  min-height: 64vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14,32,18,.82) 0%, rgba(18,44,24,.62) 38%, rgba(18,44,24,.18) 72%, rgba(18,44,24,.08) 100%),
    url('../img/productos-hero.jpg') center/cover no-repeat;
  color: #fff;
}
.products-hero-full .wrap { padding-top: 4.4rem; padding-bottom: 4.4rem; }
.products-hero-full .lead { color: rgba(255,255,255,.86); max-width: 56ch; }
.products-hero-full .eyebrow, .products-hero-full .kicker { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7f3db; }
@media (max-width: 980px) { .products-hero-full { min-height: 52vh; background-position: center; } }

.video-trigger { cursor: pointer; }
.video-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; z-index: 1000;
}
.video-modal.open { display: flex; }
.video-modal-card {
  width: min(100%, 980px); background: #000; border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.video-modal-close {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  border: 0; border-radius: 999px; width: 42px; height: 42px; cursor: pointer;
  background: rgba(255,255,255,.9); color: #111; font-size: 1.1rem; font-weight: 800;
}
.video-frame-wrap { position: relative; padding-top: 56.25%; }
.video-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cloud-band .callout { background: rgba(255,255,255,.14); border-left-color: #fff; color: #fff; }


.cloud-band .card,
.cloud-band .card h2,
.cloud-band .card h3,
.cloud-band .card h4,
.cloud-band .card p,
.cloud-band .card li,
.cloud-band .card .muted,
.cloud-band .card .list li,
.cloud-band .card strong {
  color: #fff !important;
}
.cloud-band .card .list li::before { color: #fff !important; }

.skill-bars { display:grid; gap:1rem; }
.skill-item { display:grid; gap:.45rem; }
.skill-top { display:flex; justify-content:space-between; gap:1rem; align-items:center; }
.skill-top strong { font-size:.98rem; }
.skill-track { width:100%; height:12px; border-radius:999px; background: rgba(165,60,55,.12); overflow:hidden; }
.skill-fill { height:100%; border-radius:999px; background: linear-gradient(90deg, #a53c37, #cf6b64); }

.particles-hero {
  position: relative;
  overflow: hidden;
}
.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particles-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.92), rgba(255,255,255,.76) 38%, rgba(246,250,247,.72) 65%, rgba(245,248,246,.68) 100%), linear-gradient(135deg, rgba(255,255,255,.78), rgba(248,250,248,.66));
  z-index: 0;
}
.particles-hero { color: #13261a; }
.particles-hero .lead { color: #395244; }
.particles-hero .kicker, .particles-hero .eyebrow { background: rgba(255,255,255,.72); border-color: rgba(165,60,55,.18); color: #8f3430; }
.particles-hero .wrap {
  position: relative;
  z-index: 1;
}

.company-hero-full {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14,32,18,.82) 0%, rgba(18,44,24,.58) 40%, rgba(18,44,24,.16) 72%, rgba(18,44,24,.08) 100%),
    url('../img/empresa-hero.jpg') center/cover no-repeat;
  color: #fff;
}
.company-hero-full .wrap { padding-top: 4.2rem; padding-bottom: 4.2rem; }
.company-hero-full .lead { color: rgba(255,255,255,.86); max-width: 58ch; }
.company-hero-full .kicker, .company-hero-full .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7f3db; }
@media (max-width: 980px) { .company-hero-full { min-height: 48vh; background-position: center; } }

.contact-hero-photo {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12,30,17,.68) 0%, rgba(18,44,24,.34) 38%, rgba(18,44,24,.08) 72%, rgba(18,44,24,.04) 100%),
    url('../img/contacto-hero.jpg') center/cover no-repeat;
  color: #fff;
}
.contact-hero-photo .wrap { padding-top: 4rem; padding-bottom: 4rem; }
.contact-hero-photo .lead { color: rgba(255,255,255,.88); max-width: 58ch; }
.contact-hero-photo .kicker { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7f3db; }
@media (max-width: 980px) { .contact-hero-photo { min-height: 44vh; background-position: center; } }

.clients-hero-full {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12,30,17,.68) 0%, rgba(18,44,24,.34) 38%, rgba(18,44,24,.08) 72%, rgba(18,44,24,.04) 100%),
    url('../img/clientes-hero.jpg') center/cover no-repeat;
  color: #fff;
}
.clients-hero-full .wrap { padding-top: 4rem; padding-bottom: 4rem; }
.clients-hero-full .lead { color: rgba(255,255,255,.88); max-width: 58ch; }
.clients-hero-full .kicker { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7f3db; }
@media (max-width: 980px) { .clients-hero-full { min-height: 44vh; background-position: center; } }

.cert-banner {
  border: 1px solid rgba(39,148,66,.18);
  background: linear-gradient(180deg, rgba(39,148,66,.08), rgba(255,255,255,.92));
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.cert-badge {
  display:inline-flex; align-items:center; gap:.5rem; padding:.45rem .8rem;
  border-radius:999px; background:#fff; border:1px solid rgba(39,148,66,.18); color:#279442; font-weight:700;
}
.cert-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:1rem; align-items:center; }
.cert-modal .video-modal-card { background:#fff; }
.cert-modal iframe { background:#fff; }
@media (max-width:980px){ .cert-grid { grid-template-columns:1fr; } }
