:root {
  --navy-950: #050d19;
  --navy-900: #071426;
  --navy-850: #0b1b31;
  --navy-800: #10233d;
  --blue-600: #1769e0;
  --blue-500: #2f80ed;
  --blue-400: #5da4ff;
  --cyan-400: #28c7ee;
  --cyan-300: #61ddfa;
  --gold-500: #f3a629;
  --gold-400: #ffbd55;
  --ink-900: #0b1730;
  --ink-700: #34425d;
  --ink-500: #66738a;
  --surface: #ffffff;
  --surface-alt: #f4f8fd;
  --line: #dce5f1;
  --success: #2fc48d;
  --shadow-sm: 0 12px 30px rgba(12, 32, 62, 0.08);
  --shadow-lg: 0 30px 80px rgba(3, 12, 28, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 14px; border-radius: 9px; background: white; color: var(--ink-900); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 78px;
  color: white;
  background: rgba(5, 13, 25, .54);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(5, 13, 25, .92); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); font-size: 21px; font-weight: 900; box-shadow: 0 10px 30px rgba(47,128,237,.3); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { color: rgba(255,255,255,.78); transition: color .2s; }
.site-nav > a:not(.nav-cta):hover { color: white; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(97,221,250,.38); border-radius: 12px; background: rgba(47,128,237,.12); color: white; transition: transform .2s, background .2s; }
.nav-cta:hover { transform: translateY(-2px); background: rgba(47,128,237,.28); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 12px; background: rgba(255,255,255,.08); }
.nav-toggle span { width: 20px; height: 2px; display: block; margin: 4px auto; border-radius: 99px; background: white; }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 150px 0 35px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(47,128,237,.18), transparent 30%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 52%, #0b1b31 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 83%); }
.orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.orb-one { width: 480px; height: 480px; right: -180px; top: 80px; background: radial-gradient(circle, rgba(40,199,238,.13), transparent 66%); }
.orb-two { width: 420px; height: 420px; left: -240px; bottom: 40px; background: radial-gradient(circle, rgba(47,128,237,.14), transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 70px; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: 9px; margin-bottom: 25px; padding: 9px 14px; border: 1px solid rgba(97,221,250,.25); border-radius: 99px; color: var(--cyan-300); background: rgba(40,199,238,.08); font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(47,196,141,.12); }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(48px, 6.2vw, 82px); line-height: .98; letter-spacing: -.052em; font-weight: 850; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(90deg, var(--blue-400), var(--cyan-300) 55%, #b7efff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 21px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue-600), var(--blue-500) 55%, #249ce8); box-shadow: 0 16px 38px rgba(23,105,224,.32); }
.button-primary:hover { box-shadow: 0 20px 45px rgba(23,105,224,.42); }
.button-secondary { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.button-secondary:hover { border-color: rgba(97,221,250,.38); background: rgba(255,255,255,.1); }
.button-light { margin-top: 30px; color: var(--navy-900); background: white; box-shadow: 0 18px 35px rgba(0,0,0,.16); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 29px; color: rgba(255,255,255,.56); font-size: 12px; font-weight: 650; }
.hero-trust span { position: relative; padding-left: 14px; }
.hero-trust span::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-400); }

.hero-visual { position: relative; min-width: 0; padding: 34px 0 42px; }
.visual-glow { position: absolute; inset: 15% 10%; border-radius: 50%; background: rgba(47,128,237,.3); filter: blur(80px); }
.dashboard-shell { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #0a1629; box-shadow: 0 45px 100px rgba(0,0,0,.46); transform: perspective(1500px) rotateY(-4deg) rotateX(2deg); transform-origin: center; }
.browser-bar { height: 47px; display: flex; align-items: center; gap: 14px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); background: #111f35; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.browser-dots i:nth-child(1) { background: #ff6b6b; }.browser-dots i:nth-child(2) { background: #ffd166; }.browser-dots i:nth-child(3) { background: #3ddc97; }
.browser-address { flex: 1; min-width: 0; padding: 6px 12px; border-radius: 7px; color: rgba(255,255,255,.42); background: rgba(255,255,255,.045); font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-pill { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.55); font-size: 9px; }.live-pill span { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.dashboard-body { min-height: 440px; display: grid; grid-template-columns: 54px 1fr; }
.dashboard-sidebar { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 14px 8px; border-right: 1px solid rgba(255,255,255,.07); background: #0d1b30; }
.mini-logo { width: 28px; height: 28px; display: grid; place-items: center; margin-bottom: 7px; border-radius: 8px; background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); font-size: 12px; font-weight: 900; }
.dashboard-sidebar button { width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 8px; color: rgba(255,255,255,.34); background: transparent; }
.dashboard-sidebar button.active { color: var(--cyan-300); background: rgba(47,128,237,.17); }
.dashboard-sidebar svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dashboard-sidebar button:first-of-type svg { fill: currentColor; stroke: none; }
.dashboard-content { min-width: 0; padding: 21px; background: linear-gradient(180deg, #0a1628, #081320); }
.dash-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dash-heading small { display: block; color: rgba(255,255,255,.35); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.dash-heading h2 { margin: 3px 0 0; color: white; font-size: 16px; letter-spacing: -.02em; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 26px; height: 26px; display: grid; place-items: center; margin-left: -6px; border: 2px solid #0a1628; border-radius: 50%; color: white; background: #23436e; font-size: 7px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: #155e75; }.avatar-stack span:nth-child(3) { background: #73510c; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 17px; }
.metric-grid article { position: relative; padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.035); }
.metric-icon { width: 28px; height: 28px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 8px; }
.metric-icon.blue { color: #72a9ff; background: rgba(47,128,237,.15); }.metric-icon.cyan { color: #62e6ff; background: rgba(40,199,238,.13); }.metric-icon.gold { color: #ffc868; background: rgba(243,166,41,.13); }
.metric-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.metric-grid small { display: block; color: rgba(255,255,255,.4); font-size: 8px; }
.metric-grid strong { display: block; margin-top: 4px; color: white; font-size: 14px; }
.metric-grid em { position: absolute; right: 10px; bottom: 12px; color: #54dba8; font-size: 7px; font-style: normal; }
.dashboard-lower { display: grid; grid-template-columns: 1.3fr .9fr; gap: 10px; margin-top: 10px; }
.chart-card, .automation-card { padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.03); }
.card-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: rgba(255,255,255,.82); font-size: 9px; font-weight: 750; }
.card-title small { color: rgba(255,255,255,.3); font-size: 7px; font-weight: 500; }
.chart-area { position: relative; height: 105px; margin-top: 10px; overflow: hidden; border-radius: 8px; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 26px; }
.chart-area::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(to top, rgba(47,128,237,.19), transparent); clip-path: polygon(0 82%, 20% 56%, 39% 67%, 58% 25%, 76% 43%, 100% 8%, 100% 100%, 0 100%); }
.chart-line { position: absolute; inset: 0; z-index: 2; background: linear-gradient(165deg, transparent 0 30%, var(--blue-400) 30.5% 31%, transparent 31.5% 40%, var(--blue-400) 40.5% 41%, transparent 41.5% 55%, var(--cyan-300) 55.5% 56%, transparent 56.5% 69%, var(--cyan-300) 69.5% 70%, transparent 70.5%); opacity: .7; }
.chart-point { position: absolute; z-index: 3; width: 6px; height: 6px; border: 2px solid #bfefff; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 3px rgba(47,128,237,.16); }
.chart-point.p1 { left: 18%; top: 60%; }.chart-point.p2 { left: 39%; top: 66%; }.chart-point.p3 { left: 59%; top: 28%; }.chart-point.p4 { right: 8%; top: 9%; }
.chart-labels { display: flex; justify-content: space-between; margin-top: 7px; color: rgba(255,255,255,.27); font-size: 6px; }
.automation-card { padding-inline: 12px; }
.flow-item { display: grid; grid-template-columns: 25px 1fr 6px; align-items: center; gap: 7px; margin-top: 11px; }
.flow-item b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; color: var(--cyan-300); background: rgba(40,199,238,.1); font-size: 7px; }
.flow-item strong, .flow-item small { display: block; }.flow-item strong { color: rgba(255,255,255,.76); font-size: 8px; }.flow-item small { color: rgba(255,255,255,.29); font-size: 6px; }.flow-item i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.flow-line { width: 1px; height: 9px; margin: 2px 0 -7px 11px; background: rgba(97,221,250,.2); }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(13,27,48,.88); box-shadow: 0 20px 35px rgba(0,0,0,.24); backdrop-filter: blur(15px); }
.floating-card strong, .floating-card small { display: block; }.floating-card strong { color: white; font-size: 10px; }.floating-card small { color: rgba(255,255,255,.42); font-size: 8px; }
.float-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--cyan-300); background: rgba(40,199,238,.12); }.float-icon.gold-bg { color: var(--gold-400); background: rgba(243,166,41,.12); }
.float-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.float-one { left: -30px; bottom: 2px; }.float-two { right: -20px; top: 2px; }
.platform-row { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; margin-top: 70px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.platform-row > span { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.platforms { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.platforms b { color: rgba(255,255,255,.55); font-size: 11px; }

.section { padding: 110px 0; }
.section-heading { max-width: 780px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker { display: inline-block; margin-bottom: 15px; color: var(--blue-600); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker.light { color: var(--cyan-300); }
.section-heading h2, .real-estate h2, .about h2, .contact h2 { margin: 0; font-size: clamp(36px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { max-width: 680px; margin: 20px auto 0; color: var(--ink-500); font-size: 17px; line-height: 1.75; }
.services { background: linear-gradient(180deg, #f8fbff 0%, #fff 50%, #f7faff 100%); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 355px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink-900); text-decoration: none; background: white; box-shadow: 0 12px 34px rgba(12,32,62,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-8px); border-color: #bfd6f5; box-shadow: 0 24px 55px rgba(12,32,62,.12); }
.service-card:focus-visible { outline: 3px solid var(--cyan-300); outline-offset: 4px; }
.service-card.featured { color: white; border-color: transparent; background: linear-gradient(145deg, #0b1c33, #102a4d); box-shadow: 0 24px 55px rgba(7,20,38,.19); }
.service-card.featured::after { content: ""; position: absolute; width: 190px; height: 190px; right: -85px; bottom: -85px; border-radius: 50%; background: radial-gradient(circle, rgba(40,199,238,.26), transparent 68%); }
.service-top { display: flex; justify-content: space-between; align-items: center; }
.service-number { color: #a4b0c2; font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.featured .service-number { color: rgba(255,255,255,.42); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-600); background: #edf5ff; }
.featured .service-icon { color: var(--cyan-300); background: rgba(40,199,238,.1); }
.service-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 34px 0 11px; color: inherit; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; transition: color .2s ease; }
.service-card:hover h3 { color: var(--blue-600); }
.service-card.featured:hover h3 { color: var(--cyan-300); }
.service-card p { margin: 0; color: var(--ink-500); font-size: 14px; line-height: 1.7; }
.featured p { color: rgba(255,255,255,.62); }
.service-card ul { display: grid; gap: 8px; margin: auto 0 0; padding: 24px 0 0; list-style: none; color: var(--ink-700); font-size: 12px; font-weight: 650; }
.featured ul { color: rgba(255,255,255,.76); }
.service-card li { position: relative; padding-left: 16px; }.service-card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); }.featured li::before { background: var(--gold-400); }
.service-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--blue-600); font-size: 12px; font-weight: 850; letter-spacing: .02em; transition: gap .2s ease; }
.featured .service-read-more { color: var(--cyan-300); }
.service-card:hover .service-read-more { gap: 10px; }

.real-estate { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #071426 0%, #0b2442 55%, #073657 100%); }
.real-estate::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 44px 44px; }
.real-estate-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.real-estate-copy p { max-width: 620px; margin: 23px 0 0; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px 20px; margin-top: 29px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 650; }
.check-grid i, .contact-points i { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 8px; border-radius: 50%; color: var(--navy-900); background: var(--cyan-300); font-style: normal; font-size: 11px; font-weight: 900; }
.integration-board { position: relative; min-height: 520px; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: radial-gradient(circle at center, rgba(47,128,237,.22), transparent 38%), rgba(255,255,255,.025); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.integration-board::after { content: ""; position: absolute; inset: 35px; border: 1px dashed rgba(97,221,250,.16); border-radius: 50%; }
.integration-center { position: absolute; z-index: 5; left: 50%; top: 50%; width: 180px; height: 180px; display: grid; place-items: center; align-content: center; transform: translate(-50%,-50%); border: 1px solid rgba(97,221,250,.3); border-radius: 50%; background: #0a1d34; box-shadow: 0 0 0 13px rgba(40,199,238,.04), 0 25px 50px rgba(0,0,0,.26); }
.center-logo { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 17px; background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); font-size: 18px; font-weight: 900; }
.integration-center strong, .integration-center small { display: block; }.integration-center strong { font-size: 15px; }.integration-center small { margin-top: 4px; color: rgba(255,255,255,.42); font-size: 9px; }
.integration-node { position: absolute; z-index: 4; min-width: 150px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(8,24,44,.92); box-shadow: 0 18px 35px rgba(0,0,0,.2); }
.integration-node > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--cyan-300); background: rgba(40,199,238,.11); font-size: 9px; font-weight: 900; }
.integration-node strong, .integration-node small { display: block; }.integration-node strong { font-size: 10px; }.integration-node small { color: rgba(255,255,255,.38); font-size: 8px; }
.node-one { top: 45px; left: 50%; transform: translateX(-50%); }.node-two { top: 145px; right: 25px; }.node-three { bottom: 110px; right: 25px; }.node-four { bottom: 42px; left: 50%; transform: translateX(-50%); }.node-five { bottom: 110px; left: 25px; }.node-six { top: 145px; left: 25px; }
.connector { position: absolute; z-index: 2; left: 50%; top: 50%; width: 1px; height: 120px; transform-origin: top; background: linear-gradient(to bottom, rgba(97,221,250,.7), rgba(97,221,250,.05)); }
.c1 { transform: rotate(0deg); }.c2 { transform: rotate(60deg); }.c3 { transform: rotate(120deg); }.c4 { transform: rotate(180deg); }.c5 { transform: rotate(240deg); }.c6 { transform: rotate(300deg); }

.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 34px 27px 0 0; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: -4px; right: 24px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 6px #e9f2ff; }
.process-step > span { color: var(--blue-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.process-step h3 { margin: -2px 0 9px; font-size: 19px; }
.process-step p { margin: 0; color: var(--ink-500); font-size: 13px; line-height: 1.7; }

.about { background: var(--surface-alt); }
.about-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.about-card { position: relative; min-height: 500px; display: grid; place-items: center; align-content: center; overflow: hidden; border-radius: var(--radius-lg); color: white; background: linear-gradient(145deg, #071426, #14365d); box-shadow: var(--shadow-lg); }
.about-card::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(circle at 25% 20%, rgba(40,199,238,.28), transparent 32%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; }
.about-monogram { position: relative; width: 170px; height: 170px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 42px; background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); box-shadow: 0 30px 55px rgba(0,0,0,.28); font-size: 82px; font-weight: 900; letter-spacing: -.05em; }
.about-label { position: relative; margin-top: 25px; font-size: 21px; font-weight: 800; }
.about-tags { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 15px; }
.about-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: rgba(255,255,255,.6); background: rgba(255,255,255,.04); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.about-copy > p { margin: 23px 0 0; color: var(--ink-500); font-size: 17px; line-height: 1.8; }
.value-list { display: grid; gap: 0; margin-top: 29px; border-top: 1px solid var(--line); }
.value-list article { display: grid; grid-template-columns: 165px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.value-list strong { font-size: 13px; }.value-list span { color: var(--ink-500); font-size: 13px; }

.contact { padding-top: 0; background: var(--surface-alt); }
.contact-card { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; padding: 60px; border-radius: 32px; color: white; background: linear-gradient(135deg, #081628, #0e2e50 58%, #0a4566); box-shadow: 0 30px 70px rgba(6,21,39,.2); }
.contact-copy p { margin: 20px 0 0; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.75; }
.contact-points { display: grid; gap: 13px; margin-top: 26px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 650; }
.contact-form { display: grid; gap: 15px; padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.contact-form label { display: grid; gap: 7px; color: rgba(255,255,255,.75); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; outline: none; color: white; background: rgba(4,14,28,.42); transition: border-color .2s, box-shadow .2s; text-transform: none; letter-spacing: normal; }
.contact-form input, .contact-form select { height: 47px; padding: 0 13px; }.contact-form textarea { min-height: 120px; padding: 13px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.28); }
.contact-form option { color: var(--ink-900); background: white; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan-300); box-shadow: 0 0 0 3px rgba(40,199,238,.1); }
.submit-button { width: 100%; border: 0; }
.form-note { margin: -2px 0 0; color: rgba(255,255,255,.37); font-size: 9px; line-height: 1.5; text-align: center; }
.form-note.success { color: #8df1c7; }

.site-footer { padding: 55px 0 25px; color: white; background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-top p { margin: 0; color: rgba(255,255,255,.42); font-size: 12px; text-align: center; }
.back-top { justify-self: end; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; color: rgba(255,255,255,.3); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero-layout { gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .real-estate-layout { gap: 45px; }
  .integration-node { min-width: 132px; }
  .node-two, .node-three { right: 14px; }.node-five, .node-six { left: 14px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
  .process-step:nth-child(2)::after { display: none; }
  .about-layout { gap: 50px; }
  .contact-card { gap: 35px; padding: 45px; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 70px 18px auto; display: grid; gap: 4px; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(5,13,25,.98); box-shadow: 0 24px 55px rgba(0,0,0,.35); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s, transform .2s; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px 10px; }.nav-cta { text-align: center; margin-top: 5px; }
  .hero { padding-top: 125px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-lead { margin-inline: auto; }.hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 720px; margin-inline: auto; }
  .platform-row { grid-template-columns: 1fr; text-align: center; }.platforms { justify-content: center; }
  .real-estate-layout, .about-layout, .contact-card { grid-template-columns: 1fr; }
  .real-estate-copy { text-align: center; }.real-estate-copy p { margin-inline: auto; }.check-grid { max-width: 650px; margin-inline: auto; margin-top: 29px; text-align: left; }
  .about-card { min-height: 420px; }
  .contact-card { padding: 40px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy small { display: none; }.brand-copy strong { font-size: 14px; }
  .hero { min-height: auto; padding: 110px 0 30px; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }.button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(2, max-content); }
  .hero-visual { margin-top: 8px; padding-bottom: 20px; }
  .dashboard-shell { transform: none; border-radius: 15px; }
  .dashboard-body { grid-template-columns: 40px 1fr; min-height: 340px; }
  .dashboard-sidebar { padding-inline: 4px; }.dashboard-sidebar button { width: 27px; height: 27px; }.mini-logo { width: 25px; height: 25px; }
  .dashboard-content { padding: 12px; }.dash-heading h2 { font-size: 12px; }.avatar-stack { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; }.metric-grid article:nth-child(3) { display: none; }
  .dashboard-lower { grid-template-columns: 1fr; }.automation-card { display: none; }.chart-area { height: 90px; }
  .floating-card { display: none; }
  .platform-row { margin-top: 35px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .real-estate h2, .about h2, .contact h2 { font-size: 37px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; }
  .check-grid { grid-template-columns: 1fr; }
  .integration-board { min-height: 500px; }
  .integration-board::after { inset: 65px 25px; border-radius: 42%; }
  .integration-center { width: 145px; height: 145px; }
  .integration-node { min-width: 122px; padding: 9px; }.integration-node > span { width: 29px; height: 29px; }
  .node-one { top: 28px; }.node-two { top: 120px; right: 8px; }.node-three { bottom: 95px; right: 8px; }.node-four { bottom: 27px; }.node-five { bottom: 95px; left: 8px; }.node-six { top: 120px; left: 8px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; border-top: 0; }.process-step { padding: 22px 0; border-top: 1px solid var(--line); }.process-step::after { display: none !important; }
  .about-card { min-height: 360px; }.about-monogram { width: 135px; height: 135px; font-size: 64px; }
  .value-list article { grid-template-columns: 1fr; gap: 5px; }
  .contact-card { width: 100%; padding: 28px 20px; border-radius: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }.footer-brand { justify-self: center; }.back-top { justify-self: center; }.footer-bottom { flex-direction: column; text-align: center; }
}

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

/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.brand-custom-logo .custom-logo-link { display: block; }
.brand-custom-logo img { width: auto; max-width: 150px; max-height: 48px; }
.site-nav-list { display: flex; align-items: center; gap: 29px; margin: 0; padding: 0; list-style: none; }
.site-nav-list a { color: rgba(255,255,255,.78); transition: color .2s; }
.site-nav-list a:hover { color: #fff; }
.site-nav-list .nav-cta { padding: 11px 18px; border: 1px solid rgba(97,221,250,.38); border-radius: 12px; background: rgba(47,128,237,.12); color: #fff; }
.service-icon-text { padding: 4px; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-align: center; }
.cwh-post-card h3 a:hover { color: var(--blue-600); }

.cwh-articles { background: #fff; }
.cwh-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cwh-post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.cwh-post-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(12,32,62,.12); }
.cwh-post-image { min-height: 220px; display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.7); background: linear-gradient(135deg, var(--navy-900), #12416b); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.cwh-post-image img { width: 100%; height: 220px; object-fit: cover; }
.cwh-post-card-body { padding: 25px; }
.cwh-post-meta { color: var(--blue-600); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cwh-post-card h3 { margin: 10px 0 12px; font-size: 23px; line-height: 1.25; letter-spacing: -.03em; }
.cwh-post-card p { margin: 0 0 18px; color: var(--ink-500); font-size: 14px; }
.cwh-text-link { color: var(--blue-600); font-weight: 800; font-size: 13px; }
.cwh-center-action { display: flex; justify-content: center; margin-top: 38px; }
.cwh-outline-button { color: var(--blue-600); border-color: #bad2f3; background: #fff; }

.cwh-faqs { background: var(--surface-alt); }
.cwh-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.cwh-faq-list { display: grid; gap: 12px; }
.cwh-faq-list details { border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 10px 25px rgba(12,32,62,.04); }
.cwh-faq-list summary { position: relative; padding: 20px 52px 20px 21px; cursor: pointer; list-style: none; font-weight: 800; }
.cwh-faq-list summary::-webkit-details-marker { display: none; }
.cwh-faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 16px; color: var(--blue-600); font-size: 24px; }
.cwh-faq-list details[open] summary::after { content: "–"; }
.cwh-faq-list details > div { padding: 0 21px 20px; color: var(--ink-500); }
.cwh-faq-list details p:first-child { margin-top: 0; }
.cwh-faq-list details p:last-child { margin-bottom: 0; }

.cwh-inner-page { background: var(--surface-alt); }
.cwh-page-hero { padding: 150px 0 70px; color: #fff; background: linear-gradient(145deg, var(--navy-950), #0d2a4c); }
.cwh-page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.045em; }
.cwh-page-hero p { max-width: 760px; margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 18px; }
.cwh-content-section { padding: 80px 0 110px; }
.cwh-content-shell { max-width: 900px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.cwh-content-shell > *:first-child { margin-top: 0; }
.cwh-content-shell h2, .cwh-content-shell h3, .cwh-content-shell h4 { line-height: 1.2; letter-spacing: -.025em; }
.cwh-content-shell h2 { margin-top: 42px; font-size: 34px; }
.cwh-content-shell h3 { margin-top: 32px; font-size: 26px; }
.cwh-content-shell p, .cwh-content-shell li { color: var(--ink-700); font-size: 17px; line-height: 1.8; }
.cwh-content-shell a { color: var(--blue-600); text-decoration: underline; }
.cwh-content-shell img { max-width: 100%; height: auto; border-radius: 14px; }
.cwh-single-meta { margin-top: 16px; color: rgba(255,255,255,.56); font-size: 13px; }
.cwh-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cwh-pagination { margin-top: 42px; }
.cwh-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.cwh-pagination a, .cwh-pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.cwh-pagination .current { color: #fff; border-color: var(--blue-600); background: var(--blue-600); }
.cwh-service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.cwh-service-aside { position: sticky; top: 110px; padding: 28px; border-radius: var(--radius-md); color: #fff; background: linear-gradient(145deg, var(--navy-900), #13436f); box-shadow: var(--shadow-lg); }
.cwh-service-aside h3 { margin-top: 0; }
.cwh-service-aside ul { display: grid; gap: 11px; padding: 0; list-style: none; }
.cwh-service-aside li { position: relative; padding-left: 18px; color: rgba(255,255,255,.78); }
.cwh-service-aside li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-300); }
.cwh-service-aside .button { width: 100%; margin-top: 15px; }
.cwh-empty-state { padding: 36px; border: 1px dashed #b8c7da; border-radius: 16px; color: var(--ink-500); background: #fff; }

.cwh-alert { margin-bottom: 18px; padding: 13px 16px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.cwh-alert-success { color: #0b5b40; background: #dff8ef; }
.cwh-alert-error { color: #8a2130; background: #ffe7eb; }
.cwh-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 980px) {
  body.admin-bar .site-header { top: 46px; }
  .site-nav-list { display: grid; gap: 0; }
  .cwh-post-grid, .cwh-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cwh-faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .cwh-service-detail-grid { grid-template-columns: 1fr; }
  .cwh-service-aside { position: static; }
}

@media (max-width: 650px) {
  .cwh-post-grid, .cwh-archive-grid { grid-template-columns: 1fr; }
  .cwh-content-shell { padding: 25px 20px; }
  .cwh-page-hero { padding-top: 125px; }
}

/* v1.2.0 service card button and enriched service page */
.service-read-more { display:inline-flex; align-items:center; gap:8px; align-self:flex-start; margin-top:18px; padding:10px 16px; border-radius:999px; background:rgba(17,94,255,.08); color:var(--blue-600); font-size:13px; font-weight:700; line-height:1; border:1px solid rgba(17,94,255,.12); transition:all .22s ease; }
.service-card:hover .service-read-more { background:var(--blue-600); color:#fff; border-color:var(--blue-600); transform:translateY(-1px); }
.service-card.featured .service-read-more { background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.18); }
.service-card.featured:hover .service-read-more { background:var(--gold-400); color:#0b1c33; border-color:var(--gold-400); }

.service-detail-hero { position:relative; overflow:hidden; background:linear-gradient(135deg,#08162b 0%,#0e284c 55%,#103664 100%); color:#fff; padding:86px 0 58px; }
.service-detail-hero .hero-grid { opacity:.25; }
.service-detail-hero-layout { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr); gap:38px; align-items:center; }
.service-detail-copy h1 { margin:12px 0 16px; font-size:clamp(36px,6vw,62px); line-height:1.06; letter-spacing:-.045em; color:#fff; }
.service-detail-lead { max-width:720px; margin:0; color:rgba(236,244,255,.84); font-size:18px; line-height:1.8; }
.service-detail-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.service-highlight-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.service-highlight-chips span { display:inline-flex; align-items:center; min-height:38px; padding:8px 14px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#f8fbff; font-size:13px; font-weight:650; }
.service-detail-image-frame { overflow:hidden; border-radius:30px; border:1px solid rgba(255,255,255,.12); box-shadow:0 20px 55px rgba(0,0,0,.28); }
.service-detail-image-frame img { display:block; width:100%; height:auto; }
.service-visual-card { padding:26px; border-radius:30px; border:1px solid rgba(255,255,255,.12); background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04)); box-shadow:0 20px 55px rgba(0,0,0,.24); backdrop-filter:blur(6px); }
.service-visual-header { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.service-visual-pill { display:inline-flex; align-items:center; min-height:38px; padding:8px 14px; border-radius:999px; background:rgba(40,199,238,.12); color:#9fefff; border:1px solid rgba(40,199,238,.22); font-size:12px; font-weight:700; }
.service-visual-body { padding:28px 0 18px; }
.service-visual-body strong { display:block; margin:0 0 10px; color:#fff; font-size:28px; line-height:1.2; letter-spacing:-.03em; }
.service-visual-body p { margin:0; color:rgba(236,244,255,.8); font-size:15px; line-height:1.75; }
.service-visual-body ul { margin:18px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.service-visual-body li { position:relative; padding-left:18px; color:#f2f8ff; font-size:14px; font-weight:650; }
.service-visual-body li::before { content:""; position:absolute; left:0; top:.75em; width:6px; height:6px; border-radius:50%; background:var(--gold-400); }
.service-visual-footer { display:flex; flex-wrap:wrap; gap:10px; }
.service-visual-footer span { display:inline-flex; align-items:center; min-height:34px; padding:7px 12px; border-radius:999px; background:rgba(255,255,255,.06); color:rgba(255,255,255,.84); font-size:12px; font-weight:650; }
.service-quick-benefits { padding:34px 0 0; background:linear-gradient(180deg,#f8fbff 0%,rgba(248,251,255,0) 100%); }
.service-benefits-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.service-benefit-card { padding:24px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 12px 30px rgba(12,32,62,.05); }
.service-benefit-number { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; margin-bottom:16px; border-radius:14px; background:rgba(17,94,255,.08); color:var(--blue-600); font-size:13px; font-weight:800; }
.service-benefit-card h3 { margin:0 0 10px; font-size:20px; line-height:1.3; letter-spacing:-.03em; color:var(--ink-900); }
.service-benefit-card p { margin:0; color:var(--ink-500); font-size:14px; line-height:1.7; }
.service-detail-section { padding-top:42px; }
.enhanced-service-grid { align-items:start; }
.service-rich-content { padding:34px; border-radius:30px; border:1px solid var(--line); background:#fff; box-shadow:0 16px 38px rgba(12,32,62,.06); }
.service-rich-content > :first-child { margin-top:0; }
.service-rich-content h2 { margin:34px 0 12px; font-size:32px; line-height:1.15; letter-spacing:-.04em; color:var(--ink-900); }
.service-rich-content h3 { margin:24px 0 10px; font-size:23px; line-height:1.25; letter-spacing:-.03em; color:var(--ink-900); }
.service-rich-content h4 { margin:18px 0 8px; font-size:18px; line-height:1.35; color:var(--ink-900); }
.service-rich-content p { margin:0 0 16px; color:var(--ink-600); font-size:16px; line-height:1.9; }
.service-rich-content ul, .service-rich-content ol { margin:0 0 18px 18px; color:var(--ink-700); }
.service-rich-content li { margin:0 0 10px; font-size:15px; line-height:1.8; }
.service-rich-content blockquote { margin:28px 0; padding:22px 24px; border-left:4px solid var(--blue-500); border-radius:0 18px 18px 0; background:#f6faff; color:var(--ink-700); font-size:17px; line-height:1.8; }
.service-rich-content img { border-radius:22px; }
.service-detail-aside { display:grid; gap:18px; }
.aside-card { padding:26px; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 12px 30px rgba(12,32,62,.05); }
.aside-card h3 { margin:0 0 14px; color:var(--ink-900); font-size:22px; line-height:1.2; letter-spacing:-.03em; }
.aside-card p { margin:0; color:var(--ink-500); font-size:15px; line-height:1.8; }
.aside-card ul { margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.aside-card li { position:relative; padding-left:18px; color:var(--ink-700); font-size:14px; font-weight:650; line-height:1.7; }
.aside-card li::before { content:""; position:absolute; left:0; top:.75em; width:6px; height:6px; border-radius:50%; background:var(--blue-500); }
.aside-cta { background:linear-gradient(180deg,#0b1c33 0%,#102a4d 100%); border-color:transparent; }
.aside-cta .section-kicker, .aside-cta h3, .aside-cta p { color:#fff; }
.aside-cta p { color:rgba(236,244,255,.82); margin-bottom:18px; }
.service-bottom-cta { padding:8px 0 82px; }
.service-bottom-cta-card { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:34px; border-radius:30px; background:linear-gradient(135deg,#08162b 0%,#103664 100%); color:#fff; box-shadow:0 22px 50px rgba(7,20,38,.18); }
.service-bottom-cta-card h2 { margin:10px 0 12px; color:#fff; font-size:34px; line-height:1.14; letter-spacing:-.04em; }
.service-bottom-cta-card p { margin:0; max-width:760px; color:rgba(236,244,255,.84); font-size:16px; line-height:1.8; }

@media (max-width: 1024px) {
  .service-detail-hero-layout, .service-benefits-grid, .service-bottom-cta-card { grid-template-columns:1fr; display:grid; }
  .service-bottom-cta-card { justify-items:start; }
}
@media (max-width: 768px) {
  .service-detail-hero { padding:76px 0 48px; }
  .service-rich-content, .aside-card, .service-benefit-card, .service-bottom-cta-card { padding:22px; }
  .service-benefits-grid { grid-template-columns:1fr; }
  .service-detail-copy h1 { font-size:clamp(30px,10vw,46px); }
  .service-detail-lead { font-size:16px; }
}
