@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/bebas-neue.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Bebas Neue";
  --font-body: "Manrope";
  --ink: #05070a;
  --navy: #061523;
  --blue: #078bd3;
  --blue-bright: #1eb5ff;
  --orange: #ff6412;
  --cream: #f1eee6;
  --white: #ffffff;
  --muted: #9ba7b0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--font-body), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 192px; }
.brand-mark { width: 38px; height: 44px; border: 2px solid var(--blue-bright); border-radius: 48% 48% 56% 56%; display: grid; place-items: center; transform: rotate(45deg); position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 6px; border: 2px solid var(--orange); border-radius: 2px; }
.brand-mark span { width: 3px; height: 36px; background: white; transform: rotate(-45deg); position: relative; z-index: 2; }
.brand-mark span::after { content: ""; position: absolute; left: -5px; top: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 10px solid var(--orange); transform: translate(-3px,-5px); }
.brand-type { display: flex; flex-direction: column; line-height: .82; }
.brand-type strong { font-family: var(--font-display); font-size: 31px; letter-spacing: .5px; font-weight: 400; color: var(--blue-bright); }
.brand-type strong span { color: var(--orange); }
.brand-type small { font-size: 9px; letter-spacing: 4px; margin-top: 6px; color: white; font-weight: 800; }

nav { display: flex; gap: 38px; font-size: 13px; font-weight: 700; }
nav a { position: relative; padding: 14px 0; }
nav a::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
nav a:hover::after, nav a:focus-visible::after { width: 100%; }
.header-call { display: flex; flex-direction: column; align-items: flex-end; }
.header-call small { font-size: 10px; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted); }
.header-call strong { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; }

.hero {
  min-height: 780px;
  padding: 170px 4.5vw 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 5vw;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(10,140,210,.22), transparent 25%),
    linear-gradient(110deg, rgba(5,7,10,.99) 32%, rgba(5,17,28,.93) 100%);
}
.hero::before { content: ""; position: absolute; inset: 88px 0 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -230px; bottom: -270px; border: 110px solid rgba(255,100,18,.08); border-radius: 50%; }
.hero-copy { position: relative; z-index: 3; max-width: 920px; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 3px; font-size: 11px; font-weight: 800; margin: 0 0 20px; }
.eyebrow span { width: 34px; height: 3px; background: var(--orange); display: inline-block; }
.eyebrow.dark { color: #46515a; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--font-display); font-size: clamp(82px, 11vw, 162px); line-height: .77; letter-spacing: .5px; text-transform: uppercase; font-weight: 400; margin: 0 0 34px; }
h1 em, h2 em { display: block; color: var(--orange); font-style: normal; }
.hero-intro { max-width: 610px; font-size: 18px; line-height: 1.65; color: #c3cbd1; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: #ff762b; }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.35); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--blue-bright); }
.trade-line { margin: 34px 0 0; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: #9aa5ae; }
.trade-line span, footer p span { color: var(--orange); margin: 0 6px; }

.hero-panel { position: relative; z-index: 3; min-height: 370px; border: 1px solid rgba(255,255,255,.18); border-top: 4px solid var(--blue-bright); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(6,21,35,.64); backdrop-filter: blur(12px); }
.panel-number { font-family: var(--font-display); font-size: 112px; line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.26); }
.hero-panel > p { color: #bdc7ce; font-size: 14px; line-height: 1.7; max-width: 210px; }
.panel-bottom { border-top: 1px solid rgba(255,255,255,.18); padding-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.panel-bottom span { color: var(--orange); text-transform: uppercase; letter-spacing: 2px; font-size: 10px; font-weight: 800; }
.panel-bottom strong { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; line-height: 1; font-weight: 400; }

.scaffold-lines { position: absolute; right: 17vw; top: 110px; width: 470px; height: 530px; opacity: .14; transform: skewY(-2deg); }
.scaffold-lines i { position: absolute; display: block; background: var(--blue-bright); box-shadow: 0 0 10px rgba(30,181,255,.6); }
.line-v { width: 5px; height: 100%; top: 0; }.line-v.one { left: 0; }.line-v.two { left: 32%; }.line-v.three { left: 65%; }.line-v.four { right: 0; }
.line-h { height: 5px; width: 100%; left: 0; }.line-h.top { top: 10%; }.line-h.middle { top: 48%; }.line-h.bottom { bottom: 10%; }
.brace { height: 4px; width: 125%; left: -12%; top: 49%; }.brace-a { transform: rotate(47deg); }.brace-b { transform: rotate(-47deg); }

.assurance-bar { background: var(--orange); display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 4.5vw; }
.assurance-bar article { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 22px 2vw; border-right: 1px solid rgba(0,0,0,.2); }
.assurance-bar article:last-child { border-right: 0; }
.assurance-check { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; font-weight: 900; }
.assurance-bar strong, .assurance-bar small { display: block; }
.assurance-bar strong { font-family: var(--font-display); font-size: 23px; text-transform: uppercase; font-weight: 400; }
.assurance-bar small { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

.section { padding: 110px 5vw; }
.services { background: var(--cream); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 8vw; align-items: end; margin-bottom: 55px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
h2 { font-family: var(--font-display); font-size: clamp(56px, 6vw, 88px); line-height: .9; font-weight: 400; text-transform: uppercase; margin-bottom: 0; }
.section-heading > p:last-child { color: #52606a; font-size: 16px; line-height: 1.8; max-width: 500px; margin: 0 0 6px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #cad0d0; }
.service-card { min-height: 410px; padding: 30px; border-right: 1px solid #cad0d0; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .25s ease, color .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--navy); color: white; }
.service-number { color: #8f999e; font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.service-icon { width: 75px; height: 95px; margin: 45px 0 28px; position: relative; border-left: 4px solid var(--blue); border-right: 4px solid var(--blue); }
.service-icon i { position: absolute; height: 4px; width: 100%; left: 0; background: var(--orange); }.service-icon i:first-child { top: 10px; }.service-icon i:nth-child(2) { top: 44px; transform: rotate(34deg); }.service-icon i:last-child { bottom: 8px; }
.service-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; font-weight: 400; margin-bottom: 14px; }
.service-card p { font-size: 13px; line-height: 1.7; color: #667178; margin-bottom: 30px; }
.service-card:hover p { color: #c3ccd2; }
.service-card a { margin-top: auto; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: 800; color: var(--orange); display: flex; justify-content: space-between; }

.why { background: #07101a; display: grid; grid-template-columns: minmax(320px, .9fr) 1.1fr; gap: 8vw; align-items: center; }
.promo-frame { position: relative; max-width: 560px; border: 1px solid rgba(255,255,255,.14); padding: 14px; background: #020406; box-shadow: 30px 30px 0 rgba(7,139,211,.09); }
.promo-frame img { width: 100%; height: auto; }
.promo-badge { position: absolute; right: -26px; bottom: 38px; width: 120px; height: 120px; background: var(--orange); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: rotate(-7deg); box-shadow: 0 14px 28px rgba(0,0,0,.4); }
.promo-badge strong { font-family: var(--font-display); font-size: 28px; line-height: 1; }.promo-badge span { font-size: 9px; letter-spacing: 1px; font-weight: 900; }
.why-copy h2 { max-width: 700px; }
.why-lead { max-width: 650px; color: #b8c1c8; font-size: 16px; line-height: 1.8; margin: 30px 0; }
.why-copy ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.why-copy li { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.why-copy li > span { font-family: var(--font-display); font-size: 29px; color: var(--orange); }
.why-copy li strong, .why-copy li small { display: block; }
.why-copy li strong { text-transform: uppercase; font-size: 13px; letter-spacing: .7px; margin-bottom: 7px; }
.why-copy li small { color: #8997a0; line-height: 1.55; }

.process { background: var(--cream); color: var(--ink); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.process-copy h2 em { margin-top: 7px; }
.steps { padding: 0; margin: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid #c7cecf; }
.steps li:first-child { border-top: 1px solid #c7cecf; }
.steps li > span { width: 54px; height: 54px; border: 1px solid var(--blue); display: grid; place-items: center; color: var(--blue); font-family: var(--font-display); font-size: 26px; }
.steps strong { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 26px; }
.steps p { color: #667178; font-size: 13px; margin: 7px 0 0; line-height: 1.6; }

.coverage { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 8vw; min-height: 680px; background: var(--navy); overflow: hidden; }
.map-graphic { min-height: 450px; position: relative; }
.map-graphic::before, .map-graphic::after { content: ""; position: absolute; background: rgba(30,181,255,.24); }.map-graphic::before { width: 1px; height: 130%; left: 48%; top: -15%; }.map-graphic::after { height: 1px; width: 130%; top: 50%; left: -15%; }
.map-ring { position: absolute; border: 1px solid rgba(30,181,255,.38); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }.ring-one { width: 170px; height: 170px; }.ring-two { width: 310px; height: 310px; }.ring-three { width: 460px; height: 460px; border-color: rgba(30,181,255,.16); }
.map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--orange); font-size: 35px; text-shadow: 0 0 22px var(--orange); }
.map-label { position: absolute; font-family: var(--font-display); letter-spacing: 2px; font-size: 22px; }.map-label::before { content: ""; display: inline-block; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; margin-right: 8px; }.london { left: 8%; top: 43%; }.kent { right: 12%; bottom: 16%; }.essex { right: 9%; top: 15%; }
.coverage-copy h2 { font-size: clamp(68px, 8vw, 118px); color: var(--white); }
.coverage-copy > p:not(.eyebrow) { max-width: 510px; line-height: 1.8; color: #aab5bd; margin: 30px 0; }

.final-cta { text-align: center; padding: 120px 5vw; background: linear-gradient(rgba(3,7,10,.86), rgba(3,7,10,.98)), repeating-linear-gradient(90deg, transparent 0 90px, rgba(30,181,255,.13) 90px 94px); }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(62px, 9vw, 135px); }
.big-phone { display: inline-flex; flex-direction: column; align-items: center; margin: 42px auto 26px; }
.big-phone small { text-transform: uppercase; letter-spacing: 3px; color: #9ba7b0; font-size: 10px; }
.big-phone strong { font-family: var(--font-display); font-size: clamp(52px, 7vw, 95px); color: white; font-weight: 400; line-height: 1.1; border-bottom: 4px solid var(--orange); }
.final-actions { display: flex; justify-content: center; gap: 12px; }

footer { min-height: 125px; padding: 25px 4.5vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.13); background: #030507; }
footer p { margin: 0; text-transform: uppercase; color: #7d8991; font-size: 10px; letter-spacing: 1.4px; }
footer > a:last-child { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; }
.mobile-contact { display: none; }

@media (max-width: 1000px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 760px; }
  .hero-panel { display: none; }
  .assurance-bar { grid-template-columns: repeat(2, 1fr); }
  .assurance-bar article:nth-child(2) { border-right: 0; }
  .assurance-bar article:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.2); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid #cad0d0; }
  .why, .process, .coverage { grid-template-columns: 1fr 1fr; gap: 5vw; }
}

@media (max-width: 720px) {
  body { padding-bottom: 64px; }
  .site-header { height: 76px; padding: 0 20px; }
  .header-call { display: none; }
  .brand { min-width: auto; }
  .brand-mark { width: 31px; height: 36px; }
  .brand-type strong { font-size: 27px; }
  .brand-type small { font-size: 7px; letter-spacing: 3px; }
  .hero { min-height: 720px; padding: 150px 20px 55px; align-items: end; }
  .hero::before { inset: 76px 0 0; }
  .scaffold-lines { right: -80px; top: 110px; width: 360px; height: 430px; opacity: .12; }
  h1 { font-size: clamp(76px, 24vw, 110px); line-height: .8; }
  .hero-intro { font-size: 15px; line-height: 1.65; }
  .hero-actions .button { width: 100%; }
  .trade-line { line-height: 1.8; }
  .assurance-bar { grid-template-columns: 1fr; padding: 0 20px; }
  .assurance-bar article, .assurance-bar article:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); min-height: 90px; padding: 18px 0; }
  .section { padding: 80px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .eyebrow { grid-column: auto; }
  h2 { font-size: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2) { min-height: 340px; border-right: 0; border-bottom: 1px solid #cad0d0; }
  .why, .process, .coverage { grid-template-columns: 1fr; }
  .promo-frame { margin-right: 12px; }
  .promo-badge { width: 95px; height: 95px; right: -12px; bottom: 22px; }
  .promo-badge strong { font-size: 23px; }
  .why-copy { margin-top: 35px; }
  .process { gap: 45px; }
  .coverage { min-height: auto; }
  .map-graphic { min-height: 350px; order: 2; }
  .ring-three { width: 340px; height: 340px; }
  .ring-two { width: 250px; height: 250px; }
  .map-label { font-size: 18px; }
  .final-cta { padding: 90px 20px; }
  .final-actions { flex-direction: column; }
  footer { flex-direction: column; text-align: center; padding: 45px 20px; }
  footer .brand { margin-bottom: 8px; }
  .mobile-contact { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -10px 30px rgba(0,0,0,.28); }
  .mobile-contact a { display: grid; place-items: center; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: 1px; background: var(--orange); }
  .mobile-contact a:last-child { background: var(--blue); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
