:root {
  --black: #0d0e10;
  --surface: #16181c;
  --surface-raised: #1b1e23;
  --red: #b73540;
  --red-bright: #d34853;
  --white: #f2f3f4;
  --muted: #a7abb2;
  --line: rgba(255, 255, 255, .1);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 108px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(183, 53, 64, .12), transparent 28%),
    linear-gradient(180deg, #0d0e10 0%, #101114 42%, #0d0e10 100%);
  color: var(--white);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.topbar {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--red);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  transition: height .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.topbar.is-compact { height: 74px; border-bottom-width: 1px; box-shadow: 0 10px 32px rgba(0, 0, 0, .24); }
.brand { display: flex; align-items: center; }
.brand-logo { display: block; width: 190px; height: auto; transition: width .28s ease; }
.topbar.is-compact .brand-logo { width: 164px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { position: relative; color: #171717; font-size: .88rem; font-weight: 700; transition: color .2s ease; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; border-radius: 2px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
nav a:not(.nav-cta):hover::after, nav a:not(.nav-cta).is-active::after { transform: scaleX(1); }
nav a:hover { color: var(--red); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--red); border-radius: 7px; color: #fff; background: var(--red); box-shadow: 0 7px 18px rgba(183, 53, 64, .2); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { color: #fff; background: #9f2e38; transform: translateY(-1px); box-shadow: 0 9px 22px rgba(183, 53, 64, .28); }
.menu-button { display: none; background: none; border: 0; color: #171717; font-size: 1.6rem; }

.hero {
  min-height: 610px;
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 6%;
  padding: 50px 24px 58px;
}
.hero h1 { max-width: 700px; margin: 12px 0 22px; font: 700 clamp(3rem, 6vw, 5.2rem) / .96 "Space Grotesk", sans-serif; letter-spacing: -.055em; }
.group-control-logo { width: 250px; max-width: 62%; height: auto; display: block; margin-bottom: 16px; opacity: .9; }
.lead { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.eyebrow { margin: 0; color: var(--red-bright); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 24px; height: 2px; margin-right: 10px; background: var(--red); vertical-align: middle; }
.actions { display: flex; gap: 12px; margin: 28px 0 30px; }
.actions .button { min-height: 58px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 8px; font: 800 .9rem Manrope; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.primary { background: linear-gradient(135deg, var(--red), #ca3d49); color: #fff; box-shadow: 0 10px 28px rgba(183, 53, 64, .24); }
.primary:hover { transform: translateY(-2px); background: var(--red-bright); box-shadow: 0 12px 30px rgba(183, 53, 64, .3); }
.secondary { border-color: rgba(255, 255, 255, .11); background: rgba(255, 255, 255, .035); }
.secondary:hover { border-color: var(--red-bright); }
.client-button { min-height: 58px; justify-content: flex-start; gap: 11px; padding-left: 14px; padding-right: 18px; }
.client-button-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(201, 75, 85, .65); border-radius: 50%; color: var(--red-bright); font: 700 .68rem "Space Grotesk"; letter-spacing: .06em; }
.client-button > span:last-child { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.client-button small { margin-bottom: 3px; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .12em; }
.trust-row { display: flex; gap: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { min-width: 76px; color: var(--red-bright); font: 700 1.2rem "Space Grotesk"; font-variant-numeric: tabular-nums; }
.trust-row span { color: var(--muted); font-size: .73rem; }

.hero-visual { position: relative; min-height: 470px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; box-shadow: 0 34px 85px rgba(0, 0, 0, .4); background: var(--surface); }
.hero-visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(5, 5, 5, .08), transparent 38%, rgba(5, 5, 5, .9) 100%), linear-gradient(100deg, rgba(183, 53, 64, .14), transparent 44%); pointer-events: none; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .75s ease, transform 5.8s ease, visibility .75s; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide img { width: 100%; height: 470px; display: block; object-fit: cover; object-position: center; }
.hero-slide:nth-child(1) img { object-position: 59% center; }
.hero-slide:nth-child(2) img { object-position: 55% center; }
.hero-slide:nth-child(3) img { object-position: 60% center; }
.hero-slide:nth-child(4) img { object-position: 52% center; }
.hero-image-label { position: absolute; left: 28px; right: 92px; bottom: 64px; z-index: 2; display: flex; flex-direction: column; }
.hero-image-label span { color: #ddd; font-size: .65rem; font-weight: 800; letter-spacing: .16em; }
.hero-image-label strong { margin-top: 3px; font: 700 1.25rem "Space Grotesk"; }
.hero-brand-mark { position: absolute; top: 24px; left: 26px; z-index: 3; width: 116px; height: auto; filter: grayscale(1) brightness(0) invert(1); opacity: .92; }
.status-card { position: absolute; top: 25px; right: 25px; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 9px; background: rgba(14, 14, 14, .88); backdrop-filter: blur(8px); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 7px rgba(201, 75, 85, .13); }
.status-card small { display: block; color: var(--muted); font-size: .56rem; letter-spacing: .13em; }
.status-card strong { display: block; font-size: .83rem; }
.hero-carousel-controls { position: absolute; right: 22px; bottom: 22px; z-index: 3; display: flex; align-items: center; gap: 9px; }
.hero-carousel-arrow { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, .24); border-radius: 50%; background: rgba(10, 10, 10, .72); color: #fff; font: 700 1rem Manrope; cursor: pointer; backdrop-filter: blur(8px); transition: border-color .2s ease, background .2s ease; }
.hero-carousel-arrow:hover, .hero-carousel-arrow:focus-visible { border-color: var(--red-bright); background: rgba(160, 53, 61, .82); outline: none; }
.hero-carousel-dots { display: flex; align-items: center; gap: 6px; }
.hero-carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .46); cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero-carousel-dots button.is-active { width: 22px; background: var(--red-bright); }
.hero-carousel-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }


.section { max-width: var(--max); margin: auto; padding: 100px 24px; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section h2, .monitoring-section h2, .quote-section h2 { margin: 8px 0 15px; font: 700 clamp(2rem, 4vw, 3.5rem) / 1.08 "Space Grotesk"; letter-spacing: -.04em; }
.section-heading > p:last-child, .quote-copy > p, .monitoring-copy > p { color: var(--muted); }

.audiences { margin-top: 28px; padding: 62px 42px 56px; border: 1px solid rgba(255, 255, 255, .055); border-radius: 18px; background: radial-gradient(circle at 100% 0, rgba(183, 53, 64, .1), transparent 35%), var(--surface); box-shadow: 0 24px 70px rgba(0, 0, 0, .16); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.audience-grid article { min-height: 220px; padding: 35px 34px; border-right: 0; background: rgba(13, 14, 16, .6); }
.audience-grid article:last-child { border-right: 0; }
.audience-grid span, .process-grid article > span { color: var(--red-bright); font: 700 .73rem "Space Grotesk"; letter-spacing: .12em; }
.audience-grid h3, .process-grid h3 { margin: 28px 0 9px; font: 700 1.45rem "Space Grotesk"; }
.audience-grid p, .process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service { position: relative; min-height: 340px; padding: 32px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; background: radial-gradient(circle at 100% 0, rgba(211, 72, 83, .055), transparent 37%), linear-gradient(145deg, #1b1e23, #14161a); box-shadow: 0 18px 44px rgba(0, 0, 0, .2); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease; }
.service::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-bright), transparent 92%); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.service:hover, .service.is-selected { transform: translateY(-8px); border-color: rgba(211, 72, 83, .42); background: radial-gradient(circle at 100% 0, rgba(211, 72, 83, .16), transparent 42%), linear-gradient(145deg, #211a1d, #15171b); box-shadow: 0 28px 60px rgba(0, 0, 0, .34), 0 0 0 1px rgba(211, 72, 83, .07); }
.service:hover::before, .service:focus-visible::before, .service.is-selected::before { transform: scaleX(1); }
.service[role="button"] { cursor: pointer; }
.service[role="button"]:focus-visible { outline: 3px solid rgba(201, 75, 85, .48); outline-offset: 4px; border-color: var(--red-bright); }
.number { position: absolute; top: 12px; right: 20px; color: rgba(255, 255, 255, .075); font: 700 3.7rem/1 "Space Grotesk"; letter-spacing: -.08em; transition: color .28s ease, transform .28s ease; }
.service:hover .number, .service.is-selected .number { color: rgba(211, 72, 83, .22); transform: translateX(-3px); }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(201, 75, 85, .34); border-radius: 14px; background: linear-gradient(145deg, rgba(183, 53, 64, .23), rgba(183, 53, 64, .07)); color: var(--red-bright); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 24px rgba(0, 0, 0, .12); transition: .25s; }
.icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service:hover .icon, .service.is-selected .icon { border-color: rgba(201, 75, 85, .55); background: rgba(160, 53, 61, .22); transform: translateY(-3px) rotate(-2deg); }
.service h3 { margin: 28px 0 10px; font: 700 1.38rem "Space Grotesk"; letter-spacing: -.025em; }
.service p { margin: 0; color: #b4b8bf; font-size: .91rem; }
.service ul { margin: 16px 0 0; padding: 0; list-style: none; }
.service li { margin: 8px 0; color: #e7e8ea; font-size: .84rem; }
.service li::before { content: "—"; margin-right: 8px; color: var(--red); }
.service-more { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .07); color: var(--red-bright); font-size: .78rem; font-weight: 800; letter-spacing: .03em; }
.service-more b { display: inline-block; margin-left: 5px; font-size: 1rem; transition: transform .2s ease; }
.service:hover .service-more b, .service.is-selected .service-more b { transform: translateX(4px); }

.service-assurance { max-width: var(--max); margin: -46px auto 100px; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); }
.service-assurance article { min-height: 178px; padding: 26px 24px; display: flex; gap: 17px; border-top: 1px solid rgba(211, 72, 83, .38); border-bottom: 1px solid rgba(255, 255, 255, .07); border-right: 1px solid rgba(255, 255, 255, .07); background: linear-gradient(180deg, rgba(183, 53, 64, .06), rgba(22, 24, 28, .5)); }
.service-assurance article:first-child { border-left: 1px solid var(--line); }
.assurance-index { flex: 0 0 auto; color: var(--red-bright); font: 700 .68rem "Space Grotesk"; letter-spacing: .1em; }
.service-assurance strong { display: block; margin-top: -3px; font: 700 1rem "Space Grotesk"; }
.service-assurance p { margin: 10px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }

.technical-support {
  position: relative;
  max-width: var(--max);
  margin: 0 auto 70px;
  padding: 56px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 16px;
  background: radial-gradient(circle at 8% 8%, rgba(183, 53, 64, .2), transparent 36%), linear-gradient(135deg, #191b20, #111216 72%);
  box-shadow: 0 30px 75px rgba(0, 0, 0, .3);
}
.technical-support::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--red-bright), var(--red)); }
.support-intro { position: sticky; top: 112px; }
.support-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 14px 32px rgba(183, 53, 64, .24);
  font: 700 1.4rem "Space Grotesk";
  letter-spacing: .08em;
}
.support-intro .eyebrow { margin-top: 28px; }
.support-intro h2 { margin: 8px 0 14px; font: 700 clamp(2rem, 3.4vw, 3.25rem) / 1.02 "Space Grotesk"; letter-spacing: -.045em; }
.support-intro > p:not(.eyebrow) { max-width: 470px; margin: 0; color: var(--muted); font-size: .95rem; }
.support-points { margin: 28px 0; padding: 0; list-style: none; }
.support-points li { margin: 11px 0; color: #e6e6e6; font-size: .85rem; }
.support-points li::before { content: "✓"; margin-right: 10px; color: var(--red-bright); font-weight: 800; }
.support-phone { width: fit-content; min-width: 172px; min-height: 58px; padding: 9px 18px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid rgba(255, 255, 255, .09); border-radius: 7px; background: rgba(255, 255, 255, .035); }
.support-phone:hover { border-color: var(--red-bright); }
.support-phone small { color: var(--muted); font-size: .6rem; font-weight: 800; letter-spacing: .13em; }
.support-phone strong { margin-top: 2px; font-size: 1rem; }
.technical-form { padding: 34px; border: 0; border-radius: 12px; background: #f1f2f4; color: #111; box-shadow: 0 22px 50px rgba(0, 0, 0, .28); }
.technical-form-heading { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #d5d5d5; }
.technical-form-heading strong { font: 700 1.25rem "Space Grotesk"; }
.technical-form-heading span { color: #737373; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.technical-form .field-full, .technical-submit, .technical-status, .technical-note { grid-column: 1 / -1; }
.technical-form .optional { color: #777; font-size: .68rem; font-weight: 600; }
.website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.technical-submit { width: 100%; border: 0; background: var(--red); color: #fff; cursor: pointer; }
.technical-submit:hover { background: var(--red-bright); }
.technical-submit:disabled { cursor: wait; opacity: .7; }
.technical-status { display: none; margin: -4px 0 0; padding: 12px 14px; border-radius: 7px; font-size: .82rem; font-weight: 700; text-align: center; }
.technical-status.success { display: block; border: 1px solid #9bc9aa; background: #e9f6ed; color: #245c35; }
.technical-status.error { display: block; border: 1px solid #d7a4a8; background: #fae9ea; color: #7e2028; }
.technical-note { margin: -4px 0 0; color: #6d7981; font-size: .72rem; text-align: center; }
.privacy-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: #5e6970; font-size: .73rem; font-weight: 600; line-height: 1.45; }
.privacy-consent input { width: 17px; height: 17px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--red); box-shadow: none; }
.privacy-link { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; font: inherit; font-weight: 800; cursor: pointer; }
.privacy-link:hover { color: var(--red); }

.process { margin-top: 28px; padding: 72px 42px 78px; border: 1px solid rgba(255, 255, 255, .055); border-radius: 18px; background: radial-gradient(circle at 0 100%, rgba(183, 53, 64, .08), transparent 34%), var(--surface); box-shadow: 0 24px 70px rgba(0, 0, 0, .16); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 0; background: var(--line); }
.process-grid article { min-height: 230px; padding: 30px; background: #111318; }
.process-grid h3 { margin-top: 32px; font-size: 1.12rem; }

.clients-section { max-width: none; padding: 88px 0; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, .05); border-bottom: 1px solid rgba(255, 255, 255, .05); background: #121419; }
.clients-section-priority { margin-top: 22px; padding-top: 58px; padding-bottom: 62px; background: linear-gradient(180deg, rgba(183, 53, 64, .095), #121419 42%); }
.clients-heading { width: min(calc(100% - 48px), calc(var(--max) - 48px)); margin: 0 auto 44px; }
.logo-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-track { width: max-content; display: flex; animation: logo-scroll 46s linear infinite; will-change: transform; }
.logo-group { display: flex; flex-shrink: 0; gap: 14px; padding-right: 14px; }
.client-logo { width: 220px; height: 112px; flex: 0 0 auto; display: grid; grid-template-rows: 62px auto; place-items: center; padding: 12px 20px; border: 1px solid rgba(255, 255, 255, .045); border-radius: 12px; background: rgba(255, 255, 255, .022); color: #999da4; }
.client-logo img { width: 100%; max-width: 175px; height: 58px; object-fit: contain; filter: grayscale(1) brightness(0) invert(.62); opacity: .82; }
.client-logo span { align-self: end; color: #999da4; font-size: .76rem; font-weight: 700; line-height: 1.2; text-align: center; }
.client-logo.lomas img { max-width: 72px; }
.client-logo.zento img { max-width: 190px; }
.client-logo.sendai img { max-width: 200px; }
.client-logo.avellaneda img { max-width: 86px; }
.client-logo.matanza img { max-width: 178px; }
.client-logo.lanus img { max-width: 176px; }
.client-logo.moron img { max-width: 82px; }
.client-logo.baisur img { max-width: 200px; }
.client-logo.todovent img { max-width: 190px; }
.client-logo.soldadoras-rojo img { max-width: 185px; }
.client-logo.acapulco img { max-width: 185px; }
.client-logo.autoberlin img { width: 58px; height: 58px; border-radius: 5px; filter: grayscale(1); opacity: .72; }
.client-logo.cordenons img { max-width: 190px; }
.client-logo.davica img { max-width: 180px; }
.client-logo.olti img { max-width: 108px; }
.client-logo.saint-joseph img { max-width: 190px; }
.client-logo.zento img,
.client-logo.sendai img,
.client-logo.baisur img,
.client-logo.todovent img,
.client-logo.soldadoras-rojo img,
.client-logo.acapulco img,
.client-logo.cordenons img,
.client-logo.davica img,
.client-logo.saint-joseph img { max-width: 175px; }
@keyframes logo-scroll { to { transform: translate3d(-50%, 0, 0); } }

.monitoring-section { max-width: var(--max); margin: 10px auto 0; overflow: hidden; display: grid; grid-template-columns: 1.08fr .92fr; border: 1px solid rgba(255, 255, 255, .065); border-radius: 16px; background: #14161a; box-shadow: 0 28px 75px rgba(0, 0, 0, .22); }
.monitoring-photo { position: relative; min-height: 500px; overflow: hidden; }
.monitoring-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, #14161a 100%); }
.monitoring-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 68% center; }
.monitoring-photo > span { position: absolute; left: 25px; bottom: 25px; z-index: 2; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 5px; background: rgba(8, 8, 8, .8); color: #fff; font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.monitoring-copy { align-self: center; padding: 62px 55px; }
.monitoring-copy > p { max-width: 520px; }
.monitoring-note { margin-top: 30px; padding-top: 23px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.monitoring-note strong { color: var(--red-bright); font: 700 .78rem "Space Grotesk"; letter-spacing: .1em; }
.monitoring-note span { margin-top: 3px; color: #ddd; font-size: .82rem; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding-top: 115px; padding-bottom: 15px; }
.faq-intro { align-self: start; position: sticky; top: 115px; }
.faq-intro h2 { margin: 8px 0 16px; font: 700 clamp(2.25rem, 4vw, 3.5rem) / 1.04 "Space Grotesk"; letter-spacing: -.045em; }
.faq-intro > p:not(.eyebrow) { max-width: 390px; color: var(--muted); }
.faq-contact { width: fit-content; margin-top: 28px; padding-bottom: 4px; display: inline-block; border-bottom: 1px solid rgba(201, 75, 85, .6); color: #ddd; font-size: .86rem; }
.faq-contact strong { margin-left: 5px; color: var(--red-bright); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 52px 25px 0; color: #f1f1f1; font: 700 1.05rem "Space Grotesk"; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 4px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--red-bright); font: 400 1.35rem Manrope; transition: .2s; }
.faq-list details[open] summary::after { content: "−"; border-color: rgba(201, 75, 85, .55); transform: rotate(180deg); }
.faq-list details p { max-width: 680px; margin: -5px 54px 25px 0; color: var(--muted); font-size: .9rem; }

.quote-section { max-width: var(--max); margin: 100px auto; padding: 70px 60px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; border-radius: 16px; background: #f1f2f4; color: #111; box-shadow: 0 30px 80px rgba(0, 0, 0, .24); }
.quote-section .eyebrow { color: #8e2630; }
.contact-detail { margin-top: 26px; }
.contact-detail small { display: block; color: #687783; font-size: .65rem; letter-spacing: .14em; }
.contact-detail a { font-size: 1rem; font-weight: 800; }
.contact-detail a:hover { color: var(--red); }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { color: #333; font-size: .78rem; font-weight: 800; }
input, select, textarea { width: 100%; display: block; margin-top: 7px; padding: 13px 14px; border: 1px solid #c9c9c9; border-radius: 7px; outline: none; background: #fff; color: #111; font: 500 .9rem Manrope; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(160, 53, 61, .13); }
#quote-form label:nth-child(4) { grid-column: 1 / -1; }
.submit { grid-column: 1 / -1; width: 100%; border: 0; }
.form-note { grid-column: 1 / -1; margin: 0; color: #6d7981; font-size: .73rem; text-align: center; }

.site-footer { border-top: 3px solid var(--red); background: #fff; color: #262626; }
.footer-main { max-width: var(--max); margin: auto; padding: 68px 24px 52px; display: grid; grid-template-columns: 1.45fr .85fr .85fr 1fr; gap: 54px; }
.footer-brand .brand-logo { width: 205px; }
.footer-brand p { max-width: 330px; margin: 24px 0 15px; color: #555; font-size: .86rem; line-height: 1.65; }
.footer-brand > span { color: #8e2630; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 { margin: 4px 0 13px; color: #151515; font: 700 .86rem "Space Grotesk"; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { color: #555; font-size: .78rem; }
.footer-column a:hover { color: var(--red); }
.footer-contact > span { margin-top: 2px; color: #888; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact > a:not(.footer-email) { margin-top: -6px; color: #222; font-size: .9rem; font-weight: 800; }
.footer-hours { margin-top: -6px; color: #222; font-size: .78rem; }
.footer-email { margin-top: 7px; overflow-wrap: anywhere; }
.footer-bottom { min-height: 72px; padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px)); padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px)); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #dedede; color: #777; font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-privacy { padding: 3px 0; border: 0; border-bottom: 1px solid #aaa; background: transparent; color: #666; font: 700 .7rem Manrope; cursor: pointer; }
.footer-privacy:hover { border-color: var(--red); color: var(--red); }
.mobile-action-bar { display: none; }
.floating-wa { position: fixed; right: 24px; bottom: 24px; z-index: 20; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; font-weight: 800; box-shadow: 0 8px 28px rgba(0, 0, 0, .35); }

.motion-ready .hero-copy { opacity: 0; transform: translateY(18px); }
.motion-ready .hero-visual { opacity: 0; transform: translateY(22px) scale(.985); }
.motion-ready.page-loaded .hero-copy { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.motion-ready.page-loaded .hero-visual { opacity: 1; transform: none; transition: opacity .75s .12s ease, transform .75s .12s ease; }
.motion-ready .reveal-item { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--reveal-delay, 0ms) ease, transform .65s var(--reveal-delay, 0ms) ease; }
.motion-ready .reveal-item.is-visible { opacity: 1; transform: none; }

.lead-modal[hidden] { display: none; }
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 3, 3, .78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .22s ease;
}
.lead-modal.is-open { opacity: 1; }
.lead-modal-panel {
  position: relative;
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: var(--surface);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62);
  transform: translateY(18px) scale(.985);
  transition: transform .22s ease;
}
.lead-modal.is-open .lead-modal-panel { transform: translateY(0) scale(1); }
.lead-modal-copy {
  padding: 52px 46px;
  background: radial-gradient(circle at 8% 10%, rgba(183, 53, 64, .22), transparent 38%), var(--surface);
}
.lead-modal-eyebrow {
  margin: 0 0 12px;
  color: var(--red-bright);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lead-modal h2 {
  margin: 0 0 18px;
  font: 700 clamp(2rem, 5vw, 3.3rem) / 1 "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
}
.lead-modal-copy > p:last-of-type { margin: 0; color: #c6c6c6; font-size: 1rem; }
.lead-modal-trust { margin-top: 28px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; border-top: 1px solid var(--line); }
.lead-modal-trust span { color: #e8e8e8; font-size: .82rem; font-weight: 700; }
.lead-modal-trust span::before { content: "✓"; margin-right: 8px; color: var(--red-bright); }
.lead-modal-actions { padding: 40px 30px 30px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 50% 15%, rgba(211, 72, 83, .24), transparent 43%), linear-gradient(155deg, #292024, #17191d); }
.lead-modal-promo { margin-bottom: auto; padding: 22px 18px; display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(201, 75, 85, .65); border-radius: 14px; background: rgba(10, 10, 10, .5); text-align: center; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
.lead-modal-promo small { color: #ddd; font-size: .67rem; font-weight: 800; letter-spacing: .17em; }
.lead-modal-promo strong { margin: 5px 0 0; color: #fff; font: 700 3.25rem/1 "Space Grotesk"; letter-spacing: -.06em; }
.lead-modal-promo span { color: var(--red-bright); font-size: .86rem; font-weight: 800; letter-spacing: .12em; }
.lead-modal-actions p { margin: 28px 0 18px; color: #bdbdbd; font-size: .78rem; line-height: 1.5; }
.lead-modal-actions .button { width: 100%; border: 0; }
.lead-modal-secondary { min-height: 44px; margin-top: 8px; border: 0; background: transparent; color: #d4d4d4; font: 700 .82rem Manrope; cursor: pointer; }
.lead-modal-secondary:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.lead-modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; background: rgba(0, 0, 0, .38); color: #fff; font: 400 1.55rem/1 Manrope; cursor: pointer; }
.lead-modal-close:hover { border-color: var(--red-bright); background: rgba(160, 53, 61, .25); }
.lead-modal button:focus-visible { outline: 3px solid rgba(201, 75, 85, .5); outline-offset: 3px; }

.privacy-dialog { width: min(780px, calc(100% - 32px)); max-height: min(86vh, 820px); padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: var(--surface); color: #f4f4f4; box-shadow: 0 30px 90px rgba(0, 0, 0, .65); }
.privacy-dialog::backdrop { background: rgba(3, 3, 3, .8); backdrop-filter: blur(7px); }
.privacy-dialog-card { max-height: min(86vh, 820px); overflow-y: auto; }
.privacy-dialog-header { position: sticky; top: 0; z-index: 2; padding: 30px 72px 23px 34px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(22, 24, 28, .96); backdrop-filter: blur(9px); }
.privacy-dialog-header h2 { margin: 4px 0 0; font: 700 clamp(1.8rem, 4vw, 2.7rem) / 1 "Space Grotesk"; letter-spacing: -.04em; }
.privacy-dialog-close { position: absolute; top: 25px; right: 26px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #1d1d1d; color: #fff; font: 400 1.45rem/1 Manrope; cursor: pointer; }
.privacy-dialog-close:hover { border-color: var(--red-bright); }
.privacy-intro { margin: 0; padding: 28px 34px; border-bottom: 1px solid var(--line); color: #d0d0d0; font-size: .95rem; }
.privacy-sections { padding: 10px 34px 22px; }
.privacy-sections section { padding: 19px 0; border-bottom: 1px solid var(--line); }
.privacy-sections h3 { margin: 0 0 7px; color: #fff; font: 700 1rem "Space Grotesk"; }
.privacy-sections p { margin: 0; color: var(--muted); font-size: .84rem; }
.privacy-sections a, .privacy-dialog-footer a { color: var(--red-bright); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.privacy-dialog-footer { padding: 23px 34px 30px; background: var(--surface-raised); }
.privacy-dialog-footer p { margin: 0 0 10px; color: #aaa; font-size: .76rem; }
.privacy-dialog-footer a { font-size: .76rem; }

.service-dialog { width: min(820px, calc(100% - 32px)); max-height: 88vh; padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; background: var(--surface); color: #f5f5f5; box-shadow: 0 32px 95px rgba(0, 0, 0, .68); }
.service-dialog::backdrop { background: rgba(3, 3, 3, .82); backdrop-filter: blur(8px); }
.service-dialog-card { position: relative; max-height: 88vh; padding: 48px 46px 38px; overflow-y: auto; }
.service-dialog-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-bright), transparent 86%); }
.service-dialog-close { position: absolute; top: 22px; right: 24px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #1b1b1b; color: #fff; font: 400 1.5rem/1 Manrope; cursor: pointer; }
.service-dialog-close:hover { border-color: var(--red-bright); }
.service-dialog-number { margin: 0 0 10px; color: var(--red-bright); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-dialog h2 { max-width: 650px; margin: 0 56px 16px 0; font: 700 clamp(2rem, 5vw, 3.35rem) / 1 "Space Grotesk"; letter-spacing: -.045em; }
.service-dialog-intro { max-width: 680px; margin: 0; color: #c8c8c8; font-size: 1rem; }
.service-dialog-grid { margin-top: 30px; display: grid; grid-template-columns: 1.08fr .92fr; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.service-dialog-grid section { padding: 25px 27px; }
.service-dialog-grid section + section { border-left: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.service-dialog-grid h3 { margin: 0 0 14px; color: #fff; font: 700 .78rem "Space Grotesk"; letter-spacing: .1em; text-transform: uppercase; }
.service-dialog-grid ul { margin: 0; padding: 0; list-style: none; }
.service-dialog-grid li { margin: 9px 0; color: #d8d8d8; font-size: .84rem; }
.service-dialog-grid li::before { content: "✓"; margin-right: 9px; color: var(--red-bright); font-weight: 800; }
.service-dialog-grid p { margin: 0; color: var(--muted); font-size: .86rem; }
.service-dialog-note { margin: 20px 0 0; color: #8f8f8f; font-size: .72rem; }
.service-dialog-actions { margin-top: 27px; display: flex; align-items: center; gap: 14px; }
.service-dialog-back { min-height: 48px; padding: 0 12px; border: 0; background: transparent; color: #c7c7c7; font: 700 .8rem Manrope; cursor: pointer; }
.service-dialog-back:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  nav { display: none; position: absolute; top: 82px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border: 1px solid #ddd; border-radius: 10px; background: #fff; box-shadow: 0 16px 35px rgba(0, 0, 0, .2); }
  nav.open { display: flex; }
  nav a { padding: 11px 12px; border-radius: 6px; }
  nav a:not(.nav-cta)::after { display: none; }
  nav a.is-active:not(.nav-cta) { color: var(--red); background: rgba(183, 53, 64, .07); }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 52px; }
  .hero-visual { min-height: 440px; }
  .hero-slide img { height: 440px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-assurance { grid-template-columns: 1fr 1fr; }
  .service-assurance article:nth-child(3) { border-left: 1px solid var(--line); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-grid article:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .technical-support { margin-left: 24px; margin-right: 24px; padding: 44px; grid-template-columns: 1fr; gap: 34px; }
  .support-intro { position: static; }
  .support-mark { width: 70px; height: 70px; }
  .monitoring-section { margin-left: 16px; margin-right: 16px; grid-template-columns: 1fr; }
  .monitoring-photo { min-height: 390px; }
  .monitoring-photo::after { background: linear-gradient(180deg, transparent 65%, #14161a 100%); }
  .faq-section { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .quote-section { margin-left: 16px; margin-right: 16px; grid-template-columns: 1fr; gap: 35px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { padding-bottom: 67px; }
  .topbar, .topbar.is-compact { height: 76px; padding-left: 16px; padding-right: 16px; }
  .brand-logo { width: 160px; }
  .topbar.is-compact .brand-logo { width: 148px; }
  nav { top: 70px; }
  .hero { min-height: auto; padding: 42px 16px 50px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3rem); }
  .group-control-logo { width: 220px; max-width: 68%; margin-bottom: 12px; }
  .actions { flex-direction: column; }
  .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trust-row div { min-width: 0; padding: 10px 8px; border-radius: 7px; background: rgba(255, 255, 255, .025); }
  .trust-row strong { min-width: 0; font-size: 1.02rem; }
  .trust-row span { max-width: 92px; font-size: .65rem; line-height: 1.35; }
  .hero-visual, .hero-slide img { min-height: 340px; height: 340px; }
  .hero-image-label { left: 20px; right: 20px; bottom: 65px; }
  .hero-image-label strong { max-width: 280px; font-size: 1.05rem; }
  .hero-brand-mark { top: 18px; left: 18px; width: 96px; }
  .status-card { display: none; }
  .hero-carousel-controls { right: 17px; bottom: 17px; }
  .section { padding: 75px 16px; }
  .audiences, .process { margin-left: 16px; margin-right: 16px; padding: 54px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
  .service { padding: 27px; border-radius: 15px; }
  .number { font-size: 3.15rem; }
  .service-assurance { margin: -30px 16px 72px; padding: 0; grid-template-columns: 1fr; }
  .service-assurance article { min-height: auto; border-left: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .technical-support { margin-left: 16px; margin-right: 16px; padding: 30px 20px; grid-template-columns: 1fr; gap: 26px; }
  .support-mark { width: 58px; height: 58px; }
  .support-intro h2 { font-size: 2.25rem; }
  .technical-form { padding: 24px 18px; }
  .technical-form-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .clients-heading { width: calc(100% - 32px); }
  .client-logo { width: 205px; height: 108px; }
  .logo-track { animation-duration: 42s; }
  .monitoring-photo { min-height: 300px; }
  .monitoring-copy { padding: 48px 22px; }
  .faq-section { padding-top: 82px; padding-bottom: 0; }
  .faq-list summary { padding-top: 22px; padding-bottom: 22px; font-size: 1rem; }
  .quote-section { margin-top: 70px; margin-bottom: 70px; padding: 50px 22px; }
  form { grid-template-columns: 1fr; }
  #quote-form label:nth-child(4), #quote-form .submit, #quote-form .form-note { grid-column: 1; }
  .technical-form .field-full, .technical-submit, .technical-status, .technical-note { grid-column: 1; }
  .footer-main { padding: 48px 20px 38px; grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { min-height: auto; padding: 22px 20px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .privacy-dialog { width: calc(100% - 20px); max-height: 90vh; }
  .privacy-dialog-card { max-height: 90vh; }
  .privacy-dialog-header { padding: 25px 62px 20px 22px; }
  .privacy-dialog-close { top: 19px; right: 18px; }
  .privacy-intro, .privacy-sections, .privacy-dialog-footer { padding-left: 22px; padding-right: 22px; }
  .service-dialog { width: calc(100% - 20px); max-height: 90vh; }
  .service-dialog-card { max-height: 90vh; padding: 40px 22px 26px; }
  .service-dialog-close { top: 17px; right: 17px; }
  .service-dialog h2 { margin-right: 42px; font-size: 2.3rem; }
  .service-dialog-grid { grid-template-columns: 1fr; }
  .service-dialog-grid section + section { border-top: 1px solid var(--line); border-left: 0; }
  .service-dialog-actions { align-items: stretch; flex-direction: column; }
  .service-dialog-actions .button, .service-dialog-back { width: 100%; }
  .mobile-action-bar { position: fixed; top: auto; left: 0; right: 0; bottom: 0; z-index: 50; height: 67px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 7px; border-radius: 0; background: rgba(12, 12, 12, .96); border-top: 1px solid rgba(255, 255, 255, .16); backdrop-filter: blur(10px); box-shadow: 0 -8px 25px rgba(0, 0, 0, .3); }
  .mobile-action-bar a { min-width: 0; padding: 0 8px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; background: var(--red); color: #fff; font-size: .76rem; font-weight: 800; }
  .mobile-action-bar a:last-child { border: 1px solid rgba(255, 255, 255, .18); background: #242424; }
  .mobile-action-bar span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; font: 800 .62rem "Space Grotesk"; }
  .mobile-action-bar a:first-child span { font-size: 1rem; }
  .floating-wa { right: 16px; bottom: 82px; }
  .lead-modal { padding: 14px; align-items: end; }
  .lead-modal-panel { max-height: calc(100vh - 28px); grid-template-columns: 1fr; overflow-y: auto; border-radius: 16px; }
  .lead-modal-copy { padding: 40px 24px 26px; }
  .lead-modal h2 { max-width: 320px; font-size: 2.35rem; }
  .lead-modal-trust { margin-top: 22px; padding-top: 18px; }
  .lead-modal-actions { padding: 24px; }
  .lead-modal-promo { margin: 0 0 18px; padding: 16px; }
  .lead-modal-promo strong { font-size: 2.65rem; }
  .lead-modal-actions p { margin: 0 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service, .service::before, .icon, .topbar, .brand-logo, nav a::after { transition: none; }
  .logo-track { animation-duration: 70s; }
  .lead-modal, .lead-modal-panel { transition: none; }
  .hero-slide { transform: none; transition: none; }
  .hero-copy, .hero-visual, .reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}
