:root {
  --black: #05090D;
  --navy: #0B1934;
  --ink: #0B1934;
  --muted: #4d535a;
  --line: #D9DEE8;
  --light: #F6F8FB;
  --white: #ffffff;
  --orange: #BF1017;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.44;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  font-size: clamp(46px, 6vw, 78px);
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  font-size: 20px;
  line-height: 1.05;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
  height: 72px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.header-logo {
  display: block;
  width: 180px;
  height: auto;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
}

.site-nav a,
.header-cta,
.button,
.eyebrow,
.kicker,
.service-card h3,
.pricing h3,
.job-done h2,
.footer-heading {
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  border-color: #BF1017;
  background: #BF1017;
  color: var(--white);
}

.header-cta:hover,
.button-primary:hover {
  border-color: #A4151B;
  background: #A4151B;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: stretch;
  column-gap: clamp(24px, 4vw, 52px);
  row-gap: 18px;
  width: min(1180px, calc(100% - 48px));
  padding: 38px 0 34px;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 12px 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 0.94;
}

.eyebrow {
  color: #BF1017;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.38;
}

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

.hero-media {
  width: 100%;
  height: clamp(390px, 35vw, 510px);
  overflow: hidden;
  border: 1px solid rgba(11, 25, 52, 0.12);
  box-shadow: 0 2px 8px rgba(11, 25, 52, 0.08);
}

.hero-media img,
.featured > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main#top {
  scroll-margin-top: 84px;
}

.hero-media img {
  object-position: center;
}

.hero .stats {
  grid-column: 1 / -1;
  width: 100%;
  margin: 10px 0 0;
  padding: 14px 0 6px;
  border: 0;
}

.hero .stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 82px;
  padding: 2px clamp(20px, 3vw, 34px);
  border-left-color: rgba(191, 16, 23, 0.24);
}

.hero .stats article:first-child {
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(191, 16, 23, 0.24);
}

.hero .stats span {
  max-width: 190px;
  font-size: 11px;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero .stats strong {
  margin-bottom: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 88%;
  margin: 18px 0 0;
  padding: 0;
}

.stats article {
  min-height: 70px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.stats article:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 0.95;
  white-space: nowrap;
  text-transform: uppercase;
}

.stats span {
  display: block;
  max-width: 112px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.24;
  text-transform: uppercase;
}

em {
  color: var(--orange);
  font-style: normal;
}

.why {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0;
}

.featured {
  padding: 62px 0;
}

.kicker {
  position: relative;
  margin-bottom: 24px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.kicker::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 5px;
  height: 18px;
  background: var(--orange);
  content: "";
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 52px;
  background: var(--light);
  border: 1px solid rgba(11, 25, 52, 0.10);
  border-radius: 14px;
}

.why-copy h2 {
  margin-bottom: 32px;
  max-width: 560px;
}

.why-copy > p:not(.kicker) {
  color: #48546C;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  max-width: 620px;
}

.why-promise {
  background: linear-gradient(135deg, #05090D 0%, #0B1934 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 18px 40px rgba(11, 25, 52, 0.18);
}

.why-promise-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.why-promise ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-promise li {
  position: relative;
  padding-left: 34px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.why-promise li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
  content: "\2713";
}


.featured h2 {
  margin-bottom: 24px;
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.22;
}

.check-list li::before,
.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
}

.services,
.job-done {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.services {
  padding: 60px 0 54px;
  border-top: 1px solid var(--line);
}

.services-page {
  padding-top: 64px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.services-page .section-heading {
  gap: 18px;
  margin-bottom: 42px;
}

.services-page-hero {
  padding-bottom: 18px;
}

.services-operations-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 66px;
  background: var(--light);
}

.services-operations-strip img {
  display: block;
  width: 100%;
  height: clamp(320px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.services-page-title {
  font-size: clamp(30px, 3.5vw, 48px);
}

.services-hero {
  padding-bottom: 36px;
}

.services-sidecard {
  align-self: center;
  width: min(100%, 92%);
  justify-self: end;
  padding: 22px 24px;
  border-color: var(--line);
}

.services-sidecard h2 {
  font-size: 28px;
}

.services-page .service-card {
  grid-template-columns: 76px 210px 1fr 270px;
  gap: 20px;
  min-height: 118px;
  padding: 20px 34px;
}

.services-page .service-card img {
  width: 48px;
  height: 48px;
}

.services-page .service-card svg,
.services-page .service-card .service-icon {
  width: 48px;
  height: 48px;
}

.services-grid {
  display: grid;
  border: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 90px 210px 1fr 270px;
  align-items: center;
  gap: 24px;
  min-height: 128px;
  padding: 32px 38px;
  border-top: 1px solid var(--line);
}

.service-card:first-child {
  border-top: 0;
}

.service-card:hover {
  background: var(--light);
}

.service-card img {
  width: 54px;
  height: 54px;
}

.service-card h3 {
  font-size: 17px;
}

.service-card p {
  color: var(--ink);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
}

.highlight-emphasis {
  color: #BF1017;
}

.featured {
  align-items: stretch;
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--light);
  background-clip: content-box;
}

.featured > div {
  display: grid;
  align-content: center;
  padding: 44px 0 44px clamp(28px, 5vw, 56px);
}

.featured h3 {
  margin: -12px 0 24px;
  text-transform: none;
}

.featured p {
  max-width: 430px;
  margin-bottom: 32px;
  color: var(--ink);
}

.project-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 34px;
  padding: clamp(30px, 4.5vw, 52px);
  background: linear-gradient(135deg, #05090D 0%, #0B1934 100%);
  color: var(--white);
}

.pricing h2,
.pricing h3,
.pricing p,
.pricing li {
  color: var(--white);
}

.pricing-rate {
  padding-right: 44px;
  border-right: 1px solid var(--muted);
}

.pricing h2 {
  max-width: 430px;
  margin: 22px 0;
  font-size: clamp(28px, 3vw, 46px);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.price span {
  color: var(--orange);
  font-size: clamp(108px, 12vw, 176px);
  line-height: 0.74;
  font-weight: 900;
}

.price small {
  padding-bottom: 10px;
  color: var(--white);
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 14px;
  line-height: 1.35;
}

.pricing-includes h3 {
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 17px;
}

.pricing-includes .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-done {
  padding-bottom: 54px;
  text-align: center;
}

.job-done h2 {
  margin-bottom: 22px;
  text-align: left;
  font-size: 18px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.job-grid span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 96px;
  padding: 10px 18px 0 32px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.job-grid span::before {
  position: absolute;
  top: 14px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 12px;
  line-height: 0.9;
  font-weight: 900;
  content: "✓";
}

.job-grid svg,
.job-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px 25px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guarantee svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee strong {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.guarantee-emphasis {
  color: var(--orange);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) minmax(150px, 1fr) minmax(120px, 0.85fr) minmax(120px, 0.85fr) minmax(210px, 1.35fr);
  align-items: start;
  gap: 64px;
  padding: 52px 0 38px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  padding: 9px 12px;
  border-radius: 4px;
  background: var(--white);
}

.footer-logo-badge img {
  display: block;
  width: 148px;
  height: auto;
}

.footer-certification {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.trusted-band {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--light);
  text-align: center;
}

.trusted-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 40px clamp(18px, 3vw, 34px) 36px;
}

.trusted-band h2 {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 34px;
}

.trusted-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  text-align: left;
}

.trusted-grid svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.policy-header {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-updated {
  color: var(--orange);
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.policy-intro {
  max-width: 760px;
}

.policy-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-page h1 {
  max-width: 720px;
  margin-bottom: 2px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.legal-page h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.1;
}

.legal-page p,
.legal-page li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.legal-page ul {
  margin: 14px 0 14px;
  padding-left: 20px;
}

.legal-page li + li {
  margin-top: 8px;
}

.policy-contact {
  padding-bottom: 0;
}

.policy-contact a {
  color: var(--orange);
}

.page-hero {
  padding: 44px 0 44px;
}

.page-hero > div:first-child {
  display: grid;
  gap: 18px;
}

.page-hero > div:first-child > .eyebrow {
  margin-top: 0;
  margin-bottom: -12px;
}

.page-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
}

.page-card.dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.page-card.dark h2,
.page-card.dark h3,
.page-card.dark p,
.page-card.dark li,
.page-card.dark span {
  color: var(--white);
}

.page-card h2 small {
  font-size: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: baseline;
  line-height: 1.3;
}

.page-card .eyebrow {
  margin-top: 0;
}

.page-card .check-list {
  gap: 12px;
}

.page-media {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--light);
}

.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-media.tall {
  min-height: 420px;
}

.results-stats {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.results-stats .stats {
  width: 100%;
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.contact-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-stack h2 {
  max-width: 560px;
}

.contact-intro {
  margin: 18px 0 22px;
}

.contact-stack .check-list {
  gap: 14px;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-panel .button {
  width: 100%;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details h2 {
  font-size: 13px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a,
.contact-links p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

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

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.field label {
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(191, 16, 23, 0.22);
  outline-offset: 1px;
  border-color: var(--orange);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.35;
}

.service-card svg,
.service-card .service-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .header-inner {
    height: auto;
    min-height: 72px;
  }

  .site-header.is-open .site-nav {
    display: grid;
    flex-basis: 100%;
    order: 10;
    gap: 0;
    margin-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .section-grid,
  .hero,
  .featured,
  .pricing {
    grid-template-columns: 1fr;
  }

  .why-panel {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 30px;
  }

  .why-copy h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .why-promise {
    padding: 28px;
  }

  .why-promise li {
    font-size: 16px;
  }


  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-media {
    height: 360px;
    min-height: 360px;
  }

  .stats,
  .pricing-includes .check-list,
  .job-grid,
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .stats article:first-child {
    border-left: 0;
  }

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

  .services-page .service-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .services-operations-strip {
    margin: 42px auto 52px;
  }

  .services-operations-strip img {
    height: 260px;
  }

  .services-page .service-card p,
  .services-page .service-card ul {
    grid-column: auto;
  }

  .service-card p,
  .service-card ul {
    grid-column: 2;
  }

  .pricing-rate,
  .contact-layout {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-media.tall {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
  }
}

@media (max-width: 768px) {
  .site-container {
    width: min(100% - 32px, var(--max));
  }

  .contact-layout {
    padding-bottom: 40px;
  }

  .contact-panel,
  .contact-form,
  .contact-details,
  .field-row,
  .field {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field input,
  .field textarea {
    font-size: 16px;
  }

  .contact-links a,
  .contact-links p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 32px, var(--max));
    height: 64px;
  }

  .site-header.is-open .header-inner {
    min-height: 64px;
  }

  .section-grid,
  .hero,
  .stats,
  .why,
  .services,
  .job-done,
  .pricing {
    width: min(100% - 32px, var(--max));
  }

  .why-panel {
    padding: 24px;
    gap: 24px;
  }

  .why-promise {
    padding: 22px 24px;
  }


  h1 {
    font-size: clamp(34px, 9.6vw, 38px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1;
  }

  .page-card h2,
  .pricing h2 {
    font-size: clamp(26px, 7.2vw, 31px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    justify-self: stretch;
    width: 100%;
    padding: 0 16px 20px;
  }

  .hero h1,
  .about-hero h1 {
    font-size: clamp(34px, 9.6vw, 38px);
    line-height: 0.98;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.4;
  }

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

  .job-grid,
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats article,
  .hero .stats article:first-child {
    min-height: 74px;
    padding: 12px 12px;
    border-top: 0;
    border-left: 0;
  }

  .stats article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .stats strong {
    margin-bottom: 8px;
    font-size: clamp(24px, 8vw, 31px);
  }

  .stats span {
    max-width: 132px;
    font-size: 9px;
    line-height: 1.22;
  }

  .hero-media {
    height: 240px;
    min-height: 240px;
  }


  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }

  .service-card img,
  .service-card svg,
  .service-card .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-card h3 {
    font-size: 16px;
    line-height: 1.12;
  }

  .service-card p,
  .service-card li {
    font-size: 14px;
  }

  .service-card p,
  .service-card ul {
    grid-column: auto;
  }

  .featured > div {
    padding: 34px 24px;
  }

  .pricing {
    margin-bottom: 34px;
    padding: 26px 20px;
  }

  .price {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price span {
    font-size: clamp(82px, 24vw, 108px);
  }

  .price small {
    padding-bottom: 0;
  }

  .page-hero {
    padding: 34px 0 38px;
  }

  .page-card,
  .contact-panel {
    padding: 22px;
  }

  .services-sidecard {
    width: 100%;
    justify-self: stretch;
    padding: 20px;
  }

  .services-operations-strip {
    width: min(100% - 32px, var(--max));
    margin: 34px auto 44px;
  }

  .services-operations-strip img {
    height: 220px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .pricing-includes .check-list {
    grid-template-columns: 1fr;
  }

  .guarantee {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    text-align: left;
  }

  .footer-column a,
  .footer-column p {
    margin-bottom: 7px;
  }
}

@media (max-width: 768px) {
  .header-logo {
    width: 145px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 30px;
  }

  .footer-logo-badge {
    width: 155px;
  }

  .footer-logo-badge img {
    width: 135px;
  }
}
