:root {
  --navy: #0b2e4a;
  --ink: #123246;
  --muted: #5f7080;
  --teal: #0f8b8d;
  --gold: #d7a44a;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --line: #d9e5eb;
  --shadow: 0 18px 44px rgba(11, 46, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(170px, 22vw, 250px);
  height: auto;
  display: block;
}

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a,
.header-cta {
  text-decoration: none;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.header-phone {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px) clamp(36px, 5vw, 72px);
}

.hero-copy,
.section,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy,
.hero-media,
.split > *,
.pricing-panel > *,
.booking > *,
.steps > *,
.service-list > *,
.electronics-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #344b5c;
  font-size: clamp(1.12rem, 1.9vw, 1.36rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(15, 139, 141, 0.24);
}

.button.primary:hover {
  background: #0a797b;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: 54% center;
  background: #f5f8fa;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 810px;
  margin-bottom: 30px;
}

.how {
  border-top: 1px solid var(--line);
}

.steps,
.electronics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article,
.service-list article,
.electronics-grid article,
.price-box,
.booking,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps article,
.service-list article,
.electronics-grid article {
  padding: 22px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--mist);
  max-width: none;
}

.split > * {
  max-width: 580px;
}

.split > .service-list {
  max-width: 720px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.electronics {
  background: #fff;
}

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

.pricing {
  max-width: none;
  background: var(--navy);
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  color: #dfeaf0;
}

.pricing h2,
.pricing .eyebrow {
  color: #fff;
}

.pricing .eyebrow {
  color: #89dcdf;
}

.price-box {
  padding: 26px;
  color: var(--ink);
  background: #fff;
}

.price-box span {
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 4rem;
  line-height: 1;
}

.price-box hr {
  height: 1px;
  margin: 18px 0;
  border: 0;
  background: var(--line);
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
  background: var(--mist);
}

.booking-intro a {
  color: var(--teal);
  font-weight: 800;
}

.intake-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intake-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.97rem;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.intake-form textarea {
  resize: vertical;
}

.form-row-checks {
  grid-template-columns: 1fr;
  gap: 8px;
}

.intake-form .check {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
}

.intake-form .check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.intake-form button {
  justify-self: start;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-success {
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.form-success a {
  color: var(--teal);
  font-weight: 800;
}

.faq {
  padding-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 64px) 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 210px;
  max-width: 48vw;
}

.site-footer p {
  margin: 0 0 4px;
}

.footer-info a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

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

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero,
  .split,
  .pricing-panel,
  .booking {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

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

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand img {
    width: min(56vw, 190px);
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .header-phone {
    display: none;
  }

  .intake-form button {
    width: 100%;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.6rem);
  }

  .lead {
    font-size: 1.04rem;
    max-width: 30ch;
  }

  .hero-media img {
    aspect-ratio: 1.08;
    object-position: 63% center;
  }

  .hero-media {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .quick-facts,
  .steps,
  .service-list,
  .electronics-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }
}
