:root {
  --navy: #07162f;
  --navy-2: #0b2349;
  --blue: #006df0;
  --blue-2: #004cae;
  --red: #ff172a;
  --white: #ffffff;
  --soft: #f4f7fb;
  --text: #172033;
  --muted: #667085;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(3, 12, 28, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--navy);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 clamp(24px, 5vw, 62px);
  color: var(--white);
  background: #030509;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 82px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: clamp(22px, 3vw, 42px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--white);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  min-height: 38px;
  padding: 0 15px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(255, 23, 42, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

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

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 124px clamp(18px, 5vw, 72px) 64px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(6, 20, 45, 0.96), rgba(8, 25, 55, 0.9) 50%, rgba(13, 23, 38, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 84px);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary.dark {
  color: var(--navy);
  border-color: rgba(7, 22, 47, 0.18);
  background: var(--white);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.diagnostic-visual,
.service-ticket {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.diagnostic-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 24%, rgba(0, 109, 240, 0.34), transparent 34%),
    radial-gradient(circle at 76% 74%, rgba(255, 23, 42, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.diagnostic-visual img {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.38));
}

.human-visual {
  min-height: 500px;
  background: #071226;
}

.human-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 24%;
  filter: none;
  transform: scale(1.04);
  transform-origin: center top;
}

.human-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 11, 24, 0.06) 35%, rgba(4, 11, 24, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 11, 24, 0.38), transparent 58%);
}

.human-message {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
}

.human-message strong,
.human-message span {
  display: block;
}

.human-message strong {
  max-width: 340px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.human-message span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.visual-glow {
  position: absolute;
  inset: 56px 34px;
  border-radius: 50%;
  background: rgba(0, 109, 240, 0.16);
  filter: blur(24px);
}

.visual-lines {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  opacity: 0.5;
}

.visual-lines span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.visual-badge {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(5, 15, 34, 0.86);
  backdrop-filter: blur(14px);
}

.badge-primary {
  top: 22px;
  left: 22px;
}

.badge-secondary {
  right: 22px;
  bottom: 22px;
  border-color: rgba(255, 23, 42, 0.44);
}

.service-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.service-ticket strong,
.service-ticket span {
  display: block;
}

.service-ticket span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.service-ticket b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-light {
  background: var(--soft);
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 238px;
  padding: 22px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.service-card:nth-child(even) .service-icon {
  background: var(--blue);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-section {
  color: var(--white);
  background: linear-gradient(180deg, var(--navy), #081d3f);
}

.compact {
  margin-bottom: 42px;
}

.process-track {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-step {
  min-height: 132px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.process-step:last-child {
  border-right: 0;
}

.process-step b {
  display: block;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.process-step span {
  display: block;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-dark {
  color: var(--white);
  background: #071226;
}

.content-section {
  background: var(--white);
}

.content-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  border-top: 4px solid var(--red);
}

.content-grid b {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.content-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.confidence-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.confidence-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--white);
}

.proof-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 109, 240, 0.25), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.phone-mockup {
  width: min(230px, 100%);
  min-height: 350px;
  margin: 0 auto;
  padding: 22px 16px;
  border: 7px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #f7f9fc;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.phone-speaker {
  width: 58px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 99px;
  background: #b6c0cd;
}

.chat-line {
  height: 12px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: #d8dee8;
}

.chat-line.short {
  width: 58%;
}

.chat-line.blue {
  width: 76%;
  margin-left: auto;
  background: rgba(0, 109, 240, 0.22);
}

.chat-line.red {
  width: 48%;
  background: rgba(255, 23, 42, 0.22);
}

.chat-card {
  margin: 18px 0;
  padding: 14px;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 22, 47, 0.12);
}

.chat-card b,
.chat-card span {
  display: block;
}

.chat-card b {
  font-size: 0.82rem;
}

.chat-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list span {
  padding: 15px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.proof-list span:nth-child(even) {
  border-left-color: var(--red);
}

.contact-section {
  background: var(--soft);
}

.location-section {
  color: var(--white);
  background: linear-gradient(135deg, #040b18, var(--navy));
}

.location-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.location-map {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.location-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.location-details {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.location-details span {
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.location-details span:nth-child(2) {
  border-left-color: var(--red);
}

.contact-card {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 50px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  box-shadow: 0 22px 55px rgba(7, 22, 47, 0.22);
}

.contact-card p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  background: #040b18;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(5, 15, 34, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a::after {
    display: none;
  }

  .hero-inner,
  .confidence-layout,
  .location-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

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

  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    border-bottom: 1px solid var(--line);
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .proof-board {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 94px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .diagnostic-visual {
    min-height: 300px;
  }

  .human-visual {
    min-height: 430px;
  }

  .human-visual img {
    object-position: 52% 20%;
    transform: scale(1.02);
  }

  .visual-badge {
    font-size: 0.64rem;
  }

  .phone-mockup {
    min-height: 310px;
  }

  .service-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
  }
}
