*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a6fd4;
  --blue-light: #2d8ef5;
  --blue-dark: #0f4a9c;
  --black: #0a0a0a;
  --dark: #111418;
  --dark2: #1a1f26;
  --mid: #252d38;
  --border: rgb(255 255 255 / 8%);
  --text: #e8edf5;
  --text-muted: #8a96a8;
  --white: #ffffff;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  background: rgb(10 10 10 / 92%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo img {
  width: auto;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  padding: 9px 20px;
  background: var(--blue);
  border-radius: 4px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--blue-light);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 28px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu .m-cta {
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--blue);
  border-radius: 4px;
  color: var(--white);
  text-align: center;
}

#hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 64px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgb(26 111 212 / 4%) 80px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(26 111 212 / 18%) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgb(26 111 212 / 12%);
  border: 1px solid rgb(26 111 212 / 30%);
  border-radius: 100px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  color: var(--blue);
}

.hero-sub {
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s, transform 0.15s;
}

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

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1.5px solid rgb(255 255 255 / 20%);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgb(255 255 255 / 5%);
  border-color: rgb(255 255 255 / 50%);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgb(26 111 212 / 20%);
  border-radius: 50%;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-logo-side,
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgb(26 111 212 / 15%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 0 40px rgb(26 111 212 / 40%));
}

.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-num {
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-title span {
  color: var(--blue);
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

#services,
#coverage {
  background: var(--dark);
}

.services-header {
  margin-bottom: 56px;
}

.services-grid,
.steps,
.contact-grid {
  display: grid;
  gap: 2px;
}

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

.service-card {
  position: relative;
  padding: 36px 32px;
  overflow: hidden;
  background: var(--dark2);
  transition: background 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  background: var(--mid);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon,
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: rgb(26 111 212 / 12%);
  border: 1px solid rgb(26 111 212 / 25%);
  border-radius: 8px;
  color: var(--blue-light);
  font-family: var(--font-display);
  font-weight: 900;
}

.service-name,
.step-title,
.contact-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-desc,
.step-desc,
.contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

#how,
#about {
  background: var(--black);
}

.steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.step {
  position: relative;
  padding: 40px 32px;
  background: var(--dark2);
}

.step-num {
  margin-bottom: 16px;
  color: rgb(26 111 212 / 15%);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.coverage-layout,
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dark2);
  font-size: 14px;
  font-weight: 500;
}

.area-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.coverage-cta {
  margin-top: 20px;
  padding: 32px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
}

.coverage-cta p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.about-copy {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--dark2);
}

.about-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.about-point-text {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.about-highlight {
  padding: 40px;
  background: var(--dark2);
  border: 1px solid var(--border);
}

.about-highlight blockquote {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

.about-highlight cite {
  color: var(--text-muted);
  font-size: 13px;
  font-style: normal;
}

.about-actions {
  flex-direction: column;
  margin-top: 32px;
}

#contact {
  background: var(--dark2);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 36px;
  background: var(--dark);
}

.contact-card-icon {
  margin-bottom: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--white);
}

.hours-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 6px;
  padding: 5px 12px;
  background: var(--mid);
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  background: var(--blue-dark);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgb(255 255 255 / 2%) 20px, rgb(255 255 255 / 2%) 21px);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.cta-inner p {
  margin-bottom: 36px;
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-outline-white {
  border: 2px solid rgb(255 255 255 / 40%);
  color: var(--white);
}

.btn-outline-white:hover {
  border-color: rgb(255 255 255 / 80%);
}

footer {
  padding: 56px 24px 32px;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  width: auto;
  height: 48px;
  margin-bottom: 16px;
}

.footer-tagline {
  max-width: 280px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-col a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-logo-side {
    order: -1;
  }

  .hero-logo-wrap img {
    max-width: 320px;
  }

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

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

  .steps,
  .coverage-layout,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .coverage-layout,
  .about-layout {
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 20px;
  }

  .nav {
    padding: 0 18px;
  }

  .nav-logo img {
    height: 38px;
  }

  .hero-inner {
    padding: 64px 20px;
  }

  .hero-title {
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    width: 100%;
    max-width: 300px;
  }

  .services-grid,
  .area-list,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 22px 12px;
  }

  .stat-num {
    font-size: 30px;
  }

  .cta-inner h2 {
    font-size: 42px;
  }
}
