:root {
  --navy: #071a2d;
  --navy-2: #0d2740;
  --blue: #0575d9;
  --blue-2: #0aa0e8;
  --yellow: #f7c948;
  --ink: #122033;
  --muted: #64748b;
  --line: #dbe4ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 26, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.demo-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.42rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.brand strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.section-pad {
  padding: clamp(4rem, 7vw, 7.5rem) 4vw;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 105px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(5, 117, 217, 0.08), transparent 42%),
    linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 42vw;
  max-height: 560px;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 117, 217, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 117, 217, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent, #000);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.local-proof,
.section-label {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.35rem;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 640px;
  color: #40536a;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 6px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(5, 117, 217, 0.26);
}

.btn-primary:hover {
  background: #0465ba;
}

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

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

.icon,
.card-icon {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.phone::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  content: "☎";
  font-size: 0.92rem;
  line-height: 1;
}

.hero-facts {
  margin: 2rem 0 0;
}

.hero-facts div {
  min-width: 128px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background:
    linear-gradient(135deg, rgba(5, 117, 217, 0.06), transparent 45%),
    var(--white);
}

.hero-card-copy {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem;
  border-top: 4px solid var(--yellow);
}

.hero-card-copy strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-card-copy span {
  color: var(--muted);
}

.service-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.85rem;
}

.service-rail span {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(7, 26, 45, 0.2);
}

.urgent-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 4vw;
  background: var(--navy);
  color: var(--white);
}

.urgent-band h2 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.urgent-band p {
  max-width: 830px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -0.6rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

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

.service-card,
.review-grid article,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 230px;
  padding: 1.35rem;
}

.service-card p,
.review-grid p,
.faq-grid p {
  color: var(--muted);
}

.card-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.1rem;
  border-radius: 6px;
  background: rgba(5, 117, 217, 0.1);
  color: var(--blue);
}

.bolt::before,
.tools::before,
.charger::before,
.shield::before,
.network::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  font-size: 1rem;
  font-weight: 900;
}

.bolt::before {
  content: "⚡";
}

.tools::before {
  content: "⌁";
}

.charger::before {
  content: "⏚";
}

.shield::before {
  content: "✓";
}

.network::before {
  content: "⌬";
}

.service-card-cta {
  background: var(--navy);
  color: var(--white);
}

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

.service-card-cta p {
  opacity: 0.78;
}

.service-card-cta a {
  color: var(--yellow);
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--soft);
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

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

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #334155;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1rem;
  text-align: center;
}

.reputation {
  background: var(--white);
}

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

.review-grid article {
  padding: 1.35rem;
}

.stars {
  color: #f2b705;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.review-grid span {
  display: block;
  color: var(--navy);
  font-weight: 850;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background: var(--navy);
  color: var(--white);
}

.area-section h2 {
  color: var(--white);
}

.area-section p:not(.section-label) {
  color: rgba(255, 255, 255, 0.76);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-list span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

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

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

.faq-grid details {
  padding: 1.2rem 1.25rem;
}

.faq-grid summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.faq-grid p {
  margin: 0.8rem 0 0;
}

.contact-section {
  padding: 4vw;
  background: linear-gradient(135deg, #071a2d, #0d3152);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

address {
  display: grid;
  gap: 0.65rem;
  font-style: normal;
}

address a,
address span {
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 4vw;
  background: #061421;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.mobile-cta {
  display: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 4vw;
  background:
    linear-gradient(120deg, rgba(5, 117, 217, 0.08), transparent 45%),
    linear-gradient(180deg, var(--white), #f8fbff);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

.page-hero p:not(.local-proof) {
  max-width: 760px;
  color: #40536a;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
}

.page-aside {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-aside strong {
  color: var(--navy);
  font-size: 1.22rem;
}

.page-aside span {
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  background: var(--soft);
  color: #334155;
  font-weight: 800;
}

.image-aside {
  overflow: hidden;
  padding: 0;
}

.image-aside img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.process-section {
  padding: clamp(4rem, 7vw, 7rem) 4vw;
  background: var(--navy);
  color: var(--white);
}

.process-section h2 {
  max-width: 900px;
  color: var(--white);
}

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

.process-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid article span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
}

.process-grid h3 {
  color: var(--navy);
}

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

.process-section .process-grid article {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.process-section .process-grid h3 {
  color: var(--white);
}

.process-section .process-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-methods > a,
.contact-methods > span {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-methods strong {
  color: var(--navy);
}

.contact-methods > span span,
.contact-methods a span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form h2 {
  margin-bottom: 0.3rem;
  font-size: 1.55rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.page-area {
  margin: 0;
}

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

.article-grid article {
  display: grid;
  gap: 0.75rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-grid article:first-child {
  grid-row: span 2;
  background: var(--navy);
  color: var(--white);
}

.article-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.article-grid article:first-child h2 {
  color: var(--white);
}

.article-grid p {
  color: var(--muted);
}

.article-grid article:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.article-grid a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 19px;
    height: 2px;
    background: var(--navy);
  }

  .main-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.7rem);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 0.85rem;
  }

  .hero,
  .split-section,
  .area-section,
  .contact-card,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
  }

  .section-heading,
  .service-grid,
  .review-grid,
  .faq-grid,
  .process-grid,
  .contact-methods,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading .section-label {
    grid-column: auto;
  }

  .urgent-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section-pad {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .urgent-band .btn,
  .split-copy .btn {
    width: 100%;
  }

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

  .service-rail {
    justify-content: flex-start;
  }

  .section-heading,
  .service-grid,
  .review-grid,
  .faq-grid,
  .process-grid,
  .contact-methods,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-grid article:first-child {
    grid-row: auto;
  }

  .service-card {
    min-height: 0;
  }

  .contact-section,
  .urgent-band {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  address a,
  address span {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 2rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--navy);
  }

  .mobile-cta a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--blue);
  }
}
