:root {
  --black: #05080d;
  --navy: #06101d;
  --navy-2: #0a1727;
  --blue: #19a7ff;
  --blue-2: #69d2ff;
  --white: #f8fbff;
  --silver: #b9c6d8;
  --soft: rgba(236, 245, 255, .78);
  --gold: #d6ad4f;
  --paper: #f3f7fb;
  --ink: #111827;
  --muted-ink: #526070;
  --line: rgba(255, 255, 255, .14);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--blue); color: #03111d; }
.skip-link { position: absolute; left: 12px; top: -80px; z-index: 30; padding: 10px 14px; border-radius: 12px; background: var(--blue); color: #03111d; font-weight: 900; }
.skip-link:focus { top: 12px; }

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 8, 13, .78);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
}
.nav-wrap { width: min(var(--max), calc(100% - 32px)); min-height: 74px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand img { width: 76px; border-radius: 14px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--soft); font-size: 14px; font-weight: 800; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #03111d;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(25, 167, 255, .24);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(25, 167, 255, .30); }
.button-ghost { background: rgba(255,255,255,.07); color: var(--white); border-color: rgba(255,255,255,.20); box-shadow: none; }
.button-dark { background: #06101d; color: var(--white); box-shadow: none; }
.button-small { min-height: 40px; padding: 10px 16px; }

.hero { position: relative; min-height: calc(100svh - 74px); display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; z-index: -2; }
.hero::before { background: linear-gradient(90deg, rgba(5,8,13,.98), rgba(5,8,13,.78) 48%, rgba(5,8,13,.30)); }
.hero::after { background: radial-gradient(circle at 18% 32%, rgba(25,167,255,.22), transparent 30%), linear-gradient(0deg, rgba(5,8,13,.96), transparent 54%); }
.hero-content { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 72px 0 70px; }
.hero-logo { display: block; width: min(230px, 58vw); margin-bottom: 22px; }
.hero-logo img { border: 1px solid rgba(255,255,255,.18); border-radius: 22px; box-shadow: var(--shadow); }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 12px; font-weight: 950; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { max-width: 900px; margin: 0; font-size: clamp(42px, 7vw, 86px); line-height: .94; letter-spacing: -.055em; }
h2 { margin: 0; font-size: clamp(30px, 4.3vw, 56px); line-height: 1; letter-spacing: -.04em; }
h3 { margin: 0; font-size: 20px; line-height: 1.18; }
.hero-text { max-width: 720px; margin: 24px 0 0; color: var(--soft); font-size: clamp(17px, 2.1vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-tags, .pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-tags span, .pill-row span { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.06); color: var(--soft); font-size: 13px; font-weight: 850; }

.proof-strip { width: min(var(--max), calc(100% - 32px)); margin: -42px auto 0; position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.075); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.proof-strip article { padding: 23px; border-right: 1px solid var(--line); }
.proof-strip article:last-child { border-right: 0; }
.proof-strip strong { display: block; font-size: 21px; letter-spacing: -.03em; }
.proof-strip span { display: block; margin-top: 5px; color: var(--soft); font-size: 14px; }

.section { padding: 88px 0; }
.section-dark { background: var(--black); }
.section-panel { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)); }
.section-light { background: var(--paper); color: var(--ink); }
.section-light .eyebrow { color: #82631c; }
.section-header { display: grid; grid-template-columns: .22fr 1fr .78fr; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-header > p:last-child, .copy-block > p { color: var(--soft); font-size: 17px; }
.section-light .copy-block > p { color: var(--muted-ink); }
.section-header-narrow { display: block; max-width: 780px; }
.section-header-narrow p:last-child { max-width: 620px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)); box-shadow: 0 20px 64px rgba(0,0,0,.24); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card div { padding: 22px; }
.service-card p { min-height: 104px; margin: 10px 0 15px; color: var(--soft); font-size: 15px; }
.service-card a { color: var(--blue-2); font-weight: 950; text-decoration: none; }

.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 46px; align-items: center; }
.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.client-grid article, .review-card, .quote-form { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.065); box-shadow: 0 18px 60px rgba(0,0,0,.18); }
.client-grid article { padding: 22px; }
.client-grid p { margin: 10px 0 0; color: var(--soft); }

.quote-layout { align-items: start; }
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted-ink); }
.check-list li { position: relative; padding-left: 31px; font-weight: 800; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .29em; width: 18px; height: 18px; border-radius: 999px; background: var(--blue); box-shadow: inset 0 0 0 5px #dff4ff; }
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 26px; background: #fff; color: var(--ink); border-color: rgba(17,24,39,.12); }
.quote-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 900; color: #273344; }
.full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid #ccd6e2; border-radius: 14px; padding: 12px 13px; background: #fff; color: var(--ink); }
textarea { min-height: 128px; resize: vertical; }
.quote-form .button { border-radius: 14px; }
.form-note { margin: 3px 0 0; color: #677386; font-size: 13px; }
.form-note a { color: #0878bd; font-weight: 900; }

.reviews { background: #08101b; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 230px; padding: 24px; }
.stars { margin-top: 0; color: var(--gold); letter-spacing: .08em; }
.review-card p:not(.stars) { color: var(--soft); font-size: 17px; }
.review-card strong { display: block; margin-top: 18px; }
.review-cta { margin-top: 24px; }
.section-gallery { background: var(--black); }
.gallery-strip { display: grid; grid-template-columns: 1.12fr .88fr .88fr 1.12fr; gap: 14px; }
.gallery-strip picture { min-height: 280px; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }

.cta-band { padding: 64px 0; background: linear-gradient(135deg, var(--blue), var(--blue-2) 55%, var(--gold)); color: #06101d; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-inner h2 { max-width: 800px; }
.cta-band .eyebrow { color: #4d3a10; }

.site-footer { padding: 56px 0 24px; background: #030509; color: var(--soft); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 28px; }
.footer-logo img { width: 102px; border-radius: 16px; margin-bottom: 14px; }
.site-footer h2 { margin-bottom: 12px; color: var(--white); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { display: block; margin: 9px 0; color: var(--soft); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-cta { color: var(--blue-2) !important; font-weight: 950; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); font-size: 14px; }
.footer-bottom a { display: inline; margin: 0; }

@media (max-width: 980px) {
  .section-header { grid-template-columns: 1fr; gap: 12px; }
  .service-grid, .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip article:nth-child(2) { border-right: 0; }
  .proof-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-wrap { min-height: 68px; }
  .brand img { width: 62px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.06); color: var(--white); font-weight: 900; }
  .nav-links { position: fixed; left: 16px; right: 16px; top: 78px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(6,16,29,.96); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .button-small { width: 100%; margin-top: 8px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 54px 0 54px; }
  .hero::before { background: linear-gradient(90deg, rgba(5,8,13,.98), rgba(5,8,13,.78)); }
  .proof-strip, .service-grid, .client-grid, .review-grid, .gallery-strip, .quote-form { grid-template-columns: 1fr; }
  .proof-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip article:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .service-card p { min-height: 0; }
  .cta-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
