:root {
  --red: #c81420;
  --red-dark: #9d0f18;
  --navy: #0d1b3d;
  --navy-deep: #081127;
  --black: #0a0a0d;
  --white: #ffffff;
  --offwhite: #f5f7fb;
  --soft: #eef2f8;
  --border: #d9e1ef;
  --text: #182235;
  --muted: #5d6982;
  --success: #0d7a46;
  --shadow: 0 16px 40px rgba(6, 16, 38, 0.12);
  --shadow-strong: 0 20px 60px rgba(6, 16, 38, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar-wrap {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar p,
.topbar a {
  margin: 0;
  color: var(--white);
}

.topbar i {
  margin-right: 8px;
  color: #ffb3b8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 225, 239, 0.9);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--red);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.header-call:hover {
  color: var(--white);
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: var(--transition);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 20, 32, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(13, 27, 61, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  padding: 28px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(13,27,61,0.03) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(200, 20, 32, 0.08);
  color: var(--red);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--navy-deep);
  max-width: 12ch;
}

.hero-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(13, 27, 61, 0.06);
}

.hero-point i {
  color: var(--red);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #e53945 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark) 0%, #cc2a37 100%);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--offwhite);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-chip i {
  color: var(--success);
}

.hero-card,
.sidebar-card,
.quote-panel,
.stat-card,
.service-card,
.step-card,
.info-panel,
.local-card,
.blog-card,
.mini-card,
.faq-item,
.urgent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  background:
    linear-gradient(180deg, #0f214d 0%, #0a1430 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-strong);
}

.hero-card-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #dfe8ff;
  font-size: 0.92rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f6d;
  box-shadow: 0 0 0 0 rgba(255, 95, 109, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 95, 109, 0.75); }
  70% { box-shadow: 0 0 0 12px rgba(255, 95, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 95, 109, 0); }
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-card p {
  margin: 0 0 18px;
  color: #d6ddf5;
}

.callout-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.callout-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.callout-list i {
  color: #98f0be;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, #0d1b3d 0%, #081127 100%);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.light h2,
.section-heading.light p,
.section-kicker.light {
  color: var(--white);
}

.section-kicker.light {
  background: rgba(255,255,255,0.08);
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.section-dark .section-heading p {
  color: #d6ddf5;
}

.stats-strip {
  padding-top: 0;
}

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

.stat-card {
  padding: 22px 18px;
  text-align: center;
}

.stat-card i {
  font-size: 1.45rem;
  color: var(--red);
  margin-bottom: 10px;
}

.stat-card strong {
  display: block;
  font-size: 1.08rem;
  color: var(--navy);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid,
.steps-grid,
.local-grid,
.blog-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.blog-card:hover,
.local-card:hover,
.info-panel:hover,
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(200, 20, 32, 0.22);
}

.featured-service {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(200, 20, 32, 0.09);
  color: var(--red);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card h3,
.step-card h3,
.info-panel h3,
.local-card h3,
.blog-card h3,
.sidebar-card h3,
.quote-panel h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p,
.step-card p,
.info-panel p,
.local-card p,
.blog-card p,
.sidebar-card p,
.quote-panel p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--red);
  font-weight: 800;
}

.text-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.88rem;
}

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

.step-card {
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.step-card h3,
.step-card p {
  color: var(--white);
}

.step-card p {
  color: #d6ddf5;
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 16px;
}

.inline-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 24px;
  align-items: start;
}

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

.content-stack {
  display: grid;
  gap: 18px;
}

.info-panel {
  padding: 24px;
}

.sidebar-card,
.quote-panel {
  padding: 24px;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sidebar-links a {
  color: var(--navy);
  font-weight: 700;
}

.urgent-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.badge-red {
  background: rgba(200, 20, 32, 0.1);
  color: var(--red);
}

.accent-section {
  background:
    linear-gradient(180deg, #f6f8fc 0%, #eef3fb 100%);
}

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

.mini-card {
  padding: 22px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  min-height: 92px;
}

.mini-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 61, 0.08);
  color: var(--navy);
  flex-shrink: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0 26px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  color: var(--white);
  font-weight: 700;
}

.check-item i {
  color: #98f0be;
}

.quote-panel {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.quote-panel h3,
.quote-panel p {
  color: var(--white);
}

.quote-panel p {
  color: #d6ddf5;
  margin-bottom: 20px;
}

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

.local-card {
  padding: 24px;
}

.local-card i {
  font-size: 1.45rem;
  color: var(--red);
  margin-bottom: 14px;
}

.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "\2b";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 0 0 72px;
}

.cta-band-wrap {
  background:
    linear-gradient(135deg, #c81420 0%, #80101a 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-strong);
}

.cta-band-wrap h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-band-wrap p {
  margin: 0;
  color: #ffe4e6;
}

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

.blog-card {
  padding: 24px;
}

.blog-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(13, 27, 61, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  background:
    linear-gradient(180deg, #081127 0%, #060d1b 100%);
  color: var(--white);
  padding: 68px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #d4def7;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1.04rem;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.sticky-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--red) 0%, #e53945 100%);
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(200, 20, 32, 0.35);
}

.sticky-call:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark) 0%, #cc2a37 100%);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .content-grid.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero h1 {
    max-width: 100%;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 14px;
  }
}

@media (max-width: 860px) {
  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav a {
    display: block;
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid var(--soft);
  }

  .primary-nav li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .header-wrap {
    min-height: 72px;
  }

  .logo {
    font-size: 1.02rem;
    max-width: 180px;
    line-height: 1.1;
    white-space: normal;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .hero-card,
  .service-card,
  .step-card,
  .stat-card,
  .info-panel,
  .sidebar-card,
  .quote-panel,
  .local-card,
  .blog-card,
  .mini-card {
    border-radius: 20px;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 0.98;
  }

  .hero-lead,
  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .inline-cta,
  .cta-band-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .sticky-call {
    min-height: 58px;
  }

  .service-grid,
  .local-grid,
  .blog-grid,
  .stats-grid,
  .mini-grid,
  .steps-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .cta-band {
    padding-bottom: 56px;
  }

  .cta-band-wrap {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    border-radius: 18px;
  }

  .faq-item summary {
    padding-right: 54px;
  }
}
