:root {
  --blue: #0B2D5C;
  --navy: #091B33;
  --gold: #D4A017;
  --gold-bright: #EBC453;
  --gold-soft: #FBF5E4;
  --grey: #F2F4F7;
  --warm-white: #FBFAF7;
  --white: #FFFFFF;
  --ink: #14243A;
  --muted: #5E6B7C;
  --line: #DCE2E9;
  --soft-blue: #E8EEF6;
  --shadow: 0 18px 50px rgba(9, 27, 51, .10);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--grey);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 0;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { display: block; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  left: 14px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 100;
}
.skip-link:focus { top: 14px; }
.wrap { margin: 0 auto; width: min(1160px, calc(100% - 56px)); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.08;
}
h1 { color: var(--white); font-size: clamp(2.8rem, 6.2vw, 5.65rem); margin-bottom: 25px; max-width: 770px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.75rem); margin-bottom: 17px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
.eyebrow {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.section-intro { color: var(--muted); margin-bottom: 0; max-width: 520px; }

/* Shared navigation */
.site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(9, 27, 51, .10);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner { align-items: center; display: flex; gap: 28px; justify-content: space-between; min-height: 78px; }
.brand { align-items: center; display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.brand-logo { display: block; height: auto; width: 190px; }
.nav { align-items: center; display: flex; gap: clamp(18px, 3vw, 38px); font-size: .82rem; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:not(.button) { color: #334257; transition: color .2s ease; }
.nav a:not(.button):hover { color: var(--blue); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 8px;
  list-style: none;
  padding: 8px 12px;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 6px;
  transform: rotate(45deg) translateY(-2px);
  width: 6px;
}
.mobile-menu[open] summary::after { transform: rotate(225deg) translate(-1px, -1px); }
.mobile-menu nav {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  min-width: 205px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
}
.mobile-menu nav a { padding: 11px 12px; text-decoration: none; }

/* Buttons */
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: .01em;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 18px rgba(212, 160, 23, .20); }
.button-gold:hover { background: #E7B42C; box-shadow: 0 12px 24px rgba(212, 160, 23, .28); }
.button-dark { background: var(--navy); color: var(--white); }
.button-dark:hover { background: var(--blue); }
.button-outline { border-color: #AAB8C9; color: var(--navy); }
.button-outline:hover { background: var(--soft-blue); border-color: var(--blue); }
.button-light-outline { border-color: rgba(255, 255, 255, .4); color: var(--white); }
.button-light-outline:hover { background: rgba(255, 255, 255, .10); border-color: var(--white); }

/* Service hero */
.service-hero {
  background-color: var(--navy);
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), radial-gradient(circle at 84% 17%, rgba(11,45,92,.95), transparent 36%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--white);
  overflow: hidden;
  padding: clamp(78px, 11vw, 144px) 0 106px;
  position: relative;
}
.service-hero::before {
  border: 1px solid rgba(212, 160, 23, .42);
  content: "";
  height: 650px;
  position: absolute;
  right: -300px;
  top: -290px;
  transform: rotate(38deg);
  width: 650px;
}
.service-hero::after {
  background: var(--gold);
  content: "";
  height: 1px;
  left: 0;
  opacity: .8;
  position: absolute;
  top: 38%;
  transform: rotate(-23deg);
  transform-origin: left;
  width: 29vw;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  position: relative;
  z-index: 1;
}
.hero-copy { animation: rise-in .7s ease both; }
.hero-copy .eyebrow { color: var(--gold-bright); }
.hero-lede { color: #C9D5E4; font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.55; margin-bottom: 30px; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  align-items: center;
  color: #AABBD0;
  display: flex;
  flex-wrap: wrap;
  font-size: .72rem;
  font-weight: 600;
  gap: 13px;
  letter-spacing: .06em;
  margin-top: 28px;
  text-transform: uppercase;
}
.hero-meta span + span::before { color: var(--gold); content: "/"; margin-right: 13px; }
.hero-visual { animation: rise-in .7s .15s ease both; justify-self: end; max-width: 480px; width: 100%; }
.visual-frame {
  background: var(--blue);
  border: 1px solid rgba(255,255,255,.27);
  box-shadow: 22px 26px 0 rgba(212, 160, 23, .88);
  min-height: 420px;
  padding: 14px;
  position: relative;
}
.visual-frame::before, .visual-frame::after {
  border-color: rgba(255,255,255,.38);
  border-style: solid;
  content: "";
  height: 17px;
  position: absolute;
  width: 17px;
}
.visual-frame::before { border-width: 1px 0 0 1px; left: 7px; top: 7px; }
.visual-frame::after { border-width: 0 1px 1px 0; bottom: 7px; right: 7px; }
.visual-inner {
  background: linear-gradient(140deg, rgba(255,255,255,.10), transparent 58%);
  border: 1px solid rgba(255,255,255,.18);
  min-height: 390px;
  overflow: hidden;
  padding: 25px;
  position: relative;
}
.visual-top { align-items: center; color: #BFD0E3; display: flex; font-size: .62rem; font-weight: 700; justify-content: space-between; letter-spacing: .15em; text-transform: uppercase; }
.visual-top span:last-child { color: var(--gold-bright); }
.visual-service-title { color: var(--white); font-family: "Montserrat", sans-serif; font-size: clamp(1.7rem, 4vw, 2.45rem); letter-spacing: -.06em; line-height: 1; margin: 52px 0 13px; max-width: 260px; }
.visual-caption { color: #C7D5E5; font-size: .9rem; margin: 0; max-width: 250px; }
.visual-line { background: rgba(255,255,255,.56); height: 1px; position: absolute; transform-origin: left; width: 210px; }
.visual-line.one { bottom: 115px; right: 17px; transform: rotate(-30deg); }
.visual-line.two { bottom: 114px; right: 16px; transform: rotate(30deg); }
.visual-node { background: var(--gold-bright); border: 4px solid var(--blue); border-radius: 50%; bottom: 107px; height: 16px; position: absolute; right: 101px; width: 16px; z-index: 1; }
.visual-index { bottom: 34px; color: #9FB6D1; font-size: .58rem; letter-spacing: .15em; position: absolute; right: 25px; text-transform: uppercase; }
.tv-screen {
  border: 1px solid rgba(255,255,255,.56);
  bottom: 65px;
  height: 76px;
  position: absolute;
  right: 30px;
  width: 135px;
}
.tv-screen::before { border-top: 1px solid var(--gold-bright); content: ""; left: 22px; position: absolute; top: 36px; transform: rotate(-22deg); width: 105px; }
.tv-screen::after { border-bottom: 1px solid rgba(255,255,255,.55); bottom: -12px; content: ""; left: 38px; position: absolute; width: 60px; }
.cctv-camera { border: 1px solid rgba(255,255,255,.56); border-radius: 2px; bottom: 72px; height: 44px; left: 27px; position: absolute; width: 60px; }
.cctv-camera::before { border: 1px solid var(--gold-bright); border-radius: 50%; content: ""; height: 17px; left: 8px; position: absolute; top: 12px; width: 17px; }
.cctv-camera::after { border-bottom: 1px solid var(--gold-bright); border-top: 1px solid var(--gold-bright); content: ""; height: 10px; position: absolute; right: -22px; top: 16px; width: 22px; }
.cctv-path { border-top: 1px dashed var(--gold-bright); bottom: 94px; left: 87px; position: absolute; transform: rotate(-7deg); width: 198px; }
.cctv-recorder { border: 1px solid rgba(255,255,255,.56); bottom: 65px; height: 62px; position: absolute; right: 30px; width: 76px; }
.cctv-recorder::before, .cctv-recorder::after { background: var(--gold-bright); content: ""; height: 4px; left: 12px; position: absolute; width: 4px; }
.cctv-recorder::before { top: 17px; }
.cctv-recorder::after { top: 31px; }

/* Route and section layout */
.route-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.route-inner { align-items: center; display: flex; gap: 18px; justify-content: space-between; min-height: 78px; }
.route-label { align-items: center; color: var(--muted); display: flex; flex-wrap: wrap; font-size: .76rem; font-weight: 600; gap: 10px; margin: 0; }
.route-label strong { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.route-label span { color: var(--gold); font-family: "Montserrat", sans-serif; font-weight: 800; }
.route-link { color: var(--blue); font-size: .76rem; font-weight: 700; text-decoration: none; }
.route-link:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
section { padding: clamp(76px, 10vw, 124px) 0; }
.section-light { background: var(--white); }
.section-warm { background: var(--warm-white); border-top: 1px solid var(--line); }
.section-navy { background: var(--navy); color: var(--white); overflow: hidden; position: relative; }
.section-navy::after {
  border: 1px solid rgba(212,160,23,.32);
  content: "";
  height: 470px;
  position: absolute;
  right: -215px;
  top: -240px;
  transform: rotate(42deg);
  width: 470px;
}
.section-navy .step { border-top-color: rgba(235,196,83,.72); }
.section-navy .step + .step { border-left-color: rgba(255,255,255,.25); }
.section-navy .step p { color: #B8C8D9; }
.section-head { align-items: end; display: flex; gap: 30px; justify-content: space-between; margin-bottom: 42px; }
.section-head > div { max-width: 700px; }
.section-head .eyebrow { color: var(--blue); }
.section-navy .section-head .eyebrow { color: var(--gold-bright); }
.section-navy .section-intro { color: #B8C8D9; }

/* Shared cards and specification rows */
.feature-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card {
  background: var(--grey);
  border: 1px solid var(--line);
  min-height: 218px;
  padding: 24px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature-card:hover { border-color: #91A8C2; box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card.gold-edge { border-top: 3px solid var(--gold); padding-top: 22px; }
.feature-icon { color: var(--blue); height: 29px; margin-bottom: 28px; width: 29px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .87rem; margin: 0; max-width: 285px; }
.facts-panel { background: var(--blue); color: var(--white); margin-top: 15px; padding: 27px 30px; }
.facts-panel .eyebrow { color: var(--gold-bright); margin-bottom: 9px; }
.facts-panel h3 { font-size: clamp(1.35rem, 2.6vw, 2rem); margin-bottom: 7px; }
.facts-panel p { color: #C5D4E5; font-size: .85rem; margin: 0; max-width: 700px; }
.facts-panel strong { color: var(--white); }

/* Pricing */
.pricing-section { background: var(--grey); }
.pricing-layout { align-items: start; display: grid; gap: clamp(34px, 7vw, 92px); grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); }
.pricing-copy h2 { max-width: 480px; }
.pricing-copy .section-intro { max-width: 390px; }
.pricing-note { align-items: start; border-left: 2px solid var(--gold); color: var(--muted); display: flex; font-size: .76rem; gap: 10px; line-height: 1.5; margin: 27px 0 0; max-width: 390px; padding-left: 14px; }
.pricing-note strong { color: var(--navy); }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(9,27,51,.06);
  padding: 27px 29px 30px;
}
.price-table { border-collapse: collapse; font-size: .83rem; margin: 0; width: 100%; }
.price-table th, .price-table td { border-bottom: 1px solid var(--line); padding: 14px 0; text-align: left; }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table th { color: var(--muted); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.price-table td:last-child { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: 1.05rem; font-weight: 800; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.price-card-footnote { color: var(--muted); font-size: .72rem; line-height: 1.5; margin: 18px 0 0; }
.price-card-footnote strong { color: var(--navy); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 39px; }
.step { border-top: 2px solid var(--blue); padding: 23px 28px 8px 0; position: relative; }
.step + .step { border-left: 1px solid var(--line); padding-left: 28px; }
.step-number { color: var(--gold); font-family: "Montserrat", sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.step h3 { margin-top: 24px; }
.step p { color: var(--muted); font-size: .87rem; margin-bottom: 0; max-width: 280px; }
.process-cta { align-items: center; background: var(--gold); display: flex; gap: 24px; justify-content: space-between; padding: 23px 28px; }
.process-cta p { color: var(--navy); font-size: .92rem; margin: 0; }

/* CCTV-specific content */
.cctv-intro { align-items: start; display: grid; gap: clamp(30px, 6vw, 80px); grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr); margin-bottom: 54px; }
.cctv-intro .lede { color: var(--navy); font-size: clamp(1.08rem, 1.8vw, 1.25rem); line-height: 1.45; margin-bottom: 15px; max-width: 700px; }
.cctv-intro .description { color: var(--muted); max-width: 660px; }
.site-types { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 26px 0 0; padding: 0; }
.site-types li { border: 1px solid #C8D1DC; color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .06em; padding: 8px 11px; text-transform: uppercase; }
.cctv-check {
  background: var(--navy);
  box-shadow: 15px 15px 0 rgba(212,160,23,.86);
  color: var(--white);
  min-height: 260px;
  padding: 25px;
  position: relative;
}
.cctv-check::before, .cctv-check::after { border-color: rgba(255,255,255,.4); border-style: solid; content: ""; height: 15px; position: absolute; width: 15px; }
.cctv-check::before { border-width: 1px 0 0 1px; left: 8px; top: 8px; }
.cctv-check::after { border-width: 0 1px 1px 0; bottom: 8px; right: 8px; }
.cctv-check-top { align-items: center; color: #B9C9DB; display: flex; font-size: .61rem; font-weight: 800; justify-content: space-between; letter-spacing: .14em; text-transform: uppercase; }
.cctv-check-top span:last-child { color: var(--gold-bright); }
.cctv-check h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin: 40px 0 9px; max-width: 270px; }
.cctv-check p { color: #B9C9DB; font-size: .82rem; margin: 0; max-width: 300px; }
.outcome-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.outcome-card { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-top: 3px solid var(--blue); min-height: 196px; padding: 21px 22px 24px; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.outcome-card:hover { border-color: #91A8C2; border-top-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.outcome-top { align-items: center; display: flex; justify-content: space-between; margin-bottom: 26px; }
.outcome-number { color: var(--gold); font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.outcome-icon { color: var(--blue); height: 27px; width: 27px; }
.outcome-card h3 { margin-bottom: 9px; }
.outcome-card p { color: var(--muted); font-size: .87rem; margin: 0; max-width: 270px; }
.cctv-process { border-top: 1px solid #C9D2DD; margin-top: 70px; padding-top: 38px; }
.process-lead { align-items: end; display: flex; gap: 28px; justify-content: space-between; margin-bottom: 29px; }
.process-lead .eyebrow { color: var(--blue); margin-bottom: 8px; }
.process-lead h3 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); margin-bottom: 0; }
.process-lead > p { color: var(--muted); font-size: .83rem; margin: 0; max-width: 380px; text-align: right; }
.cctv-process .process-grid { margin-bottom: 0; }
.cctv-pricing { border-top: 1px solid #C9D2DD; margin-top: 69px; padding-top: 38px; }
.cctv-pricing-head { align-items: end; display: flex; gap: 28px; justify-content: space-between; margin-bottom: 26px; }
.cctv-pricing-head .eyebrow { color: var(--blue); margin-bottom: 8px; }
.cctv-pricing-head h3 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); margin-bottom: 0; }
.cctv-pricing-head > p { color: var(--muted); font-size: .83rem; margin: 0; max-width: 420px; text-align: right; }
.cctv-price-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cctv-price-card { background: var(--white); border: 1px solid #C9D2DD; min-height: 286px; padding: 23px 24px 25px; position: relative; }
.cctv-price-card.featured-price { border: 2px solid var(--blue); padding: 22px 23px 24px; }
.price-card-top { align-items: start; display: flex; gap: 15px; justify-content: space-between; }
.price-card-kicker { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .13em; margin: 0 0 8px; text-transform: uppercase; }
.cctv-price-card h4 { font-size: 1.45rem; margin: 0; }
.popular-badge { background: var(--gold); color: var(--navy); font-size: .61rem; font-weight: 800; letter-spacing: .1em; padding: 7px 9px; text-transform: uppercase; white-space: nowrap; }
.cctv-price { align-items: baseline; display: flex; gap: 8px; margin: 24px 0 3px; }
.cctv-price .price-from { color: var(--muted); font-size: .75rem; font-weight: 700; }
.cctv-price strong { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: clamp(1.9rem, 3vw, 2.45rem); letter-spacing: -.06em; line-height: 1; }
.cctv-price .price-unit { color: var(--muted); font-size: .74rem; font-weight: 600; }
.cctv-price-summary { color: var(--navy); font-size: .86rem; font-weight: 700; margin-bottom: 17px; }
.cctv-price-card ul { border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; list-style: none; margin: 0; padding: 12px 0 0; }
.cctv-price-card li { align-items: start; display: flex; gap: 8px; margin-top: 7px; }
.cctv-price-card li::before { color: var(--gold); content: "✓"; font-weight: 800; }
.addons { background: var(--gold-soft); border: 1px solid #E4D7B1; margin-top: 14px; padding: 22px 24px 24px; }
.addons h4 { color: var(--navy); font-size: 1.05rem; margin: 0 0 17px; }
.addon-row { align-items: center; border-top: 1px solid rgba(154,117,20,.24); display: grid; gap: 20px; grid-template-columns: minmax(150px, .7fr) 1fr; margin: 0; padding: 14px 0 0; }
.addon-row + .addon-row { margin-top: 14px; }
.addon-name { color: var(--navy); font-size: .84rem; font-weight: 800; }
.addon-prices { color: var(--muted); display: flex; flex-wrap: wrap; font-size: .78rem; gap: 7px 20px; }
.addon-prices span + span { color: var(--blue); font-weight: 700; }
.qualification { align-items: start; color: var(--muted); display: flex; font-size: .72rem; gap: 9px; line-height: 1.5; margin: 17px 0 0; }
.qualification::before { border: 1px solid #9AAFC4; border-radius: 50%; color: var(--blue); content: "i"; flex: 0 0 auto; font-family: "Montserrat", sans-serif; font-size: .62rem; font-weight: 800; height: 17px; line-height: 15px; text-align: center; width: 17px; }

/* Conversion panel and footer */
.contact { background: var(--grey); padding-top: 0; }
.contact-panel {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  position: relative;
}
.contact-panel::after { border: 1px solid rgba(255,255,255,.18); content: ""; height: 310px; position: absolute; right: -110px; top: -130px; transform: rotate(38deg); width: 310px; }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel .eyebrow { color: var(--gold-bright); }
.contact-panel h2 { max-width: 670px; }
.contact-panel p:not(.eyebrow) { color: #C5D4E5; margin-bottom: 0; max-width: 620px; }
.contact-action { align-items: flex-start; display: flex; flex: 0 0 auto; flex-direction: column; gap: 9px; }
.contact-action .button { white-space: nowrap; }
.contact-number { color: #D9E4EF; font-size: .79rem; font-weight: 600; letter-spacing: .04em; }
footer { background: var(--white); border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; padding: 28px 0; }
.footer-inner { align-items: center; display: flex; gap: 20px; justify-content: space-between; }
.footer-inner p { margin: 0; }
.footer-logo { display: inline-block; height: 30px; margin-right: 8px; vertical-align: middle; width: auto; }
.footer-links { align-items: center; display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-links a { color: var(--blue); font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.mobile-cta { background: var(--navy); bottom: 0; display: none; left: 0; padding: 10px 14px; position: fixed; right: 0; z-index: 30; }
.mobile-cta .button { width: 100%; }

@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .wrap { width: min(100% - 40px, 680px); }
  .hero-grid { gap: 64px; grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; max-width: 560px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-copy .section-intro, .pricing-note { max-width: 650px; }
}
@media (max-width: 700px) {
  body { padding-bottom: 70px; }
  .wrap { width: min(100% - 32px, 560px); }
  .header-inner { min-height: 68px; }
  .nav { display: none; }
  .mobile-menu { display: block; }
  .service-hero { padding: 74px 0 84px; }
  .service-hero::after { top: 44%; width: 55vw; }
  .hero-visual { margin: 0 auto; max-width: 480px; }
  .visual-frame { box-shadow: 12px 16px 0 rgba(212, 160, 23, .88); min-height: 360px; }
  .visual-inner { min-height: 330px; }
  .brand-logo { width: 165px; }
  .route-inner { align-items: flex-start; flex-direction: column; gap: 8px; justify-content: center; padding: 19px 0; }
  section { padding: 76px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 0; margin-bottom: 30px; }
  .feature-grid, .outcome-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .cctv-intro { grid-template-columns: 1fr; }
  .cctv-check { justify-self: start; max-width: 560px; width: 100%; }
  .cctv-pricing-head, .process-lead { align-items: flex-start; flex-direction: column; gap: 7px; }
  .cctv-pricing-head > p, .process-lead > p { max-width: 520px; text-align: left; }
  .cctv-price-grid { grid-template-columns: 1fr; }
  .cctv-price-card { min-height: 0; }
  .addon-row { align-items: start; grid-template-columns: 1fr; gap: 7px; }
  .process-grid { grid-template-columns: 1fr; }
  .step, .step + .step { border-left: 0; border-top: 1px solid var(--line); padding: 22px 0; }
  .step:first-child { border-top: 2px solid var(--blue); }
  .step h3 { margin-top: 14px; }
  .process-cta, .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-panel { gap: 26px; }
  .contact-action { width: 100%; }
  .contact-action .button { width: 100%; }
  .mobile-cta { display: block; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .cctv-intro { margin-bottom: 46px; }
  .cctv-check { box-shadow: 9px 11px 0 rgba(212,160,23,.86); padding: 19px 18px 22px; }
  .cctv-price { flex-wrap: wrap; }
  .addons { padding: 22px 20px 24px; }
  .contact-panel { padding: 31px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
