:root {
  --ink: #101820;
  --muted: #526171;
  --line: #dbe4ea;
  --surface: #f5f8fa;
  --white: #ffffff;
  --blue: #0a67b1;
  --blue-dark: #063d74;
  --teal: #0f8f84;
  --amber: #d98b21;
  --shadow: 0 18px 48px rgba(13, 31, 45, 0.18);
}

* {
  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;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(6, 22, 35, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-mark {
  flex: 0 0 auto;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 7px;
}

.brand-name {
  max-width: min(36vw, 320px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.header-action {
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 76px) 80px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/photos/Laptop motherboard repair 1.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 16, 28, 0.92), rgba(5, 18, 30, 0.63) 48%, rgba(5, 18, 30, 0.2)),
    linear-gradient(0deg, rgba(5, 16, 28, 0.88), rgba(5, 16, 28, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(770px, 100%);
  color: var(--white);
}

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

.hero .eyebrow,
.contact-band .eyebrow {
  color: #73e1d2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 124px;
  padding: 28px clamp(18px, 4vw, 42px);
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.04rem;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
}

.section {
  padding: clamp(70px, 8vw, 108px) clamp(20px, 6vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

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

.service-card,
.process-step {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.service-card-body {
  padding: 22px;
}

.service-card-body p,
.coverage-list,
.feature-copy p,
.process-step p,
.contact-band p,
.form-note {
  color: var(--muted);
}

.coverage-panel {
  margin-top: 18px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.coverage-list li {
  position: relative;
  min-height: 40px;
  padding: 10px 12px 10px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 750;
}

.coverage-list li::before {
  position: absolute;
  top: 11px;
  left: 13px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--blue-dark);
}

.feature-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  max-width: 620px;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "✓";
  color: #72e1d2;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #111;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(8, 18, 27, 0.72);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.process {
  background: var(--surface);
}

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

.process-step {
  padding: 26px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(70px, 8vw, 108px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(rgba(5, 18, 30, 0.86), rgba(5, 18, 30, 0.88)),
    url("assets/photos/Thumb Print reader.jpeg") center / cover;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #314252;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.lightbox {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 12, 20, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1040px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  font-size: 1.3rem;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 76px);
  color: #6a7784;
  background: #091622;
}

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

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .trust-strip,
  .service-grid,
  .coverage-list,
  .process-grid,
  .feature-band,
  .contact-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand-name {
    max-width: 68vw;
    white-space: normal;
    line-height: 1.12;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 156px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
