:root {
  --orange: #ff6600;
  --amber: #ff9a00;
  --green: #039146;
  --ink: #121212;
  --muted: #5d6470;
  --line: #ece7df;
  --soft: #fff7ed;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, a, summary, label, input, textarea {
  overflow-wrap: anywhere;
}

.container {
  width: min(1180px, calc(100% - clamp(28px, 5vw, 64px)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(18,18,18,.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(132px, 16vw, 184px);
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}
.site-nav { display: flex; align-items: center; gap: clamp(4px, .8vw, 8px); }
.site-nav a {
  padding: 10px clamp(10px, 1.1vw, 14px);
  font-weight: 800;
  font-size: clamp(13px, 1.15vw, 14px);
  color: #222;
  border-radius: 4px;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
  background: #fff1e6;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--orange);
  border-radius: 4px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(520px, 62vw, 912px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 31%, rgba(255,255,255,.2) 56%, rgba(255,255,255,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 28px));
  padding: clamp(82px, 12vw, 190px) 0 clamp(56px, 8vw, 80px);
  margin-left: clamp(20px, 7vw, 96px);
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0;
}
.hero h1,
.page-hero h1,
h2 {
  font-family: Poppins, Inter, sans-serif;
  line-height: 1.05;
  margin: 0 0 22px;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 90px);
  max-width: 760px;
}
.hero h1 span {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: .12em;
  text-underline-offset: .13em;
}
.hero-content p:not(.eyebrow) {
  width: min(430px, 100%);
  margin: 0 0 30px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: #383838;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.button:hover { background: #111; }
.button.secondary { background: #111; }
.button.secondary:hover { background: var(--orange); }

.section-pad { padding: clamp(56px, 8vw, 116px) 0; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.two-col > *,
.two-col.reverse > *,
.footer-grid > *,
.contact-grid > * {
  min-width: 0;
}
.two-col.reverse { grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr); }
h2 { font-size: clamp(34px, 4vw, 56px); }
p { color: var(--muted); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.stats-row div {
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--soft);
}
.stats-row strong {
  display: block;
  font-size: 28px;
  color: var(--ink);
}
.stats-row span { color: var(--muted); font-weight: 700; }

.image-stack { position: relative; }
.card-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}
.floating-logo {
  position: absolute;
  right: clamp(8px, 2vw, 24px);
  bottom: -30px;
  width: clamp(104px, 13vw, 150px);
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.assurance { background: #f7f9f8; }
.dark-panel {
  min-height: clamp(320px, 42vw, 430px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(3,145,70,.92), rgba(17,17,17,.94)),
    url("assets/mitie-icon-white.png") no-repeat -75px -55px / 380px auto;
}
.dark-panel img { width: min(420px, 100%); margin-bottom: 22px; }
.dark-panel p { color: rgba(255,255,255,.86); }
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.check-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}
.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.center-head {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}
.step-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.step-grid article,
.location-grid article,
.value-list article,
.contact-card,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(34,34,34,.06);
}
.step-grid article {
  padding: 30px;
}
.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  font-weight: 900;
}
h3 {
  margin: 18px 0 10px;
  line-height: 1.2;
  font-size: 22px;
}

.approval { background: var(--soft); }
.numbers {
  color: #fff;
  background: linear-gradient(135deg, #101010, #202020);
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.number-grid article {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.number-grid strong {
  display: block;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--orange);
}
.number-grid p {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.number-grid cite {
  font-style: normal;
  color: rgba(255,255,255,.72);
}
.partner-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.partner-board img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.partner-board img:first-child { grid-column: 1 / -1; }

.location-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.location-grid article { padding: 24px; }
.location-grid h3 { margin-top: 0; }

.site-footer {
  padding: 64px 0 24px;
  color: #fff;
  background: #101010;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.6fr) minmax(140px, .7fr);
  gap: clamp(24px, 4vw, 36px);
}
.footer-logo { width: min(320px, 100%); max-height: 150px; object-fit: contain; object-position: left center; margin-bottom: 16px; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h3 { margin-top: 0; color: #fff; }
.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.68);
}

.page-hero {
  padding: clamp(68px, 11vw, 140px) 0 clamp(56px, 8vw, 108px);
  background: linear-gradient(135deg, #fff7ed, #fff);
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 70px);
}
.page-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: 19px;
  font-weight: 700;
}
.page-hero-img {
  height: clamp(240px, 32vw, 360px);
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
}
.contact-hero,
.faq-hero {
  text-align: center;
}
.contact-hero p,
.faq-hero p {
  margin-left: auto;
  margin-right: auto;
}
.value-list {
  display: grid;
  gap: 18px;
}
.value-list article { padding: 24px; }
.value-list h3 { margin-top: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: start;
}
.contact-card,
.contact-form { padding: 30px; }
.contact-card h2 { font-size: 34px; }
.contact-card a { color: var(--green); font-weight: 800; }
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
input,
textarea {
  width: 100%;
  border: 1px solid #ded8d0;
  border-radius: 4px;
  padding: 14px 16px;
  font: inherit;
}
input:focus,
textarea:focus {
  outline: 3px solid rgba(255,102,0,.18);
  border-color: var(--orange);
}
.form-note {
  margin: 0;
  font-size: 14px;
}
.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.human-check {
  padding: 14px;
  border: 1px solid rgba(255,102,0,.22);
  border-radius: 8px;
  background: #fff7ed;
}
.human-check input {
  max-width: 180px;
}
.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 800;
}
.form-status.show {
  display: block;
}
.form-status.error {
  color: #8a1f11;
  background: #fff0ed;
  border: 1px solid #ffd0c7;
}
.form-status.success {
  color: #0b5a2a;
  background: #ebfff2;
  border: 1px solid #bdebcf;
}

.faq-list {
  width: min(850px, 100%);
  display: grid;
  gap: 16px;
}
.faq-list details { padding: 22px 26px; }
.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.faq-list p { margin-bottom: 0; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
  }
  .site-nav.open { display: flex; }
  .two-col,
  .two-col.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .step-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .number-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .step-grid,
  .location-grid,
  .stats-row,
  .partner-board {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 18px;
  }
  .site-footer {
    padding-top: 46px;
  }
  .footer-logo {
    max-width: 260px;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 68px; padding: 9px 14px; }
  .brand img {
    width: clamp(120px, 42vw, 154px);
    max-height: 46px;
  }
  .hero {
    min-height: 560px;
    background: #fff;
  }
  .hero-bg {
    opacity: .28;
    object-position: 73% top;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.82));
  }
  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 78px;
  }
  .hero h1 { font-size: clamp(34px, 11vw, 43px); }
  h2 { font-size: clamp(29px, 9vw, 38px); }
  .step-grid article,
  .location-grid article,
  .contact-card,
  .contact-form,
  .faq-list details {
    padding: 22px;
  }
  .floating-logo { right: 10px; width: 104px; padding: 12px; }
  .partner-board img { height: 150px; padding: 18px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 22px); }
  .site-header { padding-left: 11px; padding-right: 11px; }
  .hero-content {
    width: calc(100% - 22px);
    margin-left: 11px;
  }
  .hero h1 { font-size: clamp(31px, 10.4vw, 36px); }
  .hero-content p:not(.eyebrow) { font-size: 15px; }
  .button { width: 100%; min-height: 50px; }
  .site-nav { left: 11px; right: 11px; }
  .number-grid article,
  .stats-row div {
    padding: 20px;
  }
}

@media (min-width: 1440px) {
  .container { width: min(1240px, calc(100% - 96px)); }
  .hero-content { margin-left: calc((100vw - min(1240px, calc(100vw - 96px))) / 2); }
}
