:root {
  --bg: #f7fafc;
  --paper: #ffffff;
  --ink: #0c1b2a;
  --muted: #5c6b7a;
  --line: #d8e1ea;
  --blue: #1477e0;
  --blue-dark: #0b4f99;
  --navy: #0b1725;
  --steel: #eaf1f7;
  --shadow: 0 24px 70px rgba(11, 23, 37, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 225, 234, 0.78);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 44px;
}

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

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: end;
}

.nav-links a {
  align-items: center;
  color: #26394b;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  min-height: 44px;
}

.header-call,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-call,
.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 119, 224, 0.22);
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.light {
  background: #ffffff;
  color: var(--blue-dark);
}

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

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(20, 119, 224, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 78px);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px) 76px;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: -0.05em;
  line-height: 0.94;
  margin: 0;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quick-pay-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(11, 23, 37, 0.1);
  margin-top: 22px;
  padding: 18px;
}

.quick-pay-panel strong {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}

.quick-pay-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #274056;
  font-size: 14px;
  font-weight: 750;
  padding: 15px 16px;
}

.hero-media {
  align-self: center;
  min-height: 620px;
  position: relative;
}

.hero-media::before {
  background-image:
    linear-gradient(rgba(20, 119, 224, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 119, 224, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 32px 0 0 48px;
  opacity: 0.55;
  position: absolute;
}

.hero-media img {
  aspect-ratio: 0.86;
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: min(70vh, 680px);
  object-fit: cover;
  position: relative;
  width: 100%;
}

.photo-home-workbench {
  object-position: 48% 48%;
}

.photo-server-hardware {
  object-position: 56% 44%;
}

.photo-open-mac {
  object-position: 52% 48%;
}

.photo-data-recovery {
  object-position: 56% 52%;
}

.photo-recovery-mac {
  object-position: 50% 46%;
}

.photo-network-server {
  object-position: 48% 42%;
}

.availability-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 54px;
  box-shadow: var(--shadow);
  left: -36px;
  max-width: 300px;
  padding: 20px;
  position: absolute;
}

.availability-card strong,
.availability-card span {
  display: block;
}

.availability-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.availability-card span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.service-strip {
  background: var(--navy);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px);
}

.service-strip article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 290px;
  padding: 34px 28px;
}

.service-strip article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.service-strip span {
  color: #7fb9ff;
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 62px;
}

.service-strip h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

.service-strip p {
  color: #c4d1dd;
  line-height: 1.6;
  margin: 16px 0 0;
}

.text-link {
  color: #9fcbff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  margin-top: 22px;
}

.landing-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(20, 119, 224, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.landing-hero.urgent {
  background:
    radial-gradient(circle at 84% 18%, rgba(20, 119, 224, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fbfd 0%, #eaf1f7 100%);
}

.landing-copy {
  align-self: center;
  max-width: 780px;
}

.landing-copy h1 {
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
}

.landing-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 720px;
}

.landing-proof {
  margin-top: 34px;
}

.landing-media {
  align-self: center;
  position: relative;
}

.landing-media::before {
  background-image:
    linear-gradient(rgba(20, 119, 224, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 119, 224, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 24px -22px -22px 46px;
  opacity: 0.55;
  position: absolute;
}

.landing-media img {
  aspect-ratio: 1.02;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  position: relative;
  width: 100%;
}

.content-grid {
  background: #ffffff;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.content-grid h2,
.process-section h2,
.faq-section h2 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.content-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0 0;
}

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

.problem-list span {
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #213446;
  font-size: 16px;
  font-weight: 750;
  padding: 17px;
}

.process-section {
  padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

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

.process-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.process-grid span {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.process-grid h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 28px 0 0;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 12px 0 0;
}

.faq-section {
  background: #ffffff;
  padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.faq-section details {
  border-bottom: 1px solid var(--line);
  max-width: 980px;
  padding: 22px 0;
}

.faq-section details:first-of-type {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

.faq-section summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.faq-section p {
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 780px;
}

.conversion-band,
.emergency {
  align-items: center;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 42px clamp(20px, 5vw, 72px);
}

.conversion-band h2,
.emergency h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}

.conversion-band p,
.emergency p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 790px;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.split-section,
.contact-section {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.image-panel img {
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.split-copy {
  align-self: center;
}

.split-copy h2,
.section-heading h2,
.contact-section h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.split-copy p,
.section-heading p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0 0;
}

.check-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.check-grid span {
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 750;
  padding: 16px;
}

.reviews {
  background: #ffffff;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

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

.review-grid figure {
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: 28px;
}

.review-grid blockquote {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.42;
  margin: 0;
}

.review-grid figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  margin-top: 28px;
}

.payment-section {
  background: var(--background);
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.payment-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.payment-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.payment-price {
  align-items: center;
  background: rgba(20, 119, 224, 0.1);
  border-radius: 999px;
  color: var(--blue-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  min-height: 34px;
  padding: 0 14px;
}

.payment-grid h3 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 18px 0 12px;
}

.payment-grid p {
  color: var(--muted);
  font-size: 17px;
  min-height: 58px;
}

.payment-link-missing::after {
  content: " pending";
  font-size: 0.72rem;
  opacity: 0.72;
}

.emergency {
  background: var(--navy);
}

.contact-list {
  border-top: 1px solid var(--line);
  margin: 34px 0 0;
  padding: 0;
}

.contact-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 128px 1fr;
  padding: 18px 0;
}

.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
}

.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.lead-form label {
  color: #2c3c4b;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .button {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

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

.site-footer {
  align-items: center;
  background: #07111d;
  color: #d6e0e9;
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

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

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 20px 0 6px;
  }

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

  .header-call {
    justify-self: end;
  }

  .hero,
  .landing-hero,
  .content-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    aspect-ratio: 1.16;
    height: auto;
  }

  .landing-media img {
    aspect-ratio: 1.2;
  }

  .availability-card {
    bottom: 20px;
    left: 20px;
  }

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

  .conversion-band,
  .emergency {
    align-items: start;
    flex-direction: column;
  }

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

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

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero {
    padding: 44px 18px 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-pay-panel div,
  .band-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-list,
  .service-strip,
  .problem-list,
  .process-grid,
  .review-grid,
  .payment-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    padding: 0 18px;
  }

  .service-strip article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 0;
    padding: 28px 0;
  }

  .service-strip article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-strip span {
    margin-bottom: 28px;
  }

  .conversion-band,
  .emergency,
  .content-grid,
  .process-section,
  .faq-section,
  .split-section,
  .reviews,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}
