:root {
  --ink: #18212f;
  --muted: #647084;
  --line: #dfe6ee;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --blue: #1469c8;
  --blue-dark: #0b376c;
  --amber: #f59e0b;
  --green: #18a05e;
  --shadow: 0 20px 60px rgba(24, 33, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  color: #f8fafc;
  background: #172334;
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.topbar a,
.topbar span,
.button,
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg,
.button svg,
.nav__cta svg,
.service-card svg,
.quick-services svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(24, 33, 47, 0.08);
  backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0b376c 0%, #1469c8 58%, #18a05e 100%);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(20, 105, 200, 0.22);
}

.brand__mark::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.brand__screen {
  position: relative;
  display: grid;
  width: 28px;
  height: 20px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 4px;
}

.brand__screen::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
}

.brand__screen span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344256;
  font-weight: 700;
  font-size: 15px;
}

.nav__links a {
  padding: 8px 0;
}

.nav__links a:hover {
  color: var(--blue);
}

.nav__cta {
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero {
  min-height: calc(100vh - 116px);
  padding: 72px 0 52px;
  background:
    linear-gradient(90deg, rgba(244, 248, 251, 0.98) 0%, rgba(244, 248, 251, 0.88) 54%, rgba(255, 255, 255, 0.7) 100%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  color: #3e4c61;
  font-size: 19px;
}

.hero__content {
  min-width: 0;
}

.hero__content h1,
.hero__lead,
.topbar span {
  overflow-wrap: anywhere;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(20, 105, 200, 0.24);
}

.button--ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--dark {
  color: #fff;
  background: #172334;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 220px;
  padding: 18px;
  color: #fff;
  background: #172334;
  border-left: 6px solid var(--amber);
  border-radius: 8px;
}

.hero__badge strong {
  font-size: 46px;
  line-height: 1;
}

.hero__badge span {
  font-weight: 800;
  line-height: 1.2;
}

.quick-services {
  padding: 34px 0;
  background: #172334;
}

.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.quick-services article {
  min-height: 210px;
  padding: 28px;
  color: #fff;
  background: #172334;
}

.quick-services svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
}

.quick-services h2 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.quick-services p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.section {
  padding: 92px 0;
}

.about {
  background: #fff;
}

.about__grid,
.request__grid,
.process__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.about__copy {
  color: #3e4c61;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stats div {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.services,
.faq {
  background: var(--soft);
}

.section__heading {
  max-width: 730px;
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 260px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 47, 0.05);
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
  margin-bottom: 22px;
}

.service-card p,
.steps p,
.faq p,
.request p,
.contact p {
  color: var(--muted);
}

.process {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 35, 52, 0.96), rgba(11, 55, 108, 0.86)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.process .eyebrow,
.process p {
  color: #d8e7f7;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 4px 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.steps span {
  grid-row: span 2;
  color: var(--amber);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.steps h3,
.steps p {
  margin-bottom: 0;
}

.request {
  background: #fff;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request__image {
  margin-top: 28px;
}

.request__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #344256;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd9e4;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 105, 200, 0.18);
  border-color: var(--blue);
}

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

details {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.contact {
  padding: 58px 0;
  color: #fff;
  background: var(--blue);
}

.contact .eyebrow,
.contact p {
  color: #e8f2ff;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  width: 100%;
  gap: 8px;
  margin-top: 4px;
}

.brand-strip span {
  display: grid;
  min-height: 54px;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(11, 55, 108, 0.14);
}

.brand-strip img {
  width: auto;
  max-width: 88px;
  height: 24px;
  object-fit: contain;
}

.footer {
  padding: 24px 0;
  color: #dbe5ef;
  background: #121b28;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.footer svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: grid;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__links.is-open {
    position: absolute;
    inset: 100% 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero__grid,
  .about__grid,
  .request__grid,
  .process__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 380px;
  }

  .quick-services__grid,
  .service-grid,
  .faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__screen {
    width: 25px;
    height: 18px;
  }

  .brand strong {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .hero__lead {
    font-size: 17px;
  }

  h2 {
    font-size: 31px;
  }

  .hero__actions,
  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__content h1,
  .hero__lead,
  .hero__actions {
    max-width: 360px;
  }

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

  .button {
    width: 100%;
  }

  .hero__media {
    min-height: 300px;
  }

  .hero__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .quick-services__grid,
  .service-grid,
  .stats,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps span {
    grid-row: auto;
  }
}
