:root {
  --black: #07090d;
  --black-2: #0d1118;
  --blue: #0877e8;
  --blue-bright: #1593ff;
  --white: #f4f6f9;
  --muted: #aab3bf;
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { font-size: 18px; }
.brand small {
  display: block;
  color: #dfe5ec;
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: -3px;
}
nav { display: flex; align-items: center; gap: 26px; font-weight: 700; }
nav a:not(.nav-cta) { color: #e7ebef; }
nav a:not(.nav-cta):hover { color: var(--blue-bright); }
.nav-cta {
  background: var(--blue);
  padding: 11px 18px;
  border-radius: 5px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 45%, rgba(0,0,0,.25) 100%),
    url("images/hero-repair.jpg") center/cover;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; padding-top: 70px; max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 2.8px;
  font-weight: 900;
}
.eyebrow.blue { color: var(--blue); }
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--blue-bright); }
.hero-copy {
  max-width: 650px;
  color: #d6dbe2;
  font-size: 19px;
  margin: 28px 0 34px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 5px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: #fff; }
.button.primary:hover { background: var(--blue-bright); }
.button.secondary { border: 1px solid rgba(255,255,255,.55); background: rgba(0,0,0,.2); }
.button.large { min-width: 210px; font-size: 17px; }

.trust-strip { background: var(--blue); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid div {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.25);
  text-align: center;
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 16px; }
.trust-grid span { font-size: 13px; opacity: .85; }

.section { padding: 100px 0; background: #11161d; color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .about-copy h2, .cta-section h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
}
.section-heading p:last-child { color: #aab3bf; font-size: 18px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: #181e26;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.service-card:hover { border-color: rgba(8,119,232,.55); }
.service-icon {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.service-card h3 { font-size: 23px; margin: 14px 0 8px; color: #fff; }
.service-card p { margin: 0; color: #aab3bf; }

.dark-section {
  background: var(--black);
  color: var(--white);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.photo-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-copy p:not(.eyebrow) { color: #aeb6c1; font-size: 17px; }
.about-copy .button { margin-top: 16px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 7px;
  transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.015); }

.cta-section {
  background: linear-gradient(135deg, #07111f, #0a1d34);
  padding: 75px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta-section h2 { color: #fff; }
.cta-section p:not(.eyebrow) { color: #aeb8c5; margin: 0; }

.footer { background: #030508; color: #dfe4ea; padding: 45px 0 22px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-brand { display: flex; gap: 15px; align-items: center; }
.footer-brand img { width: 65px; height: 65px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 14px; }
.footer-brand span { color: #7f8995; font-size: 12px; }
.footer-contact { text-align: right; }
.footer-contact a { color: var(--blue-bright); font-weight: 900; display: block; }
.footer-contact span { color: #7f8995; font-size: 12px; }
.copyright {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: #69727e;
  font-size: 11px;
}

@media (max-width: 850px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 680px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 45px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 78px; }
  .nav { min-height: 88px; }
  .brand { gap: 9px; min-width: 0; }
  .brand img { width: 64px; height: 64px; flex: 0 0 auto; }
  .brand span { font-size: 15px; letter-spacing: .7px; white-space: nowrap; }
  .brand small { font-size: 7.5px; letter-spacing: 1.45px; }
  .nav-cta { padding: 11px 14px; font-size: 13px; white-space: nowrap; }
  .hero { min-height: 690px; background-position: 62% center; }
  .hero h1 { font-size: 48px; }
  .hero-copy { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .services-grid, .gallery { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
}


/* Added: How It Works */
.process-section { background: #0d1218; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card {
  background: #181e26;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(10,20,30,.05);
}
.process-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.process-card h3 {
  font-size: 22px;
  margin: 13px 0 8px;
}
.process-card p {
  color: #aab3bf;
  margin: 0;
}

/* Slightly larger desktop branding and primary navigation CTA */
@media (min-width: 851px) {
  .nav { min-height: 128px; }
  .brand { gap: 18px; }
  .brand img { width: 96px; height: 96px; }
  .brand span { font-size: 25px; letter-spacing: 1.2px; }
  .brand small { font-size: 11px; letter-spacing: 2.5px; }
  nav { gap: 32px; font-size: 16px; }
  .nav-cta { padding: 15px 25px; font-size: 16px; }
}

.footer-contact small {
  display: block;
  color: #66717d;
  font-size: 10px;
  margin-top: 5px;
}

@media (max-width: 850px) {
  .process-grid { grid-template-columns: 1fr; }
}


/* Contact + diagnostic sections */
.contact-section { background: #11161d; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.contact-grid > div:first-child p:not(.eyebrow),
.diagnostic-inner > div:last-child p {
  color: #aab3bf;
  font-size: 17px;
}
.contact-cards { display: grid; gap: 12px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: #181e26;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8,119,232,.65);
}
.contact-card span {
  color: var(--blue-bright);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
}
.contact-card strong { font-size: 18px; color: #fff; }

.diagnostic-section { background: #0d1218; }
.diagnostic-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.diagnostic-inner h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; }
.diagnostic-inner strong { color: #fff; }

@media (max-width: 850px) {
  .contact-grid, .diagnostic-inner { grid-template-columns: 1fr; gap: 35px; }
  nav a:not(.nav-cta) { display: none; }
  /* Keep email accessible in the compact header through the CTA; contact section has full email. */
}


.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.social-links {
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2px;
  background: #181e26;
}
.social-links a:hover {
  border-color: var(--blue);
  background: #202a35;
  color: #fff;
}


.social-feature {
  padding: 20px 24px;
  border: 1px solid rgba(8,119,232,.32);
  border-radius: 8px;
  background: linear-gradient(135deg, #17212c, #131a22);
}
.social-feature > span {
  display: block;
  color: var(--blue-bright);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 10px;
}
.social-feature > div { display: flex; gap: 10px; flex-wrap: wrap; }
.social-feature-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.social-feature-link:hover { background: var(--blue-bright); }
