/* ============================================================
   Electricistas Madrid Oeste — Demo Mini Core (WhiteMoon)
   Estilo: claro y moderno. Azul eléctrico + acento ámbar.
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #f4f8fc;
  --surface-2: #eef4fa;
  --ink: #0e2436;
  --ink-soft: #35506a;
  --muted: #6a8199;
  --line: #e0e9f2;

  --blue: #0057b8;
  --blue-600: #00468f;
  --blue-050: #e7f0fb;
  --teal: #ffb800;
  --teal-600: #b07d00;
  --teal-050: #fff4d6;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(14, 36, 54, .05);
  --shadow: 0 18px 50px -22px rgba(0, 70, 143, .35);
  --shadow-soft: 0 24px 70px -30px rgba(0, 70, 143, .30);

  --maxw: 1160px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Poppins", var(--sans);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; margin: 0; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 68px 0; }
.bg-surface { background: var(--surface); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }

.lead { color: var(--ink-soft); font-size: 1.075rem; max-width: 56ch; }

.badge-urgent { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #1a1206; font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .01em; padding: 8px 15px; border-radius: 999px; }
.badge-urgent svg { width: 16px; height: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 12px 28px -12px rgba(0, 87, 184, .8); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--teal { background: var(--teal); color: #1a1206; box-shadow: 0 12px 28px -12px rgba(255, 184, 0, .8); }
.btn--teal:hover { background: #ffc733; color: #1a1206; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.brand__tag { font-size: .72rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; }
.nav__links a:hover, .nav__links a.is-active { color: var(--blue); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 2px; background: var(--blue);
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 74px 0 0; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__title { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 700; margin: 20px 0 0; }
.hero__title .thin { font-weight: 300; color: var(--ink-soft); display: block; }
.hero__title .accent { color: var(--blue); }
.hero__lead { margin-top: 22px; font-size: 1.12rem; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--teal); flex: 0 0 18px; }

/* Hero visual: SVG composition inside a soft card */
.hero__visual { position: relative; }
.hero__blob {
  position: absolute; inset: -8% -14% -8% 6%; z-index: 0;
  background: radial-gradient(120% 100% at 70% 20%, var(--teal-050), transparent 60%),
              radial-gradient(120% 120% at 20% 90%, var(--blue-050), transparent 55%);
  filter: blur(6px);
}
.hero__card {
  position: relative; z-index: 1; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fbfdff, #f1f7fd);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  padding: 18px; overflow: hidden;
}
.hero__illus { width: 100%; height: auto; aspect-ratio: 6 / 5; object-fit: cover; border-radius: var(--radius); display: block; }
.hero__badge {
  position: absolute; z-index: 2; left: -18px; bottom: 34px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero__badge .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-050); display: grid; place-items: center; color: var(--teal-600); }
.hero__badge .dot svg { width: 22px; height: 22px; }
.hero__badge b { font-family: var(--display); font-size: 1.4rem; display: block; line-height: 1; }
.hero__badge span { font-size: .78rem; color: var(--muted); }

/* Wave divider */
.wave { display: block; width: 100%; height: auto; margin-top: -1px; color: var(--surface); }
.wave--flip { transform: rotate(180deg); }

/* ---------- Visual band ---------- */
.band { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.band__img { width: 100%; height: 340px; object-fit: cover; display: block; }
.band__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 7%, 84px); color: #fff;
  background: linear-gradient(90deg, rgba(0, 70, 143, .9) 0%, rgba(0, 87, 184, .62) 52%, rgba(255, 184, 0, .2) 100%);
}
.band__overlay .eyebrow { color: #fff; }
.band__overlay h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin: 14px 0 0; max-width: 20ch; }
.band__overlay p { color: rgba(255, 255, 255, .92); margin-top: 12px; max-width: 44ch; }

/* ---------- Feature strip ---------- */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature { padding: 30px 26px; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.06rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--muted); }

/* ---------- Section head ---------- */
.sec-head { max-width: 640px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; margin: 14px 0 0; }
.sec-head p { margin-top: 16px; color: var(--ink-soft); }

/* ---------- Why us (asymmetric) ---------- */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.why__aside { position: sticky; top: 100px; }
.why__aside h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; margin: 16px 0 18px; }
.why__aside .lead { margin-bottom: 26px; }
.why__list { display: grid; gap: 0; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__num { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--teal); opacity: .85; letter-spacing: -.03em; }
.why__item h3 { font-size: 1.18rem; margin-bottom: 6px; }
.why__item p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc__img { width: 100%; height: 188px; object-fit: cover; display: block; background: var(--surface-2); }
.svc__body { position: relative; padding: 26px 28px 30px; }
.svc__body::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px; background: var(--teal); border-radius: 3px; opacity: 0; transition: opacity .2s ease; }
.svc:hover .svc__body::before { opacity: 1; }
.svc__ghost { position: absolute; right: 16px; top: 6px; font-family: var(--display); font-weight: 700; font-size: 5.2rem; color: var(--ink); opacity: .05; line-height: 1; pointer-events: none; }
.svc__ic { width: 54px; height: 54px; border-radius: 15px; background: var(--blue); color: #fff; display: grid; place-items: center; margin-top: -53px; margin-bottom: 16px; position: relative; z-index: 1; box-shadow: 0 12px 24px -8px rgba(0, 87, 184, .75); }
.svc__ic svg { width: 27px; height: 27px; }
.svc h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc p { color: var(--ink-soft); font-size: .95rem; }
.svc__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 600; font-size: .92rem; }
.svc__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 56px; background: linear-gradient(120deg, var(--blue-600), var(--blue) 55%, var(--teal-600)); color: #fff; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% -20%, rgba(255,255,255,.22), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 10px; max-width: 46ch; }
.cta-band .btn--ghost { background: #fff; border-color: #fff; }
.cta-band .btn--ghost:hover { color: var(--blue); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 58px 0 40px; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 700; margin: 16px 0 0; }
.page-hero p { margin-top: 16px; max-width: 60ch; color: var(--ink-soft); font-size: 1.08rem; }
.crumbs { font-size: .85rem; color: var(--muted); }
.crumbs a:hover { color: var(--blue); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.cta-actions { display: grid; gap: 12px; margin-top: 24px; }
.contact-cta { align-self: start; position: sticky; top: 96px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 34px;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; font-family: var(--sans); font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); transition: border-color .16s ease, box-shadow .16s ease; outline: none;
}
.form-row textarea { resize: vertical; min-height: 108px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050); background: #fff;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; display: none; }
.form-status.ok { display: block; color: var(--teal-600); }
.form-status.err { display: block; color: #c0392b; }

.info-block + .info-block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.info-block h3 { font-size: 1.05rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.info-block h3 svg { width: 20px; height: 20px; color: var(--blue); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-size: .86rem; font-weight: 500; padding: 7px 14px; border-radius: 999px; background: var(--teal-050); color: var(--teal-600); border: 1px solid rgba(255,184,0,.18); }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.info-list li { display: flex; justify-content: space-between; font-size: .94rem; color: var(--ink-soft); }
.info-list li span:last-child { font-weight: 600; color: var(--ink); }
.contact-line { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: var(--ink-soft); padding: 6px 0; }
.contact-line svg { width: 20px; height: 20px; color: var(--blue); flex: 0 0 20px; }
.contact-line a:hover { color: var(--blue); }
.map-embed { border: 0; width: 100%; height: 260px; border-radius: var(--radius); border: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: #0d2032; color: #cdd9e6; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: #7d95ac; }
.footer-about { margin-top: 16px; font-size: .92rem; color: #9fb2c6; max-width: 40ch; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-family: var(--display); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: .93rem; color: #a9bccf; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: #7d95ac; }
.footer-bottom .demo-tag { color: #b8c8d8; }

/* ---------- Chat widget ---------- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--blue); color: #fff; box-shadow: 0 16px 34px -10px rgba(0,87,184,.75);
  display: grid; place-items: center; transition: transform .2s ease, background .2s ease;
}
.chat-fab:hover { transform: translateY(-3px) scale(1.03); background: var(--blue-600); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(0,87,184,.5); animation: cpulse 2.6s infinite; }
@keyframes cpulse { 0% { box-shadow: 0 0 0 0 rgba(0,87,184,.45); } 70% { box-shadow: 0 0 0 16px rgba(0,87,184,0); } 100% { box-shadow: 0 0 0 0 rgba(0,87,184,0); } }

.chat-panel {
  position: fixed; right: 22px; bottom: 96px; z-index: 91;
  width: 372px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 130px);
  background: #fff; border-radius: 22px; border: 1px solid var(--line);
  box-shadow: 0 30px 80px -24px rgba(14,36,54,.4);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; animation: chatIn .22s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.chat-head { background: linear-gradient(120deg, var(--blue-600), var(--blue)); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head__av { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: 0 0 42px; }
.chat-head__av svg { width: 24px; height: 24px; }
.chat-head__name { font-family: var(--display); font-weight: 600; font-size: 1rem; line-height: 1.1; }
.chat-head__status { font-size: .76rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.chat-head__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4be3a0; box-shadow: 0 0 0 3px rgba(75,227,160,.3); }
.chat-close { margin-left: auto; background: none; border: 0; color: #fff; cursor: pointer; opacity: .85; padding: 4px; display: grid; place-items: center; }
.chat-close svg { width: 20px; height: 20px; display: block; }
.chat-close:hover { opacity: 1; }

.chat-body { flex: 1; overflow-y: auto; padding: 18px; background: var(--surface); display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 15px; font-size: .93rem; line-height: 1.5; white-space: pre-wrap; }
.msg--bot { background: #fff; border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 5px; }
.msg--user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.chat-typing { align-self: flex-start; display: flex; gap: 4px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: bob 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .18s; } .chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes bob { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 14px 4px; background: var(--surface); }
.chat-quick button { font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--blue); background: #fff; border: 1px solid var(--blue-050); border-radius: 999px; padding: 7px 13px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.chat-quick button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; font-family: var(--sans); font-size: .93rem; outline: none; }
.chat-input input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050); }
.chat-input button { width: 44px; height: 44px; flex: 0 0 44px; border: 0; border-radius: 50%; background: var(--blue); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-input button:hover { background: var(--blue-600); }
.chat-input button svg { width: 19px; height: 19px; }

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

/* ---------- Menú móvil (oculto por defecto; el media query ≤900 lo activa) ---------- */
.mobile-menu { display: none; position: fixed; inset: 74px 0 0; z-index: 95; background: rgba(255,255,255,.98); backdrop-filter: blur(8px); padding: 24px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; font-family: var(--display); font-weight: 600; font-size: 1.3rem; padding: 16px 4px; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .mobile-menu { display: block; }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 520px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why { grid-template-columns: 1fr; gap: 28px; }
  .why__aside { position: static; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .band__img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-cta { position: static; }
  .cta-band { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 54px 0; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc__img { height: 200px; }
  .band__img { height: 320px; }
  .band__overlay { background: linear-gradient(170deg, rgba(0, 70, 143, .9), rgba(0, 87, 184, .78)); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__badge { left: 10px; bottom: 14px; }
  .hero__blob { inset: -6% 0 -6% 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 88px; }
  .chat-fab { right: 16px; bottom: 16px; }
}
