:root {
    --brand: #2f4fa0;
    --brand-strong: #213b82;
    --brand-soft: #e9efff;
    --navy: #111827;
    --text: #111827;
    --muted: #526071;
    --surface: #ffffff;
    --surface-2: #f4f7ff;
    --surface-3: #eef3fb;
    --border: #dce3ee;
    --success: #16a34a;
    --warning: #f59e0b;
    --critical: #dc2626;
    --shadow-sm: 0 10px 30px rgba(25, 45, 86, .08);
    --shadow-lg: 0 28px 70px rgba(25, 45, 86, .15);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}
[data-theme="dark"] {
    --brand: #7898ee;
    --brand-strong: #9eb5f6;
    --brand-soft: #1b2d59;
    --navy: #f7f9ff;
    --text: #f7f9ff;
    --muted: #aebbd0;
    --surface: #0d1424;
    --surface-2: #121c31;
    --surface-3: #18243b;
    --border: #2a3851;
    --shadow-sm: 0 12px 32px rgba(0, 0, 0, .26);
    --shadow-lg: 0 30px 72px rgba(0, 0, 0, .38);
}
* {
    box-sizing: border-box;
}
[hidden] {
    display: none !important;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    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;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input, select, textarea {
    font: inherit;
}
button, a {
    -webkit-tap-highlight-color: transparent;
}
:focus-visible {
    outline: 3px solid #79a5ff;
    outline-offset: 3px;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--surface);
}
.skip-link:focus {
    top: 16px;
}
.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.section {
    padding: 104px 0;
}
.section-tight {
    padding: 76px 0;
}
.section-compact {
    padding: 68px 0;
}
.section-soft {
    background: var(--surface-2);
}
.section-dark {
    color: #fff;
    background: #111827;
}
[data-theme="dark"] .section-dark {
    background: #080d18;
}
.grid {
    display: grid;
    gap: 24px;
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}
.section-head.center {
    display: block;
    max-width: 770px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-head.center .eyebrow {
    justify-content: center;
}
.section-head.center .eyebrow::after {
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
}
.section-head h2, .page-hero h1 {
    margin: 12px 0 0;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -.045em;
}
.section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}
.section-head.center p {
    margin: 18px auto 0;
}
.kicker {
    margin: 0 0 8px;
    color: var(--brand);
    font-weight: 750;
}
.muted {
    color: var(--muted);
}
.small {
    font-size: .88rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* Header and navigation */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(18px);
}
.nav-shell {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 26px;
}
.brand {
    display: inline-flex;
    min-width: 176px;
    align-items: center;
    gap: 11px;
}
.brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.brand-copy {
    display: grid;
    line-height: 1;
}
.brand-name {
    color: var(--brand-strong);
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: .17em;
}
.brand-tag {
    margin-top: 5px;
    color: var(--muted);
    font-size: .62rem;
    letter-spacing: .015em;
}
.desktop-nav {
    display: flex;
    flex: 1;
    align-self: stretch;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
}
.nav-item {
    display: flex;
    align-items: center;
}
.nav-link {
    display: inline-flex;
    height: 100%;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 0;
    color: var(--text);
    background: none;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
}
.nav-link:hover {
    color: var(--brand);
}
.chev {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}
.mega {
    visibility: hidden;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: min(1040px, calc(100vw - 44px));
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 0 0 22px 22px;
    opacity: 0;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transform: translate(-50%, 10px);
    transition: .18s ease;
}
.nav-item:hover .mega, .nav-item:focus-within .mega {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mega-grid.four {
    grid-template-columns: repeat(4, 1fr);
}
.mega-title {
    display: block;
    margin-bottom: 11px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.mega a:not(.mega-feature) {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 650;
}
.mega a:not(.mega-feature)::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-soft);
    box-shadow: inset 0 0 0 2px var(--brand);
    content: "";
}
.mega a:hover {
    color: var(--brand);
}
.mega-feature {
    display: block;
    height: 100%;
    padding: 18px;
    border-radius: 18px;
    color: #fff;
    background: #20386f;
}
.mega-feature strong {
    display: block;
    max-width: 210px;
    margin-bottom: 8px;
    font-size: 1.22rem;
    line-height: 1.2;
}
.mega-feature > span:not(.mega-art) {
    display: block;
    color: #cad7fa;
    font-size: .82rem;
}
.mega-art {
    position: relative;
    display: block;
    height: 74px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 13px;
    background: rgba(255,255,255,.06);
}
.mega-art::before, .mega-art::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(158,181,246,.28);
    border-radius: 50%;
    content: "";
    transform: translate(-50%,-50%);
}
.mega-art::before {
    width: 105px;
    height: 105px;
}
.mega-art::after {
    width: 54px;
    height: 54px;
}
.mega-art i, .mega-art b {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    content: "";
}
.mega-art i:nth-child(1) {
    top: 11px;
    left: 18px;
}
.mega-art i:nth-child(2) {
    top: 26px;
    left: calc(50% - 12px);
}
.mega-art i:nth-child(3) {
    right: 18px;
    bottom: 10px;
}
.mega-art b {
    left: 31%;
    bottom: 8px;
    background: #8cabff;
}
.mega-art-apps i {
    border-radius: 50%;
}
.mega-art-risk i:nth-child(1) {
    background: #fecaca;
}
.mega-art-risk i:nth-child(2) {
    background: #fde68a;
}
.mega-art-risk i:nth-child(3) {
    background: #bbf7d0;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}
.theme-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    background: var(--surface);
    cursor: pointer;
}
.theme-toggle svg {
    width: 19px;
    height: 19px;
}
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    color: #fff;
    background: #2f4fa0;
    box-shadow: 0 12px 28px rgba(47, 79, 160, .22);
}
.btn-primary:hover {
    background: #213b82;
}
.btn-secondary {
    border-color: var(--border);
    color: var(--text);
    background: var(--surface);
}
.btn-inverse {
    color: #111827;
    background: #fff;
}
.btn-text {
    color: var(--brand);
    padding-inline: 0;
}
/* Shared rounded navigation */
.one-page-header {
    padding: 18px 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}
.one-page-header .nav-shell {
    width: min(calc(100% - 56px), 1480px);
    min-height: 96px;
    padding: 0 28px;
    border: 1px solid #e5e7eb;
    border-radius: 52px;
    color: #111827;
    background: #fff;
    box-shadow: 0 18px 50px rgba(17,24,39,.16);
}
.one-page-header .brand-name, .one-page-header .nav-link {
    color: #111827;
}
.one-page-header .brand-tag {
    color: #4b5563;
}
.one-page-header .theme-toggle {
    border-color: #dce3ee;
    color: #111827;
    background: #f4f7ff;
}
.one-page-header .mega {
    border-color: #dce3ee;
    color: #111827;
    background: #fff;
}
.one-page-header .mega-title {
    color: #526071;
}
.one-page-header .mega a:not(.mega-feature)::before {
    background: #e9efff;
}
[data-theme="dark"] .one-page-header .nav-shell {
    border-color: #e5e7eb;
    color: #111827;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
[data-theme="dark"] .one-page-header .brand-name, [data-theme="dark"] .one-page-header .nav-link {
    color: #111827;
}
[data-theme="dark"] .one-page-header .brand-tag {
    color: #4b5563;
}
[data-theme="dark"] .one-page-header .theme-toggle {
    border-color: #dce3ee;
    color: #111827;
    background: #f4f7ff;
}
[data-theme="dark"] .one-page-header .mega {
    border-color: #dce3ee;
    color: #111827;
    background: #fff;
}
[data-theme="dark"] .one-page-header .mega-title {
    color: #526071;
}
/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 62px;
    background: var(--surface);
}
.hero::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    border: 1px solid var(--border);
    border-radius: 50%;
    content: "";
}
.hero::after {
    position: absolute;
    bottom: -250px;
    left: -240px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: var(--surface-2);
    content: "";
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: 58px;
}
.hero-copy h1 {
    margin: 16px 0 22px;
    font-size: clamp(2.75rem, 5.4vw, 5.45rem);
    line-height: .98;
    letter-spacing: -.062em;
}
.hero-copy h1 span {
    color: var(--brand);
}
.hero-copy > p {
    max-width: 630px;
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}
.trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.trust-line span::before {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    content: "✓";
    font-size: .65rem;
    line-height: 17px;
    text-align: center;
}
.product-visual {
    position: relative;
    min-height: 570px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
}
.visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 2px 18px;
}
.window-dots {
    display: flex;
    gap: 6px;
}
.window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a8b3c7;
}
.visual-label {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.risk-command {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 458px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
}
.risk-sidebar {
    padding: 18px 12px;
    border-right: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface-2) 75%, var(--surface));
}
.mini-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 5px;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.mini-brand img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.side-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
    padding: 9px 8px;
    border-radius: 9px;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 750;
}
.side-link.active {
    color: var(--brand);
    background: var(--brand-soft);
}
.side-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: currentColor;
    opacity: .65;
}
.risk-main {
    padding: 20px;
}
.risk-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}
.risk-head h2 {
    margin: 0;
    font-size: 1rem;
}
.risk-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .66rem;
}
.live-pill {
    padding: 5px 8px;
    border-radius: 99px;
    color: var(--success);
    background: color-mix(in srgb, var(--success) 10%, transparent);
    font-size: .61rem;
    font-weight: 800;
}
.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 17px 0;
}
.metric {
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface);
}
.metric span {
    display: block;
    color: var(--muted);
    font-size: .59rem;
}
.metric strong {
    display: block;
    margin-top: 3px;
    font-size: 1rem;
}
.risk-map {
    position: relative;
    display: grid;
    height: 142px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-2);
}
.risk-map::before, .risk-map::after {
    position: absolute;
    border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
    border-radius: 50%;
    content: "";
}
.risk-map::before {
    width: 190px;
    height: 190px;
}
.risk-map::after {
    width: 110px;
    height: 110px;
}
.core-node {
    position: relative;
    z-index: 2;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: #2f4fa0;
    box-shadow: 0 12px 25px rgba(47, 79, 160, .28);
}
.core-node img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.app-node {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--brand);
    background: var(--surface);
    font-size: .58rem;
    font-weight: 900;
}
.node-1 {
    left: 12%;
    top: 22%;
}
.node-2 {
    right: 14%;
    top: 17%;
}
.node-3 {
    left: 20%;
    bottom: 12%;
}
.node-4 {
    right: 18%;
    bottom: 13%;
}
.finding-list {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}
.finding {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.sev {
    width: 7px;
    height: 28px;
    border-radius: 6px;
}
.sev.red {
    background: var(--critical);
}
.sev.amber {
    background: var(--warning);
}
.sev.green {
    background: var(--success);
}
.finding strong {
    display: block;
    font-size: .66rem;
}
.finding span {
    color: var(--muted);
    font-size: .56rem;
}
.finding em {
    padding: 3px 6px;
    border-radius: 6px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: .52rem;
    font-style: normal;
    font-weight: 800;
}
.floating-card {
    position: absolute;
    z-index: 5;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.floating-card strong {
    display: block;
    font-size: .75rem;
}
.floating-card span {
    color: var(--muted);
    font-size: .62rem;
}
.float-a {
    top: 110px;
    right: -28px;
}
.float-b {
    bottom: 55px;
    left: -27px;
}
.hero-dashboard {
    position: relative;
    margin: 0;
}
.dashboard-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}
.dashboard-frame::after {
    position: absolute;
    z-index: 3;
    top: -60%;
    left: -34%;
    width: 18%;
    height: 220%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
    content: "";
    pointer-events: none;
    transform: rotate(17deg);
    animation: dashboard-shine 5.8s ease-in-out infinite;
}
.dashboard-frame img {
    display: block;
    width: 100%;
    border-radius: 19px;
}
.hero-dashboard figcaption {
    position: relative;
    z-index: 3;
    margin-top: 10px;
    color: var(--muted);
    font-size: .68rem;
    text-align: center;
}
@keyframes dashboard-shine {
    0%, 68% {
        left: -34%;
        opacity: 0;
    }
    72% {
        opacity: .62;
    }
    96%, 100% {
        left: 116%;
        opacity: 0;
    }
}
/* Content cards */
.logo-proof {
    padding: 29px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.proof-shell {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    align-items: center;
    gap: 38px;
}
.proof-copy strong {
    display: block;
    font-size: 1rem;
}
.proof-copy span {
    color: var(--muted);
    font-size: .82rem;
}
.proof-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.proof-point {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 750;
}
.proof-point i {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    color: var(--brand);
    background: var(--brand-soft);
    font-style: normal;
}
.client-logos-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.client-logo-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 25px;
}
.client-logo-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -.03em;
}
.client-logo-head p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.client-logo-placeholder {
    display: grid;
    min-height: 84px;
    place-items: center;
    padding: 12px;
    border: 1px dashed color-mix(in srgb, var(--brand) 35%, var(--border));
    border-radius: 14px;
    color: var(--muted);
    background: var(--surface-2);
    text-align: center;
}
.client-logo-placeholder span {
    font-size: .78rem;
    font-weight: 850;
}
.client-logo-placeholder small {
    display: block;
    font-size: .63rem;
}
.testimonial-section {
    padding: 72px 0;
}
.testimonial-section .section-head {
    margin-bottom: 30px;
}
.testimonial-card {
    position: relative;
    min-height: 255px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.quote-mark {
    position: absolute;
    top: 12px;
    right: 22px;
    color: var(--brand-soft);
    font-size: 5rem;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card > p {
    position: relative;
    z-index: 2;
    min-height: 88px;
    margin: 18px 0 26px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 650;
}
.testimonial-person {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: .7rem;
    font-weight: 900;
}
.testimonial-person strong, .testimonial-person small {
    display: block;
}
.testimonial-person small {
    color: var(--muted);
    font-size: .7rem;
}
.card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.card-hover {
    transition: transform .2s ease, border-color .2s ease;
}
.card-hover:hover {
    border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
    transform: translateY(-5px);
}
.icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 1.25rem;
    font-weight: 900;
}
.card h3 {
    margin: 21px 0 9px;
    font-size: 1.25rem;
    line-height: 1.25;
}
.card p {
    margin: 0;
    color: var(--muted);
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--brand);
    font-size: .86rem;
    font-weight: 800;
}
.problem-card {
  position: relative;
  overflow: hidden;
}
.problem-card::after {
    position: absolute;
    right: -28px;
    bottom: -46px;
    width: 120px;
    height: 120px;
    content: "";
    border: 22px solid #e9efff;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
}
.problem-card > * {
  position: relative;
  z-index: 1;
}
.solution-feature {
    display: grid;
    min-height: 510px;
    grid-template-columns: .85fr 1.15fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.solution-feature.compact {
    min-height: 410px;
}
.solution-feature.compact .solution-copy {
    padding: 38px 44px;
}
.solution-feature.compact .solution-copy h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}
.solution-feature.compact .solution-visual {
    min-height: 410px;
}
.solution-feature.compact .check-list {
    gap: 8px;
    margin-top: 20px;
}
.solution-copy {
    padding: 52px;
}
.solution-copy h2 {
    margin: 14px 0 18px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}
.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
}
.check-list li::before {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    content: "✓";
    font-size: .7rem;
    font-weight: 900;
}
.solution-visual {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    overflow: hidden;
    background: #20386f;
}
.solution-visual::before, .solution-visual::after {
    position: absolute;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    content: "";
}
.solution-visual::before {
    width: 450px;
    height: 450px;
}
.solution-visual::after {
    width: 300px;
    height: 300px;
}
.orbit-core {
    position: relative;
    z-index: 2;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(0,0,0,.25);
}
.orbit-core img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.orbit-card {
    position: absolute;
    z-index: 3;
    min-width: 150px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 13px;
    color: #fff;
    background: rgba(12, 23, 48, .8);
    backdrop-filter: blur(10px);
}
.orbit-card b {
    display: block;
    font-size: .78rem;
}
.orbit-card span {
    color: #c9d5ef;
    font-size: .66rem;
}
.oc-1 {
    top: 70px;
    left: 54px;
}
.oc-2 {
    top: 110px;
    right: 48px;
}
.oc-3 {
    bottom: 85px;
    left: 64px;
}
.oc-4 {
    right: 52px;
    bottom: 55px;
}
.feature-grid .card {
    min-height: 265px;
}
/*
.feature-grid .card:nth-child(3n+2) {
    background: var(--surface-2);
}*/
/* Light cards */
.feature-grid .card:nth-child(odd) {
    background: #f4f7ff;
    color: #111111;
}

/* White cards */
.feature-grid .card:nth-child(even) {
    background: #ffffff;
    color: #111111;
}

.feature-grid .card h3,
.feature-grid .card p {
    color: #111111;
}

.feature-grid .card-link,
.feature-grid .card .icon-box {
    color: #2f4fa0;
}
/*ne*/
.process {
    counter-reset: steps;
}
.process-card {
    padding: 28px;
    border-top: 2px solid var(--brand);
}
.process-card::before {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #2f4fa0;
    counter-increment: steps;
    content: "0" counter(steps);
    font-size: .78rem;
    font-weight: 900;
}
.process-graphic {
    position: relative;
    display: flex;
    height: 82px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 17px 0 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface-2);
}
.process-graphic::before {
    position: absolute;
    top: 50%;
    right: 14px;
    left: 14px;
    height: 1px;
    background: color-mix(in srgb, var(--brand) 24%, var(--border));
    content: "";
}
.process-graphic span {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 42px;
    height: 30px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--border));
    border-radius: 8px;
    color: var(--brand);
    background: var(--surface);
    font-size: .57rem;
    font-weight: 900;
}
.process-graphic i {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 15%, transparent);
}
.process-prioritize span:nth-child(1) {
    color: var(--critical);
}
.process-prioritize span:nth-child(2) {
    color: var(--warning);
}
.process-remediate span:last-of-type {
    color: var(--success);
}
.role-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}
.role-tab {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: var(--surface);
    cursor: pointer;
    font-weight: 800;
}
.role-tab.active {
    border-color: #2f4fa0;
    color: #fff;
    background: #2f4fa0;
}
.role-panel {
    display: none;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: center;
    padding: 46px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.role-panel.active {
    display: grid;
}
.role-panel h3 {
    margin: 8px 0 14px;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}
.role-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}
.role-outcome {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--surface-2);
    font-size: .88rem;
    font-weight: 750;
}
/* Integration rail */
.integration-stage {
    overflow: hidden;
    padding: 15px 0;
}
.marquee-row {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 7px;
    animation: marquee 44s linear infinite;
}
.marquee-row.reverse {
    animation-direction: reverse;
    animation-duration: 50s;
}
.integration-stage:hover .marquee-row {
    animation-play-state: paused;
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
.integration-chip {
    display: flex;
    min-width: 192px;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    padding: 5px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.logo-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.detail-visual > .logo-mark img {
    width: 58px;
    height: 58px;
}
.integration-chip strong {
    font-size: .83rem;
    white-space: nowrap;
}
.integration-chip span {
    display: block;
    color: var(--muted);
    font-size: .62rem;
}
.integration-filter-head {
    margin-bottom: 28px;
}
.integration-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 99px;
    color: var(--muted);
    background: var(--surface);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 800;
}
.filter-btn b {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    padding: 0 5px;
    border-radius: 99px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: .64rem;
}
.filter-btn.active {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
}
.filter-btn.active b {
    color: #fff;
    background: #2f4fa0;
}
.filter-status {
    margin: 0;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
}
.integration-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.integration-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
}
.integration-card h3 {
    margin: 0;
    font-size: .98rem;
}
.integration-card p {
    font-size: .72rem;
}
.integration-empty {
    max-width: 520px;
    margin: 35px auto;
    padding: 30px;
    border: 1px dashed color-mix(in srgb, var(--brand) 35%, var(--border));
    border-radius: 22px;
    background: var(--surface-2);
    text-align: center;
}
.integration-empty .mega-art {
    max-width: 260px;
    margin: 0 auto 18px;
    background: #20386f;
}
.integration-empty h3 {
    margin: 0 0 8px;
}
.integration-empty p {
    margin: 0 0 18px;
    color: var(--muted);
}
/* Pricing, compliance, FAQ */
.pricing-grid {
    align-items: stretch;
}
.price-card {
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border: 2px solid var(--brand);
}
.plan-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 9px;
    border-radius: 99px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.price-card h3 {
    font-size: 1.55rem;
}
.price {
    margin: 10px 0;
    font-size: 1.4rem;
    font-weight: 800;
}
.price small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
}
.price-card .check-list {
    flex: 1;
    margin-bottom: 24px;
}
.price-matrix {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
}
.price-matrix table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}
.price-matrix th, .price-matrix td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.price-matrix th {
    color: var(--muted);
    background: var(--surface-2);
    font-size: .76rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.price-matrix td strong {
    color: var(--brand);
}
.framework-grid {
    grid-template-columns: repeat(4, 1fr);
}
.framework-card {
    min-height: 215px;
}
.compliance-compact .section-head {
    margin-bottom: 28px;
}
.compliance-compact .framework-card {
    min-height: 158px;
    padding: 20px;
}
.compliance-compact .framework-card h3 {
    margin: 13px 0 5px;
    font-size: 1rem;
}
.compliance-compact .framework-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: .78rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.framework-mark {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    padding: 6px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.framework-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.faq-compact {
    padding: 64px 0;
}
.faq-compact .section-head {
    margin-bottom: 24px;
}
.faq-compact .section-head h2 {
    font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border: 0;
    color: var(--text);
    background: none;
    cursor: pointer;
    text-align: left;
    font-weight: 850;
}
.faq-question i {
    position: relative;
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}
.faq-question i::before, .faq-question i::after {
    position: absolute;
    top: 9px;
    left: 2px;
    width: 15px;
    height: 2px;
    background: var(--brand);
    content: "";
    transition: .2s ease;
}
.faq-question i::after {
    transform: rotate(90deg);
}
.faq-item.open .faq-question i::after {
    transform: rotate(0);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}
.faq-answer > div {
    overflow: hidden;
}
.faq-answer p {
    margin: 0;
    padding: 0 38px 16px 0;
    color: var(--muted);
}
.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}
/* Inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 76px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.page-hero::after {
    position: absolute;
    right: -160px;
    bottom: -240px;
    width: 480px;
    height: 480px;
    border: 70px solid color-mix(in srgb, var(--brand) 8%, transparent);
    border-radius: 50%;
    content: "";
}
.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: center;
    gap: 52px;
}
.page-hero-grid.single {
    grid-template-columns: 1fr;
}
.page-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}
.breadcrumbs {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 750;
}
.breadcrumbs a {
    color: var(--brand);
}
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}
.detail-visual {
    position: relative;
    min-height: 330px;
    padding: 28px;
    border-radius: 26px;
    color: #fff;
    background: #20386f;
    box-shadow: var(--shadow-lg);
}
.detail-visual::before {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    content: "";
}
.signal-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}
.signal {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    background: rgba(12,23,48,.66);
}
.signal i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8cabff;
    box-shadow: 0 0 0 6px rgba(140,171,255,.12);
}
.signal span {
    font-size: .8rem;
    font-weight: 750;
}
.outcome-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--border);
}
.outcome {
    padding: 27px;
    background: var(--surface);
}
.outcome span {
    display: block;
    color: var(--brand);
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}
.outcome strong {
    display: block;
    margin-top: 7px;
    line-height: 1.3;
}
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 52px;
}
.article h2 {
    margin: 42px 0 14px;
    font-size: 1.8rem;
    line-height: 1.2;
}
.article h3 {
    margin: 30px 0 10px;
}
.article p, .article li {
    color: var(--muted);
}
.article ul {
    padding-left: 20px;
}
.side-card {
    position: sticky;
    top: 102px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-2);
}
.side-card h3 {
    margin: 0 0 10px;
}
.side-card .btn {
    width: 100%;
    margin-top: 16px;
}
.risk-checks {
    counter-reset: risks;
}
.risk-check {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 21px 0;
    border-bottom: 1px solid var(--border);
}
.risk-check::before {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: var(--critical);
    background: color-mix(in srgb, var(--critical) 9%, transparent);
    counter-increment: risks;
    content: counter(risks);
    font-weight: 900;
}
.risk-check h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}
.risk-check p {
    margin: 0;
    font-size: .9rem;
}
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}
.partner-logo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 106px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
}
.partner-logo-placeholder {
    display: grid;
    width: 65px;
    height: 65px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px  color-mix(in srgb, var(--brand) 45%, var(--border));
    border-radius: 16px;
    color: var(--brand);
    background: #ffffff;
    font-size: .74rem;
    font-weight: 950;
}
.partner-logo-card h3 {
    margin: 0;
    font-size: .96rem;
}
.partner-logo-card p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .7rem;
}
.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}
.blog-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
}
.blog-meta {
    color: var(--brand);
    font-size: .72rem;
    font-weight: 850;
}
.blog-card h3 {
    font-size: 1.3rem;
}
.blog-card .card-link {
    margin-top: auto;
}
.form-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}
.form-aside {
    padding: 48px;
    color: #fff;
    background: #20386f;
}
.form-aside h2 {
    margin: 0 0 14px;
    font-size: 2.3rem;
    line-height: 1.1;
}
.form-aside p {
    color: #cad7ef;
}
.form-main {
    padding: 48px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    display: grid;
    gap: 7px;
}
.field.full {
    grid-column: 1 / -1;
}
.field label {
    font-size: .78rem;
    font-weight: 800;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text);
    background: var(--surface);
}
.field textarea {
    min-height: 120px;
    resize: vertical;
}
.form-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: .72rem;
}
.notice {
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--border));
    border-radius: 12px;
    color: var(--muted);
    background: var(--brand-soft);
    font-size: .82rem;
}
/* CTA and footer */
.cta-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 64px;
    border-radius: 30px;
    color: #fff;
    background: #20386f;
}
.cta-shell::after {
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 65px solid rgba(255,255,255,.06);
    border-radius: 50%;
    content: "";
}
.cta-shell h2 {
    margin: 0 0 13px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}
.cta-shell p {
    max-width: 600px;
    margin: 0;
    color: #cad7ef;
}
.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}
.site-footer {
    padding: 74px 0 25px;
    color: #d7dfef;
    background: #0b1120;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.35fr repeat(5, 1fr);
    gap: 32px;
}
.footer-brand .brand-name {
    color: #9eb5f6;
}
.footer-brand .brand-tag {
    color: #a9b6cb;
}
.footer-brand p {
    max-width: 270px;
    color: #95a4bd;
    font-size: .86rem;
}
.footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: .79rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    color: #9eacc2;
    font-size: .82rem;
}
.footer-col a:hover {
    color: #fff;
}
.footer-certifications {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}
.footer-certifications img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}
.socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #2a3851;
    border-radius: 9px;
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid #202d43;
    color: #8392aa;
    font-size: .74rem;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.cookie-banner {
    position: fixed;
    z-index: 1500;
    right: 18px;
    bottom: 18px;
    width: min(390px, calc(100% - 36px));
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}
.cookie-banner p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .78rem;
}
.cookie-actions {
    display: flex;
    gap: 8px;
}
@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }
    .nav-shell {
        min-height: 70px;
    }
    .header-actions {
        margin-left: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .product-visual {
        min-height: 520px;
    }
    .float-a {
        right: 4px;
    }
    .float-b {
        left: 4px;
    }
    .grid-4, .framework-grid, .integration-grid, .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}
@media (max-width: 820px) {
    .section {
        padding: 78px 0;
    }
    .section-tight, .section-compact {
        padding: 58px 0;
    }
    .hero {
        padding-top: 54px;
    }
    .hero-grid, .solution-feature, .page-hero-grid, .form-shell, .cta-shell, .role-panel {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        gap: 48px;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-copy .eyebrow {
        justify-content: center;
    }
    .hero-copy .eyebrow::after {
        width: 22px;
        height: 2px;
        background: currentColor;
        content: "";
    }
    .hero-copy > p {
        margin-inline: auto;
    }
    .hero-actions, .trust-line {
        justify-content: center;
    }
    .product-visual, .hero-dashboard {
        max-width: 720px;
        min-height: auto;
        margin-inline: auto;
    }
    .risk-command {
        min-height: 440px;
    }
    .one-page-header {
        padding: 12px 0;
    }
    .one-page-header .nav-shell {
        width: min(calc(100% - 28px), 1480px);
        min-height: 72px;
        padding: 0 14px;
        border-radius: 38px;
    }
    .proof-shell {
        grid-template-columns: 1fr;
    }
    .proof-points {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logo-head {
        display: block;
    }
    .client-logo-head p {
        margin-top: 12px;
    }
    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-head {
        display: block;
    }
    .section-head p {
        margin-top: 18px;
    }
    .grid-3, .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .solution-copy {
        padding: 38px;
    }
    .solution-visual {
        min-height: 430px;
    }
    .role-panel {
        gap: 28px;
        padding: 34px;
    }
    .outcome-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-layout {
        grid-template-columns: 1fr;
    }
    .side-card {
        position: static;
    }
    .cta-shell {
        padding: 48px;
    }
    .cta-actions {
        justify-content: flex-start;
    }
    .footer-top {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .header-actions .header-cta {
        min-height: 38px;
        padding: 8px 10px;
        font-size: .72rem;
    }
    .brand {
        min-width: 0;
    }
    .brand-name {
        font-size: 1.1rem;
    }
    .brand-tag {
        font-size: .54rem;
    }
    .hero-copy h1 {
        font-size: 2.65rem;
    }
    .hero-copy > p {
        font-size: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .risk-command {
        grid-template-columns: 74px 1fr;
    }
    .risk-sidebar {
        padding-inline: 7px;
    }
    .mini-brand {
        justify-content: center;
        font-size: 0;
    }
    .side-link {
        justify-content: center;
        font-size: 0;
    }
    .side-dot {
        width: 11px;
        height: 11px;
    }
    .risk-main {
        padding: 13px;
    }
    .metric-row {
        grid-template-columns: 1fr;
    }
    .metric {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .risk-map {
        height: 125px;
    }
    .floating-card {
        display: none;
    }
    .proof-points, .grid-2, .grid-3, .grid-4, .framework-grid, .integration-grid, .blog-grid, .role-outcomes, .form-grid, .partner-logo-grid {
        grid-template-columns: 1fr;
    }
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logo-placeholder {
        min-height: 72px;
    }
    .problem-card, .feature-grid .card {
        min-height: auto;
    }
    .solution-copy, .role-panel, .form-aside, .form-main {
        padding: 28px;
    }
    .solution-visual {
        min-height: 390px;
    }
    .orbit-card {
        min-width: 125px;
        padding: 9px;
    }
    .oc-1 {
        left: 18px;
    }
    .oc-2 {
        right: 14px;
    }
    .oc-3 {
        left: 20px;
    }
    .oc-4 {
        right: 16px;
    }
    .marquee-row {
        animation-duration: 32s;
    }
    .integration-chip {
        min-width: 170px;
    }
    .page-hero {
        padding: 66px 0 56px;
    }
    .detail-visual {
        min-height: 300px;
        padding: 20px;
    }
    .dashboard-frame {
        padding: 5px;
        border-radius: 18px;
    }
    .dashboard-frame img {
        border-radius: 13px;
    }
    .outcome-strip {
        grid-template-columns: 1fr;
    }
    .cta-shell {
        padding: 34px 25px;
    }
    .cta-actions .btn {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 380px) {
    .theme-toggle {
        display: none;
    }
    .brand-tag {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .marquee-row {
        width: auto;
        flex-wrap: wrap;
        transform: none !important;
    }
}
@media print {
    .site-header, .site-footer, .cta-section, .cookie-banner {
        display: none !important;
    }
    body {
        color: #111;
        background: #fff;
    }
    .section, .page-hero {
        padding: 28px 0;
    }
}
/* Newly addess css*/
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #2f4fa0;
    background: rgba(47, 79, 160, 0.1);
    border: 1px solid rgba(47, 79, 160, 0.18);
    border-radius: 12px;
    animation: icon-float 3s ease-in-out infinite;
    transition: all 0.35s ease;
}

.icon-box svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

.card:hover .icon-box {
    color: #ffffff;
    background: #2f4fa0;
    border-color: #2f4fa0;
    box-shadow: 0 10px 24px rgba(47, 79, 160, 0.25);
}

.card:hover .icon-box svg {
    animation: icon-pulse 0.6s ease;
}

@keyframes icon-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes icon-pulse {
    0% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.2) rotate(-6deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .icon-box,
    .card:hover .icon-box svg {
        animation: none;
    }
}

/* process card */
.process {
    position: relative;
    gap: 32px;
}

.process-card {
    position: relative;
    overflow: visible;
}

/* Connecting line */
.process-card:not(:last-child)::after {
    position: absolute;
    top: 68px;
    right: -32px;
    width: 32px;
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        rgba(47, 79, 160, 0.2),
        #2f4fa0,
        rgba(47, 79, 160, 0.2)
    );
    background-size: 200% 100%;
    animation: connector-flow 2s linear infinite;
}

/* Arrow head */


@keyframes connector-flow {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

/* Vertical connection on mobile */
@media (max-width: 900px) {
    .process {
        grid-template-columns: 1fr;
    }

    .process-card:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -32px;
        left: 50%;
        width: 2px;
        height: 32px;
        background: linear-gradient(
            180deg,
            rgba(47, 79, 160, 0.2),
            #2f4fa0,
            rgba(47, 79, 160, 0.2)
        );
        background-size: 100% 200%;
    }

    .process-card:not(:last-child)::before {
        top: auto;
        right: auto;
        bottom: -31px;
        left: calc(50% - 4px);
        border-top: 0;
        border-right: 2px solid #2f4fa0;
        border-bottom: 2px solid #2f4fa0;
        transform: rotate(45deg);
    }
}

/*Integration Logo*/

.integration-logo {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    overflow: hidden;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--logo, #2f4fa0) 26%, var(--border));
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(17,24,39,.09);
}
.integration-logo img {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 7px;
    object-fit: contain;
    background: #fff;
}
.integration-logo-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    background: var(--logo, #2f4fa0);
    font-size: .68rem;
    font-weight: 950;
    letter-spacing: -.02em;
}
.integration-logo-hero {
    width: 112px;
    height: 112px;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(17,24,39,.28);
}
.integration-logo-hero img {
    padding: 18px;
}
.integration-logo-hero .integration-logo-fallback {
    font-size: 1.4rem;
}
.integration-detail-visual {
    display: grid;
    place-items: center;
}
.integration-detail-visual > strong {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    font-size: 1.25rem;
}
.integration-detail-visual > span:last-child {
    position: relative;
    z-index: 2;
    color: #cad7ef;
}

/* Reusable integration value section 

.integration-value-section {
    margin-top: 46px;
}
.integration-value-section > h2 {
    margin-bottom: 20px;
}
.integration-value-grid {
    gap: 16px;
}
.integration-value-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
}
.integration-value-card::after {
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 112px;
    height: 112px;
    border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
    border-radius: 50%;
    content: "";
}
.integration-value-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--border));
    border-radius: 15px;
    color: var(--brand);
    background: var(--brand-soft);
}
.integration-value-icon i, .integration-value-icon b {
    position: absolute;
    display: block;
    content: "";
}
.integration-value-icon-posture i {
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: value-radar 2.4s ease-out infinite;
}
.integration-value-icon-posture b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.integration-value-icon-identity i {
    top: 10px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.integration-value-icon-identity b {
    bottom: 9px;
    width: 24px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 14px 14px 7px 7px;
    animation: value-breathe 2.2s ease-in-out infinite;
}
.integration-value-icon-priority i {
    width: 5px;
    height: 22px;
    border-radius: 3px;
    background: currentColor;
    animation: value-alert 1.8s ease-in-out infinite;
}
.integration-value-icon-priority b {
    bottom: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}
.integration-value-icon-workflow i {
    width: 25px;
    height: 2px;
    background: currentColor;
    animation: value-flow 2.1s linear infinite;
}
.integration-value-icon-workflow b {
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 18px 0 0 -2px var(--brand), -18px 0 0 -2px var(--brand);
}
@keyframes value-radar {
    0% {
        opacity: 1;
        transform: scale(.35);
    }
    80%,100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes value-breathe {
    50% {
        transform: translateY(-2px);
    }
}
@keyframes value-alert {
    50% {
        transform: translateY(-3px);
    }
}
@keyframes value-flow {
    to {
        transform: rotate(360deg);
    }
} */

/* new animation*/

.integration-value-section {
    margin-top: 46px;
}

.integration-value-section > h2 {
    margin-bottom: 20px;
}

.integration-value-grid {
    gap: 16px;
}

.integration-value-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
}

.integration-value-card::after {
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 112px;
    height: 112px;
    content: "";
    border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
    border-radius: 50%;
}

.integration-value-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    overflow: hidden;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--border));
    border-radius: 15px;
}

.integration-value-icon i,
.integration-value-icon b {
    position: absolute;
    display: block;
}

/* SVG icon styling */

.integration-value-icon svg {
    width: 27px;
    height: 27px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Posture Monitoring */

.integration-value-icon-posture i {
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: value-radar 2.4s ease-out infinite;
}

.integration-value-icon-posture b {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
}

/* Identity Context */

.integration-value-icon-identity i {
    top: 9px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: identity-head 2.2s ease-in-out infinite;
}

.integration-value-icon-identity b {
    bottom: 8px;
    width: 24px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 14px 14px 7px 7px;
    animation: identity-body 2.2s ease-in-out infinite;
}

.integration-value-icon-identity::after {
    position: absolute;
    right: 8px;
    left: 8px;
    height: 2px;
    content: "";
    background: currentColor;
    box-shadow: 0 0 5px currentColor;
    animation: identity-scan 2.4s ease-in-out infinite;
}

/* Prioritized Findings */

.priority-row {
    animation: priority-highlight 2.1s ease-in-out infinite;
}

.priority-row-2 {
    animation-delay: 0.25s;
}

.priority-row-3 {
    animation-delay: 0.5s;
}

/* Remediation Workflow */

.workflow-line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: workflow-draw 2.2s ease-in-out infinite;
}

.workflow-start,
.workflow-end {
    transform-box: fill-box;
    transform-origin: center;
    animation: workflow-node 2.2s ease-in-out infinite;
}

.workflow-end {
    animation-delay: 0.8s;
}

.workflow-check {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: workflow-check 2.2s ease-in-out infinite;
}

/* Animations */

@keyframes value-radar {
    0% {
        opacity: 1;
        transform: scale(0.35);
    }

    80%,
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes identity-head {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes identity-body {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes identity-scan {
    0% {
        top: 8px;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        top: 38px;
        opacity: 0;
    }
}

@keyframes priority-highlight {
    0%,
    100% {
        opacity: 0.35;
        transform: translateX(0);
    }

    35%,
    55% {
        opacity: 1;
        transform: translateX(2px);
    }
}

@keyframes workflow-draw {
    0% {
        stroke-dashoffset: 1;
    }

    55%,
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes workflow-node {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes workflow-check {
    0%,
    45% {
        opacity: 0;
        stroke-dashoffset: 1;
    }

    70%,
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .integration-value-icon *,
    .integration-value-icon::before,
    .integration-value-icon::after {
        animation: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 60px;
}


/* I agree Checkbox*/

.agree-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.agree-checkbox input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 0;
    accent-color: #2f4fa0;
}

.form-success {
    padding: 24px;
    border: 1px solid #b7dfc6;
    border-radius: 14px;
    color: #166534;
    background: #f0fdf4;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* partern logo images */
.partner-logo {
    display: grid;
    width: 90px;
    height: 70px;
    flex: 0 0 90px;
    place-items: center;
    padding: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}

.partner-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}




/* =========================================================
   ASHVA MOBILE NAVIGATION
   Mobile-only rules. Desktop navigation above 1100px is unchanged.
========================================================= */
.mobile-menu-toggle,
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 1100px) {
    /* Keep the existing desktop header design untouched; only switch behavior here. */
    .site-header .nav-shell {
        position: relative;
    }

    /* Mobile header: Ashva symbol only. */
    .site-header .brand {
        min-width: 0;
        flex: 0 0 auto;
    }

    .site-header .brand-symbol,
    .site-header .brand img {
        width: 46px;
        height: 46px;
        object-fit: contain;
    }

    .site-header .brand-copy {
        display: none !important;
    }

    /* Keep the mobile header intentionally minimal. */
    .site-header .header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .site-header .header-actions .theme-toggle,
    .site-header .header-actions .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1202;
        display: inline-flex;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 12px;
        color: var(--brand);
        background: var(--surface);
        box-shadow: 0 3px 12px rgba(17, 24, 39, .05);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform .24s ease, opacity .18s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Override the project's existing mobile .desktop-nav {display:none}. */
    #main-navigation.main-nav {
        position: fixed;
        z-index: 1201;
        top: 0;
        right: 0;
        display: block;
        width: min(88vw, 390px);
        height: 100dvh;
        max-height: 100dvh;
        padding: 88px 24px 30px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        color: var(--text);
        background: var(--surface);
        box-shadow: -18px 0 48px rgba(17, 24, 39, .18);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
        -webkit-overflow-scrolling: touch;
    }

    #main-navigation.main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    #main-navigation.main-nav > .nav-item {
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    #main-navigation.main-nav .nav-item > .nav-item {
        display: block;
        width: 100%;
    }

    #main-navigation.main-nav .nav-link {
        display: flex;
        width: 100%;
        min-height: 56px;
        height: auto;
        align-items: center;
        justify-content: space-between;
        padding: 13px 2px;
        color: var(--text);
        font-size: 1rem;
        font-weight: 700;
        text-align: left;
        text-decoration: none;
    }

    #main-navigation.main-nav .nav-link:hover,
    #main-navigation.main-nav .nav-link:focus-visible {
        color: var(--brand);
    }

    /* Mega menus become accordions on mobile only. */
    #main-navigation.main-nav .mega {
        position: static;
        visibility: visible;
        display: none;
        width: 100%;
        padding: 0 0 18px;
        border: 0;
        border-radius: 0;
        opacity: 1;
        background: transparent;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open > .mega {
        display: block;
    }

    #main-navigation.main-nav .mega-grid,
    #main-navigation.main-nav .mega-grid.four {
        display: block;
    }

    #main-navigation.main-nav .mega-grid > div {
        margin: 0 0 18px;
    }

    #main-navigation.main-nav .mega-title {
        display: block;
        margin: 4px 0 6px;
        color: var(--brand);
        font-size: .7rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    #main-navigation.main-nav .mega a:not(.mega-feature) {
        display: flex;
        min-height: 44px;
        align-items: center;
        padding: 9px 4px;
        color: var(--muted);
        font-size: .88rem;
    }

    #main-navigation.main-nav .mega-feature {
        margin-top: 8px;
        padding: 16px;
        border-radius: 14px;
    }

    #main-navigation.main-nav .mega-feature .mega-art {
        display: none;
    }

    #main-navigation.main-nav .chev {
        flex: 0 0 auto;
        margin-right: 5px;
        transition: transform .2s ease;
    }

    #main-navigation.main-nav .mobile-submenu-open > .nav-link .chev {
        transform: rotate(225deg);
    }

    .mobile-nav-overlay {
        position: fixed;
        z-index: 1200;
        inset: 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(17, 24, 39, .48);
        transition: opacity .24s ease, visibility .24s ease;
    }

    .mobile-nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }
}

@media (max-width: 560px) {
    .site-header .nav-shell {
        min-height: 64px;
    }

    .site-header .brand-symbol,
    .site-header .brand img {
        width: 42px;
        height: 42px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    #main-navigation.main-nav {
        width: min(90vw, 360px);
        padding: 80px 20px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    #main-navigation.main-nav,
    .mobile-nav-overlay {
        transition: none !important;
    }
}

/* =========================================================
   MOBILE SUBMENU ACCORDION FIX
   Explicitly overrides desktop hover/focus mega-menu rules only
   inside the mobile breakpoint. Desktop navigation is unaffected.
========================================================= */
@media (max-width: 1100px) {
    #main-navigation.main-nav .has-mega-menu {
        display: block;
        width: 100%;
        align-items: initial;
    }

    #main-navigation.main-nav .has-mega-menu > .mobile-submenu-toggle {
        position: relative;
        display: flex;
        width: 100%;
        min-height: 56px;
        align-items: center;
        justify-content: space-between;
        padding: 13px 4px 13px 2px;
        border: 0;
        background: transparent;
        color: var(--text);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Use a clear + / − indicator on mobile. */
    #main-navigation.main-nav .has-mega-menu > .mobile-submenu-toggle .chev {
        display: none;
    }

    #main-navigation.main-nav .has-mega-menu > .mobile-submenu-toggle::after {
        display: inline-grid;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        place-items: center;
        margin-left: 12px;
        border-radius: 8px;
        color: var(--brand);
        background: color-mix(in srgb, var(--brand) 9%, transparent);
        content: "+";
        font-size: 22px;
        font-weight: 400;
        line-height: 1;
    }

    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open > .mobile-submenu-toggle::after {
        content: "−";
    }

    /* Critical: neutralize desktop :hover/:focus-within mega rules. */
    #main-navigation.main-nav .has-mega-menu > .mega,
    #main-navigation.main-nav .has-mega-menu:hover > .mega,
    #main-navigation.main-nav .has-mega-menu:focus-within > .mega {
        position: static !important;
        display: none !important;
        visibility: hidden !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 0 16px !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        opacity: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        transition: none !important;
        pointer-events: none;
    }

    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open > .mega,
    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open:hover > .mega,
    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open:focus-within > .mega {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto;
    }

    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open > .mega .mega-grid,
    #main-navigation.main-nav .has-mega-menu.mobile-submenu-open > .mega .mega-grid.four {
        display: block !important;
        width: 100%;
    }

    #main-navigation.main-nav .mega-grid > div {
        padding: 4px 0 8px;
    }

    #main-navigation.main-nav .mega-title {
        padding: 5px 4px 2px;
    }

    #main-navigation.main-nav .mega a:not(.mega-feature) {
        width: 100%;
        padding: 10px 8px;
        border-radius: 8px;
    }

    #main-navigation.main-nav .mega a:not(.mega-feature):active {
        background: color-mix(in srgb, var(--brand) 8%, transparent);
    }
}


/* =========================================================
   ASHVA MOBILE NAVIGATION V3
   Dedicated mobile drawer with real anchor links and native
   expandable <details> submenus. Desktop menu is not modified.
========================================================= */
.mobile-nav-drawer {
    display: none;
}

@media (max-width: 1100px) {
    .mobile-nav-drawer {
        position: fixed;
        z-index: 1201;
        top: 0;
        right: 0;
        display: block;
        width: min(90vw, 390px);
        height: 100dvh;
        padding: 84px 22px 30px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--surface, #fff);
        box-shadow: -18px 0 48px rgba(17, 24, 39, .18);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-drawer.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav-link,
    .mobile-nav-group > summary {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 13px 4px;
        border-bottom: 1px solid var(--border, #e5e7eb);
        color: var(--text, #111827);
        background: transparent;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.3;
        text-decoration: none;
        cursor: pointer;
        list-style: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-group > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus-visible,
    .mobile-nav-group > summary:hover,
    .mobile-nav-group > summary:focus-visible {
        color: var(--brand, #2f4fa0);
    }

    .mobile-nav-group > summary > span {
        width: 30px;
        height: 30px;
        display: inline-grid;
        flex: 0 0 30px;
        place-items: center;
        margin-left: 12px;
        border-radius: 8px;
        color: var(--brand, #2f4fa0);
        background: rgba(47, 79, 160, .08);
        font-size: 22px;
        font-weight: 400;
        line-height: 1;
        transition: transform .2s ease;
    }

    .mobile-nav-group[open] > summary > span {
        transform: rotate(45deg);
    }

    .mobile-submenu {
        padding: 8px 0 14px 12px;
        border-bottom: 1px solid var(--border, #e5e7eb);
    }

    .mobile-submenu-title {
        margin: 13px 0 4px;
        padding: 0 6px;
        color: var(--brand, #2f4fa0);
        font-size: .7rem;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .mobile-submenu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 9px 8px;
        border-radius: 8px;
        color: var(--muted, #4b5563);
        font-size: .9rem;
        font-weight: 600;
        line-height: 1.35;
        text-decoration: none;
    }

    .mobile-submenu a:hover,
    .mobile-submenu a:focus-visible,
    .mobile-submenu a:active {
        color: var(--brand, #2f4fa0);
        background: rgba(47, 79, 160, .07);
    }

    .mobile-nav-demo {
        width: 100%;
        min-height: 48px;
        margin-top: 22px;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .mobile-nav-drawer {
        width: min(92vw, 360px);
        padding: 78px 18px 24px;
    }
}

@media (min-width: 1101px) {
    .mobile-nav-drawer {
        display: none !important;
    }
}


/* =========================================================
   ASHVA MOBILE NAVIGATION V4 - explicit + accordion controls
   Desktop navigation remains unchanged.
========================================================= */
@media (max-width: 1100px) {
    .mobile-nav-group {
        width: 100%;
        border-bottom: 1px solid var(--border, #e5e7eb);
    }

    .mobile-submenu-toggle {
        width: 100%;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 4px;
        margin: 0;
        border: 0;
        background: transparent;
        color: var(--text, #111827);
        font: inherit;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-submenu-toggle:hover,
    .mobile-submenu-toggle:focus-visible {
        color: var(--brand, #2f4fa0);
    }

    .mobile-plus {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        display: inline-grid;
        place-items: center;
        border-radius: 8px;
        background: rgba(47, 79, 160, .08);
        color: var(--brand, #2f4fa0);
        font-size: 23px;
        font-weight: 500;
        line-height: 1;
        transition: transform .2s ease;
    }

    .mobile-nav-group.is-open > .mobile-submenu-toggle .mobile-plus {
        transform: rotate(45deg);
    }

    .mobile-submenu[hidden] {
        display: none !important;
    }

    .mobile-nav-group.is-open > .mobile-submenu {
        display: block;
    }

    .mobile-submenu {
        padding: 6px 0 16px 12px;
        border-bottom: 0;
    }

    .mobile-submenu a {
        position: relative;
        z-index: 1;
        pointer-events: auto;
        touch-action: manipulation;
    }
}
