:root {
    --ink: #07131c;
    --ink-soft: #14242f;
    --blue: #142b3a;
    --blue-bright: #263d4b;
    --orange: #ff5c19;
    --orange-dark: #e94b0a;
    --mint: #29d39a;
    --paper: #f5f4f2;
    --white: #ffffff;
    --muted: #5f6b74;
    --line: #dce0e2;
    --shadow: 0 24px 60px rgba(7, 21, 34, .12);
    --radius: 24px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.5rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 800px; }
.section { padding: 110px 0; }
.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--orange);
    border-radius: 8px;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.service-bar { color: #cfe0ec; background: #04101a; font-size: .78rem; }
.service-bar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-bar__inner > span { letter-spacing: .05em; text-transform: uppercase; }
.service-bar .ti-circle-filled { margin-right: 7px; color: var(--mint); font-size: .55rem; animation: pulse-dot 1.8s infinite; }
.service-bar__inner div { display: flex; gap: 24px; }
.service-bar a { transition: color .2s ease; }
.service-bar a:hover { color: var(--white); }
.service-bar a .ti { margin-right: 7px; color: var(--orange); }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    color: var(--white);
    background: rgba(7, 21, 34, .94);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 8px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; line-height: 0; }
.brand img { width: 144px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 18px; font-family: "Segoe UI Variable Text", "Aptos", Inter, ui-sans-serif, system-ui, sans-serif; font-size: .82rem; font-weight: 650; letter-spacing: .008em; text-rendering: optimizeLegibility; }
.main-nav > a:not(.button) { color: #d1dce5; position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav > a.is-active:not(.button) { color: var(--white); }
.main-nav > a.is-active:not(.button)::after { transform: scaleX(1); }
.nav-item { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 12px 0; color: #d1dce5; border: 0; background: transparent; cursor: pointer; font: inherit; }
.nav-trigger .ti { color: #7895a8; transition: transform .2s ease; }
.nav-item:hover .nav-trigger, .nav-item:focus-within .nav-trigger, .nav-item.is-open .nav-trigger { color: var(--white); }
.nav-item.is-current .nav-trigger { color: var(--white); }
.nav-item:hover .nav-trigger .ti, .nav-item:focus-within .nav-trigger .ti, .nav-item.is-open .nav-trigger .ti { color: var(--orange); transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; z-index: 20; color: var(--ink); border: 1px solid rgba(255,92,25,.16); border-radius: 16px; background: rgba(255,255,255,.995); box-shadow: 0 24px 64px rgba(1,12,20,.26); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.is-open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown::before { content: ""; position: absolute; top: -18px; right: 0; left: 0; height: 18px; }
.nav-dropdown--mega { width: 650px; padding: 20px; }
.nav-item--solutions .nav-dropdown { left: -116px; transform: translate(0, 8px); }
.nav-item--solutions:hover .nav-dropdown, .nav-item--solutions:focus-within .nav-dropdown, .nav-item--solutions.is-open .nav-dropdown { transform: translate(0, 0); }
.nav-dropdown--compact { width: 275px; padding: 9px; }
.nav-dropdown__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid #e5ecef; }
.nav-dropdown__heading span { color: var(--orange); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nav-dropdown__heading strong { font-size: .88rem; }
.nav-solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.nav-solutions-grid > a, .nav-dropdown--compact > a { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 11px; padding: 10px; border-radius: 10px; transition: background .18s ease, transform .18s ease; }
.nav-solutions-grid > a:hover, .nav-dropdown--compact > a:hover, .nav-solutions-grid > a.is-active, .nav-dropdown--compact > a.is-active { background: #f7f3f0; transform: translateX(2px); }
.nav-solutions-grid > a > .ti, .nav-dropdown--compact > a > .ti { width: 40px; height: 40px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(255,92,25,.13); border-radius: 10px; background: #fff5f0; font-size: 1.25rem; }
.nav-solutions-grid span, .nav-dropdown--compact span { min-width: 0; display: flex; flex-direction: column; }
.nav-solutions-grid strong, .nav-dropdown--compact strong { color: var(--ink); font-size: .78rem; }
.nav-solutions-grid small, .nav-dropdown--compact small { color: #76818a; font-size: .6rem; font-weight: 500; line-height: 1.35; }
.nav-solutions-grid small { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.nav-dropdown__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding: 14px 15px 0; color: var(--blue); border-top: 1px solid #e5ecef; font-size: .72rem; font-weight: 800; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: .25s ease; }

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; border-radius: 10px; }
.button--accent { color: var(--white); background: var(--orange); box-shadow: 0 12px 28px rgba(255, 92, 25, .25); }
.button--accent:hover { background: var(--orange-dark); box-shadow: 0 16px 32px rgba(255, 92, 25, .34); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.button--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.button--dark { color: var(--white); background: var(--ink); }
.button--back { min-height: 48px; color: var(--ink); background: #edf2f5; }
.button--whatsapp { color: var(--white); background: #1cad5b; box-shadow: 0 14px 30px rgba(28, 173, 91, .24); }
.button--whatsapp:hover { background: #168d4b; }
.button--full { width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--orange); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-title-tag { width: max-content; max-width: 100%; display: flex; align-items: center; gap: 9px; margin-top: 18px; padding: 9px 13px; color: #ffc0a5; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.065); font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .09em; line-height: 1.2; text-transform: uppercase; }
.hero-title-tag .ti { color: var(--orange); font-size: 1rem; }

.hero { min-height: calc(100svh - 79px); position: relative; overflow: hidden; color: var(--white); background: linear-gradient(132deg, #07131c 0%, #10232e 62%, #20252a 100%); }
.hero::before { content: ""; position: absolute; top: -160px; right: -140px; width: 620px; height: 620px; border: 1px solid rgba(255,92,25,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,92,25,.028), 0 0 0 180px rgba(255,92,25,.018); }
.hero::after { content: ""; position: absolute; bottom: -320px; left: -220px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,25,.15), transparent 64%); }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, black, transparent 78%); }
.hero__inner { min-height: calc(100svh - 79px); position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); align-items: center; gap: 76px; padding-top: 54px; padding-bottom: 54px; }
.hero__content { max-width: 700px; }
.hero .eyebrow { color: #ff9b72; }
.hero h1 { max-width: 760px; margin-bottom: 24px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__content > p { max-width: 650px; margin-bottom: 34px; color: #b9cad6; font-size: 1.16rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--service h1 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.page-internal .hero { min-height: 640px; }
.page-internal .hero__inner { min-height: 640px; }
.hero--service .breadcrumb { margin-bottom: 28px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: #92a8b7; font-size: .82rem; }
.breadcrumb a:hover { color: var(--white); }

.monitor-card { position: relative; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); box-shadow: 0 34px 90px rgba(0,0,0,.34); backdrop-filter: blur(20px); transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.monitor-card::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(255,92,25,.5), transparent 38%, rgba(255,255,255,.13)); opacity: .62; }
.monitor-card__shield { display: flex; align-items: center; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(2,13,21,.42); }
.monitor-card__shield > div:last-child { display: flex; flex-direction: column; }
.monitor-card__shield small { color: #89a0af; }
.monitor-card__shield strong { margin: 3px 0; font-size: 1.35rem; letter-spacing: -.02em; }
.monitor-card__shield span { color: #a8bdca; font-size: .75rem; }
.radar { width: 68px; height: 68px; position: relative; flex: 0 0 auto; border: 1px solid rgba(255,92,25,.5); border-radius: 50%; background: repeating-radial-gradient(circle, rgba(255,92,25,.09) 0 1px, transparent 1px 15px); overflow: hidden; }
.radar::before { content: ""; position: absolute; inset: 50% 0 0 50%; background: conic-gradient(from 90deg, rgba(255,92,25,.7), transparent 70%); transform-origin: left top; animation: radar-spin 2.8s linear infinite; }
.radar span { position: absolute; z-index: 2; top: 26px; left: 29px; width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 12px var(--mint); }
.monitor-card__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0; }
.monitor-card__metrics div { display: flex; flex-direction: column; padding: 15px 17px; border-radius: 14px; background: rgba(255,255,255,.055); }
.monitor-card__metrics span { color: #ff9b72; font-size: 1.25rem; font-weight: 800; }
.monitor-card__metrics small { color: #8096a5; font-size: .68rem; }
.event-list { display: grid; gap: 8px; }
.event { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 12px; border-radius: 12px; background: rgba(2,13,21,.3); }
.event > .ti { width: 32px; height: 32px; display: grid; place-items: center; color: #ff9b72; border-radius: 9px; background: rgba(255,92,25,.12); font-size: 1.12rem; }
.event div { display: flex; flex-direction: column; }
.event strong { font-size: .76rem; }
.event span { color: #78909f; font-size: .63rem; }
.event b { color: var(--mint); font-size: .63rem; }
.monitor-card__glow { width: 140px; height: 140px; position: absolute; z-index: -1; right: -35px; bottom: -35px; border-radius: 50%; background: rgba(255,92,25,.35); filter: blur(55px); }

.page-hero-visual { min-height: 430px; position: relative; display: flex; align-items: flex-end; padding: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: 0 34px 90px rgba(0,0,0,.3); isolation: isolate; }
.page-hero-visual::before { content: ""; width: 360px; height: 360px; position: absolute; z-index: -2; top: -105px; right: -90px; border: 74px solid rgba(255,92,25,.1); border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,92,25,.24), 0 0 0 108px rgba(255,255,255,.018); }
.page-hero-visual::after { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(145deg, #000, transparent 76%); }
.page-hero-visual__content { width: 100%; position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(5,16,24,.76); backdrop-filter: blur(16px); }
.page-hero-visual__icon { width: 66px; height: 66px; position: absolute; right: 24px; bottom: calc(100% + 20px); display: grid; place-items: center; color: var(--white); border-radius: 16px; background: var(--orange); box-shadow: 0 18px 36px rgba(255,92,25,.28); font-size: 2rem; }
.page-hero-visual small { display: block; margin-bottom: 7px; color: #ff9b72; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.page-hero-visual strong { display: block; margin-bottom: 19px; font-size: clamp(1.65rem, 2.8vw, 2.4rem); line-height: 1.08; letter-spacing: -.04em; }
.page-hero-visual ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: #c8d5dc; font-size: .78rem; }
.page-hero-visual li { display: flex; align-items: center; gap: 9px; }
.page-hero-visual li .ti { color: var(--orange); }
.page-hero-visual--audience { background-image: linear-gradient(180deg, rgba(7,19,28,.12), rgba(7,19,28,.88)), var(--page-visual-image); background-position: center; background-size: cover; }
.page-hero-visual--audience::after { opacity: .32; }
.page-hero-visual--app::before { width: 260px; height: 440px; top: -55px; right: 48px; border: 8px solid rgba(255,255,255,.12); border-radius: 38px; background: linear-gradient(160deg, rgba(255,92,25,.3), transparent); box-shadow: 0 0 0 16px rgba(2,10,15,.45); transform: rotate(8deg); }
.page-hero-visual--about::before { border-radius: 26% 74% 63% 37% / 37% 35% 65% 63%; transform: rotate(24deg); }
.page-hero-visual--contact::before { width: 280px; height: 280px; border-width: 52px; }

.trust-strip { position: relative; z-index: 3; color: var(--white); background: var(--ink-soft); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { min-height: 124px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-right: 1px solid rgba(255,255,255,.17); }
.trust-strip__grid > div:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.trust-strip strong { font-size: 1.55rem; letter-spacing: -.04em; }
.trust-strip span { color: #c8d0d5; font-size: .78rem; }

.service-focus { background: #f7fafb; }
.service-focus__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 100px; }
.service-focus h2 { margin-bottom: 26px; font-size: clamp(2.3rem, 4vw, 4rem); }
.service-focus p { font-size: 1.05rem; }
.focus-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.focus-benefits div { min-height: 96px; position: relative; display: flex; align-items: center; gap: 15px; padding: 18px 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(135deg, var(--white), #f8f9f9); box-shadow: 0 9px 24px rgba(7,19,28,.045); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.focus-benefits div::after { content: ""; width: 3px; position: absolute; inset-block: 18px; left: 0; border-radius: 0 3px 3px 0; background: var(--orange); opacity: .75; }
.focus-benefits div:hover { border-color: rgba(255,92,25,.3); box-shadow: 0 16px 34px rgba(7,19,28,.09); transform: translateY(-3px); }
.focus-benefits span { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(255,92,25,.2); border-radius: 50%; background: #fff5f0; font-size: .7rem; font-weight: 850; }
.focus-benefits strong { font-size: .94rem; line-height: 1.35; }

.subject-journey { position: relative; overflow: hidden; background: var(--white); }
.subject-journey::before { content: ""; width: 420px; height: 420px; position: absolute; top: -250px; right: -170px; border: 70px solid rgba(255,92,25,.05); border-radius: 50%; }
.subject-journey__heading { max-width: 860px; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 16px 72px; margin-bottom: 44px; }
.subject-journey__heading .eyebrow, .subject-journey__heading h2 { grid-column: 1; }
.subject-journey__heading h2 { margin-bottom: 0; font-size: clamp(2.45rem, 4.4vw, 4.5rem); }
.subject-journey__heading > p { grid-column: 2; grid-row: 1 / span 2; margin: 0 0 7px; }
.subject-journey__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.subject-card { min-height: 0; position: relative; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #f8f7f5; }
.subject-card::after { content: ""; width: 120px; height: 120px; position: absolute; right: -48px; bottom: -52px; border: 24px solid rgba(255,92,25,.055); border-radius: 50%; }
.subject-card__index { position: absolute; top: 26px; right: 28px; color: #9b9d9e; font-size: .68rem; font-weight: 800; }
.subject-card > .ti { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 34px; color: var(--white); border-radius: 14px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.55rem; }
.subject-card h3 { margin-bottom: 12px; }
.subject-card p { margin: 0; font-size: .87rem; }
.page-kind-audience .subject-journey, .page-kind-app .subject-journey { color: var(--white); background: var(--ink); }
.page-kind-audience .subject-card, .page-kind-app .subject-card { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.055); }
.page-kind-audience .subject-card > .ti, .page-kind-app .subject-card > .ti { color: var(--ink); background: var(--white); }
.page-kind-audience .subject-card p, .page-kind-audience .subject-journey__heading > p, .page-kind-app .subject-card p, .page-kind-app .subject-journey__heading > p { color: #9eb0bb; }
.page-kind-audience .subject-card__index, .page-kind-app .subject-card__index { color: #637680; }
.page-sobre-a-sis .subject-card:nth-child(2) { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: 0 25px 55px rgba(7,19,28,.18); }
.page-sobre-a-sis .subject-card:nth-child(2) p { color: #a4b3bc; }
.page-sobre-a-sis .subject-card:nth-child(2) > .ti { color: var(--ink); background: var(--white); }
.page-contato .subject-card > .ti { background: var(--orange); box-shadow: none; }

.page-detail { background: #f1f0ed; }
.page-detail__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); align-items: stretch; gap: 70px; }
.page-detail__content { align-self: center; }
.page-detail__content h2 { max-width: 780px; margin-bottom: 24px; font-size: clamp(2.35rem, 4.4vw, 4.35rem); }
.page-detail__content > p { max-width: 700px; font-size: 1.03rem; }
.page-detail__list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 30px; }
.page-detail__list > div { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1px solid #d9d8d5; border-radius: 11px; background: rgba(255,255,255,.62); font-size: .8rem; font-weight: 750; }
.page-detail__list .ti { color: var(--orange); }
.page-detail__aside { min-height: 460px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; overflow: hidden; color: var(--white); border-radius: 22px; background: var(--ink); box-shadow: 0 28px 65px rgba(7,19,28,.18); }
.page-detail__aside::before { content: ""; width: 260px; height: 260px; position: absolute; top: -125px; right: -90px; border: 50px solid rgba(255,92,25,.1); border-radius: 50%; }
.page-detail__aside-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: auto; color: var(--white); border-radius: 15px; background: var(--orange); font-size: 1.8rem; }
.page-detail__aside > small { color: #ff9b72; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.page-detail__aside h3 { margin: 12px 0; font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.page-detail__aside p { margin-bottom: 18px; color: #9fb1bb; }
.page-detail__aside .store-buttons { margin-top: 8px; }
.page-contact-list { display: grid; gap: 9px; margin-top: 18px; }
.page-contact-list a { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.055); font-size: .78rem; }
.page-contact-list a:hover { border-color: var(--orange); }
.page-contact-list .ti { color: var(--orange); font-size: 1.1rem; }
.page-detail--app { color: var(--white); background: var(--ink); }
.page-detail--app .page-detail__content > p { color: #9fb1bb; }
.page-detail--app .page-detail__list > div { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.055); }
.page-detail--app .page-detail__aside { min-height: 720px; justify-content: flex-start; color: var(--ink); background: var(--white); }
.page-detail--app .page-detail__aside p { color: var(--muted); }
.page-detail--app .page-detail__aside > small { color: var(--orange-dark); }
.page-detail--app .page-detail__aside-icon { margin-bottom: 28px; }
.app-product-list { display: grid; gap: 12px; margin-top: 18px; }
.app-product { padding: 20px; border: 1px solid #dde1e3; border-radius: 15px; background: #f7f7f5; }
.app-product__heading { display: flex; align-items: center; gap: 12px; }
.app-product__heading > span { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; color: var(--white); border-radius: 11px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.35rem; }
.app-product__heading > div { display: flex; flex-direction: column; }
.app-product__heading strong { font-size: .92rem; }
.app-product__heading small { color: #77858e; font-size: .65rem; }
.app-product > p { margin: 13px 0 14px; font-size: .76rem; line-height: 1.55; }
.app-product .store-buttons { gap: 7px; margin-top: 0; }
.app-product .store-buttons img { width: 132px; }
.app-product--cameras { border-color: rgba(255,92,25,.24); background: #fff7f3; }
.app-product--cameras .app-product__heading > span { background: var(--orange); box-shadow: none; }

.related-solutions { background: var(--white); }
.related-solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { min-height: 112px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 15px; padding: 19px 20px; border: 1px solid var(--line); border-radius: 15px; background: #faf9f7; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.related-card:hover { border-color: rgba(255,92,25,.4); box-shadow: 0 18px 38px rgba(7,19,28,.09); transform: translateY(-4px); }
.related-card > .ti:first-child { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); border-radius: 12px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.35rem; }
.related-card > span { min-width: 0; display: flex; flex-direction: column; }
.related-card strong { font-size: .9rem; }
.related-card small { margin-top: 4px; color: #77858e; font-size: .68rem; line-height: 1.4; }
.related-card > .ti:last-child { color: var(--orange); }

.solutions { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.section-heading > div { max-width: 720px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 410px; margin-bottom: 5px; }
.section-heading--center { justify-content: center; text-align: center; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { min-height: 0; position: relative; display: flex; flex-direction: column; padding: 27px 28px 26px; overflow: hidden; border: 1px solid #dedfdf; border-radius: 16px; background: var(--white); box-shadow: 0 10px 30px rgba(7,19,28,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.solution-card::before { content: ""; width: 0; height: 3px; position: absolute; top: 0; left: 0; background: var(--orange); transition: width .3s ease; }
.solution-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,92,25,.045); transition: transform .35s ease; }
.solution-card:hover { z-index: 2; border-color: rgba(255,92,25,.34); box-shadow: 0 24px 55px rgba(7,19,28,.12); transform: translateY(-6px); }
.solution-card:hover::before { width: 100%; }
.solution-card:hover::after { transform: scale(1.4); }
.solution-card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 24px; color: var(--white); border-radius: 13px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.5rem; }
.solution-card__number { position: absolute; top: 30px; right: 30px; padding: 5px 9px; color: #7d858b; border: 1px solid var(--line); border-radius: 999px; font-size: .66rem; font-weight: 800; }
.solution-card h3 { margin-bottom: 15px; }
.solution-card p { margin-bottom: 18px; font-size: .92rem; }
.solution-card a { margin-top: auto; color: var(--orange-dark); font-size: .83rem; font-weight: 800; }
.solution-card a .ti { margin-left: 5px; transition: transform .2s ease; }
.solution-card a:hover .ti { transform: translateX(4px); }
.capability-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.capability-row span { padding: 10px 15px; color: #3d5261; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); font-size: .78rem; }
.capability-row .ti { margin-right: 7px; color: var(--orange); }

.segments { color: var(--white); background: var(--ink); }
.segments__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.segments .eyebrow { color: #ff9b72; }
.segments h2 { margin-bottom: 25px; }
.segments__intro > p { max-width: 500px; color: #9db1bf; }
.segment-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.segment-tabs button { padding: 11px 16px; color: #9eb2c0; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: transparent; cursor: pointer; font-size: .8rem; font-weight: 700; }
.segment-tabs button.is-active { color: var(--white); border-color: var(--orange); background: rgba(255,92,25,.12); }
.segment-panels { min-height: 540px; position: relative; display: flex; align-items: stretch; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: #111c24; box-shadow: 0 32px 70px rgba(0,0,0,.28); }
.segment-panels::before { display: none; }
.segment-panel { width: 100%; min-height: 540px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 56px; overflow: hidden; isolation: isolate; }
.segment-panel[hidden] { display: none; }
.segment-panel::before { content: ""; position: absolute; inset: -10px; z-index: -2; background-image: var(--segment-image); background-position: center; background-size: cover; filter: blur(3px); transform: scale(1.04); }
.segment-panel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,19,28,.22) 0%, rgba(7,19,28,.78) 52%, rgba(7,19,28,.97) 100%); }
.segment-panel > span { color: #ff9b72; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.segment-panel h3 { max-width: 580px; margin: 24px 0; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.segment-panel p { max-width: 580px; color: #a8bbc7; }
.segment-panel ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 30px 0 0; padding: 0; list-style: none; }
.segment-panel li { position: relative; padding-left: 20px; color: #d9e6ed; font-size: .86rem; }
.segment-panel li::before { content: ""; width: 7px; height: 7px; position: absolute; top: .55em; left: 0; border-radius: 50%; background: var(--orange); }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; gap: 18px; }
.process-grid::before { display: none; }
.process-step { min-height: 0; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #f8f8f7; text-align: left; }
.process-step:nth-child(2) { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: 0 26px 55px rgba(7,19,28,.2); }
.process-step > span { position: absolute; top: 22px; right: 26px; color: rgba(7,19,28,.16); font-size: 3.8rem; font-weight: 850; letter-spacing: -.08em; line-height: 1; }
.process-step:nth-child(2) > span { color: rgba(255,255,255,.13); }
.process-step__icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 0 34px; color: var(--white); border: 0; border-radius: 12px; background: var(--orange); box-shadow: none; font-size: 1.45rem; }
.process-step:nth-child(2) .process-step__icon { color: var(--ink); background: var(--white); }
.process-step h3 { margin-bottom: 13px; font-size: 1.45rem; }
.process-step:nth-child(2) p { color: #aebbc3; }
.process-step p { font-size: .9rem; }

.control-section { overflow: hidden; background: #f0efed; }
.control-section.section { padding-block: 86px; }
.control-section__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 76px; }
.phone-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.phone-visual::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 65px rgba(255,92,25,.07), 0 0 0 130px rgba(7,19,28,.04); }
.phone-shell { width: 270px; height: 560px; position: relative; z-index: 2; padding: 10px; border: 3px solid #1c2e3b; border-radius: 40px; background: #08141d; box-shadow: 0 34px 60px rgba(7,21,34,.32); transform: rotate(-3deg); }
.phone-speaker { width: 90px; height: 20px; position: absolute; z-index: 3; top: 8px; left: 50%; border-radius: 0 0 13px 13px; background: #08141d; transform: translateX(-50%); }
.phone-screen { height: 100%; padding: 30px 18px 20px; color: var(--ink); border-radius: 30px; background: #f5f8fa; overflow: hidden; }
.phone-screen__top { display: flex; justify-content: space-between; margin-bottom: 34px; font-size: .72rem; font-weight: 750; }
.phone-home { width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--white); border-radius: 50%; background: radial-gradient(circle at 35% 25%, #ff7b43, #d9420a 72%); box-shadow: 0 15px 35px rgba(255,92,25,.25); }
.phone-home .ti { margin-bottom: 8px; font-size: 1.5rem; }
.phone-home strong { font-size: 1.1rem; }
.phone-home span { color: #ffe1d4; font-size: .62rem; }
.phone-screen button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; color: #1b805f; border: 0; border-radius: 10px; background: #daf5eb; font-size: .72rem; font-weight: 750; }
.phone-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 25px; }
.phone-actions span { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 13px 5px; border: 1px solid #e0e8ed; border-radius: 10px; background: var(--white); font-size: .55rem; }
.phone-actions .ti { color: var(--orange); font-size: 1.05rem; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-radius: 13px; background: var(--white); box-shadow: 0 20px 40px rgba(7,21,34,.18); }
.floating-note--one { top: 115px; right: 6px; animation: float 4s ease-in-out infinite; }
.floating-note--two { bottom: 120px; left: -5px; animation: float 4.5s ease-in-out .8s infinite; }
.floating-note > .ti { color: var(--mint); font-size: 1.2rem; }
.floating-note--two > .ti { color: var(--orange); }
.floating-note span { display: flex; flex-direction: column; color: #7b8d98; font-size: .58rem; line-height: 1.45; }
.floating-note strong { color: var(--ink); font-size: .72rem; }
.control-copy h2 { max-width: 650px; margin-bottom: 20px; font-size: clamp(2.3rem, 3.25vw, 3.15rem); }
.control-copy > p { max-width: 660px; font-size: .98rem; }
.control-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 24px 0 0; padding: 0; list-style: none; }
.control-copy li { display: flex; gap: 11px; }
.control-copy li > .ti { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 2px; color: var(--white); border-radius: 50%; background: var(--orange); font-size: .62rem; }
.control-copy li span { display: flex; flex-direction: column; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.control-copy li strong { margin-bottom: 2px; color: var(--ink); font-size: .9rem; }
.app-downloads { margin-top: 24px; padding: 18px; border: 1px solid #d8d8d6; border-radius: 14px; background: var(--white); box-shadow: 0 14px 35px rgba(7,19,28,.07); }
.app-downloads__title { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.app-downloads__title > div { display: flex; flex-direction: column; }
.app-downloads__title strong { color: var(--ink); font-size: .94rem; }
.app-downloads__title small { color: #71838f; font-size: .68rem; }
.app-mark { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); border-radius: 11px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.4rem; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.store-buttons a { display: block; padding: 3px; border-radius: 9px; background: var(--ink); transition: transform .2s ease, filter .2s ease; }
.store-buttons a:hover { filter: brightness(1.08); transform: translateY(-2px); }
.store-buttons img { width: 142px; height: auto; }
.app-note { display: block; margin-top: 9px; color: #7a8b96; font-size: .62rem; }

.quote-section { color: var(--white); background: linear-gradient(135deg, #07131c, #18232b); }
.quote-launch { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; padding: 54px 60px; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: radial-gradient(circle at 85% 10%, rgba(255,92,25,.18), transparent 34%), rgba(255,255,255,.035); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.quote-launch h2 { max-width: 760px; margin-bottom: 16px; font-size: clamp(2.35rem, 4.2vw, 4.2rem); }
.quote-launch p { max-width: 700px; margin: 0; color: #a9bdc9; }
.quote-launch__action { min-width: 280px; display: flex; align-items: stretch; flex-direction: column; gap: 18px; }
.quote-launch__meta { display: grid; gap: 6px; color: #9eb3c0; font-size: .7rem; }
.quote-launch__meta .ti { width: 20px; color: #ff9b72; }
.button--launch { min-height: 66px; padding-inline: 20px; font-size: 1rem; }
.button-icon { width: 36px; height: 36px; display: grid; place-items: center; margin-left: -6px; color: var(--orange); border-radius: 10px; background: var(--white); }
.quote-modal { position: fixed; inset: 0; z-index: 5000; display: block; padding: 0; color: var(--white); background: #071522; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
.quote-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.quote-modal__panel { width: 100%; height: 100dvh; position: relative; overflow: hidden; border: 0; border-radius: 0; background: radial-gradient(circle at 14% 5%, rgba(255,92,25,.14), transparent 30%), linear-gradient(140deg, #07131c, #1a252c); box-shadow: none; transform: translateY(14px); transition: transform .28s cubic-bezier(.2,.75,.25,1); }
.quote-modal.is-open .quote-modal__panel { transform: translateY(0); }
.quote-modal__close { width: 48px; height: 48px; position: fixed; z-index: 10; top: 22px; right: 24px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(7,21,34,.9); backdrop-filter: blur(10px); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.quote-modal__close:hover { background: var(--orange); transform: rotate(4deg); }
.quote-modal .quote-layout { width: 100%; height: 100dvh; min-height: 0; margin: 0; padding: 0; align-items: stretch; gap: 0; grid-template-columns: minmax(340px, .68fr) minmax(640px, 1.32fr); overflow: hidden; }
.quote-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 80px; }
.quote-intro { position: sticky; top: 40px; }
.quote-modal .quote-intro { height: 100%; position: static; align-self: stretch; max-width: 650px; display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vh, 68px) clamp(44px, 6vw, 110px); overflow: auto; }
.quote-intro .eyebrow { color: #ff9b72; }
.quote-intro h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 3.4vw, 3.55rem); }
.quote-intro > p { margin-bottom: 26px; color: #a7b2b9; }
.quote-card { color: var(--ink); border-radius: 26px; background: var(--white); box-shadow: 0 32px 80px rgba(0,0,0,.25); overflow: hidden; }
.quote-modal .quote-card { height: 100dvh; min-height: 0; display: flex; flex-direction: column; border-radius: 0; box-shadow: -32px 0 80px rgba(0,0,0,.18); overflow: hidden; }
.quote-card__header { display: flex; justify-content: space-between; align-items: center; padding: 25px 92px 20px 32px; }
.quote-card__header > div { display: flex; flex-direction: column; }
.quote-card__header small { color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quote-card__header strong { font-size: 1.02rem; }
.quote-counter { color: #83939d; font-size: .72rem; }
.quote-counter b { color: var(--ink); }
.quote-progress { height: 4px; background: #e9eff2; }
.quote-progress span { width: 16.667%; height: 100%; display: block; background: var(--orange); transition: width .35s ease; }
#quote-form { padding: 34px 32px 30px; }
.quote-modal #quote-form { min-height: 0; flex: 1; display: flex; flex-direction: column; padding: clamp(28px, 4.5vh, 52px) clamp(38px, 6vw, 92px) 28px; overflow: auto; }
.quote-modal #quote-form .quote-step { min-height: 0; flex: 1; }
.quote-modal #quote-form .quote-actions { margin-top: auto; }
.quote-step { min-height: 435px; animation: step-in .32s ease both; }
.quote-step[hidden] { display: none; }
.quote-step fieldset { margin: 0; padding: 0; border: 0; }
.quote-step legend { margin-bottom: 7px; font-size: clamp(1.55rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.2; }
.step-description { margin-bottom: 26px; font-size: .88rem; }
.choice-grid { display: grid; gap: 12px; }
.choice-grid--three { grid-template-columns: repeat(3, 1fr); }
.choice-card { cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card > span { min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fbfcfd; text-align: center; transition: .2s ease; }
.choice-card .ti { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 15px; color: var(--white); border-radius: 12px; background: var(--ink); box-shadow: inset 0 -3px 0 var(--orange); font-size: 1.5rem; }
.choice-card strong { font-size: .95rem; }
.choice-card small { color: #81919b; font-size: .68rem; }
.choice-card input:checked + span { border-color: var(--orange); background: #fff7f3; box-shadow: inset 0 0 0 1px var(--orange); }
.choice-card input:focus-visible + span, .choice-list input:focus-visible + span, .check-grid input:focus-visible + span { outline: 3px solid rgba(255,92,25,.22); outline-offset: 2px; }
.choice-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.choice-list label { cursor: pointer; }
.choice-list input { position: absolute; opacity: 0; }
.choice-list span { position: relative; display: flex; flex-direction: column; padding: 15px 42px 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfd; font-size: .84rem; font-weight: 750; }
.choice-list span::after { content: ""; width: 16px; height: 16px; position: absolute; top: 50%; right: 16px; border: 1px solid #aebcc4; border-radius: 50%; transform: translateY(-50%); }
.choice-list small { color: #83939d; font-size: .68rem; font-weight: 500; }
.choice-list input:checked + span { color: var(--orange-dark); border-color: var(--orange); background: #fff7f3; }
.choice-list input:checked + span::after { border: 5px solid var(--orange); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: .75rem; font-weight: 750; }
.field > span small { color: #86959f; font-weight: 500; }
.field input, .field select { width: 100%; height: 52px; padding: 0 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; outline: none; background: var(--white); transition: border .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,92,25,.12); }
.field input.is-invalid, .field select.is-invalid { border-color: #d43f3a; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--full { grid-column: 1 / -1; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-grid label { cursor: pointer; }
.check-grid input { position: absolute; opacity: 0; }
.check-grid span { min-height: 58px; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfd; font-size: .78rem; font-weight: 700; transition: .2s ease; }
.check-grid .ti { width: 25px; color: var(--orange); text-align: center; font-size: 1.3rem; }
.check-grid input:checked + span { color: #086443; border-color: var(--mint); background: #edf9f5; box-shadow: inset 0 0 0 1px var(--mint); }
.field-error { margin: 12px 0 0; color: #c3312c; font-size: .75rem; }
.consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin-top: 23px; color: #5f717c; font-size: .71rem; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--orange); }
.consent a { color: var(--orange-dark); text-decoration: underline; }
.quote-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 24px; }
.quote-actions [hidden] { display: none !important; }
.quote-actions [data-next] { margin-left: auto; }
.form-message { min-height: 20px; margin: 9px 0 0; color: #c3312c; font-size: .74rem; }
.quote-summary { text-align: center; }
.summary-check { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--white); border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 10px rgba(41,211,154,.1); }
.quote-summary h3 { margin-bottom: 9px; font-size: 1.65rem; }
.quote-summary > p { max-width: 480px; margin: 0 auto 20px; font-size: .83rem; }
.summary-box { max-height: 170px; margin-bottom: 18px; padding: 17px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafb; overflow: auto; text-align: left; }
.summary-box dl { display: grid; grid-template-columns: 120px 1fr; gap: 7px 12px; margin: 0; font-size: .72rem; }
.summary-box dt { color: #758691; font-weight: 600; }
.summary-box dd { margin: 0; font-weight: 700; }
.summary-privacy { display: block; margin-top: 12px; color: #81909a; font-size: .65rem; }
.noscript-message { padding: 15px 30px; color: #9b2e2a; background: #fff2f1; }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 90px; }
.faq__intro { position: sticky; top: 130px; }
.faq__intro h2 { margin-bottom: 23px; }
.faq__intro > p { margin-bottom: 28px; }
.faq__intro > a { color: var(--blue); font-size: .85rem; font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 50px 23px 0; cursor: pointer; list-style: none; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; width: 14px; height: 2px; position: absolute; top: 34px; right: 4px; background: var(--blue); transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: -5px 45px 24px 0; font-size: .9rem; }

.final-cta { padding: 80px 0; color: var(--white); background: radial-gradient(circle at 8% 20%, rgba(255,92,25,.13), transparent 28%), var(--ink-soft); }
.final-cta .eyebrow { color: #ff9b72; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.final-cta h2 { margin-bottom: 10px; font-size: clamp(2.3rem, 4vw, 4rem); }
.final-cta p { margin: 0; color: #b9c3c9; }
.final-cta__inner > div:last-child { display: flex; flex: 0 0 auto; gap: 12px; }

.site-footer { position: relative; overflow: hidden; color: #c3d0d8; background: radial-gradient(circle at 8% 0, rgba(255,92,25,.09), transparent 27%), #04101a; }
.site-footer::before { content: ""; width: 360px; height: 2px; position: absolute; top: 0; left: 50%; background: linear-gradient(90deg, transparent, #6b3523, var(--orange), transparent); transform: translateX(-50%); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .85fr 1.25fr; gap: 46px; padding-top: 70px; padding-bottom: 58px; }
.footer-brand img { width: 175px; height: auto; margin-bottom: 22px; }
.footer-brand p { max-width: 360px; color: #8095a3; font-size: .84rem; }
.site-footer h2 { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--white); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer h2::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(244,119,34,.1); }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer li a { color: #8fa2ae; font-size: .78rem; transition: color .2s ease, transform .2s ease; }
.site-footer li a:hover { color: var(--white); transform: translateX(2px); }
.footer-contact .ti { width: 22px; color: var(--orange); }
.footer-contact li:last-child a { display: flex; align-items: start; }
.footer-store-buttons { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.footer-store-buttons img { width: 116px; height: auto; }
.footer-store-buttons a { opacity: .78; transition: opacity .2s ease, transform .2s ease; }
.footer-store-buttons a:hover { opacity: 1; transform: translateY(-2px); }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; transition: .2s ease; }
.social-links a:hover { border-color: var(--orange); background: var(--orange); transform: translateY(-2px); }
.footer-bottom { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); color: #6f8390; font-size: .68rem; }
.footer-legal { max-width: 520px; line-height: 1.65; }
.footer-bottom__links { display: flex; align-items: center; gap: 20px; }
.footer-bottom a:hover { color: var(--white); }
.footer-credit { display: inline-flex; align-items: center; gap: 8px; padding: 0; color: #9babb4; border: 0; border-radius: 0; background: transparent; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
.footer-credit span { white-space: nowrap; }
.footer-credit img { width: auto; height: 24px; object-fit: contain; }
.footer-credit:hover { color: var(--white); opacity: .86; transform: translateY(-1px); }
.footer-back-top { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: #a9bac4; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-back-top .ti { font-size: 1.15rem; }
.footer-back-top:hover { color: var(--white); border-color: var(--orange); background: var(--orange); transform: translateY(-3px); }

.legal-hero { padding: 90px 0 70px; color: var(--white); background: linear-gradient(135deg, var(--ink), #26272a); }
.legal-hero .breadcrumb { margin-bottom: 30px; }
.legal-hero .eyebrow { color: #ff9b72; }
.legal-hero h1 { margin-bottom: 12px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.legal-hero p { color: #99afbc; }
.legal-content { padding-top: 70px; padding-bottom: 100px; }
.legal-content h2 { margin-top: 42px; font-size: 1.65rem; }
.legal-content .button { margin-top: 30px; }
.not-found { min-height: 600px; display: flex; flex-direction: column; align-items: start; justify-content: center; padding: 80px 0; }
.not-found h1 { margin-bottom: 20px; font-size: clamp(3rem, 7vw, 6rem); }
.not-found p { max-width: 540px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse-dot { 50% { box-shadow: 0 0 0 8px rgba(41,211,154,0); } }
@keyframes radar-spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes step-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }

@media (min-width: 821px) {
    .page-home .hero { height: calc(100vh - 79px); height: calc(100svh - 79px); min-height: 0; }
    .page-home .hero__inner { height: 100%; min-height: 0; }
}

@media (min-width: 821px) and (max-height: 760px) {
    .page-home .hero__inner { padding-top: 34px; padding-bottom: 34px; }
    .page-home .hero h1 { margin-bottom: 18px; font-size: clamp(3.25rem, 7vw, 5.4rem); }
    .page-home .hero__content > p { margin-bottom: 24px; font-size: 1.02rem; }
}

@media (max-width: 1040px) {
    .hero__inner { grid-template-columns: 1fr .85fr; gap: 40px; }
    .monitor-card { padding: 20px; }
    .solutions-grid { grid-template-columns: 1fr 1fr; }
    .segments__grid, .quote-layout { gap: 48px; }
    .control-section__grid { gap: 55px; }
    .faq__grid { gap: 55px; }
    .brand img { width: 132px; }
    .main-nav { gap: 12px; font-size: .75rem; }
    .main-nav .button--small { min-height: 42px; padding-inline: 14px; }
    .nav-item--solutions .nav-dropdown { right: -355px; left: auto; }
    .quote-launch { gap: 40px; padding: 45px; }
    .page-detail__grid { gap: 42px; }
    .subject-journey__heading { grid-template-columns: 1fr .65fr; gap: 14px 42px; }
}

@media (max-width: 820px) {
    .section { padding: 82px 0; }
    .service-bar__inner > span { display: none; }
    .service-bar__inner { justify-content: center; }
    .site-header { top: 0; }
    .menu-toggle { display: block; position: relative; z-index: 3; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { max-height: calc(100dvh - 78px); position: fixed; inset: 78px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 20px 24px; overflow: auto; background: rgba(7,21,34,.99); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-130%); transition: transform .3s ease; }
    .main-nav.is-open { transform: translateY(0); }
    .main-nav > a:not(.button) { padding: 14px 5px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .main-nav .button { margin-top: 14px; }
    .nav-item { width: 100%; }
    .nav-trigger { width: 100%; justify-content: space-between; padding: 14px 5px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .nav-dropdown, .nav-item--solutions .nav-dropdown { width: 100%; position: static; display: none; margin: 5px 0 10px; padding: 9px; border-radius: 14px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; box-shadow: none; }
    .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: none; transform: none; }
    .nav-item.is-open .nav-dropdown, .nav-item.is-open:hover .nav-dropdown, .nav-item.is-open:focus-within .nav-dropdown { display: block; transform: none; }
    .nav-dropdown::before, .nav-dropdown__heading, .nav-dropdown__footer { display: none; }
    .nav-solutions-grid { grid-template-columns: 1fr; }
    .nav-solutions-grid > a, .nav-dropdown--compact > a { grid-template-columns: 38px 1fr; padding: 9px; }
    .nav-solutions-grid > a > .ti, .nav-dropdown--compact > a > .ti { width: 38px; height: 38px; }
    .hero, .page-internal .hero { min-height: auto; }
    .hero__inner, .page-internal .hero__inner { min-height: auto; grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 80px; }
    .hero__content { max-width: 730px; }
    .monitor-card { width: min(100%, 560px); margin-inline: auto; transform: none; }
    .page-hero-visual { width: min(100%, 620px); min-height: 420px; margin-inline: auto; }
    .trust-strip__grid { grid-template-columns: 1fr 1fr; }
    .trust-strip__grid > div:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.17); }
    .trust-strip__grid > div { border-bottom: 1px solid rgba(255,255,255,.17); }
    .service-focus__grid, .segments__grid, .control-section__grid, .quote-layout, .faq__grid, .page-detail__grid { grid-template-columns: 1fr; }
    .service-focus__grid { gap: 45px; }
    .subject-journey__heading { max-width: 740px; display: block; }
    .subject-journey__heading > p { margin-top: 20px; }
    .subject-journey__grid, .related-solutions__grid { grid-template-columns: 1fr; }
    .subject-card { min-height: 0; }
    .page-detail__grid { gap: 34px; }
    .page-detail__aside { min-height: 400px; }
    .section-heading { display: block; }
    .section-heading > p { max-width: 700px; margin-top: 20px; }
    .segments__grid { gap: 35px; }
    .segment-panels { min-height: 450px; }
    .process-grid { grid-template-columns: 1fr; gap: 35px; }
    .process-grid::before { display: none; }
    .control-section__grid { gap: 40px; }
    .phone-visual { order: 2; }
    .quote-launch { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
    .quote-launch__action { min-width: 0; }
    .quote-intro, .faq__intro { position: static; }
    .quote-modal { background: var(--ink); }
    .quote-modal__panel { height: 100dvh; min-height: 100dvh; }
    .quote-modal .quote-layout { height: 100dvh; display: block; min-height: 100dvh; padding: 0; }
    .quote-modal .quote-intro { display: none; }
    .quote-modal__close { position: fixed; top: 12px; right: 12px; color: var(--ink); border-color: #dbe3e8; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
    .quote-modal .quote-card { width: 100%; height: 100dvh; min-height: 100dvh; margin: 0; border-radius: 0; box-shadow: none; }
    .quote-modal .quote-card__header { padding-right: 82px; }
    .quote-modal #quote-form { padding: 34px 28px 28px; }
    .final-cta__inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-support { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 68px 0; }
    h1 { font-size: clamp(2.65rem, 15vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 11vw, 3rem); }
    .service-bar__inner div { width: 100%; justify-content: space-between; gap: 10px; }
    .service-bar__inner { min-height: 34px; }
    .service-bar { font-size: .66rem; }
    .header-inner { min-height: 70px; }
    .brand img { width: 122px; }
    .main-nav { top: 70px; }
    .main-nav { max-height: calc(100dvh - 70px); }
    .hero__inner { min-height: auto; padding-top: 64px; padding-bottom: 64px; }
    .hero__content > p { font-size: 1rem; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .monitor-card { padding: 15px; border-radius: 20px; }
    .page-hero-visual { min-height: 360px; padding: 18px; border-radius: 20px; }
    .page-hero-visual__content { padding: 22px; }
    .page-hero-visual__icon { width: 54px; height: 54px; right: 18px; bottom: calc(100% + 15px); font-size: 1.55rem; }
    .monitor-card__shield { padding: 16px; }
    .monitor-card__metrics { grid-template-columns: 1fr; }
    .event:nth-child(3) { display: none; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { min-height: 95px; border-left: 1px solid rgba(255,255,255,.17); }
    .focus-benefits, .solutions-grid { grid-template-columns: 1fr; }
    .subject-card { min-height: 0; padding: 24px; }
    .subject-card > .ti { margin-bottom: 28px; }
    .page-detail__list { grid-template-columns: 1fr; }
    .page-detail__aside { min-height: 380px; padding: 28px; }
    .related-card { grid-template-columns: 48px minmax(0, 1fr) auto; padding: 18px; }
    .focus-benefits div { min-height: 88px; padding: 16px 18px; }
    .solution-card { min-height: 0; }
    .segment-tabs { display: grid; grid-template-columns: 1fr; }
    .segment-panel { padding: 30px 23px; }
    .segment-panel ul { grid-template-columns: 1fr; }
    .phone-visual { min-height: 560px; transform: scale(.88); margin: -20px 0; }
    .control-section.section { padding-block: 76px; }
    .control-copy ul { grid-template-columns: 1fr; }
    .floating-note--one { right: -32px; }
    .floating-note--two { left: -32px; }
    .quote-card__header { padding: 20px 72px 16px 20px; }
    #quote-form { padding: 28px 20px 23px; }
    .quote-step { min-height: calc(100dvh - 285px); }
    .quote-launch { padding: 28px 22px; border-radius: 22px; }
    .quote-launch h2 { font-size: 2.35rem; }
    .button--launch { width: 100%; }
    .choice-grid--three, .choice-list, .check-grid, .field-grid { grid-template-columns: 1fr; }
    .choice-grid--three { gap: 8px; }
    .choice-card > span { min-height: 105px; flex-direction: row; justify-content: flex-start; gap: 14px; text-align: left; }
    .choice-card .ti { margin: 0; }
    .choice-card > span strong, .choice-card > span small { display: block; }
    .field--full { grid-column: auto; }
    .quote-actions { align-items: stretch; }
    .quote-actions .button { padding-inline: 16px; }
    .summary-box dl { grid-template-columns: 1fr; gap: 2px; }
    .summary-box dd { margin-bottom: 6px; }
    .final-cta__inner > div:last-child { width: 100%; flex-direction: column; }
    .final-cta .button { width: 100%; }
    .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 20px; row-gap: 38px; }
    .footer-brand, .footer-support { grid-column: 1 / -1; }
    .footer-services, .footer-audiences { min-width: 0; }
    .site-footer li a { font-size: .74rem; line-height: 1.45; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0; }
    .footer-bottom__links { width: 100%; align-items: flex-start; flex-wrap: wrap; gap: 14px 18px; }
    .footer-credit { width: max-content; align-self: center; order: 3; justify-content: center; margin: 2px auto 0; }
    .footer-credit img { height: 22px; }
}

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

@media print {
    .service-bar, .site-header, .quote-section, .final-cta, .site-footer { display: none !important; }
    body { color: #000; background: #fff; }
}
