:root {
  --bg: #f6f7f9;
  --bg-soft: #edf3f9;
  --surface: #ffffff;
  --surface-alt: #f8fbfe;
  --text: #18314f;
  --muted: #5e7086;
  --line: #dbe5ef;
  --blue: #145eb8;
  --blue-dark: #103b73;
  --blue-soft: #e8f2ff;
  --red: #cf2f25;
  --red-dark: #b02219;
  --green: #218552;
  --shadow-lg: 0 24px 60px rgba(16, 52, 96, 0.12);
  --shadow-md: 0 16px 32px rgba(16, 52, 96, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(20, 94, 184, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(207, 47, 37, 0.05), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  padding-bottom: 92px;
}

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

main {
  overflow: hidden;
}

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

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf4fb;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero {
  padding: 24px 0 42px;
}

.hero-shell {
  display: grid;
  gap: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 253, 0.96));
  border: 1px solid rgba(219, 229, 239, 0.85);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--red), #f07d4c, var(--blue));
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.14rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1ef;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.human-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(180deg, #fffdf8, #fff7e9);
  border: 1px solid #f2dfba;
  border-radius: var(--radius-lg);
}

.human-note-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(20, 94, 184, 0.24);
}

.human-note strong,
.panel-card strong,
.trust-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.04rem;
}

.local-trust-line {
  color: var(--blue-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-trust-line {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.cta-pretitle {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
}

.phone-link {
  background: var(--blue-soft);
  color: var(--blue);
  font-size: clamp(2.1rem, 6vw, 3.3rem);
  letter-spacing: 0.01em;
  border: 2px solid #a8c9fb;
  box-shadow:
    0 16px 36px rgba(20, 94, 184, 0.18),
    0 0 0 6px rgba(20, 94, 184, 0.08);
  animation: phonePulse 2.6s ease-in-out infinite;
  width: min(100%, 420px);
  white-space: nowrap;
}

.button {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(207, 47, 37, 0.24);
  min-width: 250px;
}

.answer-time {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.cta-connection-line {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.call-filter-line {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6b7b8e;
}

.answer-time-light {
  color: rgba(255, 255, 255, 0.88);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(180deg, #df3c31, #a51e17);
}

.micro-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.micro-trust li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

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

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

.urgency-list .panel-card {
  position: relative;
  padding-left: 52px;
}

.urgency-list .panel-card::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red), #e45c52);
  box-shadow: 0 0 0 6px rgba(207, 47, 37, 0.12);
}

.panel-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.panel-card-primary {
  background: linear-gradient(135deg, #103b73, #145eb8);
  color: #ffffff;
  border: none;
  box-shadow: 0 14px 28px rgba(16, 59, 115, 0.16);
}

.panel-card-primary p,
.panel-card-primary h2 {
  color: rgba(255, 255, 255, 0.92);
}

.panel-card-primary h2 {
  margin-bottom: 10px;
}

.panel-kicker {
  margin-bottom: 10px;
  color: #bfdbff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  padding-top: 24px;
}

.services-list,
.trust-grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.services-list li,
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.services-list li {
  position: relative;
  padding: 20px 18px 20px 58px;
  font-size: 1.04rem;
  font-weight: 700;
}

.services-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue), #2f85f2);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(20, 94, 184, 0.12);
}

.reassurance {
  background: linear-gradient(180deg, rgba(232, 242, 255, 0.45), rgba(255, 255, 255, 0));
}

.reassurance-grid {
  display: grid;
  gap: 20px;
}

.steps-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, var(--surface-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.steps-card h3 {
  margin-bottom: 14px;
}

.steps-list {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  display: grid;
  gap: 12px;
  font-weight: 700;
}

.location-banner,
.cta-panel {
  display: grid;
  gap: 18px;
  padding: 30px 24px;
  background: linear-gradient(135deg, #103b73, #145eb8);
  color: #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.location-banner p,
.cta-panel p,
.footer-trust {
  color: rgba(255, 255, 255, 0.88);
}

.location-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-pillars span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.trust {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 242, 255, 0.32));
}

.trust-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.trust-card {
  padding: 24px;
}

.cta-panel {
  text-align: center;
}

.phone-link-light {
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  box-shadow: none;
}

.button-light {
  width: 100%;
  background: #ffffff;
  color: var(--red);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #f8f8f8;
}

.footer-trust {
  font-size: 0.96rem;
  font-weight: 700;
}

.site-footer {
  padding: 0 0 94px;
}

.disclosure {
  margin: 0;
  color: #6b7b8e;
  font-size: 0.88rem;
  text-align: center;
}

.sticky-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 40;
  display: grid;
  gap: 2px;
  justify-items: center;
  min-height: 62px;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(176, 34, 25, 0.3);
  text-align: center;
}

.sticky-call-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.sticky-call-number {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

@keyframes phonePulse {
  0%,
  100% {
    box-shadow:
      0 16px 36px rgba(20, 94, 184, 0.18),
      0 0 0 6px rgba(20, 94, 184, 0.08);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(20, 94, 184, 0.24),
      0 0 0 10px rgba(20, 94, 184, 0.12);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .hero-shell {
    padding: 56px;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
    align-items: center;
  }

  .hero-copy {
    gap: 20px;
  }

  .phone-link {
    width: auto;
    min-width: 340px;
  }

  .button {
    min-width: 280px;
  }

  .micro-trust {
    gap: 12px;
  }

  .hero-panel {
    gap: 12px;
  }

  .panel-list .panel-card {
    box-shadow: 0 10px 20px rgba(16, 52, 96, 0.05);
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reassurance-grid,
  .location-banner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: start;
  }

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

  .phone-link-light,
  .button-light {
    width: auto;
    justify-self: center;
  }

  .sticky-call {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}
