:root {
  --navy: #0c2035;
  --navy-2: #122c47;
  --navy-3: #193b5d;
  --pink: #ed0a63;
  --pink-dark: #c9004e;
  --pink-pale: #fff0f6;
  --ink: #22252a;
  --grey: #646970;
  --light: #f3f5f6;
  --line: #dfe3e5;
  --green: #2fba7d;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 28px 80px rgba(4, 21, 37, .16);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--white); overflow-x: hidden; }
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
html.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .72s cubic-bezier(.2,.75,.25,1), transform .72s cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
.skip-link { position: fixed; left: 10px; top: 10px; z-index: 200; padding: 10px 14px; background: white; color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 150; width: 100%; height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 0 max(4vw, calc((100vw - 1380px) / 2)); background: rgba(12,32,53,.98); color: white; border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(4,21,37,.13); backdrop-filter: blur(12px); transition: background-color .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.97); color: var(--navy); border-bottom-color: rgba(12,32,53,.12); box-shadow: 0 10px 32px rgba(4,21,37,.12); }
.brand { position: relative; display: block; width: 158px; aspect-ratio: 198.43 / 85.04; flex: 0 0 auto; text-decoration: none; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: auto; transition: opacity .24s ease; }
.brand-logo-colour { opacity: 0; }
.site-header.is-scrolled .brand-logo-reverse { opacity: 0; }
.site-header.is-scrolled .brand-logo-colour { opacity: 1; }
nav { display: flex; align-items: center; gap: 29px; font-size: 13px; font-weight: 750; }
nav a { text-decoration: none; }
nav a:not(.header-cta):hover { color: var(--pink); }
.client-login-link { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; font-size: 13px; font-weight: 750; cursor: default; }
.client-login-link:hover { color: var(--pink); }
.client-login-icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cta { padding: 12px 18px; border-radius: 7px; background: var(--pink); color: white; }
.nav-close { display: none; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: white; transition: background-color .28s ease; }
.site-header.is-scrolled .menu-button span { background: var(--navy); }

.hero { position: relative; padding: 58px max(4vw, calc((100vw - 1380px) / 2)) 86px; background: var(--navy); color: white; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: auto auto -380px -120px; width: 760px; height: 760px; border: 120px solid rgba(237,10,99,.07); border-radius: 50%; pointer-events: none; }
.hero-content { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .82fr); gap: 5vw; align-items: start; }
.hero-copy { padding: 0 0 54px; }
.overline { margin: 0 0 18px; color: var(--pink); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; line-height: 1.35; font-weight: 900; }
.overline i { color: rgba(255,255,255,.5); font-style: normal; }
.overline.dark { color: var(--pink); }
h1 { max-width: 790px; margin: 0; font-size: clamp(58px, 6vw, 91px); line-height: .91; letter-spacing: -.067em; font-weight: 790; }
h1 em { display: block; color: var(--pink); font-style: normal; }
.hero-lead { max-width: 680px; margin: 29px 0 0; font-size: clamp(19px, 1.65vw, 23px); line-height: 1.48; font-weight: 580; }
.hero-detail { max-width: 650px; margin: 15px 0 0; color: rgba(255,255,255,.64); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 54px; padding: 0 25px; border: 0; border-radius: 8px; text-decoration: none; font-weight: 850; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 35px rgba(0,0,0,.16); }
.button-pink { background: var(--pink); color: white; }
.button-pink:hover { background: var(--pink-dark); }
.button-dark { background: var(--navy); color: white; }
.button-white { background: white; color: var(--navy); }
.button-full { width: 100%; }
.quiet-link { color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding: 6px 0; font-size: 13px; font-weight: 800; }
.quiet-link span { color: var(--pink); margin-left: 6px; }
.promise-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 710px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.promise-row div { display: flex; flex-direction: column; padding: 17px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.promise-row div:first-child { padding-left: 0; }
.promise-row div:last-child { border-right: 0; }
.promise-row strong { font-size: 13px; }
.promise-row small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 10px; }
.human-note { max-width: 600px; margin-top: 32px; padding: 21px 24px 19px; border-left: 3px solid var(--pink); background: rgba(255,255,255,.06); }
.human-note .mini-label { color: rgba(255,255,255,.58); }
.human-note blockquote { margin: 0; font-size: clamp(21px, 2vw, 28px); line-height: 1.1; letter-spacing: -.035em; font-weight: 700; }
.human-note > p:last-child { margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.5; }
.hero-picture { align-self: stretch; height: clamp(760px, 68vw, 940px); position: relative; border-radius: 8px 90px 8px 8px; overflow: hidden; background: var(--navy); }
.hero-picture > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; opacity: 0; transition: opacity .62s cubic-bezier(.22,.61,.36,1); will-change: opacity; }
.hero-picture > img.is-active { opacity: 1; }
.hero-picture > img[data-hero-slide="0"], .hero-picture > img[data-hero-slide="1"], .hero-picture > img[data-hero-slide="2"] { transform: none; object-position: center 50%; }
.hero-picture > img[data-hero-slide="3"] { object-position: 74% 50%; }
.image-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,31,56,.03) 35%, rgba(6,31,56,.76)); }
.status-panel { position: absolute; left: 26px; right: 26px; bottom: 28px; padding: 19px; border: 1px solid rgba(255,255,255,.22); border-radius: 13px; background: rgba(9,30,50,.83); backdrop-filter: blur(14px); }
.status-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.status-top b { color: white; letter-spacing: 0; }
.status-top b i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--green); }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 15px; }
.status-grid > div { min-width: 0; display: flex; flex-direction: column; padding: 10px; border-radius: 8px; background: rgba(255,255,255,.08); }
.status-icon { display: grid; place-items: center; width: 25px; height: 25px; margin-bottom: 9px; border-radius: 50%; background: var(--pink); color: white; font-size: 10px; font-weight: 900; }
.status-grid small { color: rgba(255,255,255,.5); font-size: 8px; }
.status-grid strong { overflow: hidden; margin-top: 3px; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.status-panel > p { margin: 14px 0 0; color: rgba(255,255,255,.6); font-size: 10px; }
.enquiry-card { position: relative; z-index: 5; max-width: 1180px; margin: -22px auto 0; padding: 36px 44px 30px; border-radius: var(--radius); background: white; color: var(--ink); box-shadow: var(--shadow); scroll-margin-top: 20px; }
.customer-reviews-top + .enquiry-card { margin-top: 24px; }
.form-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.form-topline-actions { display: flex; align-items: flex-start; gap: 22px; }
.enquiry-close { display: grid; place-items: center; width: 36px; height: 36px; margin-top: -7px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--grey); font-size: 25px; line-height: 1; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.enquiry-close:hover, .enquiry-close:focus-visible { border-color: var(--pink); background: var(--pink-pale); color: var(--pink); outline: none; }
.form-label, .mini-label { margin: 0 0 8px; color: var(--pink); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; }
.form-topline h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.045em; }
.step-count { display: flex; align-items: baseline; color: var(--pink); }
.step-count b { font-size: 30px; }
.step-count span { color: var(--grey); font-size: 13px; }
.form-intro { max-width: 700px; margin: 12px 0 20px; color: var(--grey); line-height: 1.5; }
.form-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 25px; }
.form-progress span { height: 4px; border-radius: 4px; background: #eceeef; }
.form-progress span.active { background: var(--pink); }
.form-step { animation: stepIn .28s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(5px); } }
fieldset { margin: 0 0 22px; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 8px; font-size: 15px; font-weight: 850; }
.question-note { margin: 0 0 14px; color: var(--grey); font-size: 12px; }
.property-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.property-choice { position: relative; display: grid; grid-template-columns: 48px 1fr 20px; align-items: center; gap: 12px; min-height: 82px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: background .2s, border .2s; }
.property-choice:hover, .property-choice.selected { border-color: var(--pink); background: var(--pink-pale); }
.property-choice input { position: absolute; opacity: 0; }
.property-choice-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: white; color: var(--pink); font-size: 26px; }
.property-choice > span:nth-of-type(2) { display: flex; flex-direction: column; }
.property-choice strong { font-size: 14px; }
.property-choice small { margin-top: 3px; color: var(--grey); font-size: 11px; }
.property-choice i { display: none; color: var(--pink); font-style: normal; font-weight: 900; }
.property-choice.selected i { display: block; }
.property-detail-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.property-detail-choice { min-height: 48px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--navy); font: inherit; font-size: 12px; line-height: 1.25; font-weight: 850; text-align: left; cursor: pointer; transition: border .2s, background .2s, box-shadow .2s; }
.property-detail-choice:hover, .property-detail-choice[aria-pressed="true"] { border-color: var(--pink); background: var(--pink-pale); box-shadow: 0 5px 12px rgba(12,32,53,.08); }
.option-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.option-list label { position: relative; }
.option-list input { position: absolute; opacity: 0; }
.option-list span { display: flex; align-items: center; min-height: 54px; padding: 11px 38px 11px 13px; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; line-height: 1.25; font-weight: 720; cursor: pointer; }
.option-list input:checked + span { border-color: var(--pink); background: var(--pink-pale); }
.option-list input:checked + span::after { content: "✓"; position: absolute; right: 13px; color: var(--pink); font-weight: 900; }
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.service-options label { position: relative; }
.service-options input { position: absolute; opacity: 0; }
.service-options span { display: flex; align-items: center; min-height: 46px; padding: 10px 34px 10px 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--grey); font-size: 11px; font-weight: 750; cursor: pointer; }
.service-options input:checked + span { border-color: var(--pink); background: var(--pink-pale); color: var(--ink); }
.service-options input:checked + span::after { content: "✓"; position: absolute; right: 12px; color: var(--pink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; }
.field input { width: 100%; min-height: 45px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; color: var(--ink); outline: 0; }
.field input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-pale); }
.field small { display: block; margin-top: 5px; color: var(--grey); font-size: 10px; }
.field.invalid input { border-color: #bd2424; background: #fff8f8; }
.form-error { display: none; margin: 6px 0 0; color: #b51e1e; font-size: 10px; font-weight: 750; }
.form-error.visible, .field.invalid .form-error { display: block; }
.consent { display: flex; align-items: flex-start; gap: 9px; color: var(--grey); font-size: 11px; cursor: pointer; }
.consent input { accent-color: var(--pink); margin-top: 2px; }
.back-button, .reset-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 4px 0; margin: 0 0 16px; color: var(--grey); font-size: 11px; font-weight: 850; cursor: pointer; }
.form-reassurance { margin: 10px 0 0; color: var(--grey); text-align: center; font-size: 10px; }
.form-footer { margin: 22px -44px -30px; padding: 16px 44px; border-radius: 0 0 var(--radius) var(--radius); background: var(--light); text-align: center; color: var(--grey); font-size: 12px; }
.form-footer a { margin-left: 5px; color: var(--pink); text-decoration: none; font-weight: 900; }
.trust-strip { display: grid; grid-template-columns: repeat(6, 1fr); max-width: 1340px; margin: 0 auto; padding: 25px max(4vw, calc((100vw - 1340px) / 2)); background: white; border-bottom: 1px solid var(--line); }
.trust-strip > div { min-height: 82px; padding: 0 18px; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { padding-right: 0; border-right: 0; }
.trust-icon { display: block; width: 42px; height: 45px; margin-bottom: 10px; object-fit: contain; object-position: left center; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--navy); font-size: 13px; line-height: 1.2; }
.trust-strip strong b { color: var(--pink); font-weight: 900; }
.trust-strip span { margin-top: 6px; color: var(--grey); font-size: 13px; line-height: 1.35; }
.success-step { padding: 12px 0 20px; text-align: center; }
.success-tick { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; background: var(--pink-pale); color: var(--pink); font-size: 29px; font-weight: 900; }
.success-step h3 { margin: 0; font-size: 38px; letter-spacing: -.04em; }
.success-step > p:not(.form-label) { max-width: 660px; margin: 13px auto; color: var(--grey); line-height: 1.55; }
.enquiry-summary { max-width: 650px; margin: 20px auto; padding: 15px 18px; border-radius: 10px; background: var(--light); color: var(--grey); text-align: left; font-size: 12px; line-height: 1.6; }
.enquiry-summary strong { color: var(--ink); }

.platform { padding: 104px max(4vw, calc((100vw - 1340px) / 2)); background: white; }
.section-intro { max-width: 930px; }
.section-intro h2, .audience-heading h2, .review h2 { margin: 0; font-size: clamp(43px, 4.7vw, 68px); line-height: .98; letter-spacing: -.058em; }
.section-intro > p:last-child, .audience-heading > p:last-child { max-width: 760px; color: var(--grey); font-size: 18px; line-height: 1.6; }
.fragmentation-story { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5vw; align-items: center; margin-top: 48px; padding: 35px 40px; border-radius: var(--radius); background: var(--light); }
.fragmentation-heading h3 { max-width: 350px; margin: 0; font-size: clamp(30px, 3.2vw, 46px); line-height: .98; letter-spacing: -.05em; }
.fragmentation-heading > p:last-child { max-width: 370px; margin-bottom: 0; color: var(--grey); font-size: 14px; line-height: 1.55; }
.fragmentation-flow { display: grid; grid-template-columns: 1.16fr 38px .84fr; align-items: center; gap: 15px; }
.fragmentation-before, .fragmentation-after { min-height: 205px; padding: 25px; border-radius: 14px; }
.fragmentation-before { border: 1px solid #d4dadd; background: white; }
.fragmentation-after { background: var(--navy); color: white; box-shadow: 10px 10px 0 rgba(237,10,99,.13); }
.flow-label { display: block; margin-bottom: 14px; color: var(--pink); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 900; }
.fragmentation-before strong, .fragmentation-after strong { display: block; font-size: clamp(21px, 2.2vw, 30px); line-height: 1.02; letter-spacing: -.04em; }
.supplier-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 18px; }
.supplier-row i { padding: 6px 8px; border-radius: 999px; background: var(--light); color: var(--grey); font-size: 9px; font-style: normal; font-weight: 800; }
.flow-arrow { color: var(--pink); text-align: center; font-size: 30px; font-weight: 300; }
.single-platform { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: rgba(255,255,255,.65); font-size: 10px; }
.single-platform span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--pink); color: white; font-weight: 900; }
.platform-showcase { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 550px; margin-top: 44px; border-radius: var(--radius); overflow: hidden; background: var(--navy); color: white; }
.platform-message { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.platform-message h3 { margin: 0; max-width: 500px; font-size: clamp(33px, 3.6vw, 51px); line-height: 1; letter-spacing: -.05em; }
.platform-message ul { margin: 30px 0; padding: 0; list-style: none; }
.platform-message li { display: grid; grid-template-columns: 32px 1fr; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.76); font-size: 13px; }
.platform-message li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.platform-message li span { color: var(--pink); font-size: 10px; font-weight: 900; }
.inline-cta { align-self: flex-start; color: white; text-decoration: none; font-weight: 850; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; font-size: 12px; }
.inline-cta span { color: var(--pink); margin-left: 8px; }
.platform-closer { max-width: 290px; margin: 0; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.5; }
.platform-screen { align-self: center; width: calc(100% - 65px); margin: 50px 0 50px 20px; padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; background: #f8fafb; color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.3); transform: perspective(1000px) rotateY(-5deg) rotateX(1deg); }
.screen-header { display: flex; justify-content: space-between; color: var(--grey); font-size: 9px; letter-spacing: .13em; font-weight: 900; }
.screen-header b { color: var(--green); letter-spacing: 0; }
.screen-header b i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--green); }
.screen-feature { display: flex; flex-direction: column; margin-top: 26px; padding: 26px; border-radius: 14px; background: var(--navy); color: white; }
.screen-feature small { color: rgba(255,255,255,.5); }
.screen-feature strong { margin-top: 7px; font-size: 28px; letter-spacing: -.04em; }
.screen-feature span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: 11px; }
.screen-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.screen-tiles div { display: flex; flex-direction: column; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.screen-tiles i { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 18px; border-radius: 50%; color: white; font-size: 10px; font-style: normal; font-weight: 900; }
.tile-pink { background: var(--pink); }.tile-blue { background: #2688d8; }.tile-green { background: var(--green); }.tile-amber { background: #e4a51e; }
.screen-tiles small { color: var(--grey); font-size: 8px; }
.screen-tiles strong { margin-top: 3px; font-size: 10px; }
.screen-activity { display: grid; grid-template-columns: 1fr auto; margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.screen-activity span { grid-column: 1 / -1; margin-bottom: 7px; color: var(--grey); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.screen-activity b { font-size: 10px; }.screen-activity small { color: var(--grey); font-size: 9px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 20px; }
.capability-grid article { min-height: 440px; padding: 35px; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .2s, box-shadow .2s; }
.capability-grid article:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(12,32,53,.08); }
.capability-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 34px; }
.capability-top > span { color: #b6bbc0; font-size: 11px; font-weight: 900; }
.capability-top svg { width: 43px; height: 43px; fill: none; stroke: var(--pink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.capability-grid h3 { margin: 0; font-size: 34px; letter-spacing: -.045em; }
.capability-grid article > p:not(.mini-label) { color: var(--grey); line-height: 1.55; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; }
.tag-list span { padding: 8px 10px; border-radius: 999px; background: var(--light); color: var(--grey); font-size: 9px; font-weight: 750; }
.solution-audiences { margin-top: 96px; }
.audience-heading { max-width: 850px; }
.audience-tabs { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 36px; border-bottom: 1px solid var(--line); }
.audience-tabs button { min-height: 54px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--grey); font-size: 12px; font-weight: 850; cursor: pointer; }
.audience-tabs button.active { border-color: var(--pink); color: var(--ink); }
.audience-panel { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 520px; background: var(--light); }
.audience-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px; }
.audience-copy h3 { margin: 0; font-size: clamp(35px, 3.8vw, 54px); line-height: 1; letter-spacing: -.052em; }
.audience-copy > p:not(.mini-label) { color: var(--grey); line-height: 1.6; }
.audience-copy ul { margin: 14px 0 28px; padding: 0; list-style: none; }
.audience-copy li { padding: 8px 0; font-size: 12px; font-weight: 750; }
.audience-copy li::before { content: "✓"; margin-right: 9px; color: var(--pink); }
.audience-image { position: relative; min-height: 400px; overflow: hidden; background: var(--navy); }
.audience-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .22s; }
.audience-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,31,52,.75)); }
.audience-image span { position: absolute; z-index: 2; left: 30px; bottom: 24px; color: white; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 900; }

.protected-showcase { margin-top: 96px; scroll-margin-top: 25px; }
.protected-heading { display: grid; grid-template-columns: 1fr 335px; align-items: end; gap: 8vw; }
.protected-heading > div { max-width: 850px; }
.protected-heading h2 { margin: 0; font-size: clamp(43px, 4.7vw, 68px); line-height: .98; letter-spacing: -.058em; }
.protected-heading > div > p:not(.overline,.local-note) { max-width: 760px; color: var(--grey); font-size: 17px; line-height: 1.6; }
.local-note { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: var(--navy); font-size: 11px; line-height: 1.45; font-weight: 800; }
.local-note span { color: var(--pink); font-size: 12px; }
.reviews-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; min-height: 265px; padding: 29px; border-radius: 16px; background: var(--navy); color: white; text-decoration: none; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.reviews-card::after { content: ""; position: absolute; z-index: 0; width: 180px; height: 180px; right: -75px; bottom: -85px; border: 35px solid rgba(237,10,99,.22); border-radius: 50%; }
.reviews-card > * { position: relative; z-index: 1; }
.reviews-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(12,32,53,.18); }
.reviews-label { color: rgba(255,255,255,.56); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 900; }
.review-stars { margin-top: 15px; color: var(--pink); letter-spacing: .12em; font-size: 19px; }
.reviews-card > strong { margin-top: 4px; font-size: 43px; line-height: 1; letter-spacing: -.045em; }
.reviews-card > strong span { color: rgba(255,255,255,.46); font-size: 16px; }
.reviews-card > p { margin: 8px 0 15px; color: rgba(255,255,255,.63); font-size: 10px; }
.reviews-link { position: relative; z-index: 2; border-bottom: 1px solid rgba(255,255,255,.42); padding-bottom: 4px; font-size: 10px; font-weight: 850; }
.reviews-link b { margin-left: 5px; color: var(--pink); }
.reviews-card > small { position: absolute; right: 24px; top: 26px; font-size: 9px; font-weight: 900; }
.customer-reviews { margin-top: 38px; padding: 30px 0 0; border-top: 1px solid var(--line); }
.customer-reviews-top { max-width: 1340px; margin: 0 auto; padding: 38px max(4vw, calc((100vw - 1340px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.hero > .customer-reviews-top { max-width: none; margin-left: min(-4vw, calc((1380px - 100vw) / 2)); margin-right: min(-4vw, calc((1380px - 100vw) / 2)); padding-left: max(4vw, calc((100vw - 1380px) / 2)); padding-right: max(4vw, calc((100vw - 1380px) / 2)); }
.customer-reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.customer-reviews-heading .overline { margin-bottom: 8px; }
.customer-reviews-heading h3 { margin: 0; font-size: clamp(29px, 3vw, 43px); line-height: .98; letter-spacing: -.05em; }
.customer-review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 25px; }
.customer-review-grid .review-card { display: none; }
.customer-review-grid .review-card.is-visible { display: flex; }
.customer-review-grid blockquote { display: flex; flex-direction: column; min-height: 235px; margin: 0; padding: 21px; border: 1px solid var(--line); border-radius: 13px; background: white; box-shadow: 0 14px 34px rgba(12,32,53,.15); }
.customer-review-grid .review-stars { margin-top: 0; font-size: 14px; }
.customer-review-grid p { display: -webkit-box; min-height: 108px; margin: 17px 0 14px; overflow: hidden; color: var(--ink); font-size: 14px; line-height: 1.55; font-weight: 700; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.customer-review-grid cite { margin-top: auto; color: var(--grey); font-size: 10px; font-style: normal; font-weight: 800; }
.reviews-source { display: inline-block; margin-top: 19px; color: var(--navy); border-bottom: 1px solid var(--navy); font-size: 11px; font-weight: 850; text-decoration: none; }
.reviews-source b { color: var(--pink); margin-left: 4px; }
.reviews-controls { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.reviews-controls button { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--navy); border-radius: 50%; background: transparent; color: var(--navy); font-size: 18px; cursor: pointer; }
.reviews-controls button:hover { background: var(--navy); color: white; }
.review-position { min-width: 38px; color: var(--grey); text-align: center; font-size: 11px; font-weight: 800; }
.property-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 215px; gap: 12px; margin-top: 40px; }
.property-photo { position: relative; margin: 0; border-radius: 13px; overflow: hidden; background: var(--navy); }
.property-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.property-photo:hover img { transform: scale(1.035); }
.property-photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(180deg, transparent, rgba(5,21,35,.82)); pointer-events: none; }
.property-photo figcaption { position: absolute; z-index: 2; left: 19px; right: 19px; bottom: 17px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; color: white; }
.property-photo figcaption strong { color: var(--pink); text-transform: uppercase; letter-spacing: .11em; font-size: 9px; }
.property-photo figcaption span { text-align: right; font-size: 10px; font-weight: 750; }
.review { padding: 0 max(4vw, calc((100vw - 1340px) / 2)) 82px; background: var(--light); }
.planning-banner { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 520px; margin-left: 0; margin-right: 0; border-radius: var(--radius); overflow: hidden; background: var(--pink); color: white; }
.planning-banner > div:first-child { padding: 70px; }
.planning-banner h2 { max-width: 760px; }
.planning-banner > div:first-child > p:not(.overline) { max-width: 720px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.6; }
.planning-banner .overline { color: white; opacity: .7; }
.planning-benefits { display: flex; flex-wrap: wrap; gap: 7px; margin: 27px 0; }
.planning-benefits span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; font-size: 10px; font-weight: 750; }
.planning-orbit { position: relative; min-height: 460px; overflow: hidden; }
.orbit-house { position: absolute; z-index: 4; left: 50%; top: 50%; display: grid; place-items: center; width: 115px; height: 115px; transform: translate(-50%,-50%); border-radius: 50%; background: white; box-shadow: 0 25px 60px rgba(105,0,41,.22); }
.orbit-house img { width: 64px; height: 68px; object-fit: contain; }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.43); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 260px; height: 260px; }.orbit-two { width: 420px; height: 420px; }
.node { position: absolute; z-index: 5; padding: 9px 12px; border-radius: 999px; background: var(--navy); color: white; font-size: 8px; font-weight: 900; font-style: normal; letter-spacing: .09em; }
.node-one { left: 17%; top: 29%; }.node-two { right: 12%; top: 35%; }.node-three { left: 18%; bottom: 24%; }.node-four { right: 15%; bottom: 19%; }
.review-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 7vw; padding: 96px 0 80px; }
.review-copy > p:not(.overline,.micro-trust) { color: var(--grey); font-size: 17px; line-height: 1.6; }
.review-points { margin: 32px 0; }
.review-points > div { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.review-points > div:last-child { border-bottom: 1px solid var(--line); }
.review-points > div > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--pink-pale); color: var(--pink); font-weight: 900; }
.review-points p { display: flex; flex-direction: column; margin: 0; }
.review-points strong { font-size: 13px; }
.review-points small { margin-top: 4px; color: var(--grey); font-size: 11px; }
.micro-trust { margin: 11px 0 0; color: var(--grey); font-size: 10px; }
.why-panel { align-self: start; padding: 46px; border-radius: var(--radius); background: var(--navy); color: white; box-shadow: 18px 20px 0 #e3e7e9; }
.why-panel h3 { margin: 0; font-size: 39px; line-height: 1; letter-spacing: -.05em; }
.why-list { margin-top: 30px; }
.why-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.15); }
.why-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.why-list > div > b { color: var(--pink); font-size: 16px; }
.why-list span { display: flex; flex-direction: column; }
.why-list strong { font-size: 13px; }.why-list small { margin-top: 5px; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.45; }
.faq-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; padding-top: 10px; }
.faq-heading h2 { font-size: clamp(40px, 4.3vw, 61px); }
.faq-heading > p:last-child { color: var(--grey); line-height: 1.6; }
.faq-list details { border-top: 1px solid #cdd2d4; }
.faq-list details:last-child { border-bottom: 1px solid #cdd2d4; }
.faq-list summary { position: relative; padding: 19px 40px 19px 0; list-style: none; font-size: 14px; line-height: 1.3; font-weight: 850; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 14px; color: var(--pink); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -2px 0 20px; padding-right: 35px; color: var(--grey); font-size: 12px; line-height: 1.65; }
.final-cta { margin-top: 80px; padding: 80px; border-radius: var(--radius); background: var(--navy); color: white; text-align: center; }
.final-cta h2 { max-width: 890px; margin: 0 auto; }
.final-cta > p:not(.overline) { color: rgba(255,255,255,.65); font-size: 17px; }
.final-cta .button { margin-top: 16px; }
.final-cta > div { display: flex; justify-content: center; gap: 26px; margin-top: 27px; }
.final-cta > div a { color: white; text-decoration: none; font-size: 12px; font-weight: 850; }

footer { min-height: 150px; padding: 44px max(4vw, calc((100vw - 1340px) / 2)); background: var(--pink); color: white; display: grid; grid-template-columns: 1fr; justify-items: start; align-items: start; gap: 18px; }
.footer-brand-block { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-logos { display: flex; align-items: center; gap: 22px; }
.footer-brand { display: block; width: 158px; text-decoration: none; }
.footer-brand img { width: 100%; height: auto; }
.footer-ssaib { display: block; width: 145px; max-height: 64px; object-fit: contain; }
.footer-established { margin: 0; color: var(--pink); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.footer-copy { color: rgba(255,255,255,.88); font-size: 13px; line-height: 1.5; }
.footer-copy strong { display: block; margin-top: 7px; color: white; font-weight: 900; }
.footer-legal { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin: 0; color: rgba(255,255,255,.88); font-size: 11px; line-height: 1.5; }
.footer-legal-primary, .footer-legal-links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 9px; }
.footer-legal-links { color: rgba(255,255,255,.92); }
.footer-legal a { color: white; text-underline-offset: 3px; }
.footer-legal-links > span > a { text-decoration: none; font-weight: 400; }
.mobile-enquiry { display: none; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translate(-50%, 160%); width: max-content; max-width: calc(100vw - 30px); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; box-shadow: 0 12px 35px rgba(0,0,0,.22); font-size: 11px; font-weight: 750; transition: transform .28s; }
.toast.show { transform: translate(-50%, 0); }

/* Keep supporting copy comfortable to read on desktop as well as mobile. */
.promise-row small, .human-note > p:last-child, .status-grid small, .status-panel > p,
.form-label, .mini-label, .question-note, .property-choice small, .option-list span,
.service-options span, .field label, .field small, .form-error, .consent,
.back-button, .reset-button, .form-reassurance, .form-footer, .flow-label,
.supplier-row i, .single-platform, .inline-cta, .platform-closer, .screen-header,
.screen-feature span, .screen-tiles small, .screen-tiles strong, .screen-activity span,
.screen-activity b, .screen-activity small, .capability-top > span, .tag-list span,
.audience-tabs button, .audience-copy li, .audience-image span, .local-note,
.reviews-label, .reviews-card > p, .reviews-link, .reviews-card > small,
.customer-review-grid p, .customer-review-grid cite, .reviews-source, .review-position,
.property-photo figcaption strong, .property-photo figcaption span, .planning-benefits span,
.node, .review-points strong, .review-points small, .micro-trust, .why-list strong,
.why-list small, .faq-list summary, .faq-list details p, .final-cta > div a,
.footer-copy, .prototype-note, .toast { font-size: 13px; line-height: 1.4; }
.overline { font-size: 12px; }
.status-top { font-size: 11px; }
.status-grid strong { font-size: 12px; }
.reviews-card > strong { font-size: 43px; }

.back-to-top { position: fixed; z-index: 100; right: 24px; bottom: 24px; display: grid; place-items: center; width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--pink); color: white; box-shadow: 0 10px 28px rgba(237,10,99,.3); font-size: 25px; line-height: 1; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, visibility .25s, transform .25s, background .2s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-dark); }
.back-to-top.on-footer { background: white; color: var(--pink); }

@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr .75fr; gap: 35px; }
  .hero-picture { height: clamp(700px, 76vw, 820px); }
  .platform-message { padding: 44px; }
  .audience-copy { padding: 45px; }
  .planning-banner > div:first-child { padding: 55px; }
}

@media (max-width: 840px) {
  body { padding-bottom: 67px; }
  .site-header { height: 86px; padding: 0 22px; }
  .brand { width: 176px; }
  nav { position: absolute; display: none; left: 16px; right: 16px; top: calc(100% - 6px); padding: 52px 20px 22px; border-radius: 13px; background: white; color: var(--ink); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; font-size: 15px; }
  nav.open { display: flex; }
  nav a { padding: 10px 8px; }
  .client-login-link { width: 100%; padding: 10px 8px; font-size: 15px; gap: 8px; justify-content: flex-start; }
  .client-login-icon { width: 17px; height: 17px; }
  nav .header-cta { color: white; text-align: center; }
  .nav-close { position: absolute; display: grid; place-items: center; right: 9px; top: 8px; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; color: var(--navy); font-size: 31px; line-height: 1; cursor: pointer; }
  .menu-button { display: block; }
  .overline { font-size: 12px; }
  .promise-row strong { font-size: 15px; }
  .promise-row small { font-size: 13px; line-height: 1.4; }
  .status-top { font-size: 12px; }
  .status-grid small { font-size: 12px; }
  .status-grid strong, .status-panel > p { font-size: 12px; }
  .form-label, .mini-label { font-size: 13px; }
  legend { font-size: 16px; }
  .question-note { font-size: 14px; }
  .property-choice strong { font-size: 15px; }
  .property-choice small { font-size: 13px; }
  .option-list span, .service-options span { font-size: 14px; }
  .field label { font-size: 14px; }
  .field small, .form-error, .form-reassurance { font-size: 12px; }
  .consent, .back-button, .reset-button { font-size: 13px; line-height: 1.45; }
  .form-footer, .enquiry-summary { font-size: 13px; line-height: 1.5; }
  .hero { padding: 35px 22px 70px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy { padding: 30px 0 5px; }
  h1 { font-size: clamp(55px, 14vw, 83px); }
  .hero-picture { height: clamp(360px, 68vw, 500px); }
  .hero-picture > img { object-position: center 50%; }
  .hero-picture > img[data-hero-slide="0"], .hero-picture > img[data-hero-slide="1"], .hero-picture > img[data-hero-slide="2"] { transform: none; object-position: center 50%; }
  .hero-picture > img[data-hero-slide="3"] { object-position: 72% 50%; }
  .human-note { margin-top: 25px; }
  .enquiry-card { margin-top: 35px; padding: 30px 25px; }
  .customer-reviews-top + .enquiry-card { margin-top: 35px; }
  .form-topline-actions { gap: 12px; }
  .enquiry-close { width: 40px; height: 40px; margin-top: -5px; }
  .form-footer { margin: 22px -25px -30px; padding: 16px 25px; }
  .option-list, .service-options { grid-template-columns: 1fr 1fr; }
  .platform { padding: 90px 22px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 20px 0; padding: 25px 22px; }
  .trust-strip > div, .trust-strip > div:first-child, .trust-strip > div:last-child { padding: 0 16px; border-right: 1px solid var(--line); }
  .trust-strip > div:nth-child(2n) { border-right: 0; }
  .trust-strip > div:nth-child(5), .trust-strip > div:nth-child(6) { grid-column: 1 / -1; padding-left: 0; border-right: 0; }
  .trust-strip strong { font-size: 14px; }
  .trust-strip span { font-size: 14px; }
  .trust-icon { margin-bottom: 8px; }
  .customer-reviews-top { padding: 30px 22px 34px; }
  .hero > .customer-reviews-top { margin-left: -22px; margin-right: -22px; padding: 30px 22px 34px; }
  .customer-reviews-heading { display: block; }
  .customer-review-grid { grid-template-columns: 1fr 1fr; }
  .customer-review-grid p { font-size: 14px; }
  .reviews-source { font-size: 13px; line-height: 1.45; }
  .fragmentation-story { grid-template-columns: 1fr; gap: 28px; margin-top: 45px; padding: 28px 22px; }
  .fragmentation-heading > p:last-child { font-size: 15px; }
  .fragmentation-flow { grid-template-columns: 1fr; gap: 10px; }
  .fragmentation-before, .fragmentation-after { min-height: auto; padding: 23px; }
  .fragmentation-before { width: calc(100% + 30px); margin-left: -15px; }
  .fragmentation-before .supplier-row { flex-wrap: nowrap; gap: 4px; }
  .fragmentation-before .supplier-row i { padding-left: 7px; padding-right: 7px; font-size: 12px; white-space: nowrap; }
  .flow-arrow { transform: rotate(90deg); }
  .fragmentation-before strong, .fragmentation-after strong { font-size: 29px; }
  .platform-closer { font-size: 14px; }
  .platform-showcase { grid-template-columns: 1fr; }
  .platform-message li, .inline-cta { font-size: 14px; }
  .platform-message li span { font-size: 12px; }
  .platform-screen { width: calc(100% - 70px); margin: 0 auto 50px; transform: none; }
  .screen-header, .screen-tiles small, .screen-activity span { font-size: 12px; }
  .screen-feature span, .screen-tiles strong, .screen-activity b, .screen-activity small { font-size: 12px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: auto; }
  .capability-top > span, .tag-list span { font-size: 12px; }
  .solution-audiences { margin-top: 85px; }
  .audience-tabs { grid-template-columns: 1fr 1fr; }
  .audience-tabs button { font-size: 13px; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-copy li { font-size: 14px; }
  .audience-image { min-height: 400px; grid-row: 1; }
  .audience-image span { font-size: 12px; }
  .protected-showcase { margin-top: 90px; }
  footer { display: block; padding: 38px 22px; }
  .footer-copy { margin: 24px 0 0; }
  .footer-legal { margin-top: 24px; }
  .protected-heading { grid-template-columns: 1fr; gap: 30px; }
  .local-note { font-size: 13px; }
  .reviews-card { max-width: 380px; min-height: 245px; }
  .reviews-label, .reviews-card > small { font-size: 12px; }
  .reviews-card > p, .reviews-link { font-size: 12px; }
  .property-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .property-photo figcaption strong, .property-photo figcaption span { font-size: 12px; }
  .review { padding: 0 22px 80px; }
  .planning-banner { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; }
  .planning-banner > div:first-child { padding: 50px 32px; }
  .planning-benefits span { font-size: 12px; }
  .planning-orbit { min-height: 390px; }
  .node { font-size: 12px; }
  .review-grid, .faq-wrap { grid-template-columns: 1fr; gap: 60px; }
  .review-points strong, .why-list strong { font-size: 14px; }
  .review-points small { font-size: 13px; }
  .micro-trust, .why-list small { font-size: 12px; }
  .faq-list details p { font-size: 14px; }
  .final-cta { padding: 60px 28px; }
  .final-cta > div a { font-size: 14px; }
  footer { grid-template-columns: 1fr; padding: 40px 22px; }
  .footer-brand { width: 180px; }
  .footer-copy { font-size: 14px; }
  .prototype-note { font-size: 12px; line-height: 1.5; }
  .mobile-enquiry { display: flex; position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 10px; height: 52px; align-items: center; justify-content: center; border-radius: 8px; background: var(--pink); color: white; text-decoration: none; font-weight: 900; box-shadow: 0 12px 35px rgba(237,10,99,.35); }
  .back-to-top { right: 18px; bottom: 77px; width: 46px; height: 46px; }
  .toast { bottom: 75px; font-size: 13px; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 13px; }
  .quiet-link { align-self: center; }
  .promise-row { grid-template-columns: 1fr; }
  .promise-row div, .promise-row div:first-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .promise-row div:last-child { border-bottom: 0; }
  .hero-picture { height: min(520px, calc((100vw - 44px) * 1.25)); border-radius: 8px 65px 8px 8px; }
  .hero-picture > img[data-hero-slide="0"], .hero-picture > img[data-hero-slide="1"], .hero-picture > img[data-hero-slide="2"] { transform: none; object-position: center 50%; }
  .hero-picture > img[data-hero-slide="3"] { object-position: 70% 50%; }
  .status-panel { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .status-grid { gap: 6px; margin-top: 10px; }
  .status-grid > div { padding: 7px; }
  .status-icon { width: 22px; height: 22px; margin-bottom: 6px; }
  .status-panel > p { display: none; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-grid > div { display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; column-gap: 8px; }
  .status-grid .status-icon { grid-row: 1 / 3; margin: 0; }
  .property-choices, .field-row, .option-list, .service-options { grid-template-columns: 1fr; }
  .property-choice { min-height: 68px; }
  .property-detail-choices { grid-template-columns: 1fr; }
  .platform-message { padding: 40px 27px; }
  .platform-screen { width: calc(100% - 36px); padding: 18px; }
  .screen-tiles { grid-template-columns: 1fr 1fr; }
  .audience-tabs button { font-size: 13px; }
  .audience-copy { padding: 40px 27px; }
  .property-gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .customer-review-grid { grid-template-columns: 1fr; }
  .reviews-card { max-width: none; width: 100%; }
  .planning-orbit { min-height: 330px; }
  .orbit-two { width: 320px; height: 320px; }
  .why-panel { padding: 35px 27px; box-shadow: 10px 12px 0 #e3e7e9; }
  .final-cta > div { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.preview-banner { background: #f8e8ef; color: #0c2035; font: 600 0.82rem/1.4 Arial, sans-serif; padding: 0.45rem 1rem; text-align: center; }
