:root {
  color-scheme: dark;
  --bg: #0b1118;
  --panel: #111b25;
  --panel-2: #172433;
  --text: #f7fbff;
  --muted: #bac7d3;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #27b3d7;
  --brand-2: #f05d3d;
  --brand-dark: #087694;
  --light: #f6f9fb;
  --ink: #17202a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 54px);
  background: rgba(11, 17, 24, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 17, 24, 0.94);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand img {
  width: 196px;
  height: auto;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: #061018;
  font-weight: 900;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.site-nav a:hover { color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--text); }
.nav-call {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 86px) 58px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 17, 24, 0.94) 0%, rgba(11, 17, 24, 0.66) 50%, rgba(11, 17, 24, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11, 17, 24, 0) 38%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 830px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}
.button.primary {
  background: var(--brand-2);
  color: white;
}
.button.primary:hover { background: #d9492b; }
.button.secondary {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
  color: white;
}
.button.light {
  background: white;
  color: var(--ink);
}
.button.outline-light {
  border-color: rgba(255, 255, 255, .54);
  color: white;
}
.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--brand);
  font-weight: 900;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
  padding: 148px clamp(20px, 6vw, 86px) 72px;
  background: var(--bg);
}
.page-hero > div {
  max-width: 760px;
}
.page-hero p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}
.page-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-section {
  padding-top: 72px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 54px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.trust-row div {
  padding: 20px;
  background: rgba(17, 27, 37, .82);
}
.trust-row dt {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.trust-row dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 800;
}

.section {
  padding: 92px clamp(20px, 6vw, 86px);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px;
  align-items: end;
  max-width: 1160px;
  margin: 0 auto 42px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}
.services { background: var(--light); color: var(--ink); }
.services .eyebrow { color: var(--brand-dark); }
.services .section-heading p:last-child { color: #52616e; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid #d9e3ea;
  box-shadow: 0 12px 34px rgba(20, 40, 60, .08);
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #dff6fc;
  color: var(--brand-dark);
  font-weight: 900;
}
.service-card p { color: #52616e; }

.section-dark {
  background: var(--panel);
}
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: 92px clamp(20px, 6vw, 86px);
}
.split-copy,
.contact-details {
  max-width: 620px;
}
.split-copy p,
.contact-details p {
  color: var(--muted);
  font-size: 18px;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
}
.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.stats-panel {
  display: grid;
  gap: 14px;
}
.stats-panel div {
  display: grid;
  gap: 6px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}
.stats-panel strong {
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
}
.stats-panel span {
  font-size: 20px;
  font-weight: 900;
}

.process {
  background: var(--bg);
}
.process .section-heading {
  grid-template-columns: 1fr;
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1060px;
  margin: 0 auto;
  gap: 18px;
}
.process-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.process-grid span {
  color: var(--brand);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
}
.process-grid p {
  color: var(--muted);
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(250px, .5fr);
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: 74px clamp(20px, 6vw, 86px);
  background: var(--brand-dark);
}
.cta-band > div {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  margin-bottom: 12px;
}
.cta-band p {
  max-width: 520px;
  color: rgba(255, 255, 255, .84);
}
.cta-band img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews {
  background: var(--light);
  color: var(--ink);
}
.reviews .eyebrow { color: var(--brand-dark); }
.reviews .section-heading {
  grid-template-columns: 1fr;
  text-align: center;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
.review-grid figure {
  margin: 0;
  padding: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid #d9e3ea;
}
.review-grid blockquote {
  margin: 0 0 22px;
  color: #2a3b48;
  font-size: 18px;
}
.review-grid figcaption {
  color: var(--brand-dark);
  font-weight: 900;
}

.contact {
  align-items: start;
}
.contact-page {
  min-height: calc(100vh - 236px);
  padding-top: 148px;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}
.contact-methods strong { color: var(--brand); }
.contact-methods span { color: var(--text); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(5, 10, 15, .42);
  color: white;
  padding: 12px 14px;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 36px;
  padding: 54px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #070b10;
}
.site-footer h2 {
  margin-bottom: 14px;
  font-size: 16px;
}
.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-bottom: 9px;
}
.site-footer a:hover { color: var(--text); }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(11, 17, 24, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .site-nav.is-open { display: flex; }
  .nav-call { text-align: center; }
  .section-heading,
  .split,
  .contact,
  .cta-band,
  .page-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body {
    width: 100%;
  }
  .site-header {
    min-width: 0;
  }
  .nav-toggle {
    flex: 0 0 42px;
  }
  .hero {
    min-height: auto;
    display: block;
    padding: 118px 24px 56px;
  }
  .hero-content,
  .hero-actions,
  .trust-row {
    width: 100%;
    max-width: 100%;
  }
  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }
  h2 {
    font-size: 34px;
    overflow-wrap: break-word;
  }
  .hero-copy,
  .section-heading p:last-child,
  .page-hero p:last-child {
    font-size: 18px;
    overflow-wrap: break-word;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
    max-width: 100%;
  }
  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding-inline: 16px;
  }
  .brand img {
    width: min(164px, calc(100vw - 92px));
  }
  .page-hero {
    padding: 118px 24px 56px;
  }
}

/* Contact form: honeypot (hidden from humans) + submit status message */
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 4px 0 0;
  font-size: 0.95rem;
}
.form-status[data-state="pending"] { color: var(--muted); }
.form-status[data-state="success"] { color: var(--brand); }
.form-status[data-state="error"] { color: var(--brand-2); }
