:root {
  --paper: #f6f7f9;
  --paper-strong: #ffffff;
  --ink: #10131a;
  --ink-soft: #303846;
  --muted: #6c7480;
  --line: #dce1e8;
  --line-dark: rgba(255, 255, 255, 0.16);
  --night: #07090d;
  --night-2: #10131a;
  --brand: #ff321f;
  --brand-2: #ff7a45;
  --logo-blue: #07090d;
  --logo-blue-2: #16181d;
  --aqua: #46e0d6;
  --steel: #aeb9c8;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 9, 13, 0.28);
  --font: "Inter", Arial, Helvetica, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.contact-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-130%);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  background: var(--night);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 225, 232, 0.84);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 13px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  color: var(--brand);
  background: rgba(255, 50, 31, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 50, 31, 0.3);
  border-radius: 6px;
  padding: 0 16px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 50, 31, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 20px 20px;
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 13px 10px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: 34px 0 24px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.96), rgba(7, 9, 13, 0.82) 48%, rgba(7, 9, 13, 0.58)),
    linear-gradient(180deg, rgba(255, 50, 31, 0.22), rgba(70, 224, 214, 0.08) 42%, rgba(7, 9, 13, 0.86)),
    url("office-bg-web.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72), transparent);
}

.signal-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -3;
  width: 56%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 1), rgba(7, 9, 13, 0.18)),
    radial-gradient(circle at 72% 38%, rgba(70, 224, 214, 0.16), transparent 30%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 50, 31, 0.34);
  border-radius: 6px;
  padding: 0 12px;
  color: #ffb6a8;
  background: rgba(255, 50, 31, 0.08);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 76px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 24px;
  color: #e8edf5;
  font-size: 21px;
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 8px 11px;
  color: #d9e3ef;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 44px rgba(255, 50, 31, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.command-board {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(17, 22, 30, 0.88), rgba(7, 9, 13, 0.76)),
    linear-gradient(135deg, rgba(70, 224, 214, 0.12), rgba(255, 50, 31, 0.12));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.command-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(70, 224, 214, 0.17), transparent),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 160px 100%, 100% 42px;
  animation: scan-board 7s linear infinite;
  pointer-events: none;
}

.board-top,
.ops-list,
.terminal,
.radar {
  position: relative;
  z-index: 1;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.board-top span {
  color: var(--aqua);
}

.board-top strong {
  color: #fff;
}

.radar {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
  border: 1px solid rgba(70, 224, 214, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(rgba(70, 224, 214, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 224, 214, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.radar::before {
  width: 94px;
  height: 94px;
}

.radar::after {
  width: 48px;
  height: 48px;
}

.radar span {
  position: absolute;
  width: 50%;
  height: 2px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, var(--aqua));
  animation: radar-sweep 5s linear infinite;
}

.radar i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 10px rgba(255, 50, 31, 0.12), 0 0 34px rgba(255, 50, 31, 0.64);
}

.ops-list {
  display: grid;
  gap: 8px;
}

.ops-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.055);
}

.ops-row span {
  color: #c4cfdd;
  font-size: 13px;
}

.ops-row strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.terminal {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  border: 1px solid rgba(70, 224, 214, 0.22);
  border-radius: 6px;
  padding: 9px 11px;
  color: #b8c4d3;
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  font-size: 11px;
}

.terminal-ok {
  color: var(--aqua);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.proof-grid div {
  display: grid;
  align-content: center;
  min-height: 108px;
  border-left: 1px solid var(--line);
  padding: 20px;
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.proof-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 42px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.section-intro .eyebrow,
.portfolio-head .eyebrow,
.method-shell .eyebrow,
.traffic-shell .eyebrow,
.contact-shell .eyebrow {
  border-color: rgba(255, 50, 31, 0.16);
  color: var(--brand);
  background: rgba(255, 50, 31, 0.06);
}

h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.section-intro p,
.portfolio-head p,
.traffic-shell p,
.contact-shell p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card,
.portfolio-item,
.cert-panel,
.contact-actions {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.service-card {
  min-height: 245px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 50, 31, 0.32);
  box-shadow: 0 20px 48px rgba(16, 19, 26, 0.08);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 50, 31, 0.25);
  border-radius: 6px;
  color: var(--brand);
  background: rgba(255, 50, 31, 0.06);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.16;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.method-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 50, 31, 0.18), transparent 34%),
    linear-gradient(90deg, #0b0e13, #141923);
}

.method-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
}

.method-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.method-shell h2,
.traffic-shell h2,
.contact-shell h2 {
  color: #fff;
}

.method-flow {
  display: grid;
  gap: 12px;
}

.method-flow article {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.method-flow article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 3px;
  height: 28px;
  background: var(--brand);
}

.method-flow span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.method-flow p {
  margin-bottom: 0;
  color: #c8d1de;
}

.portfolio-section {
  background: #fff;
}

.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.portfolio-head h2 {
  margin-bottom: 12px;
}

.portfolio-head p {
  margin-bottom: 0;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(7, 9, 13, 0.22);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--logo-blue);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--brand);
  color: #fff;
  background: var(--logo-blue);
}

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

.portfolio-item {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 178px;
  padding: 18px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 50, 31, 0.18), transparent 38%),
    linear-gradient(180deg, var(--logo-blue-2), var(--logo-blue));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  transition: opacity 180ms ease;
}

a.portfolio-item::after {
  content: "Abrir";
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 50, 31, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 50, 31, 0.24), transparent 38%),
    linear-gradient(180deg, #1f2024, #07090d);
}

.portfolio-item:hover::before {
  opacity: 0.82;
}

.portfolio-item span,
.portfolio-item strong,
.portfolio-item small {
  position: relative;
  z-index: 1;
}

.portfolio-item span {
  width: fit-content;
  border-radius: 5px;
  padding: 5px 8px;
  color: #fff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-item strong {
  display: block;
  margin: 34px 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.16;
}

.portfolio-item small {
  display: block;
  max-width: calc(100% - 54px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item-traffic {
  min-height: 205px;
  cursor: default;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 50, 31, 0.22), transparent 30%),
    linear-gradient(180deg, #17191d, #07090d);
}

.portfolio-item-traffic strong {
  margin: 24px 0 14px;
}

.portfolio-item-traffic small {
  max-width: 100%;
}

.traffic-pie {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
  border-radius: 50%;
  background:
    conic-gradient(var(--brand) 0 var(--slice), rgba(255, 255, 255, 0.88) var(--slice) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 18px 34px rgba(255, 50, 31, 0.18);
}

.traffic-pie::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 50, 31, 0.28);
  border-radius: 50%;
}

.traffic-pie i {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #07090d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.traffic-band {
  position: relative;
  padding: 84px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.96), rgba(7, 9, 13, 0.74)),
    url("office-bg-web.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.traffic-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 36px;
  align-items: center;
}

.traffic-shell p,
.contact-shell p {
  color: #d4dce8;
}

.cert-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.18);
}

.cert-panel span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cert-panel strong {
  font-size: 30px;
  line-height: 1.08;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 50, 31, 0.2), transparent 32%),
    linear-gradient(90deg, #10131a, #07090d);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 42px;
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.contact-actions a:not(.button) {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 0 14px;
  color: #eef3f9;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.contact-actions .button {
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 44px rgba(255, 50, 31, 0.34);
  font-size: 13px;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan-board {
  from {
    background-position: -160px 0, 0 0;
  }
  to {
    background-position: 360px 0, 0 42px;
  }
}

@keyframes radar-sweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav a {
    padding: 10px 9px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-shell,
  .section-grid,
  .method-shell,
  .traffic-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .command-board {
    max-width: 620px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-head {
    align-items: start;
    flex-direction: column;
  }

  .portfolio-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding: 48px 0 36px;
  }

  .hero::after {
    background-size: 36px 36px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-tags span,
  .button {
    width: 100%;
  }

  .command-board {
    display: none;
  }

  .radar {
    width: 184px;
    height: 184px;
  }

  .ops-row {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 12px;
  }

  .ops-row strong {
    text-align: left;
  }

  .proof-grid,
  .service-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 1px solid var(--line);
  }

  .section,
  .method-band,
  .traffic-band {
    padding: 58px 0;
  }

  .contact-actions a:not(.button) {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .signal-field {
    display: none;
  }
}
