:root {
  --ink: #07111f;
  --ink-soft: #11233b;
  --blue: #1685ff;
  --blue-bright: #4ba7ff;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #9babc0;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  height: 76px;
  padding: 0 clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 8px; color: var(--blue-bright); font-size: 13px; letter-spacing: -.04em; }
nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
nav a { text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-call { padding: 10px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }

.hero { min-height: 760px; height: min(86vh, 900px); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,10,20,.98) 0%, rgba(3,10,20,.88) 37%, rgba(3,10,20,.26) 73%, rgba(3,10,20,.48) 100%), linear-gradient(0deg, rgba(7,17,31,.7), transparent 40%); }
.hero-content { position: relative; z-index: 2; width: min(680px, 88vw); margin-left: clamp(24px, 8vw, 130px); padding-top: 58px; }
.eyebrow { margin: 0 0 16px; color: var(--blue-bright); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(48px, 6.5vw, 92px); line-height: .98; letter-spacing: -.055em; }
h1 span { color: #afc7df; font-weight: 580; }
.hero-copy { max-width: 620px; margin-bottom: 30px; color: #d1dce9; font-size: clamp(17px, 2vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 13px 22px; display: inline-flex; justify-content: center; align-items: center; border-radius: 8px; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 10px 30px rgba(22,133,255,.23); }
.button-primary:hover { background: #2991ff; }
.button-secondary { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; color: #aab8c9; font-size: 14px; }
.trust-row strong { color: white; }

.quick-strip { width: min(1160px, 92vw); margin: -44px auto 0; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; color: var(--ink); border-radius: 12px; box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.quick-strip div { min-height: 136px; padding: 28px 30px; display: grid; grid-template-columns: auto 1fr; column-gap: 15px; align-content: center; border-right: 1px solid #dbe3ed; }
.quick-strip div:last-child { border-right: 0; }
.quick-strip span { grid-row: 1 / 3; color: var(--blue); font-size: 12px; font-weight: 900; }
.quick-strip strong { font-size: 17px; }
.quick-strip small { color: #667386; font-size: 14px; }

.section { width: min(1160px, 90vw); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 700px; margin-bottom: 50px; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 5vw, 62px); line-height: 1.06; letter-spacing: -.045em; }
.section-heading > p:last-child, .proof-card > p { color: #9fb0c5; font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-number { color: var(--blue-bright); font-size: 12px; font-weight: 800; }
.service-grid h3 { margin: 54px 0 8px; font-size: 21px; }
.service-grid p { color: #9fb0c5; font-size: 15px; }

.repair-gallery { padding-top: 32px; }
.repair-gallery .section-heading { max-width: 760px; }
.repair-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.repair-photo-card { margin: 0; overflow: hidden; background: var(--ink-soft); border: 1px solid var(--line); border-radius: 16px; }
.repair-photo-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; display: block; object-fit: cover; }
.repair-photo-card figcaption { padding: 25px 25px 28px; }
.photo-label { display: block; margin-bottom: 9px; color: var(--blue-bright); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.repair-photo-card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.25; }
.repair-photo-card p { margin: 0; color: #9fb0c5; font-size: 15px; }

.seo-detail { padding-top: 30px; }
.seo-detail .section-heading { max-width: 880px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-grid p { margin: 0; color: #aebdd0; font-size: 18px; }

.proof { display: grid; grid-template-columns: 1.35fr .65fr; gap: 25px; align-items: stretch; padding-top: 40px; }
.proof-card, .rating-card { border-radius: 16px; }
.proof-card { padding: clamp(34px, 5vw, 72px); background: var(--ink-soft); }
.proof-card ul { margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; list-style: none; }
.proof-card li { position: relative; padding-left: 24px; color: #dce6f2; }
.proof-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 900; }
.rating-card { min-height: 420px; padding: 42px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--blue); }
.quote-mark { margin-bottom: auto; font: 100px/1 Georgia, serif; opacity: .35; }
.stars { letter-spacing: .12em; margin-bottom: 8px; }
.rating-card strong { font-size: 24px; }
.rating-card p { color: #e2f0ff; }
.rating-card a { font-weight: 800; text-decoration: none; }

.contact { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.contact > div:first-child > p:last-child { color: #a8b6c8; font-size: 18px; max-width: 620px; }
.contact-card { padding: 34px; background: white; color: var(--ink); border-radius: 16px; }
.contact-card > span { display: block; color: #69788b; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.phone-link { display: block; margin: 5px 0 18px; color: var(--blue); font-size: clamp(28px, 4vw, 38px); font-weight: 900; text-decoration: none; letter-spacing: -.04em; }
.contact-card p { color: #5d6c7d; }
.full { width: 100%; }

.faq { padding-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 25px 4px; cursor: pointer; font-size: 18px; font-weight: 800; list-style-position: outside; }
.faq details p { max-width: 800px; padding: 0 4px 24px; color: #9fb0c5; }

footer { padding: 34px clamp(20px, 5vw, 76px); display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid var(--line); color: #8393a8; font-size: 13px; }
footer p { margin: 0; }
.footer-brand { color: white; }
.mobile-call { display: none; }

@media (max-width: 800px) {
  .site-header { height: 66px; position: absolute; }
  nav > a:not(.nav-call) { display: none; }
  .nav-call { padding: 8px 14px; }
  .hero { height: auto; min-height: 760px; align-items: flex-end; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,10,20,.99) 8%, rgba(3,10,20,.83) 60%, rgba(3,10,20,.32) 100%); }
  .hero-content { width: auto; margin: 0; padding: 130px 22px 76px; }
  h1 { font-size: clamp(46px, 14vw, 67px); }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 8px 18px; }
  .quick-strip { margin-top: 0; width: 100%; grid-template-columns: 1fr; border-radius: 0; }
  .quick-strip div { min-height: 106px; border-right: 0; border-bottom: 1px solid #dbe3ed; }
  .section { width: min(100% - 40px, 680px); padding: 86px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 200px; }
  .service-grid h3 { margin-top: 34px; }
  .repair-gallery { padding-top: 28px; }
  .repair-photo-grid { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; width: 100%; gap: 0; padding-bottom: 0; }
  .proof-card, .rating-card { border-radius: 0; }
  .proof-card ul { grid-template-columns: 1fr; }
  .rating-card { min-height: 350px; }
  .contact { grid-template-columns: 1fr; gap: 30px; }
  .detail-grid { grid-template-columns: 1fr; gap: 22px; }
  footer { margin-bottom: 68px; flex-direction: column; align-items: flex-start; }
  .mobile-call { position: fixed; z-index: 10; bottom: 0; left: 0; right: 0; min-height: 62px; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; background: var(--blue); color: white; font-weight: 900; text-decoration: none; box-shadow: 0 -8px 30px rgba(0,0,0,.25); }
  .mobile-call span { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
