:root {
  --bg: #020713;
  --bg-2: #061126;
  --panel: rgba(8, 20, 42, 0.78);
  --panel-solid: #08152d;
  --line: rgba(92, 154, 255, 0.2);
  --line-strong: rgba(48, 134, 255, 0.5);
  --text: #f5f8ff;
  --muted: #aab8d2;
  --blue: #1688ff;
  --blue-2: #00c6ff;
  --silver: #d7e0ee;
  --success: #2fd59b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 102, 255, 0.14), transparent 28%),
    radial-gradient(circle at 15% 45%, rgba(0, 198, 255, 0.06), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(76, 135, 225, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 135, 225, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -3;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 110px 0; position: relative; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 12px 18px; background: white; color: #001; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(2, 7, 19, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(2, 7, 19, 0.92); border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: 74px; height: 44px; object-fit: cover; object-position: center; border-radius: 8px; }
.brand-text { display: grid; line-height: 1; letter-spacing: .18em; }
.brand-text strong { font-size: 19px; font-weight: 720; background: linear-gradient(135deg, #fff, #a9b8ce); -webkit-background-clip: text; color: transparent; }
.brand-text small { margin-top: 5px; font-size: 9px; color: var(--blue-2); letter-spacing: .4em; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; color: #c4d0e3; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(34,141,255,.6); background: linear-gradient(135deg, rgba(18,117,255,.34), rgba(0,198,255,.08)); border-radius: 10px; color: white; box-shadow: inset 0 0 18px rgba(0,119,255,.1); }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); background: rgba(8,22,46,.8); border-radius: 12px; }
.menu-toggle span { width: 20px; height: 2px; background: white; border-radius: 2px; transition: .2s ease; }

.hero { min-height: 880px; display: flex; flex-direction: column; align-items: center; padding-top: 160px; padding-bottom: 80px; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(51,143,255,.55), transparent); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(20px); opacity: .35; pointer-events: none; }
.hero-glow-one { width: 360px; height: 360px; right: 1%; top: 13%; background: rgba(0,102,255,.32); }
.hero-glow-two { width: 220px; height: 220px; left: 15%; bottom: 3%; background: rgba(0,198,255,.12); }
.hero-grid { width: 100%; display: grid; grid-template-columns: .9fr 1.2fr; align-items: center; gap: 58px; position: relative; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #8fb5e9; letter-spacing: .18em; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.eyebrow span { width: 42px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); box-shadow: 0 0 16px rgba(0,153,255,.7); }
.hero h1 { max-width: 700px; margin: 22px 0 24px; font-size: clamp(48px, 6vw, 82px); line-height: 1.02; letter-spacing: -.045em; font-weight: 760; }
.hero h1 em { display: block; font-style: normal; background: linear-gradient(120deg, #fff 6%, #70aaff 45%, #00d1ff); -webkit-background-clip: text; color: transparent; }
.hero-lead { max-width: 620px; margin: 0 0 32px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 13px; font-weight: 720; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, #0874ff, #00b8ff); box-shadow: 0 14px 36px rgba(0,112,255,.28), inset 0 1px rgba(255,255,255,.3); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(0,112,255,.42), inset 0 1px rgba(255,255,255,.3); }
.btn-ghost { border-color: var(--line-strong); background: rgba(8,24,50,.55); color: #e6f0ff; }
.btn-ghost:hover { border-color: #47a9ff; box-shadow: 0 12px 30px rgba(0,94,255,.14); }
.hero-points { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 18px 24px; color: #c1cee0; font-size: 14px; }
.check { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 7px; border-radius: 50%; background: rgba(0,158,255,.16); border: 1px solid rgba(0,184,255,.45); color: #58dcff; font-size: 12px; }
.hero-visual { position: relative; min-width: 0; }
.visual-frame { position: relative; padding: 10px; border: 1px solid rgba(81,154,255,.45); background: linear-gradient(135deg, rgba(15,41,82,.78), rgba(1,10,24,.9)); border-radius: 30px; box-shadow: var(--shadow), 0 0 80px rgba(0,91,255,.14); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.visual-frame::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,255,255,.55), transparent 28%, rgba(0,144,255,.55)); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; pointer-events: none; }
.visual-frame img { width: 100%; border-radius: 20px; aspect-ratio: 16 / 10; object-fit: cover; }
.float-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 210px; padding: 14px 16px; background: rgba(4,15,34,.92); border: 1px solid rgba(87,158,255,.42); border-radius: 15px; backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: 13px; }
.float-card small { margin-top: 2px; color: #91a7c3; font-size: 11px; }
.card-one { left: -30px; bottom: 12%; }
.card-two { right: -16px; top: 12%; }
.pulse-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 7px rgba(47,213,155,.13), 0 0 22px rgba(47,213,155,.75); }
.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 30px; }
.mini-chart i { display: block; width: 5px; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, #006eff, #00d5ff); }
.mini-chart i:nth-child(1){height: 30%}.mini-chart i:nth-child(2){height: 55%}.mini-chart i:nth-child(3){height: 45%}.mini-chart i:nth-child(4){height: 95%}
.trust-strip { width: 100%; margin-top: 75px; display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); background: rgba(4,14,31,.64); border-radius: 18px; overflow: hidden; }
.trust-strip span { padding: 18px; text-align: center; color: #aebbd0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid var(--line); }
.trust-strip span:last-child { border-right: 0; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2, .systems-copy h2, .why-copy h2, .contact-copy h2 { margin: 18px 0 16px; font-size: clamp(36px, 4.7vw, 58px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p, .split-heading > p, .systems-copy > p, .why-copy > p, .contact-copy > p { color: var(--muted); font-size: 17px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: end; }

.services { background: linear-gradient(180deg, transparent, rgba(8,19,40,.65), transparent); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 290px; padding: 30px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(12,28,57,.8), rgba(3,12,27,.86)); border-radius: 22px; overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; top: -75px; border-radius: 50%; background: rgba(0,119,255,.13); filter: blur(8px); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(62,153,255,.55); box-shadow: 0 20px 60px rgba(0,0,0,.28); }
.service-card:hover::after { transform: scale(1.5); }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 26px; border: 1px solid rgba(61,156,255,.48); background: linear-gradient(135deg, rgba(17,113,255,.3), rgba(0,198,255,.08)); border-radius: 14px; }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: #60c7ff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 12px; font-size: 22px; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
.service-card a { position: absolute; bottom: 28px; color: #70c8ff; font-weight: 700; font-size: 14px; }
.service-card a span { display: inline-block; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }

.systems { overflow: hidden; }
.systems::before { content: ""; position: absolute; left: -12%; top: 12%; width: 40%; height: 75%; border-radius: 50%; background: rgba(0,97,255,.08); filter: blur(70px); }
.systems-wrap { display: grid; grid-template-columns: .85fr 1.25fr; gap: 72px; align-items: center; }
.module-list { display: grid; margin: 35px 0; border-top: 1px solid var(--line); }
.module-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.module-list b { color: #4cb8ff; font-size: 13px; letter-spacing: .12em; }
.module-list strong, .module-list small { display: block; }
.module-list strong { margin-bottom: 2px; }
.module-list small { color: var(--muted); }
.device-card { padding: 12px; border: 1px solid rgba(76,148,255,.4); background: rgba(8,20,43,.75); border-radius: 28px; box-shadow: var(--shadow), 0 0 80px rgba(0,94,255,.12); }
.device-card img { border-radius: 18px; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.catalog { background: linear-gradient(180deg, rgba(6,17,38,.35), rgba(6,17,38,.82), rgba(6,17,38,.2)); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.catalog-card { border: 1px solid var(--line); background: rgba(5,15,34,.88); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 70px rgba(0,0,0,.23); }
.catalog-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.35fr .65fr; align-items: stretch; }
.image-button { position: relative; display: block; width: 100%; border: 0; padding: 0; background: #030915; cursor: zoom-in; overflow: hidden; }
.image-button img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.catalog-card:not(.catalog-wide) .image-button img { aspect-ratio: 16 / 10; min-height: auto; }
.image-button:hover img { transform: scale(1.025); filter: brightness(.82); }
.zoom-label { position: absolute; right: 18px; bottom: 18px; padding: 8px 12px; background: rgba(2,8,20,.8); border: 1px solid rgba(103,172,255,.5); border-radius: 9px; font-size: 12px; opacity: 0; transform: translateY(6px); transition: .25s ease; }
.image-button:hover .zoom-label { opacity: 1; transform: none; }
.catalog-body { padding: 30px; }
.catalog-kicker { color: #47b6ff; font-size: 11px; letter-spacing: .2em; font-weight: 800; }
.catalog-body h3 { margin: 9px 0 10px; font-size: 25px; }
.catalog-body p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tags span { padding: 7px 10px; border: 1px solid var(--line); background: rgba(9,32,66,.5); border-radius: 999px; color: #a9c9eb; font-size: 11px; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-step { min-height: 230px; padding: 30px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(12,28,57,.72), rgba(2,9,22,.75)); border-radius: 22px; }
.process-step > span { display: inline-grid; place-items: center; width: 52px; height: 52px; margin-bottom: 30px; color: #5acaff; border: 1px solid rgba(60,160,255,.45); border-radius: 50%; font-weight: 800; }
.process-step h3 { margin: 0 0 10px; font-size: 19px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.why-us { padding-top: 50px; }
.why-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 70px; align-items: center; }
.why-visual { position: relative; padding: 14px; border-radius: 30px; background: linear-gradient(145deg, rgba(27,56,103,.5), rgba(2,8,20,.8)); border: 1px solid rgba(86,158,255,.36); box-shadow: var(--shadow); }
.why-visual img { border-radius: 20px; }
.why-copy ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.why-copy li { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: start; }
.why-copy li > span { display: grid; place-items: center; width: 32px; height: 32px; color: #72dbff; background: rgba(0,131,255,.13); border: 1px solid rgba(58,155,255,.45); border-radius: 50%; }
.why-copy li strong, .why-copy li small { display: block; }
.why-copy li small { margin-top: 3px; color: var(--muted); font-size: 14px; }

.contact { padding-bottom: 90px; }
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; padding: 58px; border: 1px solid rgba(80,154,255,.38); background: linear-gradient(145deg, rgba(10,29,62,.9), rgba(2,9,22,.95)); border-radius: 30px; box-shadow: 0 35px 100px rgba(0,0,0,.36); overflow: hidden; }
.contact-shell::before { content: ""; position: absolute; width: 300px; height: 300px; right: 4%; top: -20%; border-radius: 50%; background: rgba(0,111,255,.15); filter: blur(60px); }
.contact-info { display: grid; gap: 12px; margin-top: 34px; }
.contact-info a, .contact-info div { display: grid; grid-template-columns: 85px 1fr; color: #d6e3f4; }
.contact-info span { color: #63c5ff; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact-form { position: relative; display: grid; gap: 18px; padding: 30px; background: rgba(1,8,20,.57); border: 1px solid var(--line); border-radius: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: #c5d2e4; font-size: 13px; font-weight: 650; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: #f5f8ff; background: rgba(7,21,44,.8); border: 1px solid rgba(96,148,214,.28); border-radius: 11px; outline: none; padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #278fff; box-shadow: 0 0 0 3px rgba(39,143,255,.12); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { background: #07152c; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: -6px 0 0; color: #8091aa; font-size: 11px; text-align: center; }

.site-footer { padding: 70px 0 24px; border-top: 1px solid var(--line); background: #01050e; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.footer-brand p { color: #7f94b3; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid h3 { margin: 4px 0 16px; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; color: #8fa1bb; font-size: 13px; }
.footer-grid a:hover { color: #62c5ff; }
.footer-whatsapp { margin-top: 8px; color: #59d9ad; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(100,147,207,.14); color: #70829d; font-size: 12px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #22c883; box-shadow: 0 15px 40px rgba(0,0,0,.35), 0 0 0 7px rgba(34,200,131,.1); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: white; }

.image-modal { width: min(1180px, calc(100% - 34px)); max-height: calc(100vh - 40px); padding: 18px; color: white; background: #040b18; border: 1px solid rgba(79,153,255,.45); border-radius: 22px; box-shadow: 0 35px 100px rgba(0,0,0,.7); }
.image-modal::backdrop { background: rgba(0,3,10,.82); backdrop-filter: blur(9px); }
.image-modal h2 { margin: 3px 48px 14px 6px; font-size: 18px; }
.image-modal img { width: 100%; max-height: calc(100vh - 115px); object-fit: contain; border-radius: 14px; }
.modal-close { position: absolute; right: 16px; top: 13px; width: 38px; height: 38px; border: 1px solid rgba(103,161,233,.35); background: rgba(9,25,51,.86); border-radius: 10px; font-size: 25px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero-grid, .systems-wrap, .why-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 900px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .systems-copy { max-width: 760px; }
  .catalog-wide { display: block; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section-pad { padding: 78px 0; }
  .site-header { background: rgba(2,7,19,.94); }
  .nav-wrap { height: 70px; }
  .brand img { width: 62px; height: 38px; }
  .brand-text strong { font-size: 16px; }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; top: 70px; left: 13px; right: 13px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; background: rgba(3,11,25,.98); border: 1px solid rgba(85,154,245,.25); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 12px 10px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero-grid { gap: 50px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-points { display: grid; }
  .visual-frame { transform: none; padding: 7px; border-radius: 20px; }
  .visual-frame img { border-radius: 14px; }
  .float-card { min-width: 180px; padding: 11px 12px; }
  .card-one { left: 8px; bottom: -25px; }
  .card-two { right: 8px; top: -25px; }
  .trust-strip { margin-top: 76px; grid-template-columns: repeat(2,1fr); }
  .trust-strip span { border-bottom: 1px solid var(--line); }
  .trust-strip span:last-child { grid-column: 1 / -1; }
  .split-heading { display: block; }
  .service-grid, .catalog-grid, .process-grid { grid-template-columns: 1fr; }
  .catalog-wide { grid-column: auto; }
  .service-card { min-height: 270px; }
  .catalog-body { padding: 24px; }
  .image-button img { min-height: auto; aspect-ratio: 16/10; }
  .contact-shell { padding: 27px 20px; gap: 38px; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .brand-text { display: none; }
  .hero h1 { font-size: 45px; }
  .hero-points { font-size: 13px; }
  .card-two { display: none; }
  .service-grid { gap: 14px; }
  .section-heading h2, .systems-copy h2, .why-copy h2, .contact-copy h2 { font-size: 37px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child, .footer-brand { grid-column: auto; }
  .contact-info a, .contact-info div { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
