:root {
  --blue-900: #0b2e4a;
  --blue-700: #0d6efd;
  --blue-600: #1479d6;
  --yellow-500: #ffe34d;
  --yellow-600: #f4c900;
  --blue-100: #eaf4ff;
  --blue-050: #f4f9ff;
  --ink: #102a43;
  --muted: #627d98;
  --border: rgba(13, 110, 253, 0.16);
  --shadow: 0 18px 50px rgba(11, 46, 74, 0.12);
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--blue-050);
  padding-top: 172px;
}

h1,
h2 {
  font-family: var(--font-display);
  color: var(--blue-900);
}

a {
  color: var(--blue-600);
}

.btn-primary {
  --bs-btn-bg: var(--blue-700);
  --bs-btn-border-color: var(--blue-700);
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0b5ed7;
  box-shadow: 0 10px 26px rgba(13, 110, 253, 0.24);
}

.btn-outline-primary {
  --bs-btn-color: var(--blue-700);
  --bs-btn-border-color: rgba(13, 110, 253, 0.35);
  --bs-btn-hover-bg: var(--blue-700);
  --bs-btn-hover-border-color: var(--blue-700);
}

.site-header {
  box-shadow: 0 8px 24px rgba(11, 46, 74, 0.08);
}

.top-strip {
  background: #f5f7fb;
  color: #778da5;
  border-bottom: 1px solid rgba(11, 46, 74, 0.08);
  padding: 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-header {
  border-bottom: 1px solid rgba(11, 46, 74, 0.08);
}

.brand-lockup {
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

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

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

.brand-lockup small {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.65rem;
  margin-top: 0.2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-700), #4da3ff);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.28);
}

.brand-logo {
  display: inline-block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-logo-sm {
  width: 30px;
  height: 30px;
}

.brand-mark-sm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.contact-summary {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-summary span,
.contact-summary a {
  display: block;
}

.contact-summary a {
  color: var(--blue-900);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.main-navbar {
  --bs-navbar-color: #fff;
  --bs-navbar-hover-color: var(--yellow-500);
  --bs-navbar-active-color: var(--yellow-500);
  background: var(--blue-700);
  min-height: 52px;
  padding: 0;
}

.main-navbar .nav-link {
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.05rem 1rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus {
  color: var(--yellow-500);
}

.quote-tab {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  padding: 0.75rem 1.25rem;
  background: var(--yellow-500);
  color: var(--blue-900);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.quote-tab:hover {
  background: var(--yellow-600);
  color: var(--blue-900);
}

.hero-section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item {
  min-height: 560px;
}

.hero-slider .carousel-item img {
  height: 560px;
  object-fit: cover;
}

.hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 45, 80, 0.76), rgba(18, 151, 232, 0.56)),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-slider-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  color: #fff;
  text-shadow: 0 3px 18px rgba(11, 46, 74, 0.18);
}

.hero-copy h1 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-copy h1 span {
  color: var(--yellow-500);
}

.experience-line {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.82) !important;
}

.blue-badge {
  color: var(--blue-700) !important;
  background: rgba(13, 110, 253, 0.08) !important;
  border-color: var(--border) !important;
}

.hero-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow) !important;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.12);
}

.metric-box,
.schedule-box,
.feature-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

.metric-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-700);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.progress {
  --bs-progress-bg: var(--blue-100);
  --bs-progress-bar-bg: var(--blue-700);
  height: 0.55rem;
  margin-bottom: 0.65rem;
}

.trust-row strong {
  display: block;
  color: var(--blue-900);
  font-size: 0.95rem;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.section-soft {
  background: #fff;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-title-inline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.title-accent {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 4px;
  background: var(--yellow-500);
}

.title-accent::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -8px;
  width: 4px;
  height: 20px;
  background: var(--blue-700);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue-700);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-card,
.step-card,
.contact-form,
.stats-card {
  border-color: var(--border) !important;
  border-radius: 22px;
}

.service-card {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 46, 74, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  color: var(--blue-700);
  background: linear-gradient(135deg, #fff, var(--blue-100));
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.14);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-arrows span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--blue-700);
  color: var(--blue-700);
  font-size: 1.5rem;
  line-height: 1;
}

.service-arrows span:first-child {
  border-color: var(--yellow-500);
  color: var(--yellow-600);
}

.service-card,
.step-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 46, 74, 0.1);
}

.service-label,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
}

.feature-box {
  height: 100%;
}

.stats-card {
  background: linear-gradient(180deg, #fff, var(--blue-100));
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-number {
  font-family: var(--font-display);
  color: var(--blue-700);
  font-size: 2rem;
  font-weight: 700;
}

.process-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--blue-050) 100%);
}

.process-flow {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 2.1rem;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-700), var(--yellow-500));
  border-radius: 999px;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11, 46, 74, 0.07);
}

.process-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: var(--blue-700);
  font-size: 1.55rem;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.22);
}

.process-step {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.process-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.reviews-section {
  background: #fff;
}

.google-review {
  border-radius: 22px;
  border: 1px solid rgba(11, 46, 74, 0.08) !important;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: #db4437;
  font-weight: 800;
}

.review-avatar-blue {
  background: #4285f4;
}

.review-avatar-green {
  background: #0f9d58;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #4285f4;
  background: #fff;
  border: 1px solid rgba(11, 46, 74, 0.1);
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.review-stars {
  color: #fbbc04;
  letter-spacing: 0.08rem;
}

.contact-list {
  display: grid;
  gap: 1.35rem;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-list a {
  display: inline-block;
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list small {
  display: block;
  color: var(--muted);
  margin-top: 0.2rem;
}

.form-control,
.form-select {
  border-color: var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.12);
}

.form-note {
  color: var(--muted);
  min-height: 1.25rem;
  font-size: 0.92rem;
}

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

@media (max-width: 575.98px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: static !important;
  }

  .brand-lockup strong {
    font-size: 1rem;
  }

  .contact-summary a {
    font-size: 0.92rem;
  }

  .hero-section {
    padding-top: 3rem;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: static !important;
  }

  .main-navbar {
    padding: 0.5rem 0;
  }

  .main-navbar .navbar-collapse {
    padding-top: 0.75rem;
  }

  .main-navbar .nav-link {
    padding: 0.75rem 0;
  }

  .quote-tab {
    align-self: auto;
    clip-path: none;
    border-radius: 999px;
    margin: 0.75rem 0 0.25rem;
  }

  .hero-slider .carousel-item,
  .hero-slider .carousel-item img {
    height: 460px;
    min-height: 460px;
  }

  .process-flow::before {
    left: 2.05rem;
  }
}
