:root {
  --red: #d0192b;
  --red-dark: #a3101f;
  --ink: #0d1117;
  --ink-2: #161b24;
  --ink-3: #222a36;
  --text: #1c2230;
  --muted: #5b6475;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 17, 23, .08);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }

.container { width: min(1160px, 100% - 32px); margin-inline: auto; }
.container--narrow { width: min(780px, 100% - 32px); }
.center { text-align: center; margin-top: 40px; }
.ico { width: 1.25em; height: 1.25em; flex: none; }
a:focus-visible, summary:focus-visible { outline: 3px solid #ff4655; outline-offset: 3px; border-radius: 8px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; text-decoration: none; border-radius: 999px;
  padding: .85em 1.5em; transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--wa { background: var(--wa); color: #06270f; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
.btn--wa:hover { background: var(--wa-dark); }
.btn--sm { padding: .6em 1.1em; font-size: .9rem; box-shadow: none; }
.btn--lg { font-size: 1.1rem; padding: 1em 1.8em; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 17, 23, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand img { height: 42px; width: auto; }
.brand__text { color: #fff; font-weight: 800; font-size: 1.4rem; letter-spacing: .04em; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,17,23,.97) 0%, rgba(13,17,23,.88) 45%, rgba(13,17,23,.55) 100%),
    radial-gradient(circle at 85% 20%, rgba(208,25,43,.35), transparent 55%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center; padding: 96px 0 104px;
}
.pill {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #ffb3ba; background: rgba(208, 25, 43, .16); border: 1px solid rgba(208, 25, 43, .4);
  padding: .4em .9em; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; }
.accent { color: var(--red); background: linear-gradient(90deg, #ff4655, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #c3cad6; margin-top: 20px; max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 32px; }
.hero__note { color: #c3cad6; font-size: .95rem; }
.hero__note strong { color: #fff; }
.hero__checks { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero__checks li { display: flex; align-items: center; gap: 8px; color: #e3e7ee; font-weight: 600; font-size: .95rem; }
.hero__checks .ico { color: var(--wa); }

.hero__photo { position: relative; isolation: isolate; margin: 0; justify-self: end; width: min(100%, 440px); }
.hero__photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%;
  border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,.45);
  outline: 1px solid rgba(255,255,255,.08); outline-offset: -1px;
}
.hero__photo::before {
  content: ""; position: absolute; inset: -14px 14px 14px -14px; border-radius: 28px;
  border: 2px solid rgba(208, 25, 43, .55); z-index: -1;
}
.badge {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(13, 17, 23, .86); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.badge--top { top: 28px; left: -36px; }
.badge--bottom { bottom: 28px; right: -24px; }
.badge__num { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.badge__lbl { font-size: .78rem; color: #aeb6c4; line-height: 1.3; }
.badge--top .badge__num { color: #ff4655; }

/* ---------- Secciones ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; color: var(--red); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.section h2, .tech h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--ink); }
.section__head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 2. Confianza y respaldo ---------- */
.trust { padding: 64px 0 56px; background: #fff; border-bottom: 1px solid var(--line); }
.trust__title { text-align: center; font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 800; color: var(--ink); max-width: 720px; margin: 0 auto 36px; }
.trust__certs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.trust__certs li {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; gap: 4px;
  padding: 20px 12px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.trust__certs strong { font-size: 1.1rem; color: var(--ink); font-weight: 800; }
.cert__logo { height: 76px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 10px; }
.cert__mark { height: 60px; margin: 8px 0 18px; }
.cert__mark {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 60px; border-radius: 50%; border: 2px solid var(--ink); color: var(--ink);
  font-size: .62rem; font-weight: 800; letter-spacing: .06em; line-height: 1.1;
}
.cert__mark--award { border-color: #ff4655; color: #ff4655; }
.cert__mark--award svg { width: 28px; height: 28px; }
.trust__certs span { font-size: .8rem; color: var(--muted); line-height: 1.35; }
.trust__certs .is-award { background: var(--ink); border-color: var(--ink); }
.trust__certs .is-award strong { color: #ff4655; }
.trust__certs .is-award span { color: #aeb6c4; }

.clients { margin-top: 44px; text-align: center; }
.clients__label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #5b6475; }
.clients__list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px 56px; }
.clients__list img { height: 40px; width: auto; opacity: .75; transition: opacity .2s; }
.clients__list img.is-tall { height: 64px; }
.clients__list img:hover { opacity: 1; }

/* ---------- 3. El problema ---------- */
.problem {
  background: linear-gradient(180deg, rgba(208,25,43,.035), #fff 45%);
  border: 1px solid rgba(208,25,43,.14); border-radius: var(--radius); padding: 28px 24px;
  border-top: 3px solid rgba(208,25,43,.55);
}
.problem__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(208,25,43,.08); color: var(--ink); margin-bottom: 18px;
}
.problem__ico svg { width: 24px; height: 24px; }
.problem h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em; }
.problem p { color: var(--muted); font-size: .96rem; }

/* ---------- 4. Modelo MORESEG ---------- */
.model { background: #fff; }
.pillars { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.pillars__plus {
  align-self: center; display: grid; place-items: center; width: 44px; height: 44px; margin: 0 -8px;
  border-radius: 50%; background: var(--red); color: #fff; font-size: 1.6rem; font-weight: 800; z-index: 1;
  box-shadow: 0 6px 18px rgba(208,25,43,.35);
}
.pillar {
  position: relative; padding: 34px 30px; border-radius: 20px; background: var(--ink); color: #c3cad6;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--red), #ff4655);
}
.pillar--feature { background: linear-gradient(160deg, #1b0a0d, var(--ink) 60%); box-shadow: 0 20px 50px rgba(208,25,43,.18); }
.pillar__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.pillar__ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(208,25,43,.15); color: #ff4655;
}
.pillar__ico svg { width: 30px; height: 30px; }
.pillar__n { font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,.08); line-height: 1; }
.pillar h3 { color: #fff; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.pillar > p { font-size: .98rem; margin-bottom: 18px; }
.pillar ul { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.08); display: grid; gap: 9px; }
.pillar li { position: relative; padding-left: 22px; font-size: .93rem; color: #e3e7ee; }
.pillar li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 2px;
  background: var(--red); transform: rotate(45deg);
}

/* ---------- 5. Tecnología y portal ---------- */
.tech { position: relative; overflow: hidden; background: var(--ink); color: #c3cad6; padding: 104px 0; }
.tech__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(208,25,43,.22), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(59,130,246,.14), transparent 45%);
}
.tech .container { position: relative; }
.section__head--dark h2 { color: #fff; }
.section__head--dark p { color: #aeb6c4; }
.section__head--dark .eyebrow { color: #ff4655; }

.devices { position: relative; max-width: 1040px; margin: 0 auto 64px; padding: 0 0 44px; }
.laptop { width: 74%; margin: 0 auto; }
.devices--shot { padding: 0; }
.devices--shot img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.devices__note {
  position: absolute; left: 0; bottom: 0; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #9aa3b2;
}
.laptop__screen {
  border: 10px solid #232a36; border-bottom-width: 14px; border-radius: 16px 16px 0 0; background: #0f141c;
  aspect-ratio: 16 / 10; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.laptop__base {
  height: 16px; margin: 0 -6%; border-radius: 0 0 14px 14px;
  background: linear-gradient(#3a4250, #1c222c);
}
.laptop__base::after { content: ""; display: block; width: 16%; height: 6px; margin: 0 auto; border-radius: 0 0 8px 8px; background: #11161e; }

/* Dashboard ilustrativo */
.dash { display: grid; grid-template-columns: 17% 1fr; height: 100%; font-size: clamp(6px, .9vw, 10.5px); color: #aeb6c4; }
.dash__side { background: #121821; border-right: 1px solid rgba(255,255,255,.05); padding: 1.4em .9em; display: flex; flex-direction: column; gap: .5em; }
.dash__logo { width: 70%; height: 1.4em; margin-bottom: 1em; border-radius: 4px; background: linear-gradient(90deg, var(--red), #ff4655); }
.dash__nav { padding: .55em .7em; border-radius: 6px; }
.dash__nav.is-active { background: rgba(208,25,43,.18); color: #fff; }
.dash__main { padding: 1.4em 1.6em; display: flex; flex-direction: column; gap: 1.2em; min-width: 0; }
.dash__head { display: flex; justify-content: space-between; align-items: center; color: #fff; font-weight: 700; font-size: 1.25em; }
.dash__chip { font-size: .7em; font-weight: 700; color: #22c55e; background: rgba(34,197,94,.12); padding: .35em .8em; border-radius: 999px; }
.dash__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8em; }
.dash__kpis div { background: #161d28; border: 1px solid rgba(255,255,255,.05); border-radius: 8px; padding: .8em 1em; display: flex; flex-direction: column; gap: .2em; }
.dash__kpis b { color: #fff; font-size: 1.8em; line-height: 1.1; }
.dash__kpis .is-alert b { color: #f59e0b; }
.dash__cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: .8em; flex: 1; min-height: 0; }
.dash__panel { background: #161d28; border: 1px solid rgba(255,255,255,.05); border-radius: 8px; padding: 1em; display: flex; flex-direction: column; min-height: 0; }
.dash__title { display: block; color: #fff; font-weight: 700; font-size: 1em; margin-bottom: .8em; }
.dash__log { list-style: none; margin: 0; padding: 0; display: grid; gap: .55em; }
.dash__log li { display: flex; align-items: center; gap: .9em; padding-bottom: .55em; border-bottom: 1px solid rgba(255,255,255,.04); }
.dash__log time { color: #6b7485; font-variant-numeric: tabular-nums; }
.dash__log i, .visits i { margin-left: auto; width: .75em; height: .75em; border-radius: 50%; flex: none; }
i.ok { background: #22c55e; }
i.warn { background: #f59e0b; box-shadow: 0 0 0 .3em rgba(245,158,11,.18); }
.dash__bars { flex: 1; display: flex; align-items: flex-end; gap: 8%; padding-top: .5em; min-height: 5em; }
.dash__bars span { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(to top, rgba(208,25,43,.5), #ff4655); }

.tablet {
  position: absolute; right: 0; bottom: 20px; width: 24%;
  border: 9px solid #232a36; border-radius: 18px; background: #0f141c; box-shadow: 0 30px 60px rgba(0,0,0,.55);
}
.tablet__screen { aspect-ratio: 3 / 4; padding: 1.2em; font-size: clamp(6px, .8vw, 9.5px); color: #aeb6c4; }
.visits { list-style: none; margin: 0; padding: 0; display: grid; gap: .7em; }
.visits li { display: flex; align-items: center; gap: .8em; background: #161d28; border-radius: 8px; padding: .8em; }
.visits .av { display: grid; place-items: center; width: 2.6em; height: 2.6em; border-radius: 50%; background: #232a36; color: #fff; font-weight: 700; font-size: .9em; flex: none; }
.visits b { display: block; color: #fff; font-size: 1.05em; }
.visits small { font-size: .9em; }

.phone {
  position: absolute; left: 2%; bottom: 36px; width: 15%;
  border: 7px solid #232a36; border-radius: 26px; background: #0b0f15; box-shadow: 0 30px 60px rgba(0,0,0,.6);
}
.phone__screen { position: relative; aspect-ratio: 9 / 19; padding: 2.6em .9em 1em; font-size: clamp(5px, .7vw, 8px); display: flex; flex-direction: column; gap: .8em; }
.phone__notch { position: absolute; top: .6em; left: 50%; transform: translateX(-50%); width: 38%; height: 1.2em; border-radius: 999px; background: #232a36; }
.phone__time { text-align: center; color: #fff; font-size: 2.2em; font-weight: 700; margin-bottom: .4em; }
.notif { background: rgba(255,255,255,.1); backdrop-filter: blur(6px); border-radius: 10px; padding: .9em; color: #c3cad6; display: flex; flex-direction: column; gap: .2em; }
.notif b { color: #fff; font-size: 1.15em; }
.notif__app { display: flex; align-items: center; gap: .5em; font-size: .8em; font-weight: 700; letter-spacing: .05em; color: #aeb6c4; }
.notif__app i { width: 1.2em; height: 1.2em; border-radius: 4px; background: var(--red); }
.notif--muted { opacity: .6; }

.tech__features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tech__features article {
  padding: 24px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
}
.tech__features svg { width: 30px; height: 30px; color: #ff4655; margin-bottom: 14px; }
.tech__features h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.tech__features p { font-size: .9rem; color: #aeb6c4; }

/* ---------- 6. Sectores ---------- */
.sector { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3 / 4; background: var(--ink-3); }
.sector__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s;
}
.sector:hover .sector__img { transform: scale(1.05); }
.sector::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,17,23,.9), rgba(13,17,23,0) 55%); }
.sector figcaption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; color: #fff; font-weight: 700; font-size: 1.05rem; }

/* ---------- 7. Cómo trabajamos ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--bg-alt); }
.step__n { display: block; font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--red); margin-bottom: 16px; letter-spacing: -.03em; }
.step h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.step p { color: var(--muted); font-size: .96rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50px; right: -18px; width: 14px; height: 14px; z-index: 1;
  border-top: 2px solid var(--line); border-right: 2px solid var(--line); transform: rotate(45deg);
}
.center { text-align: center; margin-top: 44px; }

/* ---------- 8. Beneficios ---------- */
.statement {
  margin: 0 0 48px; padding: 56px 48px; border-radius: 24px; text-align: center;
  background: linear-gradient(120deg, var(--ink), #1b0a0d); position: relative; overflow: hidden;
}
.statement::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(208,25,43,.35), transparent 55%);
}
.statement p { position: relative; margin: 0; color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 800; line-height: 1.25; letter-spacing: -.02em; }
.statement span { color: #ff4655; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.benefit:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit__ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(208,25,43,.08); color: var(--red); margin-bottom: 18px; }
.benefit__ico svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: .96rem; }

/* ---------- 9. FAQ + CTA final ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 24px; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; color: var(--ink); padding: 20px 32px 20px 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--red); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 20px; }

.final {
  margin-top: 72px; padding: 52px 56px; border-radius: 24px; color: #fff;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.section .final h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.final p { color: #ffd9dc; margin-top: 8px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #aeb6c4; font-size: .93rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 44px 0 24px; }
.footer strong { color: #fff; display: block; margin-bottom: 6px; }
.footer a { color: #e3e7ee; }
.footer__links { display: flex; gap: 22px; align-items: flex-start; }
.footer__copy { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0 28px; font-size: .85rem; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .2s;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.06); }
.wa-float.is-hidden { opacity: 0; transform: scale(.6); pointer-events: none; }
.wa-float { transition: transform .2s, opacity .2s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tech__features { grid-template-columns: repeat(3, 1fr); }
  .trust__certs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 64px 0 72px; }
  .hero__photo { justify-self: center; width: min(100% - 24px, 420px); }
  .badge--top { left: -12px; }
  .badge--bottom { right: -12px; }
  .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .pillars { grid-template-columns: 1fr; gap: 0; }
  .pillars__plus { justify-self: center; margin: -10px 0; }
  .laptop { width: 80%; }
}
@media (max-width: 620px) {
  .topbar__inner { height: 60px; }
  .brand img { height: 34px; }
  .topbar .btn--sm span { display: none; }
  .hero__inner { padding: 32px 0 56px; gap: 36px; }
  .pill { font-size: .68rem; margin-bottom: 14px; }
  .hero h1 { font-size: 2rem; }
  .lead { font-size: 1rem; margin-top: 14px; }
  .hero__cta { margin-top: 22px; gap: 10px; }
  .hero__note { width: 100%; text-align: center; }
  .hero__checks { margin-top: 22px; flex-direction: column; gap: 8px; }
  .trust { padding: 48px 0 44px; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .wa-float svg { width: 28px; height: 28px; }
  .footer__copy { padding-bottom: 84px; }
  .topbar .btn--sm { padding: .6em; }
  .section { padding: 68px 0; }
  .tech { padding: 72px 0; }
  .btn--lg { white-space: normal; text-align: center; }
  .badge { padding: 10px 12px; }
  .badge__num { font-size: 1.3rem; }
  .hero__cta .btn { width: 100%; }
  .trust__certs { grid-template-columns: 1fr 1fr; }
  .trust__certs .is-award { grid-column: 1 / -1; }
  .clients__list { gap: 22px 32px; }
  .clients__list img { height: 30px; }
  .clients__list img.is-tall { height: 50px; }
  .steps, .problems, .benefits { grid-template-columns: 1fr; }
  .grid--4 { gap: 12px; }
  .sector figcaption { font-size: .9rem; left: 12px; right: 12px; bottom: 12px; }
  .pillar { padding: 28px 22px; }
  .devices { padding: 0 0 30px; margin-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
  .laptop { width: 100%; grid-column: 1 / -1; }
  .laptop__base { margin: 0; }
  .laptop__screen { border-width: 6px 6px 9px; aspect-ratio: auto; }
  .dash { grid-template-columns: 1fr; font-size: 10px; }
  .dash__side, .dash__panel--chart { display: none; }
  .dash__main { padding: 12px; gap: 10px; }
  .dash__kpis { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .dash__kpis div { padding: 7px 9px; }
  .dash__kpis b { font-size: 1.5em; }
  .dash__cols { grid-template-columns: 1fr; }
  .tablet, .phone { position: static; width: auto; border-width: 5px; }
  .tablet { border-radius: 14px; }
  .tablet__screen { aspect-ratio: auto; font-size: 9px; padding: 10px; }
  .visits li:nth-child(n+3) { display: none; }
  .phone { border-radius: 18px; }
  .phone__screen { aspect-ratio: auto; font-size: 9px; padding: 26px 9px 10px; }
  .phone__time { font-size: 1.8em; }
  .devices__note { bottom: 0; }
  .tech__features { grid-template-columns: 1fr; gap: 12px; }
  .tech__features article { display: grid; grid-template-columns: 28px 1fr; gap: 4px 14px; padding: 18px; }
  .tech__features svg { grid-row: span 2; width: 26px; height: 26px; margin: 0; }
  .tech__features h3 { margin: 0; }
  .statement { padding: 40px 24px; }
  .final { padding: 36px 24px; margin-top: 56px; }
  .final .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
