:root {
  --ink: #101828;
  --muted: #5b6472;
  --line: #d9e0ea;
  --soft: #f5f8fc;
  --soft-blue: #e9f2ff;
  --blue: #0b63f6;
  --blue-dark: #063a9b;
  --aqua: #13b8c2;
  --gold: #f4b740;
  --white: #ffffff;
  --navy: #071a3d;
  --shadow: 0 22px 70px rgba(10, 31, 68, .16);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img, video, iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 6.5vw, 4.85rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.95rem);
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.glow-text,
.blue-glow {
  display: inline-block;
  color: #21b9ff;
  background: linear-gradient(92deg, #79e8ff 0%, #1fa8ff 44%, #0b63f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(33, 185, 255, .58)) drop-shadow(0 0 30px rgba(11, 99, 246, .28));
}

.home-title {
  text-shadow: 0 0 26px rgba(11, 99, 246, .34), 0 8px 34px rgba(0, 0, 0, .48);
}

.home-title .glow-text {
  filter: drop-shadow(0 0 14px rgba(121, 232, 255, .86)) drop-shadow(0 0 38px rgba(11, 99, 246, .56));
}

.standards-section .blue-glow,
.included-section .blue-glow {
  background: linear-gradient(92deg, #d7fbff 0%, #54d5ff 42%, #2a8cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(84, 213, 255, .68)) drop-shadow(0 0 32px rgba(42, 140, 255, .36));
}

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

.narrow {
  width: min(900px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(217, 224, 234, .8);
  box-shadow: 0 12px 32px rgba(10, 31, 68, .08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  color: var(--white);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
}

.site-header.is-scrolled .nav-menu {
  color: var(--ink);
}

.nav-menu a,
.nav-services summary {
  opacity: .92;
  cursor: pointer;
}

.nav-menu a:hover,
.nav-services summary:hover {
  opacity: 1;
  color: var(--aqua);
}

.nav-services {
  position: relative;
}

.nav-services summary {
  list-style: none;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: min(640px, 86vw);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .25rem;
  padding: .75rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-dropdown a {
  padding: .65rem .75rem;
  border-radius: 6px;
  font-size: .86rem;
}

.nav-dropdown a:hover {
  background: var(--soft-blue);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .85rem;
  color: var(--white);
}

.site-header.is-scrolled .nav-actions {
  color: var(--ink);
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(11, 99, 246, .28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
}

.site-header.is-scrolled .btn-ghost,
.contact-section .btn-ghost,
.split-section .btn-ghost,
.service-preview .btn-ghost {
  color: var(--blue-dark);
  border-color: rgba(11, 99, 246, .35);
  background: rgba(11, 99, 246, .06);
}

.btn-small {
  min-height: 44px;
  padding: .7rem 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  color: var(--white);
}

.hero,
.sub-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.sub-hero {
  min-height: 72vh;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.sub-hero h1 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.7vw, 4.1rem);
}

.home-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 25, .76), rgba(5, 12, 25, .42) 42%, rgba(5, 12, 25, .82)),
    radial-gradient(circle at 20% 25%, rgba(19, 184, 194, .28), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  text-align: center;
}

.hero-content h1,
.hero-content p {
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.hero-content > p:not(.hero-kicker) {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, .87);
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
  padding: .48rem .85rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--soft-blue);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-content .cta-row {
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin: 4rem auto 0;
}

.hero-stats div {
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .76);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.breadcrumbs {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-strip {
  background: var(--navy);
  color: var(--white);
}

.strip-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 1rem;
  font-weight: 750;
}

.strip-grid span,
.strip-grid a {
  color: var(--white);
}

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

.split-grid,
.standards-grid,
.contact-grid,
.included-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-grid p,
.standards-grid p,
.contact-grid p {
  font-size: 1.06rem;
}

.rounded-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack {
  position: relative;
}

.experience-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(220px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.experience-badge.light {
  background: rgba(255, 255, 255, .94);
}

.experience-badge strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.experience-badge span {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0;
}

.feature-list div {
  padding-left: 1rem;
  border-left: 4px solid var(--aqua);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  display: block;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-preview,
.expertise-section,
.related-section {
  background: var(--soft);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(10, 31, 68, .08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  padding: 1.25rem;
}

.service-card p {
  margin-top: .75rem;
}

.text-link {
  display: inline-flex;
  margin-top: .5rem;
  color: var(--blue);
  font-weight: 800;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.center-actions.left {
  justify-content: flex-start;
}

.standards-section,
.included-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 61, .96), rgba(6, 58, 155, .94)),
    var(--navy);
}

.standards-section h2,
.standards-section h3,
.standards-section p,
.included-section h2,
.included-section h3,
.included-section p {
  color: var(--white);
}

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

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

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: inherit;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--gold);
}

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

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

.process-step,
.feature-card,
.mini-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.process-step p,
.feature-card p,
.mini-card p {
  margin-top: .75rem;
  margin-bottom: 0;
}

.detail-section {
  background: var(--white);
}

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

.detail-grid h3 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.reviews-band {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--white);
}

.areas-home-section,
.areas-map-section,
.local-calls-section {
  background: var(--white);
}

.areas-home-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.area-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.6rem;
}

.area-pill {
  display: grid;
  gap: .2rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.area-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 99, 246, .36);
  background: var(--soft-blue);
}

.area-pill span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.area-pill strong {
  color: var(--ink);
  font-size: 1rem;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.map-link {
  margin: 1rem 1.2rem 1.2rem;
}

.reviews-band h2 {
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.lc_reviews_widget {
  display: block;
  min-height: 430px;
  border: 0;
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem;
  font-weight: 850;
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
}

.contact-section {
  background: var(--soft-blue);
}

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

.contact-list li {
  display: grid;
  gap: .2rem;
  padding: 1rem;
  border-left: 4px solid var(--blue);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-list strong {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-list a {
  color: var(--blue-dark);
  font-weight: 850;
}

.form-shell {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-shell h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.stats-section {
  padding: 3rem 0;
  background: var(--navy);
  color: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  text-align: center;
}

.stat-grid div {
  padding: 1rem;
}

.stat-grid strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.stat-grid span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, .78);
  background: #061226;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--white);
}

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

.site-footer a {
  color: rgba(255, 255, 255, .9);
}

.site-footer a:hover {
  color: var(--aqua);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    color: var(--white);
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-scrolled .menu-toggle {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
  }

  .nav-menu,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    align-items: stretch;
    background: var(--white);
    color: var(--ink);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open,
  .nav-actions.is-open {
    display: grid;
    gap: .75rem;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: .7rem;
    box-shadow: none;
  }

  .phone-link,
  .nav-actions .btn {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero,
  .sub-hero {
    min-height: 82vh;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1,
  .hero-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .cta-row {
    justify-content: flex-start;
  }

  .hero-stats,
  .strip-grid,
  .split-grid,
  .standards-grid,
  .contact-grid,
  .included-grid,
  .detail-grid,
  .section-heading,
  .footer-grid,
  .areas-home-grid,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .feature-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .area-pill-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe,
  .map-section iframe {
    height: 360px;
  }

  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 0 .45rem;
    border-right: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats strong {
    font-size: 1.55rem;
  }

  .hero-stats span {
    font-size: .62rem;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    width: min(100% - 24px, 1220px);
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: .96rem;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .form-shell {
    padding: .75rem;
  }
}
