/* ============================================================
   SISTELECSA — Hoja de estilos corporativa
   Paleta: azul marino + dorado (identidad del logo)
   ============================================================ */

:root {
  --navy:        #1b2a5e;
  --navy-dark:   #131f47;
  --navy-700:    #243a7a;
  --gold:        #f4c20d;
  --gold-dark:   #d9aa00;
  --ink:         #1c2333;
  --muted:       #5b6577;
  --line:        #e6e9f0;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --bg-softer:   #eef2f9;
  --white:       #ffffff;
  --radius:      14px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 2px rgba(19,31,71,.06), 0 2px 8px rgba(19,31,71,.06);
  --shadow-md:   0 10px 30px rgba(19,31,71,.10);
  --shadow-lg:   0 24px 60px rgba(19,31,71,.16);
  --maxw:        1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1rem; color: var(--ink); }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dfe5f5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .8rem;
}
.section--navy .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto 52px; }
.section-head.center { text-align: center; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.section--navy .section-sub { color: #aeb9d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ============================================================
   Top bar + header
   ============================================================ */
.topbar {
  background: var(--navy-dark); color: #c8d2ef;
  font-size: .85rem; letter-spacing: .01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; }
.topbar a { color: #e7ecfa; }
.topbar a:hover { color: var(--gold); }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-social { display: flex; gap: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .98rem;
  color: var(--ink); padding: .55rem .9rem; border-radius: 8px;
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-soft); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .28rem;
  height: 3px; border-radius: 3px; background: var(--gold);
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 10px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, rgba(19,31,71,.93), rgba(27,42,94,.82)), var(--hero-img, url("../images/portada.jpg")) center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 80% 0%, rgba(244,194,13,.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 104px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.01em; }
.hero h1 .accent { color: var(--gold); }
.hero-lead { color: #d6def4; font-size: 1.2rem; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badge .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-badge .lbl { font-size: .92rem; color: #c3cdec; }
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px; padding: 30px; backdrop-filter: blur(6px);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.hero-card ul { list-style: none; display: grid; gap: .7rem; }
.hero-card li { display: flex; gap: .7rem; align-items: flex-start; color: #e6ebf8; font-size: 1rem; }
.hero-card li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }

/* Page banner (internal pages) */
.page-banner {
  position: relative; color: #fff; text-align: center;
  padding: 88px 0 64px;
  background: linear-gradient(120deg, rgba(19,31,71,.94), rgba(27,42,94,.86)), var(--banner-img, url("../images/service.jpg")) center/cover no-repeat;
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .4rem; }
.page-banner p { color: #cdd6f0; max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { margin-top: 1.1rem; font-size: .9rem; color: #aeb9d8; }
.breadcrumb a { color: #d8e0f5; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px 22px 24px; flex: 1; }
.card-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card-body p { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.card-link {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem;
  color: var(--navy); display: inline-flex; align-items: center; gap: .4rem;
}
.card-link svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.card-link:hover svg { transform: translateX(4px); }

/* Feature chips (services / why us) */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d8deec; }
.feature .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold);
  margin-bottom: 18px;
}
.feature .ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Product / catalog cards */
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card .thumb { aspect-ratio: 4/3; background: var(--bg-soft); display: grid; place-items: center; padding: 14px; }
.cat-card .thumb img { max-height: 100%; width: auto; object-fit: contain; }
.cat-card .meta { padding: 16px 18px 20px; border-top: 1px solid var(--line); }
.cat-card .meta h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--navy); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.brand-tags span {
  font-size: .76rem; color: var(--muted); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .2rem .6rem;
}

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.split p { color: var(--muted); }
.checklist { list-style: none; display: grid; gap: .6rem; margin: 1.2rem 0 0; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; }
.checklist li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--navy); margin-top: 3px; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat .lbl { color: #c2ccea; margin-top: .4rem; font-size: .98rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-700)); color: #fff; border-radius: 20px; padding: 52px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: #cdd6f0; max-width: 560px; margin: 0 auto 1.6rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .92rem; margin-bottom: .4rem; color: var(--navy); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,94,.12); }
.info-card { background: var(--navy); color: #dfe5f5; border-radius: var(--radius); padding: 32px; }
.info-card h3 { color: #fff; }
.info-list { list-style: none; display: grid; gap: 18px; margin-top: 6px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--gold); }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list strong { color: #fff; display: block; font-family: 'Poppins', sans-serif; font-size: .95rem; }
.info-list span, .info-list a { color: #d6ddf2; font-size: .96rem; }
.info-list a { color: #eaf0ff; }
.info-list a:hover { color: var(--gold); }
.map-embed { margin-top: 22px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-dark); color: #aab4d4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .02em; margin-bottom: 1.1rem; }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { color: #9aa5c8; font-size: .95rem; max-width: 300px; }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-links a { color: #aab4d4; font-size: .96rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; display: grid; gap: .8rem; font-size: .95rem; color: #d6ddf2; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact a { color: #eaf0ff; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdd6f0; }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 22px 0; font-size: .88rem; color: #8b96bb; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all .25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy-dark); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Project galleries ---------- */
.gallery-block { margin-bottom: 56px; }
.gallery-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.gallery-head h2 { font-size: 1.4rem; margin: 0; }
.gallery-head .line { flex: 1; height: 1px; background: var(--line); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery a::after { content: "+"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.8rem; background: rgba(19,31,71,.45); opacity: 0; transition: opacity .25s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:hover::after { opacity: 1; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(11,17,40,.92); padding: 30px; }
.lb.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb button:hover { background: var(--gold); color: var(--navy-dark); }
.lb-close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.4rem; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
@media (max-width: 560px) { .lb-prev, .lb-next { width: 42px; height: 42px; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }

/* ---------- Maquinaria (venta nueva/usada) ---------- */
.maq-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.maq-filter {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem;
  padding: .55rem 1.2rem; border-radius: 999px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  transition: all .2s var(--ease);
}
.maq-filter:hover { border-color: var(--navy); }
.maq-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.maq-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.maq-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.maq-media { position: relative; aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.maq-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.maq-card:hover .maq-media img { transform: scale(1.05); }
.maq-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .74rem;
  letter-spacing: .03em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; color: #fff;
}
.maq-badge.nueva { background: #1f9d57; }
.maq-badge.usada { background: var(--gold-dark); color: var(--navy-dark); }
.maq-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.maq-body h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.maq-cat { font-size: .8rem; color: var(--gold-dark); font-family: 'Poppins',sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.maq-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.maq-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.maq-price { font-family: 'Poppins',sans-serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.maq-price small { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.maq-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .85rem;
  background: #25d366; color: #fff; padding: .5rem .85rem; border-radius: 999px;
  transition: background .2s var(--ease);
}
.maq-wa:hover { background: #1db954; color: #fff; }
.maq-wa svg { width: 16px; height: 16px; }
.maq-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
}
@media (max-width: 860px) {
  .topbar-info { gap: 16px; font-size: .8rem; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all .22s var(--ease);
  }
  .site-header { position: sticky; }
  .nav { position: relative; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem .6rem; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--bg-soft); }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar-info { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 22px; }
  .footer-bottom .container { flex-direction: column; }
}
