:root {
    --cy-ink: #07111f;
    --cy-ink-soft: #10233b;
    --cy-primary: #006dff;
    --cy-primary-strong: #0052c7;
    --cy-cyan: #00c8ff;
    --cy-teal: #00b8a9;
    --cy-lime: #8ce36b;
    --cy-danger: #ff5c72;
    --cy-surface: #ffffff;
    --cy-surface-2: #f4f7fb;
    --cy-surface-3: #eaf0f7;
    --cy-text: #0d1b2a;
    --cy-muted: #607086;
    --cy-border: rgba(7, 17, 31, .10);
    --cy-shadow-sm: 0 8px 24px rgba(7, 17, 31, .08);
    --cy-shadow-md: 0 18px 55px rgba(7, 17, 31, .12);
    --cy-shadow-lg: 0 34px 90px rgba(7, 17, 31, .22);
    --cy-radius-sm: 16px;
    --cy-radius-md: 24px;
    --cy-radius-lg: 36px;
    --cy-radius-xl: 52px;
    --bs-body-font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bs-primary: var(--cy-primary);
    --bs-primary-rgb: 0, 109, 255;
    --bs-link-color-rgb: 0, 109, 255;
}

[data-bs-theme="dark"] {
    --cy-surface: #0c1726;
    --cy-surface-2: #101f31;
    --cy-surface-3: #17283b;
    --cy-text: #edf5ff;
    --cy-muted: #9fb0c6;
    --cy-border: rgba(255, 255, 255, .09);
    --cy-shadow-sm: 0 8px 24px rgba(0, 0, 0, .25);
    --cy-shadow-md: 0 18px 55px rgba(0, 0, 0, .30);
    --cy-shadow-lg: 0 34px 90px rgba(0, 0, 0, .42);
    --bs-body-bg: #081321;
    --bs-body-color: var(--cy-text);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cy-surface);
    color: var(--cy-text);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.material-symbols-rounded {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
    line-height: 1;
    vertical-align: middle;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: .75rem 1rem;
    border-radius: 12px;
    background: var(--cy-ink);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container-xxl {
    max-width: 1380px;
}

.section-space {
    padding: 7rem 0;
}

.section-space-sm {
    padding: 4.5rem 0;
}

.surface-muted {
    background: var(--cy-surface-2);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 3rem;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.page-hero h1,
.hero-copy h1 {
    letter-spacing: -.045em;
    line-height: 1.06;
    font-weight: 800;
}

.section-heading h2 {
    margin: .65rem 0 1rem;
    font-size: clamp(2rem, 4vw, 3.75rem);
}

.section-heading p {
    margin: 0;
    color: var(--cy-muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--cy-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 100px;
    background: currentColor;
}

.eyebrow-light {
    color: #9de8ff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 46px;
    border-radius: 16px;
    padding: .7rem 1.15rem;
    border-width: 1px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 56px;
    padding: .85rem 1.4rem;
    border-radius: 18px;
}

.btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--cy-primary), #189bff);
    box-shadow: 0 10px 28px rgba(0, 109, 255, .28);
}

.btn-primary:hover,
.btn-primary:focus {
    border-color: transparent;
    background: linear-gradient(135deg, var(--cy-primary-strong), var(--cy-primary));
    box-shadow: 0 14px 36px rgba(0, 109, 255, .36);
}

.btn-outline-primary {
    color: var(--cy-primary);
    border-color: rgba(0, 109, 255, .28);
    background: rgba(0, 109, 255, .04);
}

.btn-outline-primary:hover {
    border-color: var(--cy-primary);
    background: var(--cy-primary);
}

.top-strip {
    position: relative;
    z-index: 1040;
    padding: .52rem 0;
    background: var(--cy-ink);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 650;
}

.top-strip a,
.top-strip span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.top-strip a:hover {
    color: #fff;
}

.top-strip .material-symbols-rounded {
    color: var(--cy-cyan);
    font-size: 1rem;
}

.top-strip-status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.top-strip-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43e08e;
    box-shadow: 0 0 0 5px rgba(67, 224, 142, .14);
}

.site-header {
    z-index: 1030;
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--cy-surface) 90%, transparent);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--cy-border);
    box-shadow: var(--cy-shadow-sm);
}

.site-header .navbar {
    min-height: 82px;
    padding: .55rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    width: 210px;
    height: 58px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-nav .nav-link {
    position: relative;
    border-radius: 14px;
    color: var(--cy-muted);
    padding: .6rem .9rem !important;
    font-size: .93rem;
    font-weight: 750;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--cy-primary);
    transition: left .2s ease, right .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--cy-text);
    background: color-mix(in srgb, var(--cy-primary) 7%, transparent);
}

.navbar-nav .nav-link.active::after {
    left: 28%;
    right: 28%;
}

.btn-contact {
    min-height: 48px;
    border-radius: 16px;
}

.navbar-toggler,
.back-to-top {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--cy-border);
    border-radius: 15px;
    background: var(--cy-surface-2);
    color: var(--cy-text);
    box-shadow: none;
}

.navbar-toggler:hover {
    background: var(--cy-surface-3);
}

.lang-button {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: .75;
    transition: transform .2s ease, opacity .2s ease;
}

.lang-button:hover,
.lang-button.active {
    opacity: 1;
    transform: scale(1.08);
}

.header-language-selector {
    gap: .15rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 109, 255, .16);
}

.mobile-menu {
    --bs-offcanvas-width: min(420px, 92vw);
    border: 0;
    background: var(--cy-surface);
}

.mobile-logo {
    display: block;
    width: 180px;
}

.mobile-logo img {
    width: 100%;
}

@media (max-width: 991.98px) {
    .header-language-selector {
        gap: 0;
        margin-left: -.35rem;
    }

    .header-language-selector .lang-button {
        font-size: 1.1rem;
        padding: .15rem;
    }
}

.mobile-nav {
    display: grid;
    gap: .45rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1rem;
    border-radius: 16px;
    color: var(--cy-muted);
    font-weight: 750;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: color-mix(in srgb, var(--cy-primary) 9%, transparent);
    color: var(--cy-primary);
}

.mobile-contact-card {
    display: grid;
    gap: .5rem;
    padding: 1.25rem;
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-md);
    background: var(--cy-surface-2);
}

.mobile-contact-card strong {
    font-size: .92rem;
}

.hero {
    position: relative;
    min-height: min(840px, calc(100vh - 110px));
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 7rem;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 200, 255, .22), transparent 32%),
        radial-gradient(circle at 86% 72%, rgba(0, 109, 255, .26), transparent 30%),
        linear-gradient(135deg, #04101e 0%, #071a2d 58%, #0b2037 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .42;
    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: 58px 58px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -44% -10%;
    height: 62%;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 200, 255, .16), transparent 65%);
    filter: blur(20px);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: .45;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.hero-orb.one {
    top: 8%;
    right: 3%;
    background: radial-gradient(circle, rgba(0, 200, 255, .48), transparent 70%);
}

.hero-orb.two {
    left: 38%;
    bottom: -16%;
    background: radial-gradient(circle, rgba(96, 83, 255, .44), transparent 70%);
    animation-delay: -3s;
}

@keyframes orbFloat {
    to { transform: translate3d(24px, -24px, 0) scale(1.1); }
}

.hero-copy {
    max-width: 720px;
}

.hero-copy .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.4rem;
    padding: .55rem .8rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    font-size: .82rem;
    font-weight: 750;
}

.hero-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4de8a2;
    box-shadow: 0 0 0 6px rgba(77,232,162,.12);
}

.hero-copy h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero-copy h1 .gradient-text {
    background: linear-gradient(90deg, #fff 0%, #81e7ff 48%, #7ba8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 660px;
    margin-bottom: 2.1rem;
    color: rgba(255,255,255,.72);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.hero .btn-outline-light {
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.06);
}

.hero .btn-outline-light:hover {
    background: #fff;
    color: var(--cy-ink);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.3rem;
    color: rgba(255,255,255,.64);
    font-size: .82rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.hero-trust .material-symbols-rounded {
    color: #7ee5ff;
    font-size: 1.05rem;
}

.cyber-dashboard {
    position: relative;
    width: min(100%, 560px);
    margin-left: auto;
    perspective: 1200px;
}

.dashboard-shell {
    position: relative;
    overflow: hidden;
    padding: 1.1rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
    box-shadow: 0 40px 100px rgba(0,0,0,.38);
    backdrop-filter: blur(24px) saturate(130%);
    transform: rotateY(-5deg) rotateX(2deg);
}

.dashboard-shell::before {
    content: "";
    position: absolute;
    inset: -80% 42% 40% -25%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.18), transparent);
    transform: rotate(20deg);
    animation: dashboardShine 7s linear infinite;
}

@keyframes dashboardShine {
    0% { transform: translateX(-30%) rotate(20deg); }
    100% { transform: translateX(220%) rotate(20deg); }
}

.dashboard-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.dashboard-brand .mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.dashboard-brand .mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.dashboard-brand strong,
.dashboard-brand span {
    display: block;
}

.dashboard-brand strong {
    font-size: .95rem;
}

.dashboard-brand span {
    color: rgba(255,255,255,.58);
    font-size: .72rem;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(67,224,142,.13);
    color: #74f0ae;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.live-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseDot 1.8s ease infinite;
}

@keyframes pulseDot {
    50% { box-shadow: 0 0 0 6px rgba(116,240,174,0); }
    0%, 100% { box-shadow: 0 0 0 0 rgba(116,240,174,.22); }
}

.risk-card {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    background: rgba(2,13,25,.54);
}

.risk-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
}

.risk-score-wrap {
    display: flex;
    align-items: end;
    gap: .6rem;
    margin: 1rem 0 .6rem;
}

.risk-score {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.06em;
}

.risk-score-label {
    margin-bottom: .35rem;
    color: #52e6a0;
    font-size: .72rem;
    font-weight: 800;
}

.risk-bar {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
}

.risk-bar > span {
    display: block;
    width: 87%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #49e29a, #6ce8ef);
    animation: barGrow 1.6s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes barGrow {
    from { width: 0; }
}

.dashboard-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-top: .8rem;
}

.metric-card {
    min-height: 128px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
}

.metric-card .metric-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: .9rem;
    border-radius: 12px;
    background: rgba(0,200,255,.12);
    color: #75e5ff;
}

.metric-card strong,
.metric-card span {
    display: block;
}

.metric-card strong {
    font-size: 1.2rem;
}

.metric-card span {
    color: rgba(255,255,255,.56);
    font-size: .72rem;
}

.floating-alert {
    position: absolute;
    right: -28px;
    bottom: 14%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .8rem;
    width: 230px;
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(5,18,33,.88);
    color: #fff;
    box-shadow: 0 22px 54px rgba(0,0,0,.35);
    backdrop-filter: blur(14px);
    animation: alertFloat 5s ease-in-out infinite;
}

.floating-alert .alert-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(255,92,114,.15);
    color: #ff8295;
}

.floating-alert strong,
.floating-alert span {
    display: block;
}

.floating-alert strong {
    font-size: .78rem;
}

.floating-alert span {
    color: rgba(255,255,255,.56);
    font-size: .66rem;
}

@keyframes alertFloat {
    50% { transform: translateY(-10px); }
}

.hero-bottom-wave {
    position: absolute;
    inset: auto 0 -1px;
    height: 90px;
    background: var(--cy-surface);
    clip-path: polygon(0 76%, 16% 62%, 34% 79%, 53% 56%, 70% 73%, 87% 50%, 100% 67%, 100% 100%, 0 100%);
}

.quick-facts {
    position: relative;
    z-index: 2;
    margin-top: -3.2rem;
}

.quick-facts-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    background: var(--cy-surface);
    box-shadow: var(--cy-shadow-md);
}

.quick-fact {
    position: relative;
    padding: 1.7rem 1.5rem;
}

.quick-fact:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 52%;
    background: var(--cy-border);
}

.quick-fact .material-symbols-rounded {
    color: var(--cy-primary);
    font-size: 1.55rem;
}

.quick-fact strong,
.quick-fact span {
    display: block;
}

.quick-fact strong {
    margin-top: .65rem;
    font-size: 1.02rem;
}

.quick-fact span {
    color: var(--cy-muted);
    font-size: .82rem;
}

.feature-card,
.service-card,
.benefit-card,
.blog-card,
.team-card,
.info-card,
.value-card,
.contact-card,
.process-step,
.article-sidebar-card,
.form-card,
.privacy-card {
    border: 1px solid var(--cy-border);
    background: var(--cy-surface);
    box-shadow: var(--cy-shadow-sm);
}

.feature-card {
    height: 100%;
    padding: 2rem;
    border-radius: var(--cy-radius-md);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0,109,255,.24);
    box-shadow: var(--cy-shadow-md);
}

.icon-surface {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,109,255,.12), rgba(0,200,255,.12));
    color: var(--cy-primary);
}

.icon-surface .material-symbols-rounded {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin: 1.25rem 0 .7rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.feature-card p {
    margin: 0;
    color: var(--cy-muted);
    font-size: .94rem;
}

.split-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--cy-radius-xl);
    background:
        radial-gradient(circle at 25% 25%, rgba(0,200,255,.18), transparent 28%),
        linear-gradient(145deg, #061423, #0b2b45);
    box-shadow: var(--cy-shadow-lg);
}

.split-visual::before {
    content: "";
    position: absolute;
    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: 44px 44px;
}

.network-core {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
}

.network-core::before,
.network-core::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(105,226,255,.30);
    border-radius: 50%;
    animation: networkPulse 3.3s ease-out infinite;
}

.network-core::after {
    animation-delay: 1.1s;
}

@keyframes networkPulse {
    0% { transform: scale(.52); opacity: .9; }
    100% { transform: scale(2.1); opacity: 0; }
}

.network-shield {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 145px;
    height: 145px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 42px;
    background: rgba(255,255,255,.09);
    box-shadow: 0 20px 55px rgba(0,0,0,.30);
    backdrop-filter: blur(12px);
}

.network-shield img {
    width: 95px;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.network-node {
    position: absolute;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    background: rgba(255,255,255,.08);
    color: #79e5ff;
    backdrop-filter: blur(10px);
}

.network-node.one { top: 14%; left: 18%; }
.network-node.two { top: 18%; right: 14%; }
.network-node.three { bottom: 18%; left: 12%; }
.network-node.four { right: 18%; bottom: 13%; }

.network-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240px;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(0,200,255,.55), transparent);
}

.network-line.one { transform: rotate(-145deg); }
.network-line.two { transform: rotate(-35deg); }
.network-line.three { transform: rotate(145deg); }
.network-line.four { transform: rotate(35deg); }

.split-copy {
    padding-left: clamp(0rem, 4vw, 3rem);
}

.split-copy h2 {
    margin: .7rem 0 1.2rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.split-copy > p {
    color: var(--cy-muted);
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    gap: .9rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.check-list .material-symbols-rounded {
    margin-top: .18rem;
    color: var(--cy-teal);
}

.service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 1.8rem;
    border-radius: var(--cy-radius-md);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,255,.13), transparent 70%);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,109,255,.24);
    box-shadow: var(--cy-shadow-md);
}

.service-card .service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 19px;
    background: var(--cy-surface-2);
    color: var(--cy-primary);
}

.service-card h3 {
    margin: 1.2rem 0 .65rem;
    font-size: 1.18rem;
    font-weight: 800;
}

.service-card p {
    margin: 0 0 1rem;
    color: var(--cy-muted);
    font-size: .92rem;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--cy-primary);
    font-size: .82rem;
    font-weight: 800;
}

.service-card .service-link .material-symbols-rounded {
    font-size: 1.05rem;
    transition: transform .2s ease;
}

.service-card:hover .service-link .material-symbols-rounded {
    transform: translateX(4px);
}

.security-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--cy-radius-xl);
    padding: clamp(2rem, 5vw, 4.6rem);
    background:
        radial-gradient(circle at 90% 15%, rgba(0,200,255,.20), transparent 28%),
        linear-gradient(130deg, #061221, #0b2842);
    color: #fff;
    box-shadow: var(--cy-shadow-lg);
}

.security-banner::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -72%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02);
}

.security-banner .content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.security-banner h2 {
    margin: .7rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.security-banner p {
    max-width: 760px;
    color: rgba(255,255,255,.68);
    font-size: 1.05rem;
}

.benefit-card {
    height: 100%;
    padding: 1.7rem;
    border-radius: var(--cy-radius-md);
}

.benefit-card .material-symbols-rounded {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(0,109,255,.09);
    color: var(--cy-primary);
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
}

.benefit-card p {
    margin: 0;
    color: var(--cy-muted);
    font-size: .88rem;
}

.blog-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--cy-radius-md);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--cy-shadow-md);
}

.blog-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 25% 25%, rgba(0,200,255,.26), transparent 26%),
        linear-gradient(145deg, #071525, #103451);
}

.blog-card-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

.blog-card-visual .material-symbols-rounded {
    position: relative;
    z-index: 1;
    font-size: 4.2rem;
    color: #8beaff;
    filter: drop-shadow(0 12px 24px rgba(0,200,255,.25));
}

.blog-card-visual .blog-index {
    position: absolute;
    right: 1rem;
    bottom: .5rem;
    color: rgba(255,255,255,.12);
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -.08em;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .55rem;
    color: var(--cy-muted);
    font-size: .74rem;
    font-weight: 700;
}

.blog-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cy-border);
}

.blog-card h3 {
    margin: .8rem 0 .7rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
}

.blog-card h3 a:hover {
    color: var(--cy-primary);
}

.blog-card p {
    margin: 0;
    color: var(--cy-muted);
    font-size: .9rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1rem;
}

.blog-tags span,
.tag-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: var(--cy-surface-2);
    color: var(--cy-muted);
    font-size: .68rem;
    font-weight: 750;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 5.5rem;
    background:
        radial-gradient(circle at 85% 16%, rgba(0,200,255,.20), transparent 28%),
        linear-gradient(135deg, #051321, #0b2a45);
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    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: 50px 50px;
}

.page-hero .container-xxl {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 900px;
    margin: .8rem 0 1.2rem;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.page-hero .breadcrumb {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.30);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,.88);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

.services-toolbar,
.blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.filter-chip {
    min-height: 40px;
    padding: .55rem .85rem;
    border: 1px solid var(--cy-border);
    border-radius: 999px;
    background: var(--cy-surface);
    color: var(--cy-muted);
    font-size: .78rem;
    font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: var(--cy-primary);
    background: var(--cy-primary);
    color: #fff;
}

.service-detail-card {
    scroll-margin-top: 120px;
}

.service-detail-card .service-card {
    padding: 2.1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    background: var(--cy-surface-2);
    color: var(--cy-muted);
    font-size: .72rem;
    font-weight: 700;
}

.service-features .material-symbols-rounded {
    color: var(--cy-teal);
    font-size: .95rem;
}

.process-step {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: var(--cy-radius-md);
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--cy-ink);
    color: #fff;
    font-weight: 800;
}

[data-bs-theme="dark"] .process-step .step-number {
    background: #fff;
    color: var(--cy-ink);
}

.process-step h3 {
    margin: 1.2rem 0 .65rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.process-step p {
    margin: 0;
    color: var(--cy-muted);
    font-size: .9rem;
}

.about-story {
    font-size: 1.08rem;
    color: var(--cy-muted);
}

.about-story strong {
    color: var(--cy-text);
}

.value-card {
    height: 100%;
    padding: 2rem;
    border-radius: var(--cy-radius-md);
}

.value-card .material-symbols-rounded {
    color: var(--cy-primary);
    font-size: 2rem;
}

.value-card h3 {
    margin: 1rem 0 .7rem;
    font-weight: 800;
}

.value-card p {
    margin: 0;
    color: var(--cy-muted);
}

.mission-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: var(--cy-radius-lg);
    background: linear-gradient(145deg, #071525, #113958);
    color: #fff;
    box-shadow: var(--cy-shadow-lg);
}

.mission-card.alt {
    background: linear-gradient(145deg, #0a2440, #005f75);
}

.mission-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,255,.22), transparent 70%);
}

.mission-card .material-symbols-rounded {
    position: relative;
    font-size: 2.4rem;
    color: #87eaff;
}

.mission-card h2 {
    position: relative;
    margin: 1.2rem 0 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.mission-card p {
    position: relative;
    margin: 0;
    color: rgba(255,255,255,.70);
}

.team-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--cy-radius-lg);
}

.team-card-top {
    position: relative;
    min-height: 220px;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    background:
        radial-gradient(circle at 75% 20%, rgba(0,200,255,.28), transparent 25%),
        linear-gradient(145deg, #071525, #123b5a);
    color: #fff;
}

.team-avatar {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    box-shadow: 0 18px 44px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
    font-size: 2rem;
    font-weight: 800;
}

.team-card-body {
    padding: 2rem;
}

.team-card h2 {
    margin: 0 0 .3rem;
    font-size: 1.7rem;
    font-weight: 800;
}

.team-role {
    color: var(--cy-primary);
    font-size: .85rem;
    font-weight: 800;
}

.team-card p {
    margin: 1rem 0 1.2rem;
    color: var(--cy-muted);
}

.team-details {
    display: grid;
    gap: .6rem;
}

.team-details a,
.team-details span {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--cy-muted);
    font-size: .85rem;
}

.team-details a:hover {
    color: var(--cy-primary);
}

.team-details .material-symbols-rounded {
    color: var(--cy-primary);
    font-size: 1.05rem;
}

.search-field {
    position: relative;
    width: min(100%, 390px);
}

.search-field .material-symbols-rounded {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--cy-muted);
}

.search-field input {
    width: 100%;
    min-height: 50px;
    padding: .75rem 1rem .75rem 3rem;
    border: 1px solid var(--cy-border);
    border-radius: 17px;
    background: var(--cy-surface);
    color: var(--cy-text);
    outline: none;
    box-shadow: var(--cy-shadow-sm);
}

.search-field input:focus {
    border-color: var(--cy-primary);
    box-shadow: 0 0 0 .25rem rgba(0,109,255,.12);
}

.blog-empty {
    display: none;
    padding: 3rem;
    border: 1px dashed var(--cy-border);
    border-radius: var(--cy-radius-md);
    text-align: center;
    color: var(--cy-muted);
}

.article-hero {
    padding-bottom: 7rem;
}

.article-hero h1 {
    max-width: 1100px;
    font-size: clamp(2.5rem, 5.5vw, 5.2rem);
}

.article-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,.66);
    font-size: .84rem;
}

.article-meta-line span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.article-layout {
    position: relative;
    margin-top: -3rem;
}

.article-card {
    padding: clamp(1.6rem, 4vw, 4.2rem);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    background: var(--cy-surface);
    box-shadow: var(--cy-shadow-md);
}

.article-content {
    color: var(--cy-muted);
    font-size: 1.02rem;
}

.article-content .lead {
    margin-bottom: 2rem;
    color: var(--cy-text);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    font-weight: 600;
}

.article-content h2 {
    margin: 2.8rem 0 1rem;
    color: var(--cy-text);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.025em;
}

.article-content p {
    margin-bottom: 1.15rem;
}

.article-list,
.article-numbered {
    display: grid;
    gap: .85rem;
    padding-left: 1.25rem;
}

.article-list li::marker,
.article-numbered li::marker {
    color: var(--cy-primary);
    font-weight: 800;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.article-point {
    padding: 1.25rem;
    border: 1px solid var(--cy-border);
    border-radius: 18px;
    background: var(--cy-surface-2);
}

.article-point strong,
.article-point span {
    display: block;
}

.article-point strong {
    margin-bottom: .4rem;
    color: var(--cy-text);
}

.article-point span {
    font-size: .9rem;
}

.article-callout {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.35rem;
    border: 1px solid rgba(0,109,255,.18);
    border-radius: 20px;
    background: rgba(0,109,255,.07);
}

.article-callout .material-symbols-rounded {
    color: var(--cy-primary);
    font-size: 1.8rem;
}

.article-callout strong {
    color: var(--cy-text);
}

.article-callout p {
    margin: .25rem 0 0;
}

.article-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 1rem;
}

.article-sidebar-card {
    padding: 1.4rem;
    border-radius: 22px;
}

.article-sidebar-card h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
}

.share-buttons button,
.share-buttons a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 1px solid var(--cy-border);
    border-radius: 14px;
    background: var(--cy-surface-2);
    color: var(--cy-muted);
}

.share-buttons button:hover,
.share-buttons a:hover {
    color: var(--cy-primary);
    border-color: rgba(0,109,255,.25);
}

.related-link {
    display: grid;
    gap: .2rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--cy-border);
}

.related-link:last-child {
    border-bottom: 0;
}

.related-link strong {
    font-size: .84rem;
    line-height: 1.35;
}

.related-link span {
    color: var(--cy-muted);
    font-size: .7rem;
}

.contact-layout {
    position: relative;
    margin-top: -3rem;
}

.form-card,
.contact-card {
    border-radius: var(--cy-radius-lg);
    box-shadow: var(--cy-shadow-md);
}

.form-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.form-card h2,
.contact-card h2 {
    margin: 0 0 .7rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
}

.form-card > p,
.contact-card > p {
    color: var(--cy-muted);
}

.form-label {
    margin-bottom: .45rem;
    color: var(--cy-text);
    font-size: .82rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 54px;
    border: 1px solid var(--cy-border);
    border-radius: 16px;
    background: var(--cy-surface-2);
    color: var(--cy-text);
    padding: .8rem .95rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cy-primary);
    background: var(--cy-surface);
    color: var(--cy-text);
    box-shadow: 0 0 0 .25rem rgba(0,109,255,.11);
}

.form-control::placeholder {
    color: color-mix(in srgb, var(--cy-muted) 75%, transparent);
}

.form-check-input:checked {
    background-color: var(--cy-primary);
    border-color: var(--cy-primary);
}

.form-hint {
    color: var(--cy-muted);
    font-size: .74rem;
}

.contact-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: clamp(1.5rem, 4vw, 3rem);
    background:
        radial-gradient(circle at 85% 12%, rgba(0,200,255,.20), transparent 27%),
        linear-gradient(145deg, #071525, #123b5a);
    color: #fff;
}

.contact-card > p {
    color: rgba(255,255,255,.64);
}

.contact-methods {
    display: grid;
    gap: .8rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}

.contact-method .material-symbols-rounded {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0,200,255,.12);
    color: #82e8ff;
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method strong {
    font-size: .82rem;
}

.contact-method span {
    color: rgba(255,255,255,.60);
    font-size: .76rem;
}

.contact-map {
    display: grid;
    place-items: center;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--cy-radius-lg);
    background:
        radial-gradient(circle at 50% 50%, rgba(0,200,255,.20), transparent 18%),
        linear-gradient(rgba(7,17,31,.15), rgba(7,17,31,.15)),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.05) 40px),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.05) 40px),
        #0c2b46;
    color: #fff;
    box-shadow: var(--cy-shadow-md);
}

.map-pin {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border-radius: 36px 36px 36px 8px;
    background: linear-gradient(135deg, var(--cy-primary), var(--cy-cyan));
    transform: rotate(-45deg);
    box-shadow: 0 22px 52px rgba(0,109,255,.38);
}

.map-pin .material-symbols-rounded {
    transform: rotate(45deg);
    font-size: 3.2rem;
}

.alert {
    border: 0;
    border-radius: 18px;
}

.privacy-card {
    width: 100%;
    max-width: 960px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--cy-radius-lg);
}

.privacy-card h2 {
    margin-top: 2rem;
    font-weight: 800;
}

.privacy-card h2:first-child {
    margin-top: 0;
}

.privacy-card p,
.privacy-card li {
    color: var(--cy-muted);
}

.footer-cta {
    position: relative;
    z-index: 2;
    margin-bottom: -4.5rem;
}

.footer-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--cy-radius-xl);
    background:
        radial-gradient(circle at 88% 18%, rgba(0,200,255,.28), transparent 24%),
        linear-gradient(135deg, #0056ce, #003984 72%, #072a52);
    color: #fff;
    box-shadow: 0 32px 80px rgba(0,69,159,.28);
}

.footer-cta-panel h2 {
    max-width: 780px;
    margin: .7rem 0 .8rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.footer-cta-panel p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.72);
}

.footer-cta-panel .btn {
    white-space: nowrap;
}

.site-footer {
    padding-top: 7.5rem;
    background: #040d17;
    color: rgba(255,255,255,.68);
}

.footer-brand {
    display: block;
    width: 210px;
    padding: .65rem 1rem;
    border-radius: 18px;
    background: #fff;
}

.footer-brand img {
    display: block;
    width: 100%;
}

.footer-intro {
    max-width: 360px;
    margin: 1.2rem 0;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.75);
    font-size: .75rem;
    font-weight: 700;
}

.site-footer h3 {
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: .65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,.58);
    font-size: .85rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
}

.footer-contact .material-symbols-rounded {
    margin-top: .2rem;
    color: #74ddf8;
    font-size: 1.05rem;
}

.footer-bottom {
    min-height: 78px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.42);
    font-size: .76rem;
}

.footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1020;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #20c972;
    color: #fff;
    box-shadow: 0 16px 36px rgba(32,201,114,.32);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 44px rgba(32,201,114,.40);
    color: #fff;
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 92px;
    z-index: 1015;
    width: 46px;
    height: 46px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1199.98px) {
    .hero {
        min-height: auto;
    }

    .dashboard-shell {
        transform: none;
    }

    .floating-alert {
        right: 0;
    }

    .footer-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 5.5rem 0;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .navbar-brand {
        width: 172px;
        height: 48px;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .cyber-dashboard {
        margin: 4rem auto 0;
    }

    .quick-facts-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-fact:nth-child(2)::after {
        display: none;
    }

    .quick-fact:nth-child(-n+2) {
        border-bottom: 1px solid var(--cy-border);
    }

    .split-copy {
        padding: 2rem 0 0;
    }

    .article-sidebar {
        position: static;
        margin-top: 1.5rem;
    }

    .footer-cta {
        margin-bottom: -3.5rem;
    }

    .site-footer {
        padding-top: 6.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4.5rem 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4.1rem);
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: .8rem 1rem;
    }

    .dashboard-shell {
        padding: .75rem;
        border-radius: 24px;
    }

    .floating-alert {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: .8rem;
    }

    .quick-facts {
        margin-top: -2rem;
    }

    .quick-facts-panel {
        border-radius: 24px;
    }

    .quick-fact {
        padding: 1.25rem;
    }

    .split-visual {
        min-height: 420px;
        border-radius: 32px;
    }

    .security-banner,
    .page-hero,
    .footer-cta-panel {
        border-radius: 30px;
    }

    .page-hero {
        padding: 4.5rem 0 4rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-card,
    .form-card,
    .contact-card,
    .privacy-card {
        border-radius: 26px;
    }

    .footer-cta {
        margin-bottom: -2.5rem;
    }

    .site-footer {
        padding-top: 5.5rem;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .back-to-top {
        right: 20px;
        bottom: 82px;
    }
}

@media (max-width: 575.98px) {
    .quick-facts-panel {
        grid-template-columns: 1fr;
    }

    .quick-fact {
        border-bottom: 1px solid var(--cy-border);
    }

    .quick-fact:last-child {
        border-bottom: 0;
    }

    .quick-fact::after {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .network-node {
        width: 46px;
        height: 46px;
    }

    .filter-chips {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .35rem;
    }

    .filter-chip {
        flex: 0 0 auto;
    }
}

[data-bs-theme="dark"] .navbar-brand img,
[data-bs-theme="dark"] .mobile-logo img {
    filter: invert(1) brightness(1.15);
}

.material-icons-fallback .material-symbols-rounded {
    position: relative;
    display: inline-grid;
    place-items: center;
    min-width: 1em;
    min-height: 1em;
    overflow: hidden;
    font-size: 0 !important;
}

.material-icons-fallback .material-symbols-rounded::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 3px;
    transform: rotate(45deg);
}
