:root {
  --ink: #10141b;
  --muted: #586272;
  --line: #dfe5ea;
  --paper: #f7f9fb;
  --white: #ffffff;
  --red: #ff3d3d;
  --red-dark: #b91824;
  --blue: #0fb7f4;
  --blue-dark: #064f7c;
  --green: #c9ddd0;
  --shadow: 0 22px 70px rgba(16, 20, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(8, 14, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.brand img {
  width: 170px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a {
  min-width: 86px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
  color: var(--white);
  background: #111820;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.96), rgba(8, 13, 20, 0.66) 42%, rgba(8, 13, 20, 0.28)),
    linear-gradient(0deg, rgba(8, 13, 20, 0.94), rgba(8, 13, 20, 0.22) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.hero-logo {
  width: min(560px, 88vw);
  height: 170px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  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: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 61, 61, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 26px clamp(18px, 4vw, 46px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  font-size: 22px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.intro,
.services,
.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.section-heading h2,
.quote-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.intro-copy p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.intro-copy {
  padding-top: 34px;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 20, 27, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 183, 244, 0.22);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.58;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px);
  background: #121820;
  color: var(--white);
}

.work-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
}

.project-stats {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.project-stats div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-stats span {
  color: rgba(255, 255, 255, 0.66);
}

.before-after {
  margin: 0;
}

.before-after img {
  width: 100%;
  aspect-ratio: 1340 / 900;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.before-after figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  min-height: 118px;
  padding: 24px 24px 24px 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

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

.steps strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.steps span {
  color: var(--muted);
  line-height: 1.55;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: 86px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(15, 183, 244, 0.1), rgba(255, 61, 61, 0.1)),
    var(--white);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--ink);
  font-weight: 800;
}

.contact-details a {
  color: var(--blue-dark);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 183, 244, 0.24);
  border-color: var(--blue);
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 190px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .trust-strip,
  .intro,
  .services,
  .work-band,
  .process,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 126px;
    height: 40px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 82vh;
    padding: 96px 18px 48px;
  }

  .hero-logo {
    width: 92vw;
    height: 104px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip div,
  .section,
  .work-band,
  .quote-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}
