:root {
  --blue: #0b63f6;
  --blue-dark: #073ea5;
  --cyan: #22c3ff;
  --charcoal: #151922;
  --ink: #202532;
  --muted: #5d6677;
  --line: #dbe3ef;
  --soft: #f3f7fc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(9, 24, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 239, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  text-decoration: none;
}

.brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink);
  font-weight: 750;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta {
  color: var(--white);
  background: var(--blue);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(11, 99, 246, 0.08), rgba(34, 195, 255, 0.04)),
    var(--soft);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(11, 99, 246, 0.1), rgba(34, 195, 255, 0.05)),
    var(--soft);
}

.hero > *,
.section-heading > *,
.local-work-heading > *,
.pain-section > *,
.detail-section > *,
.contact-section > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--charcoal);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.hero h1 {
  color: var(--charcoal);
}

.hero .eyebrow {
  color: var(--blue-dark);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 1.25rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(11, 99, 246, 0.24);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.hero .button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  padding: 8px 10px;
  color: #24415f;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 850;
}

.button.inverted {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-panel {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(14, 32, 61, 0.1);
  padding: clamp(22px, 4vw, 30px);
  text-align: center;
}

.hero-panel img {
  width: min(340px, 100%);
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
}

.hero-panel span {
  color: var(--blue-dark);
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
  color: #d7dfec;
}

.tech-board {
  position: relative;
  overflow: hidden;
}

.tech-board::before {
  content: none;
}

.tech-board > * {
  position: relative;
  z-index: 1;
}

.ticket-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ticket {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.ticket span {
  color: var(--blue-dark);
}

.ticket strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.services-section,
.local-work-section,
.reviews-section,
.pain-section,
.detail-section,
.contact-section,
.maintenance-section,
.why-section {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(24px, 6vw, 90px);
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  display: block;
  max-width: 980px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(14, 32, 61, 0.08);
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 950;
}

.local-work-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
  margin-bottom: 34px;
}

.local-work-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.project-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, auto) 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(14, 32, 61, 0.11);
}

.project-card-large {
  grid-row: span 2;
}

.project-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--charcoal);
}

.project-card-large img {
  min-height: 560px;
}

.project-card-wide img {
  min-height: 320px;
}

.reviews-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.review-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(14, 32, 61, 0.08);
}

.stars {
  color: #f5a400;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0;
}

.review-card p {
  margin: 20px 0 0;
  color: var(--charcoal);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.35;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(14, 32, 61, 0.1);
}

.snapshot-visual {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(34, 195, 255, 0.2), transparent 32%),
    linear-gradient(145deg, #111723, #1f2937);
}

.snapshot-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.visual-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.snapshot-copy span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.snapshot-copy strong {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.25;
}

.building {
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 128px;
  height: 88px;
  background: linear-gradient(160deg, #eef5ff, #b8c9de);
  border-radius: var(--radius) var(--radius) 2px 2px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.building::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -34px;
  width: 98px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  clip-path: polygon(50% 0, 100% 72%, 0 72%);
}

.building span {
  position: absolute;
  bottom: 17px;
  width: 22px;
  height: 32px;
  background: #182232;
  border-radius: 3px;
}

.building span:nth-child(1) {
  left: 20px;
}

.building span:nth-child(2) {
  left: 54px;
}

.building span:nth-child(3) {
  right: 20px;
}

.camera-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(34, 195, 255, 0.14);
}

.dot-one {
  left: 58px;
  top: 74px;
}

.dot-two {
  right: 42px;
  bottom: 72px;
}

.coverage-ring {
  position: absolute;
  border: 2px solid rgba(34, 195, 255, 0.48);
  border-radius: 999px;
}

.ring-one {
  left: 26px;
  top: 52px;
  width: 88px;
  height: 88px;
}

.ring-two {
  right: 14px;
  bottom: 43px;
  width: 92px;
  height: 92px;
}

.browser-frame {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  height: 150px;
  background: #eef5ff;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.browser-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  background: #172233;
  border-radius: var(--radius) var(--radius) 0 0;
}

.browser-frame span {
  position: absolute;
  z-index: 1;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}

.browser-frame span:nth-child(1) {
  left: 12px;
}

.browser-frame span:nth-child(2) {
  left: 26px;
}

.browser-frame span:nth-child(3) {
  left: 40px;
}

.site-preview {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 55px;
  display: grid;
  gap: 10px;
}

.site-preview div {
  height: 12px;
  background: linear-gradient(90deg, var(--blue), rgba(11, 99, 246, 0.18));
  border-radius: 999px;
}

.site-preview div:first-child {
  width: 74%;
  height: 34px;
  border-radius: var(--radius);
}

.site-preview div:nth-child(2) {
  width: 88%;
}

.site-preview div:nth-child(3) {
  width: 56%;
}

.network-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(11, 99, 246, 0.3), transparent 30%),
    linear-gradient(145deg, #0f1724, #263241);
}

.router-box {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 128px;
  height: 58px;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #f7fbff, #aebdd0);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.router-box::before,
.router-box::after {
  content: "";
  position: absolute;
  top: -34px;
  width: 4px;
  height: 44px;
  background: #edf5ff;
  border-radius: 999px;
  transform-origin: bottom;
}

.router-box::before {
  left: 28px;
  transform: rotate(-20deg);
}

.router-box::after {
  right: 28px;
  transform: rotate(20deg);
}

.signal {
  position: absolute;
  left: 50%;
  border: 2px solid rgba(34, 195, 255, 0.58);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
  transform: translateX(-50%);
}

.signal-one {
  top: 62px;
  width: 80px;
  height: 80px;
}

.signal-two {
  top: 40px;
  width: 128px;
  height: 128px;
}

.signal-three {
  top: 18px;
  width: 176px;
  height: 176px;
}

.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.line-one {
  left: 18px;
  right: 24px;
  bottom: 128px;
  transform: rotate(-12deg);
}

.line-two {
  left: 24px;
  right: 18px;
  bottom: 110px;
  transform: rotate(12deg);
}

.dashboard-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-panel span {
  min-height: 62px;
  background: linear-gradient(150deg, #edf5ff, #b7c8dc);
  border-radius: var(--radius);
}

.dashboard-panel span:nth-child(2) {
  background: linear-gradient(150deg, var(--blue), var(--blue-dark));
}

.task-row,
.task-row.short {
  position: absolute;
  left: 24px;
  height: 14px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.task-row {
  right: 24px;
  bottom: 48px;
}

.task-row.short {
  right: 84px;
  bottom: 26px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
  align-items: stretch;
}

.field-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(250px, auto) 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(14, 32, 61, 0.11);
}

.field-card-large {
  grid-row: span 2;
}

.field-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

.field-photo {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 26% 22%, rgba(34, 195, 255, 0.24), transparent 30%),
    linear-gradient(145deg, #101928, #1f3048);
}

.field-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

.field-copy {
  padding: clamp(20px, 3vw, 28px);
}

.field-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.field-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.camera-scene {
  background:
    linear-gradient(180deg, rgba(18, 40, 68, 0.45), rgba(5, 14, 28, 0.94)),
    linear-gradient(135deg, #dce8f5 0%, #f5f9fd 42%, #9fb6d0 42%, #243247 100%);
}

.scene-wall {
  position: absolute;
  left: 34px;
  bottom: 46px;
  width: 54%;
  max-width: 260px;
  height: 190px;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.08) 1px, transparent 1px),
    linear-gradient(#eef5ff, #bacbdd);
  background-size: 32px 100%;
  border: 8px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.scene-wall span {
  position: absolute;
  width: 42px;
  height: 54px;
  background: #142237;
  border: 4px solid #dce8f5;
}

.scene-wall span:nth-child(1) {
  left: 24px;
  top: 32px;
}

.scene-wall span:nth-child(2) {
  right: 24px;
  top: 32px;
}

.scene-wall span:nth-child(3) {
  left: 50%;
  bottom: 0;
  height: 76px;
  transform: translateX(-50%);
}

.scene-camera {
  position: absolute;
  width: 70px;
  height: 30px;
  background: linear-gradient(135deg, #f9fcff, #9aacc2);
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.scene-camera::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 999px;
}

.camera-a {
  right: 42px;
  top: 60px;
  transform: rotate(10deg);
}

.camera-b {
  right: 98px;
  bottom: 94px;
  transform: rotate(-14deg);
}

.coverage {
  position: absolute;
  border: 2px solid rgba(34, 195, 255, 0.46);
  border-radius: 999px;
}

.coverage-a {
  right: 6px;
  top: 28px;
  width: 132px;
  height: 132px;
}

.coverage-b {
  right: 60px;
  bottom: 62px;
  width: 150px;
  height: 150px;
}

.recorder {
  position: absolute;
  right: 34px;
  bottom: 32px;
  width: 116px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #061326;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  font-weight: 950;
}

.website-scene {
  background:
    radial-gradient(circle at 70% 20%, rgba(34, 195, 255, 0.22), transparent 30%),
    linear-gradient(140deg, #13243a, #0a1322);
}

.mock-browser {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  height: 184px;
  background: #f7fbff;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.mock-top {
  height: 30px;
  background: #0f1b2d;
  border-radius: var(--radius) var(--radius) 0 0;
}

.mock-top::before {
  content: "";
  display: block;
  width: 54px;
  height: 8px;
  margin: 11px 0 0 14px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 999px;
}

.mock-hero {
  margin: 18px;
  height: 58px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius);
}

.mock-lines {
  display: grid;
  gap: 8px;
  margin: 0 18px;
}

.mock-lines span {
  height: 10px;
  background: #c8d5e5;
  border-radius: 999px;
}

.mock-lines span:nth-child(2) {
  width: 74%;
}

.mock-lines span:nth-child(3) {
  width: 48%;
}

.network-scene {
  background:
    radial-gradient(circle at 50% 32%, rgba(11, 99, 246, 0.34), transparent 36%),
    linear-gradient(145deg, #172033, #0a1424);
}

.router-unit {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 148px;
  height: 60px;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #f8fbff, #9fb2c9);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.router-unit::before,
.router-unit::after {
  content: "";
  position: absolute;
  top: -38px;
  width: 5px;
  height: 50px;
  background: #eaf2fb;
  border-radius: 999px;
  transform-origin: bottom;
}

.router-unit::before {
  left: 32px;
  transform: rotate(-18deg);
}

.router-unit::after {
  right: 32px;
  transform: rotate(18deg);
}

.access-point {
  position: absolute;
  width: 78px;
  height: 32px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.ap-one {
  left: 32px;
  top: 42px;
}

.ap-two {
  right: 32px;
  top: 78px;
}

.wifi-wave {
  position: absolute;
  left: 50%;
  border: 2px solid rgba(34, 195, 255, 0.58);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
  transform: translateX(-50%);
}

.wave-one {
  top: 66px;
  width: 84px;
  height: 84px;
}

.wave-two {
  top: 42px;
  width: 136px;
  height: 136px;
}

.wave-three {
  top: 18px;
  width: 190px;
  height: 190px;
}

.dashboard-scene {
  background:
    radial-gradient(circle at 22% 18%, rgba(34, 195, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #101827, #24354f);
}

.dashboard-window {
  position: absolute;
  left: 26px;
  top: 34px;
  right: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-window div {
  height: 86px;
  background: linear-gradient(145deg, #eef6ff, #b4c7dd);
  border-radius: var(--radius);
}

.dashboard-window div:nth-child(2) {
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
}

.workflow-list {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 34px;
  display: grid;
  gap: 10px;
}

.workflow-list span {
  padding: 10px 12px;
  color: #eaf5ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 850;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.why-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-list strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.why-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.pain-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.pain-section h2 {
  color: var(--white);
}

.pain-section .eyebrow {
  color: var(--cyan);
}

.pain-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c9d3e1;
  font-size: 1.1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pain-grid span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #edf5ff;
  font-weight: 780;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.detail-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list span {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  font-weight: 850;
}

.feature-list.light span {
  background: var(--soft);
}

.maintenance-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.maintenance-section p:not(.eyebrow) {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--muted);
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(14, 32, 61, 0.08);
}

.pricing-grid strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.pricing-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:not(.button) {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.quote-form {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6e6;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 520;
}

textarea {
  margin-top: 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 99, 246, 0.18);
  border-color: var(--blue);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.success {
  color: #087443;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: #0e1420;
}

.site-footer p {
  margin: 6px 0 0;
  color: #c5d0df;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .section-heading,
  .local-work-heading,
  .project-grid,
  .field-grid,
  .pain-section,
  .detail-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .field-card-large,
  .field-card-wide,
  .project-card-large,
  .project-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .field-card-wide,
  .project-card-wide {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-list,
  .review-grid,
  .snapshot-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    display: grid;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
    font-size: 0.86rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    white-space: normal;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    min-height: 44px;
    padding: 9px 11px;
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    text-align: center;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .hero-copy,
  .hero-panel {
    width: 100%;
    max-width: calc(100vw - 60px);
    min-width: 0;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero .eyebrow {
    line-height: 1.35;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .ticket strong,
  .ticket span,
  .proof-row span {
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.03;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .field-grid,
  .project-grid,
  .snapshot-grid,
  .review-grid,
  .why-list,
  .pain-grid,
  .form-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .field-photo {
    min-height: 230px;
  }

  .project-card img,
  .project-card-large img,
  .project-card-wide img {
    min-height: 260px;
    max-height: 440px;
  }

  .trust-photo {
    min-height: 320px;
  }

  .snapshot-visual {
    min-height: 210px;
  }

  .service-card {
    min-height: 220px;
  }

  .maintenance-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
