:root {
  --ink: #f8fbff;
  --muted: #b4c1d8;
  --soft: #d7e3fb;
  --night: #050914;
  --deep: #08112a;
  --navy: #092154;
  --panel: rgba(12, 24, 55, 0.78);
  --panel-solid: #0d1836;
  --panel-2: #101f47;
  --line: rgba(157, 189, 255, 0.18);
  --line-strong: rgba(91, 151, 253, 0.35);
  --blue: #5b97fd;
  --blue-2: #78aafa;
  --cyan: #66e1ff;
  --green: #86f08e;
  --amber: #f4c76e;
  --danger: #ff8d8d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 151, 253, 0.18), transparent 35rem),
    radial-gradient(circle at 86% 8%, rgba(102, 225, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #050914 0%, #08112a 42%, #050914 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(157, 189, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 189, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
body::after {
  content: "";
  position: fixed;
  inset: auto -20% -28% -20%;
  height: 420px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(91, 151, 253, 0.18), transparent 66%);
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
p, h1, h2, h3 { margin-top: 0; }
p { line-height: 1.72; }
p:last-child { margin-bottom: 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 9, 20, 0.94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .32);
  border-color: rgba(91, 151, 253, .24);
}
.nav-shell { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; min-width: 230px; }
.brand img { width: 246px; height: auto; filter: drop-shadow(0 12px 28px rgba(91,151,253,.16)); }
.site-nav { display: flex; align-items: center; gap: 4px; font-weight: 650; color: var(--muted); font-size: .9rem; }
.site-nav a { padding: 9px 10px; border-radius: 999px; border: 1px solid transparent; }
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active { background: rgba(91, 151, 253, .12); color: var(--ink); border-color: rgba(91, 151, 253, .22); outline: none; }
.site-nav .nav-cta { background: linear-gradient(135deg, var(--blue), #7cb1ff); color: #061129; margin-left: 6px; box-shadow: 0 14px 28px rgba(91, 151, 253, .25); border-color: rgba(255,255,255,.16); }
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { background: linear-gradient(135deg, var(--cyan), var(--green)); color: #061129; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 15px; background: rgba(91, 151, 253, .10); padding: 12px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 3px; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(91,151,253,.22), transparent 26rem),
    radial-gradient(circle at 20% 20%, rgba(102,225,255,.10), transparent 25rem),
    linear-gradient(135deg, rgba(9,33,84,.92), rgba(5,9,20,.45) 52%, rgba(8,17,42,.95));
}
.hero { padding: 118px 0 88px; }
.page-hero { padding: 112px 0 92px; }
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(91,151,253,.09), transparent 15rem),
    repeating-linear-gradient(155deg, transparent 0 20px, rgba(157,189,255,.045) 21px, transparent 22px 70px);
  opacity: .9;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -150px;
  height: 300px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(134,240,142,.16), transparent 42%),
    radial-gradient(ellipse at 70% 35%, rgba(91,151,253,.18), transparent 42%);
  filter: blur(12px);
}
.hero-grid,
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.narrow-hero { max-width: 900px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--blue-2); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green)); border-radius: 10px; box-shadow: 0 0 18px rgba(91,151,253,.5); }
.eyebrow.light { color: #cfe0ff; }
.eyebrow.light::before { background: var(--green); }
h1 { font-family: var(--font-heading); font-size: clamp(2.9rem, 6.4vw, 5.9rem); line-height: 1.06; letter-spacing: -.035em; margin: 0 0 32px; color: #fff; text-wrap: balance; font-weight: 650; }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 3.6vw, 3.65rem); line-height: 1.12; letter-spacing: -.028em; margin: 0 0 24px; color: #fff; text-wrap: balance; font-weight: 650; }
h3 { font-family: var(--font-heading); font-size: 1.17rem; line-height: 1.35; margin: 0 0 12px; color: #fff; font-weight: 650; }
.lead { font-size: clamp(1.08rem, 1.45vw, 1.26rem); color: var(--soft); max-width: 740px; margin-bottom: 34px; line-height: 1.72; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.button:hover,
.button:focus-visible { transform: translateY(-2px); outline: none; }
.button.primary { background: linear-gradient(135deg, var(--blue), #88b8ff); color: #061129; box-shadow: 0 18px 34px rgba(91,151,253,.28); border-color: rgba(255,255,255,.18); }
.button.primary:hover { background: linear-gradient(135deg, var(--cyan), var(--green)); }
.button.secondary { background: rgba(8, 17, 42, .72); color: #fff; border-color: var(--line-strong); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.button.secondary:hover { border-color: rgba(102,225,255,.5); background: rgba(91,151,253,.16); }
.button.inverse { background: #fff; color: #061129; }
.button.inverse:hover { background: var(--green); color: #061129; }
.local-proof { margin-top: 34px; padding: 18px 20px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(12, 24, 55, .72); display: grid; gap: 4px; max-width: 590px; box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.local-proof strong { color: #fff; }
.local-proof span { color: var(--muted); }

.signal-scene { position: relative; }
.map-card {
  position: relative;
  min-height: 570px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 51%, rgba(102,225,255,.18), transparent 20%),
    radial-gradient(circle at 58% 48%, rgba(134,240,142,.15), transparent 32%),
    linear-gradient(145deg, #061126, #092154 48%, #0a2a54);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(157,189,255,.22);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 0 19%, rgba(157,189,255,.12) 20% 21%, transparent 22% 46%, rgba(157,189,255,.09) 47% 48%, transparent 49%),
    repeating-radial-gradient(circle at 50% 52%, transparent 0 42px, rgba(157,189,255,.08) 43px 44px, transparent 45px 86px);
  opacity: .92;
}
.map-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px solid rgba(157,189,255,.12);
  box-shadow: inset 0 0 60px rgba(91,151,253,.14);
}
.mast-tower { position: absolute; left: 50%; top: 50%; width: 120px; height: 120px; transform: translate(-50%, -50%); border-radius: 38px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(215,227,251,.95)); box-shadow: 0 22px 70px rgba(0,0,0,.32), 0 0 46px rgba(91,151,253,.32); display: grid; place-items: center; z-index: 4; }
.mast-tower::before { content: ""; width: 8px; height: 56px; background: var(--navy); border-radius: 8px; }
.mast-tower span::before,
.mast-tower span::after { content: ""; position: absolute; border: 4px solid var(--blue); border-bottom: 0; border-left-color: transparent; border-right-color: transparent; border-radius: 50% 50% 0 0; width: 80px; height: 40px; left: 50%; top: 28px; transform: translateX(-50%); }
.mast-tower span::after { width: 50px; height: 25px; top: 44px; border-color: var(--green); border-bottom: 0; border-left-color: transparent; border-right-color: transparent; }
.signal-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(157,189,255,.24); border-radius: 50%; transform: translate(-50%, -50%); animation: pulse 4.2s ease-in-out infinite; box-shadow: 0 0 36px rgba(91,151,253,.12); }
.ring-one { width: 250px; height: 250px; }
.ring-two { width: 390px; height: 390px; animation-delay: .7s; }
.ring-three { width: 520px; height: 520px; animation-delay: 1.3s; }
.link-line { position: absolute; height: 3px; background: linear-gradient(90deg, rgba(255,255,255,0), var(--green), rgba(255,255,255,0)); transform-origin: left center; opacity: .86; filter: drop-shadow(0 0 10px rgba(134,240,142,.6)); }
.line-one { width: 210px; left: 52%; top: 49%; transform: rotate(-34deg); }
.line-two { width: 230px; left: 50%; top: 52%; transform: rotate(28deg); }
.line-three { width: 190px; left: 32%; top: 50%; transform: rotate(170deg); }
.map-label { position: absolute; z-index: 6; background: rgba(8,17,42,.88); color: #fff; padding: 11px 15px; border-radius: 999px; font-weight: 650; box-shadow: 0 14px 28px rgba(0,0,0,.25); border: 1px solid rgba(157,189,255,.28); }
.label-town { left: 30px; top: 28px; background: linear-gradient(135deg, var(--blue), #86aeff); color: #061129; }
.label-farm { right: 42px; top: 85px; }
.label-cafe { right: 52px; bottom: 68px; }
.label-office { left: 42px; bottom: 112px; }
@keyframes pulse { 50% { transform: translate(-50%, -50%) scale(1.04); opacity: .55; } }

.service-strip { position: relative; margin-top: -34px; z-index: 3; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 26px; overflow: hidden; box-shadow: var(--soft-shadow); border: 1px solid var(--line); background: rgba(12,24,55,.82); backdrop-filter: blur(18px); }
.strip-grid a { display: grid; gap: 6px; padding: 26px; border-right: 1px solid var(--line); min-height: 144px; }
.strip-grid a:last-child { border-right: 0; }
.strip-grid span,
.step { color: var(--blue-2); font-weight: 700; font-size: .82rem; letter-spacing: .08em; }
.strip-grid strong { font-size: 1.2rem; color: #fff; }
.strip-grid em { font-style: normal; color: var(--muted); }
.strip-grid a:hover { background: rgba(91,151,253,.13); }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.section-heading.narrow { max-width: 760px; }
.centred { text-align: center; margin: 0 auto 44px; max-width: 850px; }
.centred .eyebrow { justify-content: center; }
.rich-copy { font-size: 1.08rem; color: var(--soft); }
.rich-copy p + p { margin-top: 18px; }
.intro-section { position: relative; }
.intro-section::before,
.values-section::before,
.light-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 10%, rgba(91,151,253,.10), transparent 26rem);
}

.dark-panel-section { padding-top: 0; }
.dark-panel { display: grid; grid-template-columns: 1fr .9fr; gap: 48px; align-items: center; background: radial-gradient(circle at 80% 20%, rgba(134,240,142,.16), transparent 30%), linear-gradient(135deg, rgba(13,24,54,.95), rgba(9,33,84,.84)); border-radius: var(--radius-xl); padding: 58px; color: var(--soft); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line-strong); }
.dark-panel h2 { color: #fff; }
.ticks { display: grid; gap: 14px; }
.ticks span { position: relative; padding: 16px 18px 16px 48px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(157,189,255,.16); font-weight: 600; color: #fff; line-height: 1.5; }
.ticks span::before { content: "✓"; position: absolute; left: 17px; color: var(--green); font-weight: 950; }
.cards { display: grid; gap: 26px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards article,
.sector-row,
.contact-form,
.mini-dashboard,
.origin-card,
.quote-card,
.rural-card {
  background: linear-gradient(180deg, rgba(16,31,71,.86), rgba(12,24,55,.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 14px 42px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  backdrop-filter: blur(12px);
}
.cards article:hover,
.sector-row:hover { transform: translateY(-4px); box-shadow: var(--soft-shadow); border-color: rgba(91,151,253,.42); }
.cards p,
.sector-row p,
.contact-copy p,
.origin-card p,
.quote-card p { color: var(--muted); line-height: 1.7; }
.card-icon,
.sector-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: rgba(91,151,253,.14); font-size: 1.55rem; margin-bottom: 20px; border: 1px solid rgba(91,151,253,.24); }
.center-actions { display: flex; justify-content: center; margin-top: 34px; }
.cta-band { padding: 66px 0; background: linear-gradient(90deg, rgba(9,33,84,.94), rgba(5,9,20,.92)); color: #fff; border-block: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 35%, rgba(134,240,142,.16), transparent 28rem), linear-gradient(90deg, transparent, rgba(91,151,253,.08)); pointer-events: none; }
.cta-grid { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.cta-grid h2 { color: #fff; margin-bottom: 0; }
.cta-grid .eyebrow { color: #cfe0ff; }

.light-section { background: rgba(9, 16, 38, .48); border-block: 1px solid rgba(157,189,255,.08); position: relative; }
.split-feature { position: relative; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 62px; align-items: center; }
.feature-visual { min-height: 430px; position: relative; overflow: hidden; }
.rural-card { background: radial-gradient(circle at 50% 50%, rgba(134,240,142,.16), transparent 24%), linear-gradient(135deg, #071127, #0b2250); }
.rural-card::before { content: ""; position: absolute; inset: 25px; border-radius: 22px; background: repeating-radial-gradient(circle at center, transparent 0 46px, rgba(157,189,255,.12) 47px 48px, transparent 49px 92px); }
.pin { position: absolute; z-index: 2; display: inline-flex; align-items: center; justify-content: center; min-width: 72px; padding: 10px 14px; border-radius: 999px; background: rgba(8,17,42,.88); color: #fff; border: 1px solid rgba(157,189,255,.28); font-weight: 650; box-shadow: 0 12px 26px rgba(0,0,0,.25); }
.p1 { left: 18%; top: 26%; }
.p2 { right: 16%; top: 18%; }
.p3 { left: 27%; bottom: 18%; }
.p4 { right: 22%; bottom: 28%; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding: 15px 18px 15px 46px; border-radius: 16px; background: rgba(91,151,253,.10); border: 1px solid rgba(91,151,253,.18); color: var(--soft); line-height: 1.55; }
.check-list li::before { content: "•"; position: absolute; left: 18px; color: var(--green); font-size: 1.6rem; line-height: 1; top: 11px; }
.mini-dashboard { display: grid; gap: 14px; }
.dash-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dash-head span { width: 14px; height: 14px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px rgba(134,240,142,.7); }
.dash-head strong { font-size: 1.25rem; color: #fff; }
.dash-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(157,189,255,.12); }
.dash-row span { color: var(--muted); font-weight: 600; }
.dash-row b { color: #fff; text-align: right; }
.support-stack { display: grid; gap: 14px; }
.support-stack span { position: relative; padding: 19px 24px; border-radius: 18px; background: linear-gradient(135deg, rgba(91,151,253,.18), rgba(12,24,55,.78)); border: 1px solid var(--line); color: #fff; font-weight: 650; line-height: 1.45; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.support-stack span::after { content: ""; position: absolute; left: 34px; bottom: -15px; width: 2px; height: 15px; background: rgba(91,151,253,.44); }
.support-stack span:last-child::after { display: none; }
.origin-card { min-height: 290px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 30% 24%, rgba(91,151,253,.24), transparent 34%), linear-gradient(135deg, #071127, #0b2250); position: relative; overflow: hidden; }
.origin-card::before { content: "B"; position: absolute; right: -20px; top: -70px; font-size: 18rem; line-height: 1; font-weight: 700; color: rgba(91,151,253,.08); }
.origin-card span { color: var(--blue-2); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.origin-card strong { color: #fff; font-size: 1.72rem; line-height: 1.25; margin: 10px 0 12px; font-weight: 650; }
.quote-card { min-height: 330px; display: flex; align-items: center; background: radial-gradient(circle at 80% 20%, rgba(134,240,142,.15), transparent 30%), linear-gradient(135deg, rgba(16,31,71,.92), rgba(9,33,84,.8)); }
.quote-card p { font-size: clamp(1.45rem, 2.7vw, 2.35rem); line-height: 1.28; letter-spacing: -.02em; color: #fff; font-weight: 600; }
.sector-list { display: grid; gap: 22px; }
.sector-row { display: grid; grid-template-columns: .5fr 1fr; gap: 46px; align-items: center; }
.sector-row h2 { font-size: clamp(1.7rem, 2.7vw, 2.85rem); margin: 0; }

.contact-section { padding-top: 84px; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: start; }
.contact-copy { position: sticky; top: 118px; }
.contact-cards { display: grid; gap: 14px; margin-top: 24px; }
.contact-cards a { display: block; padding: 18px; border-radius: 18px; background: rgba(91,151,253,.10); border: 1px solid rgba(91,151,253,.18); color: var(--soft); }
.contact-cards strong { display: block; color: #fff; margin-bottom: 2px; }
.contact-cards a:hover { border-color: rgba(91,151,253,.44); background: rgba(91,151,253,.16); }
.contact-form { display: grid; gap: 22px; padding: 36px; }
.contact-form label { display: grid; gap: 10px; color: #fff; font-weight: 650; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid rgba(157,189,255,.22); border-radius: 16px; padding: 15px 16px; color: #fff; background: rgba(5,9,20,.55); font: inherit; outline: none; line-height: 1.45; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(91,151,253,.14); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form option { color: #061129; background: #fff; }
.form-note { color: var(--muted); font-size: .92rem; }

.site-footer { background: #040813; padding: 64px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr; gap: 42px; align-items: start; }
.footer-logo img { width: 236px; filter: drop-shadow(0 12px 28px rgba(91,151,253,.14)); }
.footer-brand-block p { color: var(--muted); max-width: 380px; margin-top: 20px; }
.footer-col { display: grid; gap: 8px; }
.footer-col h2 { font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; color: #fff; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--blue-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(157,189,255,.10); color: #8290aa; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

/* Softer typography and more breathing room. */
.section-heading p,
.narrow-hero p,
.rich-copy,
.footer-brand-block p,
.local-proof span,
.strip-grid em {
  line-height: 1.72;
}

.cards article > * + *,
.sector-row > div > * + *,
.contact-copy > * + * {
  margin-top: 12px;
}

strong, b {
  font-weight: 650;
}

@media (max-width: 1040px) {
  .nav-shell { min-height: 78px; }
  .brand { min-width: auto; }
  .brand img { width: 218px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 78px 20px auto 20px; display: grid; gap: 8px; padding: 18px; border-radius: 22px; background: rgba(5,9,20,.97); border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 13px 14px; }
  .site-nav .nav-cta { margin-left: 0; }
  .hero-grid,
  .page-hero-grid,
  .two-col,
  .dark-panel,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-copy { position: static; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .cards.three { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid a { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-grid a:nth-last-child(-n+2) { border-bottom: 0; }
  .sector-row { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 72px 0; }
  .hero, .page-hero { padding: 76px 0 62px; }
  h1 { font-size: clamp(2.7rem, 17vw, 4.3rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .hero-actions .button { width: 100%; }
  .cards.three,
  .cards.four,
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid a { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .strip-grid a:last-child { border-bottom: 0; }
  .dark-panel,
  .contact-form,
  .sector-row,
  .cards article,
  .mini-dashboard,
  .origin-card,
  .quote-card,
  .rural-card { padding: 22px; border-radius: 24px; }
  .footer-grid,
  .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .footer-logo img { width: 205px; }
  .map-card { min-height: 430px; }
  .mast-tower { width: 102px; height: 102px; border-radius: 30px; }
  .map-label { font-size: .82rem; }
  .ring-three { width: 390px; height: 390px; }
  .ring-two { width: 300px; height: 300px; }
  .ring-one { width: 210px; height: 210px; }
  .label-town { left: 18px; top: 22px; }
  .label-farm { right: 18px; top: 92px; }
  .label-cafe { right: 18px; bottom: 54px; }
  .label-office { left: 18px; bottom: 126px; }
  .brand img { width: 198px; }
}

@media (max-width: 440px) {
  .brand img { width: 174px; }
  .site-nav { inset: 76px 14px auto 14px; }
  .local-proof { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v7 homepage conversion and trust sections. */
.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(5, 9, 20, .48);
  border: 1px solid rgba(157,189,255,.18);
  color: var(--muted);
  font-size: .94rem;
}
.hero-contact span { color: var(--soft); }
.hero-contact a { color: #fff; font-weight: 650; }
.hero-contact a:hover { color: var(--green); }
.trust-section { position: relative; }
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(134,240,142,.10), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(91,151,253,.12), transparent 30rem);
}
.trust-cards article { min-height: 276px; }
.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(91,151,253,.11);
  color: var(--soft);
  border: 1px solid rgba(157,189,255,.18);
  font-weight: 600;
  line-height: 1.35;
}
.proof-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(134,240,142,.7);
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16,31,71,.88), rgba(12,24,55,.70));
  border: 1px solid rgba(157,189,255,.16);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.process-list h3 { margin-bottom: 8px; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.68; }
.process-list .step {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(91,151,253,.14);
  border: 1px solid rgba(91,151,253,.25);
  color: #fff;
}
.cta-note {
  max-width: 670px;
  color: #c8d6ef;
  margin: 16px 0 0;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cta-actions .button.secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}
@media (max-width: 1040px) {
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .hero-contact {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 18px;
    text-align: center;
  }
  .process-list article { grid-template-columns: 1fr; }
  .cta-actions, .cta-actions .button { width: 100%; }
}


/* v8 CCTV service updates. */
@media (max-width: 720px) {
  .strip-grid a:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .strip-grid a:last-child { border-bottom: 0; }
}
