:root {
  --navy: #16324a;
  --navy-soft: #284b63;
  --ink: #1d3449;
  --slate: #637789;
  --white: #ffffff;
  --canvas: #f4fbff;
  --cloud: #edf8ff;
  --lavender: #f5ecfa;
  --mint: #e9fbef;
  --purple: #aa5ea4;
  --purple-deep: #943091;
  --blue: #39bbec;
  --blue-deep: #169ed6;
  --green: #62bd72;
  --green-deep: #22aa6c;
  --brand-gradient: linear-gradient(115deg, var(--purple), var(--blue) 52%, var(--green));
  --border: rgba(22, 50, 74, 0.12);
  --container: 1460px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; background: var(--canvas); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--canvas); font-family: "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; max-width: 100%; }

.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-150%); padding: 12px 18px; border-radius: 100px; color: var(--white); background: var(--navy); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.container { position: relative; z-index: 3; width: min(calc(100% - 96px), var(--container)); margin-inline: auto; }
.section { position: relative; z-index: 2; min-height: 100svh; overflow: hidden; scroll-snap-align: start; }
.bright-section, .light-section { color: var(--ink); }

.site-header { position: fixed; z-index: 100; top: 18px; left: 50%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; width: min(calc(100% - 48px), 1500px); min-height: 72px; padding: 9px 10px 9px 16px; transform: translateX(-50%); border: 1px solid rgba(255, 255, 255, 0.76); border-radius: 24px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 18px 54px rgba(37, 92, 117, 0.13); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.brand { display: inline-flex; align-items: center; width: 190px; min-width: 190px; }
.brand img { display: block; width: 100%; height: auto; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 2.6vw, 44px); color: var(--navy-soft); font-size: 0.86rem; font-weight: 500; }
.site-nav a { position: relative; padding: 13px 0; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; border-radius: 10px; background: var(--brand-gradient); transition: transform 0.35s var(--ease); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid transparent; border-radius: 100px; font-size: 0.94rem; font-weight: 600; cursor: pointer; transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .site-nav a:focus-visible, .brand:focus-visible, .text-link:focus-visible, .service-card:focus-visible, .organisation-grid a:focus-visible, .quick-replies button:focus-visible, .chat-composer input:focus-visible, .chat-reset:focus-visible { outline: 3px solid rgba(57, 187, 236, 0.45); outline-offset: 4px; }
.button-gradient { color: var(--white); background: var(--brand-gradient); box-shadow: 0 16px 42px rgba(57, 187, 236, 0.24), 0 12px 34px rgba(170, 94, 164, 0.15); }
.button-gradient:hover { box-shadow: 0 20px 50px rgba(57, 187, 236, 0.33), 0 16px 40px rgba(170, 94, 164, 0.22); }
.button-ghost { color: var(--navy); border-color: rgba(22, 50, 74, 0.27); background: rgba(255, 255, 255, 0.42); }
.button-ghost:hover { border-color: var(--navy); background: rgba(255, 255, 255, 0.85); }
.button-light { color: var(--white); background: var(--brand-gradient); }
.button-small { gap: 12px; min-height: 48px; padding-inline: 22px; font-size: 0.84rem; }
.button-small strong { font-size: 1rem; font-weight: 400; }
.header-cta { box-shadow: 0 11px 28px rgba(57, 187, 236, 0.2); }
.header-call { min-width: 190px; flex-direction: column; gap: 1px; padding: 6px 20px; line-height: 1.12; }
.header-call span { font-size: 0.59rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.header-call strong { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.015em; }

.scroll-progress { position: fixed; z-index: 101; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--brand-gradient); }

.conversation-current { position: fixed; z-index: 4; inset: 0; overflow: hidden; opacity: 0.17; pointer-events: none; mix-blend-mode: multiply; transform: translate3d(calc((var(--page-progress) - .5) * 70px), calc((var(--page-progress) - .5) * 110px), 0); transition: transform 0.2s linear; }
.conversation-current svg { position: absolute; inset: -8%; width: 116%; height: 116%; overflow: visible; }
.current-line { fill: none; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 18 16; animation: current-flow 13s linear infinite; }
.current-purple { stroke: var(--purple); }
.current-blue { stroke: var(--blue); animation-duration: 16s; animation-direction: reverse; }
.current-green { stroke: var(--green); animation-duration: 19s; }
.current-packet { position: absolute; display: grid; place-items: center; min-width: 78px; min-height: 35px; padding: 0 13px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 100px; color: var(--navy); background: rgba(255, 255, 255, 0.9); box-shadow: 0 12px 34px rgba(35, 102, 127, 0.16); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.04em; animation: packet-drift 7s ease-in-out infinite; }
.packet-one { top: 14%; left: 14%; }
.packet-two { top: 48%; right: 10%; animation-delay: -2.3s; }
.packet-three { bottom: 10%; left: 34%; animation-delay: -4.6s; }

.eyebrow { margin: 0 0 27px; color: rgba(22, 50, 74, 0.64); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.36em; text-transform: uppercase; }
.dark-eyebrow { color: rgba(22, 50, 74, 0.6); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: "Sora", sans-serif; font-weight: 400; letter-spacing: -0.05em; }

.hero { display: grid; min-height: 100svh; padding: 122px 0 66px; background: radial-gradient(circle at 8% 20%, rgba(170, 94, 164, 0.18), transparent 25%), radial-gradient(circle at 92% 8%, rgba(57, 187, 236, 0.22), transparent 29%), radial-gradient(circle at 78% 91%, rgba(98, 189, 114, 0.2), transparent 28%), linear-gradient(135deg, #fcf7ff 0%, #eefaff 52%, #effff4 100%); }
.hero-grid-lines { position: absolute; inset: 0; opacity: 0.35; background-image: linear-gradient(rgba(22, 50, 74, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 50, 74, 0.035) 1px, transparent 1px); background-size: 88px 88px; -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 82%, transparent); mask-image: linear-gradient(to bottom, transparent, black 20%, black 82%, transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(390px, 0.68fr) minmax(650px, 1.32fr); align-items: center; gap: clamp(32px, 4vw, 66px); }
.hero-copy { z-index: 5; max-width: 650px; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(3.55rem, 4.65vw, 5.5rem); line-height: 0.99; }
.hero h1 span { color: transparent; background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; }
.hero-intro { max-width: 650px; margin: 30px 0 0; color: var(--slate); font-size: clamp(1.02rem, 1.12vw, 1.18rem); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 42px; }
.hero-proof > div { display: flex; min-height: 78px; align-items: center; gap: 11px; padding: 14px; border: 1px solid rgba(255, 255, 255, 0.82); border-radius: 18px; background: rgba(255, 255, 255, 0.6); box-shadow: 0 12px 30px rgba(51, 110, 130, 0.08); backdrop-filter: blur(12px); }
.hero-proof strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 1.32rem; font-weight: 500; }
.hero-proof span { color: #657c8e; font-size: 0.65rem; line-height: 1.43; }
.hero-proof i { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(98, 189, 114, 0.13), 0 0 15px rgba(98, 189, 114, 0.65); }

.conversation-shell { position: relative; z-index: 7; min-height: 730px; scroll-margin-top: 110px; }
.conversation-shell::before { content: ""; position: absolute; top: 50%; left: 50%; width: 93%; height: 86%; transform: translate(-50%, -50%) rotate(-2deg); border-radius: 42px; background: linear-gradient(125deg, rgba(170, 94, 164, 0.2), rgba(57, 187, 236, 0.22) 51%, rgba(98, 189, 114, 0.2)); filter: blur(1px); }
.conversation-glow { position: absolute; z-index: -1; inset: 5% -1% 3%; border-radius: 38%; opacity: 0.42; filter: blur(65px); background: linear-gradient(120deg, var(--purple), var(--blue), var(--green)); animation: conversation-glow 8s ease-in-out infinite alternate; }
.chat-panel { position: absolute; top: 50%; left: 50%; display: flex; width: min(100%, 700px); height: 690px; padding: 0; flex-direction: column; overflow: hidden; transform: translate(-50%, -50%); border: 2px solid transparent; border-radius: 34px; background: linear-gradient(var(--white), var(--white)) padding-box, var(--brand-gradient) border-box; box-shadow: 0 42px 100px rgba(46, 105, 130, 0.24), 0 16px 42px rgba(170, 94, 164, 0.12); }
.chat-head { display: flex; align-items: center; justify-content: space-between; min-height: 88px; padding: 17px 21px; border-bottom: 1px solid var(--border); background: linear-gradient(90deg, rgba(170, 94, 164, 0.08), rgba(57, 187, 236, 0.08), rgba(98, 189, 114, 0.08)); }
.chat-agent { display: flex; align-items: center; gap: 14px; }
.agent-mark { position: relative; display: grid; place-items: center; width: 51px; height: 51px; flex: 0 0 auto; border-radius: 17px; color: var(--white); background: var(--brand-gradient); box-shadow: 0 11px 27px rgba(57, 187, 236, 0.23); }
.agent-mark::after { content: ""; position: absolute; right: 4px; bottom: -3px; width: 13px; height: 13px; transform: rotate(25deg); border-radius: 3px; background: var(--green); }
.agent-mark b { position: relative; z-index: 2; font-family: "Sora", sans-serif; font-size: 1.08rem; font-weight: 600; }
.chat-agent > div { display: grid; gap: 6px; }
.chat-agent strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.96rem; font-weight: 500; }
.chat-agent small { display: flex; align-items: center; gap: 7px; color: #73889a; font-size: 0.73rem; }
.chat-agent small i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(98, 189, 114, 0.72); }
.chat-reset { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--border); border-radius: 50%; color: #71879a; background: rgba(255, 255, 255, 0.75); cursor: pointer; transition: transform 0.35s var(--ease), color 0.25s ease, background 0.25s ease; }
.chat-reset:hover { transform: rotate(-60deg); color: var(--navy); background: var(--cloud); }
.chat-progress { display: flex; align-items: center; gap: 14px; padding: 14px 21px 0; color: #8092a2; font-size: 0.7rem; }
.chat-progress > i { display: block; height: 4px; flex: 1; overflow: hidden; border-radius: 10px; background: #e8f2f6; }
.chat-progress > i b { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--brand-gradient); transition: width 0.45s var(--ease); }
.chat-messages { display: flex; min-height: 0; padding: 21px 21px 10px; flex: 1; flex-direction: column; gap: 13px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(22, 50, 74, 0.15) transparent; }
.message { display: flex; align-items: flex-end; gap: 10px; max-width: 86%; animation: message-in 0.46s var(--ease) both; }
.message-avatar { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 auto; border-radius: 10px; color: var(--white); background: linear-gradient(135deg, var(--purple), var(--blue)); font-family: "Sora", sans-serif; font-size: 0.64rem; }
.message > div { padding: 13px 15px; border: 1px solid #dcebf1; border-radius: 17px 17px 17px 5px; background: #f0f8fc; }
.message p { margin: 0; color: var(--ink); font-size: 0.89rem; line-height: 1.58; }
.user-message { align-self: flex-end; justify-content: flex-end; }
.user-message > div { border-color: rgba(57, 187, 236, 0.22); border-radius: 17px 17px 5px 17px; background: linear-gradient(135deg, rgba(170, 94, 164, 0.13), rgba(57, 187, 236, 0.12)); }
.user-message p { color: var(--navy); }
.typing-message > div { display: flex; align-items: center; gap: 4px; min-height: 43px; }
.typing-message i { width: 6px; height: 6px; border-radius: 50%; background: #8195a6; animation: typing 1.2s ease-in-out infinite; }
.typing-message i:nth-child(2) { animation-delay: 0.15s; }
.typing-message i:nth-child(3) { animation-delay: 0.3s; }
.lead-summary { width: 100%; max-width: none; }
.lead-summary > div { width: 100%; padding: 16px; border-color: rgba(98, 189, 114, 0.27); background: linear-gradient(145deg, rgba(98, 189, 114, 0.12), rgba(57, 187, 236, 0.09)); }
.lead-summary.is-sent > div { border-color: rgba(34, 170, 108, 0.34); background: linear-gradient(145deg, rgba(98, 189, 114, 0.17), rgba(57, 187, 236, 0.08)); }
.lead-summary.is-error > div { border-color: rgba(170, 94, 164, 0.3); background: linear-gradient(145deg, rgba(170, 94, 164, 0.13), rgba(57, 187, 236, 0.08)); }
.lead-summary strong { display: block; margin-bottom: 6px; color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.89rem; font-weight: 500; }
.lead-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lead-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 39px; padding: 0 15px; border-radius: 100px; color: var(--white); background: var(--brand-gradient); font-size: 0.73rem; font-weight: 600; }
.lead-actions a:last-child { color: var(--navy); border: 1px solid rgba(22, 50, 74, 0.2); background: var(--white); }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 7px 21px 13px 61px; }
.quick-replies:empty { display: none; }
.quick-replies button { min-height: 38px; padding: 8px 14px; border: 1px solid rgba(57, 187, 236, 0.26); border-radius: 100px; color: var(--navy-soft); background: #f3fbff; font-size: 0.74rem; font-weight: 500; cursor: pointer; transition: transform 0.25s var(--ease), border-color 0.25s ease, color 0.25s ease, background 0.25s ease; }
.quick-replies button:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--navy); background: #e9f8ff; }
.chat-composer { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin: 0 17px; padding: 8px 8px 8px 16px; border: 1px solid #d2e5ed; border-radius: 19px; background: #f8fcfe; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.chat-composer:focus-within { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(57, 187, 236, 0.1); }
.chat-composer input { min-width: 0; border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 0.85rem; }
.chat-composer input::placeholder { color: #8195a5; }
.chat-composer button { display: grid; place-items: center; width: 43px; height: 43px; padding: 0; border: 0; border-radius: 13px; color: var(--white); background: var(--brand-gradient); cursor: pointer; box-shadow: 0 8px 20px rgba(57, 187, 236, 0.2); }
.chat-composer button:disabled { cursor: not-allowed; opacity: 0.45; }
.chat-composer button span { transform: translateY(-1px); font-size: 1.2rem; }
.chat-note { margin: 9px 21px 15px; color: #8295a4; font-size: 0.66rem; text-align: center; }
.chat-float { position: absolute; z-index: 9; display: grid; grid-template-columns: auto 1fr; column-gap: 9px; min-width: 162px; padding: 13px 15px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 16px; color: var(--navy); background: rgba(255, 255, 255, 0.91); box-shadow: 0 18px 45px rgba(42, 101, 124, 0.18); backdrop-filter: blur(15px); animation: float-card 5.8s ease-in-out infinite; }
.chat-float i { grid-row: 1 / 3; align-self: center; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(98, 189, 114, 0.68); }
.chat-float span { color: #7a8d9c; font-size: 0.62rem; }
.chat-float strong { margin-top: 3px; font-size: 0.77rem; font-weight: 600; }
.float-insight { top: 6%; left: -3%; }
.float-route { right: -3%; bottom: 7%; animation-delay: -2.7s; }
.float-route i { background: var(--blue); box-shadow: 0 0 12px rgba(57, 187, 236, 0.68); }
.scroll-cue { position: absolute; z-index: 8; bottom: 21px; left: 50%; display: flex; align-items: center; gap: 13px; transform: translateX(-50%); color: rgba(22, 50, 74, 0.52); font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 27px; height: 39px; border: 1px solid rgba(22, 50, 74, 0.25); border-radius: 30px; }
.scroll-cue i::after { content: ""; position: absolute; top: 8px; left: 50%; width: 3px; height: 6px; transform: translateX(-50%); border-radius: 3px; background: var(--navy); animation: scroll-dot 1.8s ease-in-out infinite; }

.partner-trust { position: relative; z-index: 5; margin-top: -46px; padding: 0 0 32px; background: linear-gradient(180deg, transparent 46px, rgba(255, 255, 255, 0.97) 46px); }
.partner-trust-inner { display: grid; gap: 28px; padding: 34px 38px 24px; border: 1px solid rgba(22, 50, 74, 0.1); border-radius: 30px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 26px 75px rgba(39, 85, 110, 0.14); backdrop-filter: blur(18px); }
.partner-trust-copy { display: grid; grid-template-columns: minmax(320px, 0.78fr) minmax(300px, 1.22fr); align-items: end; gap: 8px 70px; }
.partner-trust-copy .eyebrow { grid-column: 1 / -1; margin-bottom: 0; font-size: 0.62rem; }
.partner-trust-copy h2 { max-width: 660px; margin: 0; color: var(--navy); font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1.04; }
.partner-trust-copy > p:last-child { max-width: 520px; margin: 0 0 5px; color: var(--slate); font-size: 0.96rem; line-height: 1.65; }
.partner-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.partner-badge { position: relative; min-width: 0; height: 174px; display: flex; align-items: center; justify-content: center; padding: 22px; overflow: hidden; border: 1px solid rgba(22, 50, 74, 0.1); border-radius: 23px; color: var(--navy); background: #fff; box-shadow: 0 13px 32px rgba(39, 85, 110, 0.08); }
.partner-badge::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; opacity: 0.78; background: var(--badge-accent, var(--brand-gradient)); }
.partner-badge img { display: block; width: 100%; height: 122px; object-fit: contain; }
.partner-badge-google { --badge-accent: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853); flex-direction: column; gap: 0; text-decoration: none; transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease; }
.partner-badge-google:hover { transform: translateY(-5px); border-color: rgba(66, 133, 244, 0.38); box-shadow: 0 20px 42px rgba(39, 85, 110, 0.14); }
.partner-badge-google img { width: 116px; height: 116px; }
.partner-badge-google span { position: absolute; right: 16px; bottom: 13px; color: #667d8e; font-size: 0.62rem; }
.partner-badge-meta { --badge-accent: #0866ff; }
.partner-badge-meta img { width: 88%; height: 116px; }
.partner-badge-microsoft { --badge-accent: linear-gradient(90deg, #4a9f75, #197f79); }
.partner-badge-microsoft img { width: 100%; height: 112px; transform: scale(1.72); }
.partner-badge-tiktok { --badge-accent: linear-gradient(90deg, #25f4ee, #111 48%, #fe2c55); }
.partner-badge-tiktok img { width: 100%; height: 112px; transform: scale(1.46); }
.partner-disclaimer { margin: -10px 0 0; color: #8293a0; font-size: 0.68rem; line-height: 1.5; text-align: center; }

.services { padding: 112px 0 118px; background: rgba(255, 255, 255, 0.95); }
.section-heading { display: grid; grid-template-columns: 1.32fr 0.68fr; gap: 56px; align-items: end; margin-bottom: 70px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -12px; }
.section-heading h2 { max-width: 900px; margin: 0; color: var(--navy); font-size: clamp(3rem, 4.9vw, 5.65rem); line-height: 1.01; }
.section-heading > p:last-child { max-width: 490px; margin: 0 0 8px; color: var(--slate); font-size: 1.03rem; line-height: 1.72; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.service-card { --accent: var(--purple); position: relative; display: flex; min-height: 440px; padding: 27px; flex-direction: column; overflow: hidden; border: 1px solid rgba(22, 50, 74, 0.1); border-radius: 28px; background: linear-gradient(165deg, #ffffff, color-mix(in srgb, var(--accent), white 92%)); box-shadow: 0 14px 35px rgba(51, 103, 122, 0.06); cursor: pointer; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease; }
.service-card::before { content: ""; position: absolute; top: -74px; right: -64px; width: 220px; height: 220px; opacity: 0.25; border-radius: 45% 55% 63% 37% / 51% 38% 62% 49%; background: var(--accent); filter: blur(7px); animation: shape-morph 8s ease-in-out infinite alternate; }
.service-card::after { content: ""; position: absolute; right: 25px; bottom: 0; left: 25px; height: 4px; transform: scaleX(0.18); transform-origin: left; border-radius: 10px 10px 0 0; background: var(--accent); transition: transform 0.5s var(--ease); }
.service-card:hover { transform: translateY(-10px); border-color: color-mix(in srgb, var(--accent), #16324a 15%); box-shadow: 0 30px 75px rgba(51, 103, 122, 0.13); }
.service-card:hover::after { transform: scaleX(1); }
.accent-purple { --accent: var(--purple); }
.accent-blue { --accent: var(--blue); }
.accent-green { --accent: var(--green); }
.accent-mix { --accent: #718bd4; }
.service-top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; }
.service-number { color: #7c8e9d; font-size: 0.7rem; letter-spacing: 0.2em; }
.service-icon { position: relative; display: grid; place-items: center; width: 59px; height: 59px; border-radius: 18px; background: color-mix(in srgb, var(--accent), white 69%); }
.icon-marketing { display: flex; align-items: flex-end; gap: 4px; padding: 17px; }
.icon-marketing i { width: 3px; height: 9px; background: var(--navy); }
.icon-marketing i:nth-child(2) { height: 16px; }
.icon-marketing i:nth-child(3) { height: 23px; }
.icon-marketing i:nth-child(4) { height: 30px; }
.icon-web i { width: 27px; height: 20px; border: 2px solid var(--navy); border-radius: 3px; }
.icon-web i::after { content: ""; position: absolute; bottom: 15px; left: 26px; width: 7px; height: 2px; background: var(--navy); box-shadow: 0 4px 0 var(--navy); }
.icon-ai i { position: absolute; width: 8px; height: 8px; border: 2px solid var(--navy); border-radius: 50%; }
.icon-ai i:nth-child(1) { top: 13px; }
.icon-ai i:nth-child(2) { bottom: 12px; left: 13px; }
.icon-ai i:nth-child(3) { right: 13px; bottom: 12px; }
.icon-ai::before, .icon-ai::after { content: ""; position: absolute; top: 27px; width: 20px; height: 2px; background: var(--navy); }
.icon-ai::before { left: 13px; transform: rotate(-52deg); }
.icon-ai::after { right: 13px; transform: rotate(52deg); }
.icon-data i { position: absolute; width: 27px; height: 11px; border: 2px solid var(--navy); border-radius: 50%; }
.icon-data i:nth-child(1) { top: 13px; }
.icon-data i:nth-child(2) { top: 23px; border-top-color: transparent; }
.icon-data i:nth-child(3) { top: 33px; border-top-color: transparent; }
.service-card h3 { position: relative; z-index: 2; margin: 70px 0 18px; color: var(--navy); font-size: clamp(1.62rem, 1.9vw, 2.18rem); line-height: 1.07; }
.service-card p { position: relative; z-index: 2; margin: 0; color: var(--slate); font-size: 0.91rem; line-height: 1.67; }
.service-link { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-top: auto; padding-top: 26px; border-top: 1px solid rgba(22, 50, 74, 0.1); color: var(--navy); font-size: 0.76rem; font-weight: 600; }
.service-link b { font-size: 1rem; font-weight: 400; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link b { transform: translate(3px, -3px); }

.impact-section { padding: 145px 0; color: var(--ink); background: radial-gradient(circle at 15% 18%, rgba(98, 189, 114, 0.24), transparent 27%), radial-gradient(circle at 92% 78%, rgba(57, 187, 236, 0.17), transparent 27%), linear-gradient(140deg, #ecfff1, #f5fff8 48%, #ecfbff); }
.impact-wash { position: absolute; inset: 0; opacity: 0.32; background-image: radial-gradient(circle, rgba(34, 170, 108, 0.18) 1px, transparent 1px); background-size: 34px 34px; -webkit-mask-image: linear-gradient(90deg, black, transparent 62%); mask-image: linear-gradient(90deg, black, transparent 62%); }
.impact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: center; gap: clamp(60px, 7vw, 105px); }
.impact-copy .eyebrow { color: var(--green-deep); }
.impact-copy h2 { max-width: 650px; margin: 0 0 28px; color: var(--navy); font-size: clamp(3.25rem, 4.9vw, 5.8rem); line-height: 1; }
.impact-copy > p:not(.eyebrow) { max-width: 610px; margin: 0; color: var(--slate); font-size: 1.04rem; line-height: 1.76; }
.impact-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.impact-services span { padding: 9px 13px; border: 1px solid rgba(34, 170, 108, 0.2); border-radius: 100px; color: #327154; background: rgba(255, 255, 255, 0.65); font-size: 0.69rem; font-weight: 500; }
.impact-network { position: relative; min-height: 610px; padding: 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 32px; background: rgba(255, 255, 255, 0.76); box-shadow: 0 38px 90px rgba(43, 111, 79, 0.12); backdrop-filter: blur(16px); }
.impact-network::before { content: ""; position: absolute; top: -90px; right: -70px; width: 300px; height: 300px; border-radius: 42% 58% 60% 40% / 50% 40% 60% 50%; background: linear-gradient(135deg, rgba(57, 187, 236, 0.18), rgba(98, 189, 114, 0.24)); animation: shape-morph 10s ease-in-out infinite alternate; }
.network-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid var(--border); }
.network-head span { color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.88rem; }
.network-head small { color: #738796; font-size: 0.61rem; letter-spacing: 0.11em; }
.organisation-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.organisation-grid a { position: relative; display: grid; grid-template-rows: 54px auto auto; place-items: center; min-height: 132px; padding: 15px 12px 12px; overflow: hidden; border: 1px solid rgba(22, 50, 74, 0.09); border-radius: 18px; color: var(--navy); background: rgba(246, 252, 250, 0.8); text-align: center; transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease; }
.organisation-grid a:nth-child(3n + 1) { background: rgba(170, 94, 164, 0.07); }
.organisation-grid a:nth-child(3n + 2) { background: rgba(57, 187, 236, 0.08); }
.organisation-grid a:nth-child(3n + 3) { background: rgba(98, 189, 114, 0.09); }
.organisation-grid a:hover { transform: translateY(-4px); border-color: rgba(57, 187, 236, 0.36); background: var(--white); box-shadow: 0 13px 28px rgba(42, 96, 117, 0.1); }
.organisation-grid a::before { content: attr(data-fallback); position: absolute; z-index: 0; top: 15px; left: 50%; display: none; place-items: center; width: 50px; height: 50px; transform: translateX(-50%); border-radius: 16px; color: var(--navy); background: linear-gradient(135deg, rgba(170, 94, 164, 0.16), rgba(57, 187, 236, 0.18), rgba(98, 189, 114, 0.18)); font-family: "Sora", sans-serif; font-size: 0.71rem; font-weight: 600; }
.organisation-grid a.logo-missing::before { display: grid; }
.organisation-grid img { position: relative; z-index: 1; display: block; width: min(100%, 150px); height: 50px; padding: 3px; border-radius: 7px; object-fit: contain; }
.organisation-grid img.logo-landscape { width: min(100%, 170px); padding: 0; object-fit: cover; object-position: center; }
.organisation-grid a.logo-missing img { visibility: hidden; }
.organisation-grid a > span { align-self: end; margin-top: 8px; font-family: "Sora", sans-serif; font-size: 0.69rem; line-height: 1.25; }
.organisation-grid small { align-self: end; margin-top: 5px; color: var(--slate); font-size: 0.58rem; opacity: 0; transform: translateY(5px); transition: opacity 0.28s ease, transform 0.28s var(--ease); }
.organisation-grid a:hover small, .organisation-grid a:focus-visible small { opacity: 1; transform: none; }
.network-pulse i { position: absolute; z-index: 3; width: 7px; height: 7px; border-radius: 50%; background: var(--white); box-shadow: 0 0 14px 5px var(--blue); animation: network-drift 8s ease-in-out infinite; }
.network-pulse i:nth-child(1) { top: 33%; left: 8%; }
.network-pulse i:nth-child(2) { top: 68%; right: 8%; animation-delay: -2.7s; box-shadow: 0 0 14px 5px var(--green); }
.network-pulse i:nth-child(3) { right: 42%; bottom: 5%; animation-delay: -5.4s; box-shadow: 0 0 14px 5px var(--purple); }

.system-section { padding: 140px 0; background: linear-gradient(138deg, #fbf5ff, #f2f7ff 50%, #eefcff); }
.split-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: center; gap: 78px; }
.sticky-copy { max-width: 550px; }
.sticky-copy h2 { margin: 0 0 27px; color: var(--navy); font-size: clamp(3.35rem, 4.9vw, 5.9rem); line-height: 0.99; }
.sticky-copy > p:not(.eyebrow) { margin: 0; color: var(--slate); font-size: 1.04rem; line-height: 1.74; }
.text-link { display: inline-flex; align-items: center; gap: 22px; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid rgba(22, 50, 74, 0.35); color: var(--navy); font-size: 0.88rem; font-weight: 600; }
.text-link span { transition: transform 0.3s var(--ease); }
.text-link:hover span { transform: translateY(5px); }
.journey-stack { position: relative; display: grid; gap: 16px; min-height: 680px; padding: 40px 20px 40px 76px; }
.journey-rail { position: absolute; top: 8%; bottom: 8%; left: 44px; width: 8px; overflow: hidden; border-radius: 100px; background: #dcecf2; }
.journey-rail::before { content: ""; position: absolute; inset: -100% 0 0; background: linear-gradient(to bottom, transparent, var(--purple), var(--blue), var(--green), transparent); animation: rail-flow 4.8s linear infinite; }
.journey-rail i { position: absolute; z-index: 2; top: 0; left: 50%; width: 14px; height: 14px; transform: translateX(-50%); border: 3px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 4px 14px rgba(57, 187, 236, 0.45); animation: rail-packet 4.8s var(--ease) infinite; }
.journey-card { position: relative; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 20px; min-height: 132px; padding: 22px 23px; border: 1px solid rgba(255, 255, 255, 0.92); border-radius: 24px; background: rgba(255, 255, 255, 0.78); box-shadow: 0 18px 45px rgba(60, 100, 122, 0.09); backdrop-filter: blur(14px); transition: transform 0.42s var(--ease), box-shadow 0.42s ease; }
.journey-card::before { content: ""; position: absolute; top: 50%; right: 100%; width: 42px; height: 2px; background: linear-gradient(90deg, #cfe5ec, var(--card-accent)); }
.journey-card::after { content: ""; position: absolute; top: 50%; right: calc(100% + 39px); width: 10px; height: 10px; transform: translateY(-50%); border: 3px solid var(--white); border-radius: 50%; background: var(--card-accent); box-shadow: 0 4px 12px color-mix(in srgb, var(--card-accent), transparent 45%); }
.journey-card:hover { transform: translateX(-8px); box-shadow: 0 25px 55px rgba(60, 100, 122, 0.14); }
.journey-card > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; color: var(--navy); background: color-mix(in srgb, var(--card-accent), white 72%); font-family: "Sora", sans-serif; font-size: 0.72rem; }
.journey-card > div { display: grid; gap: 5px; }
.journey-card small { color: #758999; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.journey-card strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 1.12rem; font-weight: 500; }
.journey-card p { margin: 0; color: var(--slate); font-size: 0.75rem; line-height: 1.5; }
.journey-card em { align-self: start; padding: 7px 10px; border-radius: 100px; color: color-mix(in srgb, var(--card-accent), var(--navy) 40%); background: color-mix(in srgb, var(--card-accent), white 88%); font-size: 0.61rem; font-style: normal; font-weight: 600; white-space: nowrap; }
.journey-listen { --card-accent: var(--purple); margin-right: 10%; }
.journey-create { --card-accent: var(--blue); margin-left: 7%; margin-right: 3%; }
.journey-connect { --card-accent: var(--green); margin-right: 7%; }
.journey-optimise { --card-accent: #718bd4; margin-left: 10%; }
.journey-stack.is-visible .journey-card { animation: journey-breathe 7s ease-in-out infinite; }
.journey-stack.is-visible .journey-card:nth-of-type(2) { animation-delay: -1.7s; }
.journey-stack.is-visible .journey-card:nth-of-type(3) { animation-delay: -3.4s; }
.journey-stack.is-visible .journey-card:nth-of-type(4) { animation-delay: -5.1s; }

.automation-section { padding: 140px 0; color: var(--white); background: linear-gradient(128deg, #96539e 0%, #6d78c9 35%, #2eb8e5 66%, #39bd8a 100%); }
.automation-wash { position: absolute; inset: 0; opacity: 0.34; background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px); background-size: 72px 72px; -webkit-mask-image: radial-gradient(circle at 70% 50%, black, transparent 76%); mask-image: radial-gradient(circle at 70% 50%, black, transparent 76%); }
.automation-grid { display: grid; grid-template-columns: 0.74fr 1.26fr; align-items: center; gap: 66px; }
.automation-copy .eyebrow { color: rgba(255, 255, 255, 0.8); }
.automation-copy h2 { margin: 0 0 28px; color: var(--white); font-size: clamp(3.2rem, 4.7vw, 5.65rem); line-height: 1.02; }
.automation-copy h2 span { color: #eafff0; }
.automation-copy > p:not(.eyebrow) { max-width: 570px; margin: 0; color: rgba(255, 255, 255, 0.79); font-size: 1.04rem; line-height: 1.74; }
.feature-list { display: grid; gap: 0; margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.feature-list li { display: flex; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.25); color: var(--white); font-size: 0.89rem; }
.feature-list span { color: #dfffea; font-size: 0.61rem; letter-spacing: 0.16em; }
.automation-board { position: relative; min-height: 650px; padding: 24px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 34px; color: var(--ink); background: rgba(255, 255, 255, 0.84); box-shadow: 0 45px 100px rgba(40, 67, 104, 0.24); backdrop-filter: blur(22px); }
.automation-board-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 3px 22px; border-bottom: 1px solid var(--border); }
.automation-board-head > div { display: grid; gap: 5px; }
.automation-board-head small { color: #7a8d9c; font-size: 0.61rem; letter-spacing: 0.14em; text-transform: uppercase; }
.automation-board-head strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 1.08rem; font-weight: 500; }
.automation-board-head > span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 100px; color: #347258; background: #e8faee; font-size: 0.67rem; font-weight: 600; }
.automation-board-head > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(98, 189, 114, 0.7); animation: status-pulse 1.8s ease-in-out infinite; }
.automation-lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-height: 490px; padding-top: 18px; }
.automation-lane { position: relative; display: flex; padding: 15px; flex-direction: column; overflow: hidden; border: 1px solid rgba(22, 50, 74, 0.09); border-radius: 22px; background: rgba(248, 252, 254, 0.76); }
.automation-lane::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--lane-accent); }
.lane-incoming { --lane-accent: var(--purple); }
.lane-thinking { --lane-accent: var(--blue); background: linear-gradient(180deg, rgba(235, 249, 255, 0.9), rgba(249, 253, 255, 0.82)); }
.lane-action { --lane-accent: var(--green); }
.automation-lane header { display: flex; align-items: center; gap: 9px; padding: 7px 1px 15px; }
.automation-lane header span { color: #8193a2; font-size: 0.59rem; letter-spacing: 0.12em; }
.automation-lane header strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.77rem; font-weight: 500; }
.lane-card { position: relative; display: grid; gap: 7px; padding: 15px; border: 1px solid rgba(22, 50, 74, 0.1); border-radius: 17px; background: var(--white); box-shadow: 0 12px 28px rgba(54, 102, 120, 0.08); }
.lane-card small { color: #788b9b; font-size: 0.62rem; }
.lane-card p { margin: 0; color: var(--navy); font-size: 0.75rem; font-weight: 500; line-height: 1.5; }
.lane-card em { color: #91a1ad; font-size: 0.59rem; font-style: normal; }
.message-card { margin-top: 32px; animation: lane-card-in 6s var(--ease) infinite; }
.signal-card, .next-card { display: flex; align-items: center; gap: 9px; margin-top: auto; }
.signal-card i { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px rgba(170, 94, 164, 0.55); }
.signal-card span, .next-card span { color: var(--navy-soft); font-size: 0.67rem; font-weight: 600; }
.intelligence-core { position: relative; display: grid; place-items: center; width: 114px; height: 114px; margin: 52px auto 25px; border: 1px solid rgba(57, 187, 236, 0.35); border-radius: 30px; background: linear-gradient(135deg, rgba(170, 94, 164, 0.13), rgba(57, 187, 236, 0.18), rgba(98, 189, 114, 0.13)); animation: intelligence-float 4s ease-in-out infinite; }
.intelligence-core b { display: grid; place-items: center; width: 55px; height: 55px; border-radius: 18px; color: var(--white); background: var(--brand-gradient); font-family: "Sora", sans-serif; font-size: 1.2rem; }
.intelligence-core i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(57, 187, 236, 0.6); }
.intelligence-core i:nth-of-type(1) { top: -4px; left: 20px; }
.intelligence-core i:nth-of-type(2) { right: -4px; bottom: 22px; background: var(--green); }
.intelligence-core i:nth-of-type(3) { bottom: -4px; left: 28px; background: var(--purple); }
.analysis-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.analysis-tags span { padding: 7px 9px; border: 1px solid rgba(57, 187, 236, 0.18); border-radius: 100px; color: #4a768c; background: rgba(255, 255, 255, 0.75); font-size: 0.6rem; font-weight: 600; animation: tag-pop 5s var(--ease) infinite; }
.analysis-tags span:nth-child(2) { animation-delay: -1.6s; }
.analysis-tags span:nth-child(3) { animation-delay: -3.2s; }
.action-card { margin-top: 32px; animation: lane-card-in 6s 2s var(--ease) infinite; }
.next-card i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: #367459; background: #e4f8ea; font-style: normal; }
.automation-timeline { display: flex; align-items: center; justify-content: center; gap: 9px; padding-top: 18px; color: #728797; font-size: 0.61rem; }
.automation-timeline i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(98, 189, 114, 0.12); }
.automation-timeline i:nth-of-type(2) { background: var(--blue); }
.automation-timeline i:nth-of-type(3) { background: var(--purple); }
.automation-timeline i:nth-of-type(4) { background: #718bd4; }

.analytics-section { padding: 140px 0; background: linear-gradient(145deg, #edfaff, #f8fcff 50%, #eefcf4); }
.analytics-grid { display: grid; grid-template-columns: 1.14fr 0.86fr; align-items: center; gap: 78px; }
.analytics-board { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 30px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 36px 90px rgba(57, 112, 128, 0.13); backdrop-filter: blur(16px); }
.board-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.board-head > div { display: grid; gap: 5px; }
.board-head small, .metric-row small { color: #7c8f9e; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; }
.board-head strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 1.23rem; font-weight: 500; }
.period-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 30px; color: #2d6e54; background: #e4f8ea; font-size: 0.66rem; }
.period-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(98, 189, 114, 0.7); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.metric-row article { position: relative; display: grid; gap: 8px; padding: 18px; border: 1px solid rgba(22, 50, 74, 0.08); border-radius: 16px; background: #fafdff; }
.metric-row strong { color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.98rem; font-weight: 500; }
.metric-up { position: absolute; top: 17px; right: 17px; color: var(--green-deep); }
.metric-dot { position: absolute; top: 21px; right: 19px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(57, 187, 236, 0.13); }
.chart-area { padding: 21px 20px 4px; border-radius: 18px; background: linear-gradient(180deg, #f5fbfe, #f0f8fa); }
.chart-label { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--navy-soft); font-size: 0.73rem; }
.chart-label small { color: #8b9dab; }
.chart-area svg { overflow: visible; }
.data-grid { fill: none; stroke: rgba(54, 93, 103, 0.08); stroke-width: 1; }
.data-area { fill: url(#areaFill); }
.data-line { fill: none; stroke: url(#lineStroke); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 5px 7px rgba(57, 187, 236, 0.23)); stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.data-line + circle { fill: var(--green); stroke: white; stroke-width: 4; opacity: 0; }
.analytics-board.is-visible .data-line { animation: draw-line 2s 0.25s var(--ease) forwards; }
.analytics-board.is-visible .data-line + circle { animation: fade-in 0.5s 2s forwards; }
.analytics-copy h2 { margin: 0 0 28px; color: var(--navy); font-size: clamp(3.2rem, 4.8vw, 5.7rem); line-height: 1; }
.analytics-copy > p:not(.eyebrow) { margin: 0; color: var(--slate); font-size: 1.04rem; line-height: 1.73; }
.data-points { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--border); }
.data-points > div { display: flex; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--border); }
.data-points span { color: var(--blue-deep); font-size: 0.64rem; letter-spacing: 0.18em; }
.data-points p { margin: 0; color: #697e8f; font-size: 0.88rem; }
.data-points strong { color: var(--navy); font-weight: 600; }

.proof-section { padding: 145px 0; background: rgba(255, 255, 255, 0.96); }
.proof-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px 90px; }
.proof-intro { max-width: 650px; }
.proof-intro h2 { margin: 0 0 26px; color: var(--navy); font-size: clamp(3.35rem, 5vw, 5.9rem); line-height: 0.99; }
.proof-intro > p:not(.eyebrow) { margin: 0; color: var(--slate); font-size: 1.04rem; line-height: 1.72; }
.testimonial { position: relative; align-self: end; margin: 0; padding: 38px 40px; overflow: hidden; border: 1px solid rgba(22, 50, 74, 0.09); border-radius: 29px; background: linear-gradient(140deg, rgba(170, 94, 164, 0.1), rgba(57, 187, 236, 0.08) 50%, rgba(98, 189, 114, 0.1)); }
.quote-mark { position: absolute; top: -28px; right: 18px; color: rgba(170, 94, 164, 0.14); font-family: Georgia, serif; font-size: 12rem; line-height: 1; }
.testimonial > p { position: relative; z-index: 2; margin: 0; color: var(--navy); font-family: "Sora", sans-serif; font-size: clamp(1.25rem, 2vw, 1.85rem); line-height: 1.45; letter-spacing: -0.035em; }
.testimonial footer { display: grid; gap: 4px; margin-top: 28px; }
.testimonial footer strong { color: var(--navy); font-size: 0.78rem; font-weight: 600; }
.testimonial footer span { color: #748898; font-size: 0.68rem; }
.proof-cards { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.proof-cards article { display: flex; min-height: 210px; padding: 28px; flex-direction: column; justify-content: space-between; border: 1px solid rgba(22, 50, 74, 0.08); border-radius: 24px; background: #f9fcfe; }
.proof-cards strong { color: transparent; background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; font-family: "Sora", sans-serif; font-size: clamp(2.8rem, 4vw, 4.8rem); font-weight: 400; letter-spacing: -0.07em; }
.proof-cards span { max-width: 260px; color: var(--slate); font-size: 0.86rem; line-height: 1.55; }

.closing-section { display: flex; min-height: 100svh; padding: 140px 0 0; flex-direction: column; justify-content: space-between; color: var(--white); background: linear-gradient(128deg, #a45da4 0%, #6f83d1 35%, #36bae5 66%, #4bc17f 100%); }
.closing-content { margin-block: auto; text-align: center; }
.closing-content .eyebrow { margin-bottom: 31px; color: rgba(255, 255, 255, 0.78); }
.closing-content h2 { max-width: 1200px; margin: 0 auto; color: var(--white); font-size: clamp(3.8rem, 7.2vw, 8.3rem); line-height: 0.92; }
.closing-content > p:not(.eyebrow) { max-width: 640px; margin: 31px auto 0; color: rgba(255, 255, 255, 0.82); font-size: 1.06rem; line-height: 1.72; }
.closing-actions { display: flex; justify-content: center; gap: 14px; margin-top: 39px; }
.closing-section .button-gradient { color: var(--navy); background: var(--white); box-shadow: 0 18px 40px rgba(26, 64, 86, 0.2); }
.closing-section .button-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.08); }
.closing-section .button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.16); }
.closing-waves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.closing-waves i { position: absolute; left: -12%; width: 124%; height: 150px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; transform: rotate(-8deg); animation: wave-drift 10s ease-in-out infinite; }
.closing-waves i:nth-child(1) { top: 16%; }
.closing-waves i:nth-child(2) { top: 43%; height: 190px; animation-delay: -3.3s; }
.closing-waves i:nth-child(3) { top: 71%; height: 110px; animation-delay: -6.6s; }
.site-footer { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(300px, 1.2fr) minmax(230px, 1fr); align-items: center; gap: 30px; padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, 0.28); color: rgba(255, 255, 255, 0.75); font-size: 0.7rem; }
.footer-brand { width: 175px; min-width: 0; padding: 5px 8px; border-radius: 11px; background: rgba(255, 255, 255, 0.82); }
.footer-office { display: grid; justify-items: center; gap: 3px; margin: 0; text-align: center; font-style: normal; line-height: 1.45; }
.footer-office strong { margin-bottom: 2px; color: var(--white); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-office a { margin-top: 3px; color: var(--white); font-weight: 500; }
.footer-office b { font-weight: 600; }
.footer-contact { justify-self: end; display: grid; justify-items: end; gap: 7px; }
.footer-contact a { color: var(--white); }

.service-page-root { scroll-snap-type: none; }
.service-detail { --service-accent: var(--purple); --service-soft: #f7eefa; background: var(--canvas); }
.service-detail.theme-blue { --service-accent: var(--blue-deep); --service-soft: #eaf9ff; }
.service-detail.theme-green { --service-accent: var(--green-deep); --service-soft: #eafbf0; }
.service-detail.theme-indigo { --service-accent: #718bd4; --service-soft: #eef1ff; }
.service-detail .section { min-height: auto; scroll-snap-align: none; }
.service-detail .button-gradient { background: linear-gradient(115deg, var(--service-accent), var(--blue) 58%, var(--green)); }
.service-hero { padding: 176px 0 112px; background: radial-gradient(circle at 84% 25%, color-mix(in srgb, var(--service-accent), transparent 77%), transparent 29%), linear-gradient(140deg, #fff 0%, var(--service-soft) 54%, #edfaff 100%); }
.service-hero-grid { display: grid; grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr); align-items: center; gap: clamp(55px, 7vw, 110px); }
.service-hero-copy { position: relative; z-index: 4; max-width: 760px; }
.service-back { display: inline-flex; margin-bottom: 54px; padding-bottom: 5px; border-bottom: 1px solid rgba(22, 50, 74, 0.2); color: var(--navy-soft); font-size: 0.78rem; font-weight: 600; }
.service-hero-copy .eyebrow { color: var(--service-accent); }
.service-hero-copy h1 { max-width: 790px; margin: 0; color: var(--navy); font-size: clamp(4rem, 6vw, 7rem); line-height: 0.95; }
.service-hero-copy h1 span { color: var(--service-accent); }
.service-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 0; color: var(--slate); font-size: 1.06rem; line-height: 1.75; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.service-snapshot { position: relative; z-index: 4; display: grid; gap: 13px; min-height: 590px; padding: 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.94); border-radius: 34px; background: rgba(255, 255, 255, 0.77); box-shadow: 0 38px 90px color-mix(in srgb, var(--service-accent), transparent 84%); backdrop-filter: blur(18px); }
.service-snapshot::before { content: ""; position: absolute; top: -105px; right: -75px; width: 330px; height: 330px; opacity: 0.18; border-radius: 47% 53% 62% 38% / 54% 42% 58% 46%; background: var(--service-accent); filter: blur(9px); animation: shape-morph 10s ease-in-out infinite alternate; }
.snapshot-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.snapshot-head small { color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.78rem; }
.snapshot-head i { width: 10px; height: 10px; border-radius: 50%; background: var(--service-accent); box-shadow: 0 0 0 7px color-mix(in srgb, var(--service-accent), transparent 85%); }
.service-snapshot article { position: relative; z-index: 2; display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 20px; min-height: 140px; padding: 22px; border: 1px solid color-mix(in srgb, var(--service-accent), transparent 85%); border-radius: 22px; background: rgba(255, 255, 255, 0.82); transition: transform 0.38s var(--ease), box-shadow 0.38s ease; }
.service-snapshot article:hover { transform: translateX(-7px); box-shadow: 0 18px 38px color-mix(in srgb, var(--service-accent), transparent 88%); }
.service-snapshot article > span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 19px; color: var(--service-accent); background: color-mix(in srgb, var(--service-accent), white 86%); font-family: "Sora", sans-serif; font-size: 0.72rem; font-weight: 600; }
.service-snapshot article small { display: block; margin-bottom: 5px; color: var(--service-accent); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.service-snapshot article strong { display: block; color: var(--navy); font-family: "Sora", sans-serif; font-size: 1.04rem; font-weight: 500; }
.service-snapshot article p { margin: 8px 0 0; color: var(--slate); font-size: 0.78rem; line-height: 1.55; }
.service-capabilities { padding: 138px 0; background: #fff; }
.service-content-grid { display: grid; grid-template-columns: minmax(330px, 0.68fr) minmax(590px, 1.32fr); align-items: start; gap: clamp(55px, 7vw, 105px); }
.service-intro { position: sticky; top: 130px; }
.service-intro .eyebrow, .method-heading .eyebrow { color: var(--service-accent); }
.service-intro h2, .method-heading h2 { margin: 0; color: var(--navy); font-size: clamp(3rem, 4.7vw, 5.4rem); line-height: 0.99; }
.service-intro > p:not(.eyebrow) { max-width: 590px; margin: 27px 0 0; color: var(--slate); font-size: 1.02rem; line-height: 1.75; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.deliverable-grid article { position: relative; min-height: 245px; padding: 27px; overflow: hidden; border: 1px solid var(--border); border-radius: 25px; background: linear-gradient(150deg, #fff, var(--service-soft)); transition: transform 0.38s var(--ease), border-color 0.38s ease, box-shadow 0.38s ease; }
.deliverable-grid article:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--service-accent), transparent 62%); box-shadow: 0 22px 48px color-mix(in srgb, var(--service-accent), transparent 90%); }
.deliverable-grid article > span { color: var(--service-accent); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; }
.deliverable-grid h3 { margin: 55px 0 14px; color: var(--navy); font-size: 1.34rem; line-height: 1.15; }
.deliverable-grid p { margin: 0; color: var(--slate); font-size: 0.82rem; line-height: 1.65; }
.service-method { padding: 130px 0; background: linear-gradient(135deg, var(--service-soft), #edfaff 52%, #eefcf3); }
.method-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.method-heading .eyebrow { margin-bottom: 13px; }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.method-steps article { min-height: 285px; padding: 27px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 26px; background: rgba(255, 255, 255, 0.74); box-shadow: 0 15px 35px rgba(49, 103, 123, 0.06); }
.method-steps b { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 15px; color: var(--service-accent); background: color-mix(in srgb, var(--service-accent), white 85%); font-family: "Sora", sans-serif; font-size: 0.67rem; }
.method-steps h3 { margin: 75px 0 14px; color: var(--navy); font-size: 1.28rem; }
.method-steps p { margin: 0; color: var(--slate); font-size: 0.81rem; line-height: 1.62; }
.service-page-cta { position: relative; z-index: 2; padding: 105px 0; color: var(--white); background: linear-gradient(125deg, var(--service-accent), #5c8bd7 48%, var(--blue) 74%, var(--green)); }
.service-page-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 65px; }
.service-page-cta .eyebrow { color: rgba(255, 255, 255, 0.75); }
.service-page-cta h2 { max-width: 930px; margin: 0; color: var(--white); font-size: clamp(3rem, 5vw, 5.7rem); line-height: 0.98; }
.service-page-cta-inner > div:last-child { display: grid; justify-items: start; min-width: 220px; }
.service-page-cta .button-gradient { color: var(--navy); background: var(--white); }
.service-page-cta .text-link { margin-top: 20px; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.service-footer { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(180px, 1fr) minmax(300px, 1.2fr) minmax(230px, 1fr); align-items: center; gap: 30px; padding-block: 26px; color: var(--slate); font-size: 0.7rem; }
.service-footer .footer-contact a, .service-footer .footer-office strong, .service-footer .footer-office a { color: var(--navy); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2), .proof-cards article:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3), .proof-cards article:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }

@keyframes current-flow { to { stroke-dashoffset: -340; } }
@keyframes packet-drift { 50% { transform: translate(28px, -16px) rotate(2deg); } }
@keyframes conversation-glow { to { transform: translate(-3%, 4%) scale(1.06); opacity: 0.58; } }
@keyframes message-in { from { opacity: 0; transform: translateY(9px) scale(0.98); } }
@keyframes typing { 50% { transform: translateY(-4px); opacity: 0.55; } }
@keyframes float-card { 50% { transform: translateY(-10px); } }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 17px); } }
@keyframes shape-morph { to { transform: rotate(22deg) scale(1.12); border-radius: 58% 42% 36% 64% / 42% 59% 41% 58%; } }
@keyframes network-drift { 50% { transform: translate(12px, -16px) scale(1.35); opacity: 0.5; } }
@keyframes rail-flow { to { transform: translateY(100%); } }
@keyframes rail-packet { 0% { top: 0; } 90%, 100% { top: calc(100% - 14px); } }
@keyframes journey-breathe { 50% { transform: translateX(-5px); } }
@keyframes status-pulse { 50% { transform: scale(1.45); opacity: 0.55; } }
@keyframes lane-card-in { 0%, 12% { transform: translateY(18px); opacity: 0.35; } 25%, 82% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-5px); opacity: 0.7; } }
@keyframes intelligence-float { 50% { transform: translateY(-8px) rotate(2deg); box-shadow: 0 18px 32px rgba(57, 187, 236, 0.14); } }
@keyframes tag-pop { 0%, 15% { transform: scale(0.92); opacity: 0.55; } 30%, 100% { transform: scale(1); opacity: 1; } }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes wave-drift { 50% { transform: translateX(5%) rotate(-3deg) scaleY(1.25); opacity: 0.65; } }

@media (max-width: 1320px) {
  .container { width: min(calc(100% - 58px), var(--container)); }
  .hero-grid { grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr); gap: 36px; }
  .hero h1 { font-size: clamp(3.3rem, 4.45vw, 5.1rem); }
  .conversation-shell { min-height: 700px; transform: scale(0.94); transform-origin: center right; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 370px; }
  .site-nav { gap: 21px; }
  .impact-grid, .automation-grid, .analytics-grid { gap: 48px; }
  .automation-board { transform: scale(0.95); transform-origin: center right; margin-left: -3%; }
  .service-hero-grid { grid-template-columns: minmax(350px, 0.8fr) minmax(470px, 1.2fr); gap: 45px; }
  .service-hero-copy h1 { font-size: clamp(3.8rem, 5.5vw, 6rem); }
}

@media (max-width: 1080px) {
  html { scroll-snap-type: none; }
  .site-header { top: 13px; width: calc(100% - 28px); }
  .site-nav { position: absolute; top: 81px; right: 0; left: 0; display: grid; gap: 0; padding: 14px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 20px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 25px 60px rgba(42, 96, 117, 0.18); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: 0.3s var(--ease); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 15px 14px; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border: 0; }
  .header-cta { grid-column: 2; grid-row: 1; justify-self: end; margin-right: 8px; }
  .menu-toggle { grid-column: 3; grid-row: 1; justify-self: end; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: rgba(241, 249, 252, 0.9); }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 2px; background: var(--navy); transition: 0.3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-2.5px) rotate(-45deg); }
  .hero { padding: 138px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero h1 { max-width: 840px; font-size: clamp(4rem, 9.2vw, 6.4rem); }
  .conversation-shell { width: min(100%, 820px); min-height: 745px; margin: 8px auto 0; transform: none; }
  .chat-panel { width: min(100%, 720px); }
  .float-insight { left: 0; }
  .float-route { right: 0; }
  .scroll-cue { display: none; }
  .partner-trust-copy { grid-template-columns: 1fr; align-items: start; gap: 10px; }
  .partner-trust-copy .eyebrow { grid-column: 1; }
  .partner-trust-copy h2 { max-width: none; }
  .partner-badges { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .proof-layout { grid-template-columns: 1fr; }
  .section-heading .eyebrow { margin-bottom: -17px; }
  .section-heading > p:last-child { max-width: 650px; }
  .impact-grid, .split-layout, .automation-grid, .analytics-grid { grid-template-columns: 1fr; }
  .impact-copy, .sticky-copy, .automation-copy, .analytics-copy { max-width: 790px; }
  .impact-network { min-height: 560px; }
  .journey-stack { width: min(100%, 850px); }
  .automation-grid { gap: 70px; }
  .automation-board { width: min(100%, 920px); transform: none; margin: 0; }
  .analytics-board { order: 2; }
  .analytics-copy { order: 1; }
  .proof-layout { gap: 48px; }
  .testimonial { max-width: 820px; }
  .site-footer, .service-footer { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-office, .service-footer .footer-office { grid-column: 1 / -1; grid-row: 1; }
  .site-footer .footer-brand, .service-footer .footer-brand { grid-row: 2; }
  .site-footer .footer-contact, .service-footer .footer-contact { grid-row: 2; }
  .service-hero { padding: 150px 0 100px; }
  .service-hero-grid, .service-content-grid { grid-template-columns: 1fr; }
  .service-hero-copy { max-width: 880px; }
  .service-snapshot { width: min(100%, 820px); min-height: 560px; }
  .service-intro { position: static; max-width: 800px; }
  .deliverable-grid { width: min(100%, 900px); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-steps article { min-height: 245px; }
  .service-page-cta-inner { grid-template-columns: 1fr; align-items: start; gap: 38px; }
}

@media (max-width: 740px) {
  .container { width: calc(100% - 32px); }
  .section { min-height: auto; }
  .site-header { min-height: 62px; padding: 8px 8px 8px 12px; border-radius: 20px; }
  .brand { width: 158px; min-width: 158px; }
  .header-cta { min-height: 39px; padding-inline: 14px; font-size: 0.72rem; }
  .header-cta strong { display: none; }
  .header-call { min-width: 148px; padding: 5px 12px; }
  .header-call span { font-size: 0.55rem; }
  .header-call strong { display: block; font-size: 0.75rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: 100svh; padding: 122px 0 82px; }
  .eyebrow { font-size: 0.62rem; line-height: 1.8; letter-spacing: 0.27em; }
  .hero h1 { font-size: clamp(3.15rem, 14.4vw, 5rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof > div:last-child { grid-column: 1 / -1; }
  .conversation-shell { min-height: 675px; }
  .conversation-shell::before { width: 100%; height: 89%; border-radius: 28px; }
  .chat-panel { height: 650px; border-radius: 26px; }
  .chat-float { display: none; }
  .partner-trust { margin-top: -26px; background: linear-gradient(180deg, transparent 26px, rgba(255, 255, 255, 0.97) 26px); }
  .partner-trust-inner { gap: 22px; padding: 27px 18px 18px; border-radius: 24px; }
  .partner-trust-copy h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .partner-trust-copy > p:last-child { font-size: 0.9rem; }
  .partner-badge { height: 144px; padding: 15px; }
  .partner-badge img { height: 98px; }
  .partner-badge-google img { width: 94px; height: 94px; }
  .partner-badge-google span { display: none; }
  .partner-badge-microsoft img { transform: scale(1.62); }
  .partner-badge-tiktok img { transform: scale(1.36); }
  .quick-replies { padding-left: 21px; }
  .message { max-width: 94%; }
  .services, .impact-section, .system-section, .automation-section, .analytics-section, .proof-section { padding: 96px 0; }
  .section-heading { margin-bottom: 47px; }
  .section-heading h2, .impact-copy h2, .sticky-copy h2, .automation-copy h2, .analytics-copy h2, .proof-intro h2 { font-size: clamp(2.72rem, 12.5vw, 4.65rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .service-card h3 { font-size: 2.14rem; }
  .impact-grid { gap: 48px; }
  .impact-network { min-height: auto; padding: 18px; border-radius: 25px; }
  .network-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .organisation-grid { grid-template-columns: repeat(2, 1fr); }
  .organisation-grid a { grid-template-rows: 48px auto auto; min-height: 122px; padding: 12px 8px 10px; }
  .organisation-grid img { width: min(100%, 128px); height: 44px; }
  .organisation-grid a > span { font-size: 0.65rem; }
  .organisation-grid small { display: none; }
  .journey-stack { gap: 13px; min-height: auto; padding: 20px 0 20px 38px; }
  .journey-rail { left: 10px; }
  .journey-card { grid-template-columns: 40px 1fr; gap: 13px; min-height: 145px; padding: 17px; }
  .journey-card::before { width: 27px; }
  .journey-card::after { right: calc(100% + 24px); }
  .journey-card > span { width: 40px; height: 40px; border-radius: 13px; }
  .journey-card em { grid-column: 2; justify-self: start; }
  .journey-listen, .journey-create, .journey-connect, .journey-optimise { margin-right: 0; margin-left: 0; }
  .automation-board { min-height: auto; padding: 17px; border-radius: 25px; }
  .automation-lanes { grid-template-columns: 1fr; min-height: auto; }
  .automation-lane { min-height: 245px; }
  .message-card, .action-card { margin-top: 12px; }
  .intelligence-core { margin: 15px auto 18px; }
  .automation-timeline { flex-wrap: wrap; }
  .analytics-grid { gap: 46px; }
  .analytics-board { padding: 16px; margin-inline: -6px; }
  .metric-row { grid-template-columns: 1fr; }
  .chart-label small { display: none; }
  .chart-area { padding-inline: 8px; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-cards article { min-height: 180px; }
  .testimonial { padding: 30px 25px; }
  .closing-section { min-height: 100svh; padding-top: 116px; }
  .closing-content h2 { font-size: clamp(3.25rem, 15.2vw, 5.8rem); }
  .closing-actions { display: grid; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer .footer-office, .service-footer .footer-office, .site-footer .footer-brand, .service-footer .footer-brand, .site-footer .footer-contact, .service-footer .footer-contact { grid-column: auto; grid-row: auto; }
  .footer-contact { justify-self: center; justify-items: center; gap: 8px; }
  .conversation-current { opacity: 0.11; }
  .current-packet { display: none; }
  .service-hero { padding: 126px 0 78px; }
  .service-back { margin-bottom: 38px; }
  .service-hero-copy h1 { font-size: clamp(3.2rem, 13.8vw, 5rem); }
  .service-hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .service-hero-actions { display: grid; }
  .service-snapshot { min-height: auto; padding: 17px; border-radius: 26px; }
  .service-snapshot article { grid-template-columns: 48px 1fr; min-height: 125px; padding: 17px; }
  .service-snapshot article > span { width: 48px; height: 48px; border-radius: 15px; }
  .service-capabilities, .service-method { padding: 92px 0; }
  .service-content-grid { gap: 48px; }
  .service-intro h2, .method-heading h2 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .deliverable-grid, .method-steps { grid-template-columns: 1fr; }
  .deliverable-grid article { min-height: 220px; }
  .method-heading { margin-bottom: 42px; }
  .method-steps article { min-height: 225px; }
  .service-page-cta { padding: 85px 0; }
  .service-page-cta h2 { font-size: clamp(2.85rem, 12vw, 4.55rem); }
  .service-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .service-footer .footer-contact { justify-self: center; justify-items: center; gap: 8px; }
}

@media (max-width: 520px) {
  .site-header .brand { width: 118px; min-width: 118px; }
  .header-call { min-width: 112px; padding-inline: 9px; }
  .header-call span { display: none; }
  .header-call strong { font-size: 0.7rem; }
  .partner-badges { grid-template-columns: 1fr; }
  .partner-badge { height: 158px; }
  .partner-badge img { max-width: 270px; }
  .chat-head { padding-inline: 14px; }
  .agent-mark { width: 44px; height: 44px; }
  .chat-agent strong { font-size: 0.86rem; }
  .chat-messages { padding-inline: 14px; }
  .quick-replies { padding-inline: 14px; }
  .chat-composer { margin-inline: 12px; }
  .organisation-grid a > span { font-size: 0.62rem; }
  .journey-card p { font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .conversation-current { display: none; }
  .conversation-glow, .chat-float, .scroll-cue i::after, .service-card::before, .impact-network::before, .service-snapshot::before, .network-pulse i, .journey-rail::before, .journey-rail i, .journey-card, .automation-board-head > span i, .message-card, .action-card, .intelligence-core, .analysis-tags span, .closing-waves i { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .data-line { stroke-dashoffset: 0 !important; }
  .data-line + circle { opacity: 1 !important; }
}
