:root {
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --blue-500: #0b52ff;
  --blue-400: #4c7cff;
  --emerald-400: #34d399;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --accent: #e32a44;
  --shadow-lg: 0 28px 52px rgba(15, 23, 42, 0.18);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: var(--navy-900);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand svg {
  width: 164px;
  height: auto;
  fill: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(12, 74, 233, 0.32);
}

.cta-btn.primary:hover,
.cta-btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(12, 74, 233, 0.38);
}

.cta-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cta-btn.secondary:hover,
.cta-btn.secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--white);
}

.cta-btn.ghost {
  background: transparent;
  border-color: rgba(12, 74, 233, 0.2);
  color: var(--blue-500);
  box-shadow: none;
}

.cta-btn.ghost:hover,
.cta-btn.ghost:focus-visible {
  border-color: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(12, 74, 233, 0.18);
}

.cta-btn span {
  display: inline-block;
}

.call-number {
  font-weight: 700;
  margin-left: 8px;
}

.hero {
  position: relative;
  color: var(--white);
  padding: 140px 0 120px;
  margin-bottom: 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(76, 124, 255, 0.36), transparent 55%),
    radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.96));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/bg-image-2.webp") center/cover no-repeat;
  opacity: 0.18;
  z-index: -3;
}

.hero-content {
  display: grid;
  gap: 32px;
  max-width: 680px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.95rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 3.85rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.38rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

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

.stat-band {
  margin: -64px auto 72px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px clamp(16px, 5vw, 48px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-item {
  display: grid;
  gap: 6px;
  text-align: center;
}

.stat-item span:first-child {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-500);
}

.section {
  margin-bottom: 88px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--blue-500);
  font-size: 0.92rem;
}

.section-title {
  margin: 6px 0 0;
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy-900);
}

.section-description {
  max-width: 620px;
  color: var(--navy-700);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.16);
}

.service-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--navy-700);
}

.service-card a {
  font-weight: 600;
  color: var(--blue-500);
}

.highlight-band {
  background: linear-gradient(135deg, rgba(12, 74, 233, 0.12), rgba(12, 74, 233, 0.02));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 48px);
  display: grid;
  gap: 24px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.highlight-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(12, 74, 233, 0.12);
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.issue-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.issue-card h3 {
  margin: 0 0 12px;
}

.issue-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--navy-700);
}

.testimonial-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 48px);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(76, 124, 255, 0.32), transparent 58%);
  z-index: 0;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  max-width: 640px;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.service-area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.11);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.area-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: var(--navy-700);
}

.coverage-callout {
  background: linear-gradient(135deg, rgba(12, 74, 233, 0.12), rgba(12, 74, 233, 0.28));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 16px 34px rgba(12, 74, 233, 0.22);
}

.final-cta {
  margin: 96px auto 120px;
  text-align: center;
  display: grid;
  gap: 24px;
}

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 38px 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .site-header .container {
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    padding: 110px 0 100px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
  }

  .stat-band {
    margin: -48px 16px 64px;
  }

  .section {
    margin-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .service-card,
  .process-step,
  .issue-card {
    padding: 22px;
  }

  .testimonial-meta {
    flex-direction: column;
    gap: 8px;
  }
}
