:root {
  --bg: #070d1d;
  --bg-soft: #0b1733;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --ink: #0f1a33;
  --ink-soft: #55617d;
  --line: #d7e3fb;
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --brand-alt: #22d3ee;
  --accent: #f97316;
  --radius: 16px;
  --shadow-lg: 0 22px 60px -28px rgba(7, 13, 29, 0.45);
  --shadow-md: 0 12px 36px -20px rgba(7, 13, 29, 0.35);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(900px 420px at 0% 15%, rgba(34, 211, 238, 0.15), transparent),
    linear-gradient(180deg, #f7fafe 0%, #edf3fc 28%, #f7fafe 100%);
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1160px, 100% - 2.4rem);
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
  color: #dbeafe;
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: #dbeafe;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 227, 251, 0.7);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px -22px rgba(7, 13, 29, 0.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-alt));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #1f2d4a;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link {
  white-space: nowrap;
  font-weight: 700;
  color: #0f172a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.3rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  box-shadow: 0 11px 22px -12px rgba(37, 99, 235, 0.7);
}

.btn-outline {
  color: #102042;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #c4d6f7;
}

main section {
  padding: clamp(3.5rem, 6.5vw, 5.4rem) 0;
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5271a7;
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.2vw, 2.55rem);
  line-height: 1.1;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.2rem, 8vw, 6rem);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  background: rgba(34, 211, 238, 0.46);
  top: -140px;
  right: 15%;
  animation: pulse 6s ease-in-out infinite;
}

.hero-glow-two {
  width: 270px;
  height: 270px;
  background: rgba(37, 99, 235, 0.3);
  bottom: -120px;
  left: 8%;
  animation: pulse 7s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #3f5d91;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.3vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.024em;
}

.hero-lead {
  max-width: 58ch;
  margin: 1.1rem 0 1.45rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.9rem;
}

.stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  color: #4d6287;
  font-size: 0.82rem;
}

.hero-panel {
  background: linear-gradient(160deg, #0e1f42 0%, #091327 100%);
  color: #dbeafe;
  border-radius: 20px;
  border: 1px solid rgba(147, 197, 253, 0.25);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem;
}

.float-card {
  animation: float 4.8s ease-in-out infinite;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.panel-head p {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #bfdbfe;
}

.panel-head span {
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(191, 219, 254, 0.2);
}

.panel-list li:last-child {
  border-bottom: none;
}

.panel-list strong {
  display: block;
  color: #fff;
}

.panel-list small {
  color: #c7dbff;
}

.panel-cta {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.panel-cta small {
  color: #b2cbf7;
  font-size: 0.8rem;
}

.brand-strip {
  padding: 0.85rem 0;
  border-block: 1px solid #d9e5fa;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.brand-strip-inner p {
  margin: 0;
  color: #4f6897;
  font-weight: 700;
  font-size: 0.85rem;
}

.brand-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brand-strip li {
  border: 1px solid #d3e2fb;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  font-size: 0.84rem;
  color: #254273;
  background: #fff;
}

.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #9fc2ff;
}

.shine-card {
  position: relative;
  overflow: hidden;
}

.shine-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -120%;
  width: 110%;
  height: 280%;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 255, 255, 0.45) 45%,
    transparent 65%
  );
  transform: rotate(8deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.shine-card:hover::after {
  left: 120%;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(130deg, #dbeafe, #c4d9ff);
  color: #173571;
  font-size: 0.87rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

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

.service-card p {
  margin: 0;
  color: #586b8d;
}

.plans {
  background: linear-gradient(180deg, #edf4ff 0%, #f9fbff 100%);
}

.marquee-band {
  border-block: 1px solid #d8e5fb;
  background: #fff;
  overflow: hidden;
  padding: 0.75rem 0;
}

.marquee-track {
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-block;
  margin-right: 1.25rem;
  color: #31518a;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.service-pillars {
  background: linear-gradient(180deg, #eaf2ff 0%, #f9fbff 100%);
}

.service-deep {
  background: #fff;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insight-card {
  background: #fff;
  border: 1px solid #d9e7fd;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.insight-card h3 {
  margin: 0 0 0.5rem;
}

.insight-card p {
  margin: 0 0 0.75rem;
  color: #5c7194;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  background: #fff;
  border: 1px solid #d9e7fe;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: var(--shadow-md);
}

.pillar-card h3 {
  margin: 0 0 0.4rem;
}

.pillar-card p {
  margin: 0;
  color: #5b7094;
}

.alert-band {
  background: linear-gradient(120deg, #091735, #123874);
  color: #deebff;
  padding: 1rem 0;
}

.alert-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.alert-inner p {
  margin: 0;
}

.service-areas {
  background: #fff;
}

.coverage-depth {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.location-card {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 1px solid #d7e5fb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: #8cb3f7;
  text-decoration: none;
}

.location-card h3 {
  margin: 0 0 0.35rem;
  color: #152b4d;
}

.location-card p {
  margin: 0;
  color: #5b7092;
  font-size: 0.93rem;
}

.plan-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  background: #fff;
  border: 1px solid #d6e5ff;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
}

.plan-card h3 {
  margin: 0;
}

.plan-price {
  margin: 0.45rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 2rem;
}

.plan-price span {
  font-family: var(--font);
  font-size: 0.95rem;
  color: #5f7497;
}

.plan-card ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1rem;
  color: #5a6f92;
  display: grid;
  gap: 0.35rem;
}

.plan-card-featured {
  border-color: #80aefc;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  transform: translateY(-10px);
}

.plan-tag {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.23rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  color: #fff;
  background: linear-gradient(140deg, #2563eb, #22d3ee);
}

.results-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
}

.results-copy p {
  color: var(--ink-soft);
}

.check-list {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  background: #fff;
  border: 1px solid #d8e6fe;
  border-radius: 12px;
  padding: 0.62rem 0.85rem;
  font-weight: 600;
  color: #2a426f;
}

.result-metrics {
  display: grid;
  gap: 0.9rem;
}

.result-metrics article {
  background: #fff;
  border: 1px solid #d8e6fe;
  border-radius: 14px;
  padding: 1.1rem;
}

.result-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.18rem;
}

.result-metrics span {
  color: #5a6f92;
}

.reviews {
  background: #fff;
}

.testimonial-shell {
  border: 1px solid #d6e5ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
}

.testimonial {
  display: none;
}

.testimonial.is-active {
  display: block;
  animation: fade 0.35s ease;
}

.testimonial p {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  color: #2c416a;
}

.testimonial h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #5d7398;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #c5d8fa;
  cursor: pointer;
}

.dot.is-active {
  background: #2563eb;
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.process-grid li {
  background: #fff;
  border: 1px solid #dbe7fd;
  border-radius: 14px;
  padding: 1rem;
}

.process-grid span {
  font-family: var(--font-display);
  color: #2563eb;
  font-size: 1.45rem;
}

.process-grid h3 {
  margin: 0.45rem 0 0.4rem;
}

.process-grid p {
  margin: 0;
  color: #5e7398;
  font-size: 0.94rem;
}

.brand-proof {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  border: 1px solid #d8e6fc;
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.proof-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.proof-card p {
  margin: 0;
  color: #5b7094;
  font-size: 0.93rem;
}

.faq {
  background: #fff;
}

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

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #d8e6fc;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #223b66;
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: #5b7094;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.4rem, 7vw, 5rem) 0;
  background: linear-gradient(150deg, #f7fbff 0%, #ecf4ff 55%, #f7fbff 100%);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 62ch;
  color: #5e7296;
}

.crumb {
  display: inline-flex;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #5672a4;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.local-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.local-card {
  background: #fff;
  border: 1px solid #d8e6fc;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.local-card h3 {
  margin: 0 0 0.45rem;
}

.local-list {
  margin: 0;
  padding-left: 1rem;
  color: #576d92;
  display: grid;
  gap: 0.35rem;
}

.local-neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.local-neighborhoods span {
  border: 1px solid #d7e5fb;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: #f8fbff;
  color: #45689f;
  font-size: 0.82rem;
}

.location-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.location-links-grid a {
  border: 1px solid #d7e5fb;
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-band {
  color: #d8e8ff;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 40%),
    linear-gradient(140deg, #0a1330 0%, #102755 60%, #17356d 100%);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
}

.cta-inner p {
  margin: 0;
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cta-band .btn-outline {
  color: #fff;
  border-color: rgba(203, 225, 255, 0.6);
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid #dce8ff;
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin: 0 0 0.95rem;
}

.contact-detail {
  margin-bottom: 0.85rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #58709b;
  margin-bottom: 0.2rem;
}

.contact-hours {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid #dde8fd;
  color: #4f6590;
}

.contact-hours strong {
  display: block;
  color: #1f3254;
  margin-bottom: 0.24rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #47608b;
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cfddf9;
  background: #fbfdff;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.72rem 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.3);
  border-color: #82aef9;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: #60769a;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  background: linear-gradient(140deg, #f97316, #ea580c);
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 16px 24px -14px rgba(234, 88, 12, 0.7);
}

.floating-call:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer {
  background: #08122a;
  color: #bed3f7;
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  margin-bottom: 0.6rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer a {
  color: #d4e5ff;
}

.copyright {
  justify-self: end;
  font-size: 0.86rem;
  color: #9fb8e5;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled [data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .results-grid,
  .contact-grid,
  .local-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .plan-grid,
  .service-grid-large,
  .insight-grid,
  .policy-grid,
  .proof-grid,
  .location-grid,
  .location-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: fixed;
    inset: 105px 1rem auto 1rem;
    border-radius: 14px;
    border: 1px solid #dbe7fd;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav-cta {
    border-top: 1px solid #dce8fd;
    padding-top: 0.7rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .service-grid,
  .plan-grid,
  .service-grid-large,
  .insight-grid,
  .policy-grid,
  .process-grid,
  .form-row,
  .location-grid,
  .proof-grid,
  .faq-grid,
  .local-neighborhoods,
  .location-links-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-controls {
    flex-wrap: wrap;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
