:root {
    --cyberex-bg: #040a13;
    --cyberex-bg-deep: #091321;
    --cyberex-bg-surface: #0d1a2b;
    --cyberex-bg-panel: rgba(14, 28, 46, 0.84);
    --cyberex-bg-panel-strong: rgba(8, 18, 31, 0.9);
    --cyberex-bg-panel-soft: rgba(8, 18, 31, 0.78);
    --cyberex-line: rgba(91, 157, 255, 0.16);
    --cyberex-line-strong: rgba(112, 197, 255, 0.28);
    --cyberex-text: #eef4fb;
    --cyberex-text-soft: #b4c8dd;
    --cyberex-text-muted: #82abd0;
    --cyberex-accent: #4ca7ff;
    --cyberex-accent-bright: #8ceaff;
    --cyberex-accent-deep: #1552a0;
    --cyberex-accent-glow: rgba(76, 167, 255, 0.22);
    --cyberex-accent-glow-strong: rgba(76, 167, 255, 0.38);
    --cyberex-shadow: rgba(0, 0, 0, 0.3);
}

body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    background:
        radial-gradient(circle at 18% -4%, rgba(76, 167, 255, 0.16), transparent 22%),
        radial-gradient(circle at 82% 14%, rgba(140, 234, 255, 0.14), transparent 20%),
        radial-gradient(circle at 52% 120%, rgba(21, 82, 160, 0.14), transparent 32%),
        linear-gradient(180deg, var(--cyberex-bg) 0%, var(--cyberex-bg-deep) 100%);
    color: var(--cyberex-text);
}

.cyberex-shell {
    width: min(1820px, calc(100% - clamp(2rem, 4vw, 4.5rem)));
    max-width: none;
    margin: 0 auto;
    padding: 4rem 0;
}

a {
    color: inherit;
}

.cyberex-site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background:
        linear-gradient(90deg, rgba(4, 10, 18, 0.98), rgba(10, 22, 38, 0.97) 48%, rgba(4, 10, 18, 0.98));
    border-bottom: 1px solid var(--cyberex-line);
    box-shadow:
        0 14px 48px rgba(0, 0, 0, 0.24),
        inset 0 -1px 0 rgba(140, 234, 255, 0.05);
}

.cyberex-shell--header,
.cyberex-shell--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.cyberex-brand {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.cyberex-brand__mark {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0.6rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(76, 167, 255, 0.3), transparent 42%),
        linear-gradient(180deg, rgba(15, 31, 52, 0.98), rgba(6, 14, 25, 0.96));
    border: 1px solid var(--cyberex-line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 48px var(--cyberex-shadow),
        0 0 0 1px rgba(76, 167, 255, 0.08);
}

.cyberex-brand__mark a {
    display: block;
    line-height: 0;
}

.cyberex-brand__mark img {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    filter: saturate(1.02) contrast(1.03);
}

.cyberex-brand__text a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cyberex-brand__text p {
    margin: 0.2rem 0 0;
    color: var(--cyberex-text-muted);
    font-size: 0.9rem;
}

.cyberex-nav-toggle {
    display: none;
    border: 1px solid var(--cyberex-line-strong);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cyberex-text);
    border-radius: 999px;
    padding: 0.8rem 1rem;
}

.cyberex-menu,
.cyberex-menu ul,
.cyberex-primary-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cyberex-menu > .menu-item {
    position: relative;
}

.cyberex-menu__item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cyberex-menu a,
.cyberex-primary-nav .menu a {
    text-decoration: none;
    color: #d5e1ef;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.cyberex-menu a:hover,
.cyberex-menu .current-menu-item > a,
.cyberex-primary-nav .menu a:hover,
.cyberex-primary-nav .menu .current-menu-item > a {
    background: var(--cyberex-accent-glow);
    color: #f8fbff;
    box-shadow: inset 0 0 0 1px rgba(127, 216, 255, 0.12);
}

.cyberex-submenu-toggle {
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: #9fc0dc;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cyberex-submenu-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
}

.menu-item-has-children:hover > .cyberex-menu__item .cyberex-submenu-toggle,
.menu-item-has-children:focus-within > .cyberex-menu__item .cyberex-submenu-toggle,
.menu-item-has-children.is-open > .cyberex-menu__item .cyberex-submenu-toggle {
    background: var(--cyberex-accent-glow);
    color: #f8fbff;
}

.menu-item-has-children.is-open > .cyberex-menu__item .cyberex-submenu-toggle::before {
    transform: translate(-50%, -35%) rotate(225deg);
}

.cyberex-menu .sub-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    min-width: 15rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem;
    border-radius: 22px;
    border: 1px solid var(--cyberex-line-strong);
    background:
        linear-gradient(180deg, rgba(12, 23, 38, 0.98), rgba(7, 14, 24, 0.97));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
    z-index: 20;
}

.cyberex-menu .sub-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cyberex-page {
    min-height: 60vh;
}

.cyberex-pattern-grid {
    position: relative;
    isolation: isolate;
}

.cyberex-pattern-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(rgba(140, 234, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 167, 255, 0.038) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 72%);
    pointer-events: none;
    z-index: -2;
}

.cyberex-pattern-grid::after {
    content: "";
    position: absolute;
    inset: auto -6% -28% auto;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(76, 167, 255, 0.12), transparent 72%);
    pointer-events: none;
    z-index: -1;
}

.cyberex-neon-frame {
    border-color: rgba(140, 234, 255, 0.18) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 60px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(76, 167, 255, 0.09),
        0 0 46px rgba(76, 167, 255, 0.12) !important;
}

.cyberex-panel-accent {
    position: relative;
    overflow: hidden;
}

.cyberex-panel-accent::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background:
        linear-gradient(90deg, rgba(140, 234, 255, 0.88), rgba(76, 167, 255, 0.7) 42%, rgba(76, 167, 255, 0.04) 85%);
    box-shadow: 0 0 28px rgba(140, 234, 255, 0.28);
    pointer-events: none;
}

.cyberex-panel-accent > * {
    position: relative;
    z-index: 1;
}

footer#colophon .elementor-element-99903c1 .elementor-widget-container p:last-child {
    display: none;
}

footer#colophon {
    border-top: 1px solid var(--cyberex-line);
    background: linear-gradient(180deg, rgba(8, 15, 25, 0.9), rgba(6, 12, 20, 0.95));
}

footer#colophon .footer-width-fixer {
    width: min(1820px, calc(100% - clamp(2rem, 4vw, 4.5rem)));
    max-width: none;
    margin: 0 auto;
}

footer#colophon .footer-width-fixer > .elementor {
    padding: 1.4rem 0;
}

footer#colophon .elementor-widget-container p,
footer#colophon .elementor-widget-container a {
    color: #c4d3e3;
}

.cyberex-page article {
    background: linear-gradient(180deg, rgba(12, 22, 35, 0.88), rgba(6, 12, 22, 0.97));
    border: 1px solid var(--cyberex-line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cyberex-page h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.cyberex-custom-page {
    display: grid;
    gap: 2rem;
}

.cyberex-page-hero {
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid var(--cyberex-line);
    background:
        radial-gradient(circle at 86% 18%, rgba(140, 234, 255, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(11, 22, 36, 0.97), rgba(6, 12, 22, 0.98));
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cyberex-page-hero__lede {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--cyberex-text-soft);
    line-height: 1.75;
}

.cyberex-page-hero--network {
    overflow: hidden;
}

.cyberex-page-hero--security {
    overflow: hidden;
}

.cyberex-page-hero--web-design {
    overflow: hidden;
}

.cyberex-page-hero--user-awareness {
    overflow: hidden;
}

.cyberex-page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.cyberex-page-hero__copy {
    min-width: 0;
}

.cyberex-network-hero {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(140px, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 190px;
    padding: 1.5rem 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(76, 167, 255, 0.12), transparent 44%),
        linear-gradient(180deg, rgba(10, 22, 37, 0.72), rgba(6, 12, 22, 0.38));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 40px rgba(76, 167, 255, 0.08);
}

.cyberex-network-hero::before {
    content: "";
    position: absolute;
    inset: 16% 10%;
    border-radius: 999px;
    border: 1px solid rgba(140, 234, 255, 0.08);
    pointer-events: none;
}

.cyberex-network-hero__device {
    position: relative;
    width: 5.5rem;
    height: 4.6rem;
    border-radius: 20px;
    border: 1px solid rgba(140, 234, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(21, 48, 80, 0.98), rgba(8, 18, 31, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(76, 167, 255, 0.18),
        0 14px 28px rgba(0, 0, 0, 0.24);
}

.cyberex-network-hero__device::before,
.cyberex-network-hero__device::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    height: 2px;
    border-radius: 999px;
    background: rgba(140, 234, 255, 0.2);
}

.cyberex-network-hero__device::before {
    top: 36%;
}

.cyberex-network-hero__device::after {
    top: 52%;
}

.cyberex-network-hero__device-light {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--cyberex-accent-bright);
    box-shadow: 0 0 14px rgba(140, 234, 255, 0.58);
}

.cyberex-network-hero__device-slot {
    position: absolute;
    bottom: 15px;
    left: 18%;
    right: 18%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(140, 234, 255, 0.26), rgba(76, 167, 255, 0.12));
}

.cyberex-network-hero__link {
    position: relative;
    height: 4.5rem;
}

.cyberex-network-hero__beam {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(140, 234, 255, 0.14), rgba(140, 234, 255, 0.72), rgba(140, 234, 255, 0.14));
    box-shadow:
        0 0 18px rgba(76, 167, 255, 0.22),
        0 0 38px rgba(76, 167, 255, 0.12);
}

.cyberex-network-hero__beam::before,
.cyberex-network-hero__beam::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--cyberex-accent-bright);
    box-shadow: 0 0 16px rgba(140, 234, 255, 0.44);
    transform: translateY(-50%);
}

.cyberex-network-hero__beam::before {
    left: 0;
}

.cyberex-network-hero__beam::after {
    right: 0;
}

.cyberex-network-hero__packet {
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(244, 252, 255, 0.98), rgba(140, 234, 255, 0.9) 56%, rgba(76, 167, 255, 0.5));
    box-shadow:
        0 0 16px rgba(140, 234, 255, 0.68),
        0 0 28px rgba(76, 167, 255, 0.36);
}

.cyberex-network-hero__packet--forward {
    animation: cyberex-network-packet-forward 2.8s ease-in-out infinite;
}

.cyberex-network-hero__packet--reverse {
    animation: cyberex-network-packet-reverse 2.8s ease-in-out 1.4s infinite;
}

.cyberex-security-hero {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) auto;
    align-items: center;
    gap: 1.1rem;
    min-height: 190px;
    padding: 1.5rem 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(76, 167, 255, 0.12), transparent 44%),
        linear-gradient(180deg, rgba(10, 22, 37, 0.72), rgba(6, 12, 22, 0.38));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 40px rgba(76, 167, 255, 0.08);
}

.cyberex-security-hero::before {
    content: "";
    position: absolute;
    inset: 14% 6%;
    border-radius: 999px;
    border: 1px solid rgba(140, 234, 255, 0.08);
    pointer-events: none;
}

.cyberex-security-hero__earth,
.cyberex-security-hero__laptop {
    position: relative;
    flex: 0 0 auto;
}

.cyberex-security-hero__earth {
    width: 7rem;
    height: 7rem;
}

.cyberex-security-hero__earth-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(140, 234, 255, 0.12);
    filter: blur(10px);
}

.cyberex-security-hero__earth-globe {
    position: absolute;
    inset: 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(118, 203, 255, 0.96), rgba(58, 144, 232, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 24px rgba(76, 167, 255, 0.2);
}

.cyberex-security-hero__earth-grid {
    position: absolute;
    opacity: 0.18;
    background: rgba(240, 251, 255, 0.92);
}

.cyberex-security-hero__earth-grid--horizontal {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    transform: translateY(-50%);
}

.cyberex-security-hero__earth-grid--vertical {
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.cyberex-security-hero__earth-grid--orbit {
    top: 10%;
    bottom: 10%;
    left: 25%;
    right: 25%;
    border-radius: 999px;
    border: 2px solid rgba(240, 251, 255, 0.76);
    background: transparent;
}

.cyberex-security-hero__earth-continent {
    position: absolute;
    background: #8ff0cf;
    opacity: 0.95;
}

.cyberex-security-hero__earth-continent--primary {
    top: 24%;
    left: 30%;
    width: 40%;
    height: 44%;
    border-radius: 56% 44% 52% 48% / 40% 50% 50% 60%;
    transform: rotate(14deg);
}

.cyberex-security-hero__earth-continent--secondary {
    top: 52%;
    left: 18%;
    width: 24%;
    height: 18%;
    border-radius: 60% 40% 50% 50%;
    transform: rotate(-18deg);
}

.cyberex-security-hero__link {
    position: relative;
    height: 5rem;
}

.cyberex-security-hero__beam {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(140, 234, 255, 0.18), rgba(140, 234, 255, 0.72), rgba(140, 234, 255, 0.18));
    box-shadow:
        0 0 18px rgba(76, 167, 255, 0.2),
        0 0 36px rgba(76, 167, 255, 0.1);
}

.cyberex-security-hero__beam::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle, rgba(20, 38, 58, 0) 0 4px, rgba(140, 234, 255, 0.88) 4px 7px, rgba(20, 38, 58, 0) 7px 24px);
    background-size: 24px 100%;
    opacity: 0.9;
}

.cyberex-security-hero__node {
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    border-radius: 999px;
    background: var(--cyberex-accent-bright);
    box-shadow: 0 0 16px rgba(140, 234, 255, 0.5);
}

.cyberex-security-hero__node--left {
    left: 0;
}

.cyberex-security-hero__node--right {
    right: 0;
}

.cyberex-security-hero__packet {
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    border-radius: 999px;
    box-shadow:
        0 0 16px rgba(140, 234, 255, 0.68),
        0 0 28px rgba(76, 167, 255, 0.36);
}

.cyberex-security-hero__packet--safe-a,
.cyberex-security-hero__packet--safe-b {
    background: radial-gradient(circle, rgba(244, 252, 255, 0.98), rgba(140, 234, 255, 0.9) 56%, rgba(76, 167, 255, 0.5));
    animation: cyberex-network-packet-forward 3.2s ease-in-out infinite;
}

.cyberex-security-hero__packet--safe-b {
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
    animation-delay: 1.4s;
}

.cyberex-security-hero__threat-anchor {
    position: absolute;
    inset: 0;
}

.cyberex-security-hero__threat {
    position: absolute;
    top: 50%;
    left: 2%;
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    margin-top: -0.95rem;
    animation: cyberex-security-threat-travel 4.2s ease-in-out infinite;
}

.cyberex-security-hero__threat::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0.5rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: #ff4040;
}

.cyberex-security-hero__threat-head {
    position: absolute;
    top: 0.1rem;
    left: 0.67rem;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 999px;
    background: #ff4040;
}

.cyberex-security-hero__threat-legs,
.cyberex-security-hero__threat-antennae {
    position: absolute;
    inset: 0;
}

.cyberex-security-hero__threat-legs::before,
.cyberex-security-hero__threat-legs::after,
.cyberex-security-hero__threat-antennae::before,
.cyberex-security-hero__threat-antennae::after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 2px;
    border-radius: 999px;
    background: #ff4040;
}

.cyberex-security-hero__threat-legs::before {
    top: 0.72rem;
    left: 0.1rem;
    box-shadow:
        0 0.45rem 0 #ff4040,
        1.18rem 0 0 #ff4040,
        1.18rem 0.45rem 0 #ff4040;
    transform: rotate(-28deg);
}

.cyberex-security-hero__threat-legs::after {
    top: 0.72rem;
    right: 0.1rem;
    box-shadow:
        0 0.45rem 0 #ff4040,
        -1.18rem 0 0 #ff4040,
        -1.18rem 0.45rem 0 #ff4040;
    transform: rotate(28deg);
}

.cyberex-security-hero__threat-antennae::before {
    top: 0.02rem;
    left: 0.62rem;
    transform: rotate(-32deg);
}

.cyberex-security-hero__threat-antennae::after {
    top: 0.02rem;
    right: 0.62rem;
    transform: rotate(32deg);
}

.cyberex-security-hero__core-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    margin: -2rem 0 0 -2rem;
    border-radius: 999px;
    background: rgba(140, 234, 255, 0.18);
}

.cyberex-security-hero__core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08em;
    width: 3.5rem;
    height: 3.5rem;
    margin: -1.75rem 0 0 -1.75rem;
    border-radius: 999px;
    background: #3f97ea;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 20px rgba(76, 167, 255, 0.28);
}

.cyberex-security-hero__core-letter {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.cyberex-security-hero__core-letter--x {
    animation: cyberex-security-center-x-flash 4.2s ease-in-out infinite;
}

.cyberex-security-hero__laptop {
    position: relative;
    width: 8rem;
    height: 6.6rem;
}

.cyberex-security-hero__laptop-screen {
    position: absolute;
    top: 0.35rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 3.95rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(140, 234, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(21, 48, 80, 0.98), rgba(8, 18, 31, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(76, 167, 255, 0.14);
}

.cyberex-security-hero__laptop-dot {
    position: absolute;
    top: 1.15rem;
    left: 1.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--cyberex-accent-bright);
    box-shadow: 0 0 14px rgba(140, 234, 255, 0.58);
}

.cyberex-security-hero__laptop-line {
    position: absolute;
    left: 3rem;
    width: 2.3rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(140, 234, 255, 0.22);
}

.cyberex-security-hero__laptop-line--top {
    top: 1.34rem;
}

.cyberex-security-hero__laptop-line--bottom {
    top: 1.98rem;
}

.cyberex-security-hero__laptop-hinge {
    position: absolute;
    top: 4.28rem;
    left: 3.8rem;
    width: 0.4rem;
    height: 0.7rem;
    background: rgba(140, 234, 255, 0.16);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
}

.cyberex-security-hero__laptop-base {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.65rem;
    height: 0.9rem;
    clip-path: polygon(8% 0, 92% 0, 82% 100%, 18% 100%);
    background: linear-gradient(180deg, rgba(64, 133, 207, 0.96), rgba(37, 84, 136, 0.96));
    border: 1px solid rgba(140, 234, 255, 0.16);
}

.cyberex-security-hero__laptop-trackpad {
    position: absolute;
    bottom: 0.98rem;
    left: 50%;
    width: 1.8rem;
    height: 0.26rem;
    border-radius: 999px;
    background: rgba(220, 248, 255, 0.22);
    transform: translateX(-50%);
}

.cyberex-it-support-hero {
    position: relative;
    min-height: 190px;
    padding: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(143, 231, 255, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(8, 16, 26, 0.98), rgba(5, 11, 18, 0.99));
    border: 1px solid rgba(143, 231, 255, 0.08);
}

.cyberex-it-support-hero::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 26px;
    border: 1px solid rgba(143, 231, 255, 0.06);
    pointer-events: none;
}

.cyberex-it-support-mini-scene {
    position: absolute;
    width: 28%;
    top: 22px;
    bottom: 26px;
    border-radius: 22px;
    border: 1px solid rgba(143, 231, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(18, 35, 55, 0.96), rgba(8, 17, 28, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 18px rgba(76, 167, 255, 0.08);
}

.cyberex-it-support-mini-scene--repair {
    left: 4%;
}

.cyberex-it-support-mini-scene--install {
    left: 36%;
}

.cyberex-it-support-mini-scene--support {
    right: 4%;
}

.cyberex-it-support-mini-scene__screen {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 72px;
    height: 50px;
    margin-left: -36px;
    border-radius: 10px;
    border: 1px solid rgba(143, 231, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(21, 48, 80, 0.76), rgba(8, 18, 31, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 rgba(0,0,0,0);
}

.cyberex-it-support-mini-scene__screen::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 6px;
    height: 10px;
    margin-left: -3px;
    background: rgba(143, 231, 255, 0.16);
}

.cyberex-it-support-mini-scene__screen::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 44px;
    height: 7px;
    margin-left: -22px;
    border-radius: 999px;
    background: rgba(103, 185, 255, 0.24);
}

.cyberex-it-support-mini-scene__line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 999px;
    background: rgba(143, 231, 255, 0.22);
}

.cyberex-it-support-mini-scene__line--top {
    top: 18px;
}

.cyberex-it-support-mini-scene__line--bottom {
    top: 28px;
}

.cyberex-it-support-mini-scene__badge {
    position: absolute;
    left: 50%;
    top: 90px;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(76, 167, 255, 0.18);
}

.cyberex-it-support-mini-scene__badge--repair {
    background: rgba(255, 207, 90, 0.16);
    color: #ffcf5a;
}

.cyberex-it-support-mini-scene__badge--install {
    background: rgba(143, 231, 255, 0.18);
    color: var(--cyberex-accent-bright);
}

.cyberex-it-support-mini-scene__badge--support {
    background: rgba(143, 240, 207, 0.18);
    color: #8ff0cf;
}

.cyberex-it-support-mini-scene__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    color: rgba(238, 244, 251, 0.88);
    text-align: center;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cyberex-it-support-mini-scene--repair .cyberex-it-support-mini-scene__screen {
    animation: cyberex-it-support-screen-glow 4.8s ease-in-out infinite;
}

.cyberex-it-support-mini-scene--install .cyberex-it-support-mini-scene__screen {
    animation: cyberex-it-support-screen-glow 4.8s ease-in-out 1.6s infinite;
}

.cyberex-it-support-mini-scene--support .cyberex-it-support-mini-scene__screen {
    animation: cyberex-it-support-screen-glow 4.8s ease-in-out 3.2s infinite;
}

.cyberex-it-support-mini-scene--repair,
.cyberex-it-support-mini-scene--repair .cyberex-it-support-mini-scene__badge {
    animation: cyberex-it-support-stage-glow 4.8s ease-in-out infinite;
}

.cyberex-it-support-mini-scene--install,
.cyberex-it-support-mini-scene--install .cyberex-it-support-mini-scene__badge {
    animation: cyberex-it-support-stage-glow 4.8s ease-in-out 1.6s infinite;
}

.cyberex-it-support-mini-scene--support,
.cyberex-it-support-mini-scene--support .cyberex-it-support-mini-scene__badge {
    animation: cyberex-it-support-stage-glow 4.8s ease-in-out 3.2s infinite;
}

.cyberex-web-design-hero {
    position: relative;
    min-height: 190px;
    padding: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(143, 231, 255, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(8, 16, 26, 0.98), rgba(5, 11, 18, 0.99));
    border: 1px solid rgba(143, 231, 255, 0.08);
    overflow: hidden;
}

.cyberex-web-design-hero::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(143, 231, 255, 0.06);
    pointer-events: none;
}

.cyberex-web-design-hero__sync {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(143, 231, 255, 0.02), rgba(143, 231, 255, 0.42), rgba(143, 231, 255, 0.02));
    animation: cyberex-web-sync-pulse 4.8s ease-in-out infinite;
}

.cyberex-web-design-hero__sync--horizontal {
    left: 22%;
    right: 22%;
    top: 72%;
    height: 2px;
}

.cyberex-web-design-hero__sync--vertical {
    top: 28%;
    left: 50%;
    width: 2px;
    height: 44%;
    transform: translateX(-50%);
}

.cyberex-web-device {
    position: absolute;
}

.cyberex-web-device__shell {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(143, 231, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(17, 34, 55, 0.98), rgba(8, 18, 31, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 20px rgba(97, 184, 255, 0.08);
    animation: cyberex-web-device-focus 6s ease-in-out infinite;
}

.cyberex-web-device__shell::before,
.cyberex-web-device__shell::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 7px;
    border-radius: 999px;
    background: rgba(143, 231, 255, 0.18);
}

.cyberex-web-device__shell::before {
    top: 18px;
}

.cyberex-web-device__shell::after {
    top: 34px;
    width: 48%;
    right: auto;
}

.cyberex-web-device--desktop {
    width: 220px;
    height: 140px;
    top: 24px;
    left: calc(50% - 110px);
}

.cyberex-web-device--tablet {
    width: 118px;
    height: 152px;
    left: 30px;
    bottom: 22px;
}

.cyberex-web-device--phone {
    width: 84px;
    height: 148px;
    right: 30px;
    bottom: 24px;
}

.cyberex-web-device--desktop .cyberex-web-device__shell {
    animation-delay: 0s;
}

.cyberex-web-device--tablet .cyberex-web-device__shell {
    animation-delay: 2s;
}

.cyberex-web-device--phone .cyberex-web-device__shell {
    animation-delay: 4s;
}

.cyberex-web-device__screen {
    position: absolute;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(143, 231, 255, 0.08), rgba(97, 184, 255, 0.18));
}

.cyberex-web-device--desktop .cyberex-web-device__screen {
    inset: 50px 16px 18px;
    border-radius: 14px;
}

.cyberex-web-device--tablet .cyberex-web-device__screen,
.cyberex-web-device--phone .cyberex-web-device__screen {
    inset: 50px 12px 14px;
    border-radius: 12px;
}

.cyberex-web-device__base {
    position: absolute;
    width: 72px;
    height: 10px;
    left: calc(50% - 36px);
    bottom: -18px;
    border-radius: 999px;
    background: rgba(97, 184, 255, 0.28);
}

.cyberex-web-page-state {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: cyberex-web-page-cycle 6s ease-in-out infinite;
}

.cyberex-web-page-state--a {
    animation-delay: 0s;
}

.cyberex-web-page-state--b {
    animation-delay: 2s;
}

.cyberex-web-page-state--c {
    animation-delay: 4s;
}

.cyberex-web-page-state__hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(96, 187, 255, 0.55), rgba(52, 110, 178, 0.48));
}

.cyberex-web-page-state__card {
    position: absolute;
    left: 8%;
    right: 8%;
    border-radius: 10px;
    background: rgba(8, 18, 31, 0.52);
    border: 1px solid rgba(143, 231, 255, 0.08);
}

.cyberex-web-page-state__card--wide {
    top: 30%;
    height: 20%;
}

.cyberex-web-page-state__card--row {
    top: 56%;
    height: 12%;
}

.cyberex-web-page-state__card--cta {
    left: 8%;
    width: 42%;
    bottom: 10%;
    height: 12%;
    background: linear-gradient(90deg, rgba(97, 184, 255, 0.7), rgba(143, 231, 255, 0.45));
    box-shadow: 0 0 12px rgba(97, 184, 255, 0.2);
}

.cyberex-web-page-state--b .cyberex-web-page-state__hero {
    height: 20%;
    background: linear-gradient(180deg, rgba(143, 231, 255, 0.26), rgba(97, 184, 255, 0.36));
}

.cyberex-web-page-state--b .cyberex-web-page-state__card--wide {
    top: 28%;
    height: 36%;
}

.cyberex-web-page-state--b .cyberex-web-page-state__card--row {
    top: 70%;
    left: 8%;
    width: 28%;
    right: auto;
    height: 10%;
}

.cyberex-web-page-state--b .cyberex-web-page-state__card--cta {
    left: 40%;
    width: 44%;
    bottom: 12%;
}

.cyberex-web-page-state--c .cyberex-web-page-state__hero {
    height: 16%;
    background: linear-gradient(180deg, rgba(96, 187, 255, 0.34), rgba(52, 110, 178, 0.28));
}

.cyberex-web-page-state--c .cyberex-web-page-state__card--wide {
    top: 24%;
    height: 14%;
}

.cyberex-web-page-state--c .cyberex-web-page-state__card--row {
    top: 44%;
    height: 14%;
}

.cyberex-web-page-state--c .cyberex-web-page-state__card--cta {
    top: 64%;
    bottom: auto;
    width: 52%;
    height: 10%;
}

.cyberex-user-awareness-hero {
    position: relative;
    min-height: 190px;
    padding: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(143, 231, 255, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(8, 16, 26, 0.98), rgba(5, 11, 18, 0.99));
    border: 1px solid rgba(143, 231, 255, 0.08);
    overflow: hidden;
}

.cyberex-user-awareness-hero::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px solid rgba(143, 231, 255, 0.06);
    pointer-events: none;
}

.cyberex-user-awareness-hero::after {
    content: "";
    position: absolute;
    inset: 10px 18px 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(143, 231, 255, 0.05);
    pointer-events: none;
}

.cyberex-user-awareness-hero__board {
    position: absolute;
    top: 16px;
    left: 94px;
    right: 18px;
    height: 92px;
    border-radius: 20px;
    border: 1px solid rgba(143, 231, 255, 0.18);
    background: linear-gradient(180deg, rgba(17, 34, 55, 0.98), rgba(8, 18, 31, 0.98));
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 22px rgba(97, 184, 255, 0.1);
}

.cyberex-user-awareness-hero__board::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(143, 231, 255, 0.08);
    pointer-events: none;
}

.cyberex-user-awareness-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: cyberex-user-awareness-slide-cycle 6s ease-in-out infinite;
}

.cyberex-user-awareness-hero__slide--one {
    animation-delay: 0s;
}

.cyberex-user-awareness-hero__slide--two {
    animation-delay: 2s;
}

.cyberex-user-awareness-hero__slide--three {
    animation-delay: 4s;
}

.cyberex-user-awareness-hero__bar,
.cyberex-user-awareness-hero__panel,
.cyberex-user-awareness-hero__cta {
    position: absolute;
    border-radius: 999px;
}

.cyberex-user-awareness-hero__bar {
    left: 16px;
    height: 5px;
    background: rgba(143, 231, 255, 0.18);
}

.cyberex-user-awareness-hero__bar--a {
    top: 18px;
    width: 40%;
}

.cyberex-user-awareness-hero__bar--b {
    top: 29px;
    width: 28%;
}

.cyberex-user-awareness-hero__bar--c {
    top: 40px;
    width: 22%;
}

.cyberex-user-awareness-hero__bar--wide {
    width: 48%;
}

.cyberex-user-awareness-hero__bar--mid {
    width: 34%;
}

.cyberex-user-awareness-hero__bar--short {
    width: 18%;
}

.cyberex-user-awareness-hero__bar--shorter {
    width: 16%;
}

.cyberex-user-awareness-hero__bar--tiny {
    width: 12%;
}

.cyberex-user-awareness-hero__panel {
    top: 52px;
    left: 16px;
    right: 16px;
    height: 22px;
    border-radius: 11px;
    background: linear-gradient(180deg, rgba(143, 231, 255, 0.16), rgba(97, 184, 255, 0.14));
}

.cyberex-user-awareness-hero__panel--tight {
    right: 78px;
}

.cyberex-user-awareness-hero__panel--compact {
    height: 16px;
}

.cyberex-user-awareness-hero__cta {
    right: 16px;
    bottom: 12px;
    width: 54px;
    height: 8px;
    background: linear-gradient(90deg, rgba(97, 184, 255, 0.72), rgba(143, 231, 255, 0.56));
    box-shadow: 0 0 12px rgba(97, 184, 255, 0.24);
}

.cyberex-user-awareness-hero__cta--left {
    left: 16px;
    right: auto;
    width: 58px;
}

.cyberex-user-awareness-hero__icon {
    position: absolute;
    top: 46px;
    right: 20px;
    width: 32px;
    height: 32px;
}

.cyberex-user-awareness-hero__icon::before,
.cyberex-user-awareness-hero__icon::after {
    content: "";
    position: absolute;
}

.cyberex-user-awareness-hero__icon--mail::before {
    inset: 7px 4px 9px;
    border: 2px solid rgba(143, 231, 255, 0.92);
    border-radius: 7px;
}

.cyberex-user-awareness-hero__icon--mail::after {
    top: 14px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: rgba(143, 231, 255, 0.9);
    transform: rotate(26deg);
}

.cyberex-user-awareness-hero__icon--alert::before {
    top: 3px;
    right: 8px;
    bottom: 6px;
    left: 8px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: rgba(255, 109, 127, 0.22);
    border: 2px solid rgba(255, 109, 127, 0.88);
}

.cyberex-user-awareness-hero__icon--alert::after {
    top: 9px;
    left: calc(50% - 2px);
    width: 4px;
    height: 10px;
    background: rgba(255, 109, 127, 0.9);
    border-radius: 999px;
    box-shadow: 0 13px 0 0 rgba(255, 109, 127, 0.9);
}

.cyberex-user-awareness-hero__icon--shield::before {
    top: 4px;
    right: 8px;
    bottom: 4px;
    left: 8px;
    background: linear-gradient(180deg, rgba(143, 231, 255, 0.3), rgba(97, 184, 255, 0.2));
    border: 2px solid rgba(143, 231, 255, 0.92);
    clip-path: polygon(50% 0, 90% 18%, 82% 72%, 50% 100%, 18% 72%, 10% 18%);
}

.cyberex-user-awareness-hero__icon--shield::after {
    top: 12px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border: 2px solid rgba(143, 231, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 6px 0 -3px rgba(143, 231, 255, 0.95);
    transform: rotate(45deg);
}

.cyberex-user-awareness-hero__teacher {
    position: absolute;
    bottom: 10px;
    left: 12px;
    width: 74px;
    height: 92px;
    transform-origin: 36px 54px;
    animation: cyberex-user-awareness-teacher-shift 4.2s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.cyberex-user-awareness-hero__students {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 96px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
}

.cyberex-user-awareness-hero__student {
    width: 74px;
    height: 80px;
    transform-origin: center bottom;
    animation: cyberex-user-awareness-student-listen 3.6s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.cyberex-user-awareness-hero__student--two {
    animation-delay: 0.25s;
}

.cyberex-user-awareness-hero__student--three {
    animation-delay: 0.5s;
}

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

.cyberex-content-panel,
.cyberex-pricing-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid var(--cyberex-line);
    background:
        linear-gradient(180deg, rgba(11, 23, 37, 0.95), rgba(6, 13, 23, 0.98)),
        linear-gradient(135deg, rgba(140, 234, 255, 0.045), transparent 34%);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(76, 167, 255, 0.04);
}

.cyberex-content-panel h2,
.cyberex-pricing-card h2 {
    margin-top: 0;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.cyberex-content-panel p,
.cyberex-pricing-card p {
    color: var(--cyberex-text-soft);
    line-height: 1.7;
}

.cyberex-feature-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #d8e3ee;
    line-height: 1.8;
}

.cyberex-story-panel {
    grid-column: 1 / -1;
}

.cyberex-contact-list {
    display: grid;
    gap: 1rem;
}

.cyberex-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: var(--cyberex-bg-panel-soft);
    border: 1px solid rgba(112, 197, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cyberex-contact-item__icon,
.cyberex-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 14px;
    color: var(--cyberex-accent-bright);
    background:
        radial-gradient(circle at top left, rgba(140, 234, 255, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(12, 31, 52, 0.98), rgba(6, 16, 28, 0.96));
    border: 1px solid rgba(140, 234, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.2),
        0 0 18px rgba(76, 167, 255, 0.14);
}

.cyberex-contact-item__icon svg,
.cyberex-service-card__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.cyberex-contact-item__body {
    min-width: 0;
}

.cyberex-contact-item p {
    margin: 0;
}

.cyberex-contact-item__label {
    color: var(--cyberex-accent-bright);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin-bottom: 0.4rem !important;
}

.cyberex-content-panel--contact-form {
    position: relative;
    overflow: hidden;
}

.cyberex-content-panel--contact-form::after {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(61, 143, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.cyberex-form-shell p {
    margin: 0;
}

.cyberex-form-shell .wpcf7 {
    position: relative;
    z-index: 1;
}

.cyberex-form-shell .wpcf7 form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cyberex-form-shell label {
    display: grid;
    gap: 0.55rem;
    color: var(--cyberex-text);
    font-size: 1rem;
    font-weight: 600;
}

.cyberex-form-shell .wpcf7-form-control-wrap {
    display: block;
}

.cyberex-form-shell input::placeholder,
.cyberex-form-shell textarea::placeholder {
    color: rgba(182, 199, 217, 0.62);
}

.cyberex-form-shell input,
.cyberex-form-shell textarea {
    width: 100%;
    margin-top: 0;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(118, 158, 204, 0.14);
    background: rgba(9, 17, 28, 0.82);
    color: var(--cyberex-text);
    box-sizing: border-box;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cyberex-form-shell input:focus,
.cyberex-form-shell textarea:focus {
    outline: none;
    border-color: rgba(127, 216, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(61, 143, 255, 0.14);
    background: rgba(11, 21, 34, 0.9);
}

.cyberex-form-shell textarea {
    min-height: 14rem;
    resize: vertical;
}

.cyberex-form-shell .wpcf7-spinner,
.cyberex-form-shell .hidden-fields-container,
.cyberex-form-shell .akismet-fields-container {
    display: none !important;
}

.cyberex-form-shell .wpcf7-submit,
.cyberex-form-shell input[type="submit"] {
    min-width: 11rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 34px rgba(18, 62, 121, 0.28);
}

.cyberex-form-shell .wpcf7-submit {
    width: auto;
    cursor: pointer;
    background: linear-gradient(135deg, var(--cyberex-accent), var(--cyberex-accent-deep));
    border: none;
}

.cyberex-form-shell .wpcf7-submit:hover,
.cyberex-form-shell input[type="submit"]:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.cyberex-form-shell .wpcf7-response-output {
    margin: 0.25rem 0 0 !important;
    padding: 0.85rem 1rem !important;
    border-radius: 14px;
    border-color: var(--cyberex-line-strong) !important;
    color: var(--cyberex-text-soft);
}

.cyberex-pricing-card__price {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1.15rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(140, 234, 255, 0.26);
    background:
        radial-gradient(circle at top left, rgba(140, 234, 255, 0.22), transparent 55%),
        linear-gradient(135deg, rgba(14, 42, 74, 0.98), rgba(9, 22, 39, 0.96));
    color: #f3fbff !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 38px rgba(4, 12, 22, 0.26),
        0 0 24px rgba(76, 167, 255, 0.12);
    text-shadow: 0 0 18px rgba(140, 234, 255, 0.16);
}

.cyberex-site-footer {
    border-top: 1px solid var(--cyberex-line);
    background: linear-gradient(180deg, rgba(8, 15, 25, 0.9), rgba(6, 12, 20, 0.95));
}

.cyberex-site-footer p {
    margin: 0;
    color: #c4d3e3;
}

.cyberex-hero {
    padding: 3rem 0 2rem;
}

.cyberex-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: stretch;
}

.cyberex-hero__copy,
.cyberex-story__card,
.cyberex-hero__panel {
    border: 1px solid var(--cyberex-line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(140, 234, 255, 0.06), transparent 26%),
        linear-gradient(180deg, rgba(12, 24, 39, 0.96), rgba(6, 13, 24, 0.98));
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(76, 167, 255, 0.04);
}

.cyberex-hero__copy {
    padding: 3rem;
    background:
        linear-gradient(180deg, rgba(9, 18, 30, 0.98), rgba(5, 11, 20, 0.99)),
        linear-gradient(135deg, rgba(76, 167, 255, 0.04), transparent 42%);
}

.cyberex-eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--cyberex-accent-bright);
}

.cyberex-hero h1,
.cyberex-story h2 {
    margin: 0;
    line-height: 0.95;
    font-size: clamp(3rem, 8vw, 6.2rem);
}

.cyberex-story h2 {
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.cyberex-hero h1 span {
    color: var(--cyberex-accent);
}

.cyberex-hero__lede,
.cyberex-story__body {
    margin-top: 1.5rem;
    max-width: 42rem;
    color: var(--cyberex-text-soft);
    line-height: 1.7;
    font-size: 1.05rem;
}

.cyberex-hero__panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    min-height: 420px;
}

.cyberex-hero__panel--signal-core {
    background:
        radial-gradient(circle at 50% 78%, rgba(76, 167, 255, 0.36), transparent 20%),
        radial-gradient(circle at 58% 26%, rgba(140, 234, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(14, 31, 53, 0.97), rgba(6, 15, 28, 0.99));
}

.cyberex-hero__panel--signal-core::after {
    content: "";
    position: absolute;
    inset: 18% 50% 14% auto;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(140, 234, 255, 0.72), transparent);
    box-shadow:
        0 0 20px rgba(140, 234, 255, 0.28),
        180px 0 0 rgba(140, 234, 255, 0.18),
        -180px 0 0 rgba(140, 234, 255, 0.12);
    pointer-events: none;
}

.cyberex-hero__signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.cyberex-signal-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(140, 234, 255, 0.18);
    background: linear-gradient(135deg, rgba(10, 24, 40, 0.88), rgba(6, 15, 26, 0.86));
    color: var(--cyberex-accent-bright);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 24px rgba(76, 167, 255, 0.11);
}

.cyberex-signal-pill::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--cyberex-accent-bright);
    box-shadow: 0 0 14px rgba(140, 234, 255, 0.55);
}

.cyberex-signal-card {
    width: fit-content;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(7, 17, 29, 0.82);
    border: 1px solid var(--cyberex-line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 38px rgba(76, 167, 255, 0.16);
}

.cyberex-signal-card p {
    margin: 0 0 0.35rem;
    color: var(--cyberex-text-muted);
    font-size: 0.9rem;
}

.cyberex-signal-card strong {
    font-size: 1.05rem;
}

.cyberex-orbit {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 240px;
}

.cyberex-orbit__sweep {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background:
        conic-gradient(
            from 0deg,
            rgba(140, 234, 255, 0.36) 0deg,
            rgba(76, 167, 255, 0.22) 18deg,
            rgba(76, 167, 255, 0.08) 34deg,
            rgba(76, 167, 255, 0) 54deg,
            rgba(76, 167, 255, 0) 360deg
        );
    filter: blur(1px);
    mix-blend-mode: screen;
    opacity: 0.85;
    animation: cyberex-sonar-sweep 4.2s linear infinite;
}

.cyberex-orbit__pulse {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(140, 234, 255, 0.34);
    box-shadow:
        0 0 26px rgba(76, 167, 255, 0.14),
        inset 0 0 18px rgba(140, 234, 255, 0.06);
    opacity: 0;
}

.cyberex-orbit__pulse--outer {
    width: 132px;
    height: 132px;
    animation: cyberex-sonar-pulse 3.2s ease-out infinite;
}

.cyberex-orbit__pulse--inner {
    width: 132px;
    height: 132px;
    animation: cyberex-sonar-pulse 3.2s ease-out 1.6s infinite;
}

.cyberex-orbit__ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid var(--cyberex-accent-glow);
    box-shadow: 0 0 26px rgba(76, 167, 255, 0.12);
}

.cyberex-orbit__ring--outer {
    width: 240px;
    height: 240px;
}

.cyberex-orbit__ring--inner {
    width: 160px;
    height: 160px;
}

.cyberex-orbit__core {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--cyberex-accent), var(--cyberex-accent-deep));
    font-size: 2rem;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 42px rgba(76, 167, 255, 0.3);
    animation: cyberex-core-ping 3.2s ease-in-out infinite;
}

@keyframes cyberex-sonar-sweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes cyberex-sonar-pulse {
    0% {
        transform: scale(0.42);
        opacity: 0;
    }

    14% {
        opacity: 0.85;
    }

    72% {
        opacity: 0.18;
    }

    100% {
        transform: scale(1.95);
        opacity: 0;
    }
}

@keyframes cyberex-core-ping {
    0%,
    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 0 34px rgba(76, 167, 255, 0.22);
        transform: scale(1);
    }

    45% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 52px rgba(140, 234, 255, 0.4);
        transform: scale(1.035);
    }
}

@keyframes cyberex-network-packet-forward {
    0% {
        left: 2%;
        opacity: 0;
        transform: scale(0.75);
    }

    12% {
        opacity: 1;
    }

    50% {
        transform: scale(1);
    }

    88% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 0.8rem);
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes cyberex-network-packet-reverse {
    0% {
        left: calc(100% - 0.8rem);
        opacity: 0;
        transform: scale(0.75);
    }

    12% {
        opacity: 1;
    }

    50% {
        transform: scale(1);
    }

    88% {
        opacity: 1;
    }

    100% {
        left: 2%;
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes cyberex-security-threat-travel {
    0% {
        left: 0;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    46% {
        left: calc(50% - 2.1rem);
        opacity: 1;
    }

    52% {
        left: calc(50% - 1.85rem);
        opacity: 1;
    }

    68% {
        left: calc(50% - 1.85rem);
        opacity: 0;
    }

    100% {
        left: calc(50% - 1.85rem);
        opacity: 0;
    }
}

@keyframes cyberex-security-center-x-flash {
    0%,
    52%,
    100% {
        color: #ffffff;
    }

    56%,
    80% {
        color: #ff1f1f;
    }

    90% {
        color: #ffffff;
    }
}

@keyframes cyberex-it-support-stage-glow {
    0%,
    100% {
        box-shadow: 0 0 18px rgba(76, 167, 255, 0.08);
        transform: translateY(0);
    }

    25%,
    55% {
        box-shadow:
            0 0 28px rgba(140, 234, 255, 0.26),
            0 0 48px rgba(76, 167, 255, 0.12);
        transform: translateY(-4px);
    }

    75% {
        box-shadow: 0 0 18px rgba(76, 167, 255, 0.08);
        transform: translateY(0);
    }
}

@keyframes cyberex-it-support-screen-glow {
    0%,
    100% {
        border-color: rgba(143, 231, 255, 0.18);
        background:
            linear-gradient(180deg, rgba(21, 48, 80, 0.76), rgba(8, 18, 31, 0.9));
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.05),
            0 0 0 rgba(0,0,0,0);
    }

    25%,
    55% {
        border-color: rgba(143, 231, 255, 0.38);
        background:
            radial-gradient(circle at center, rgba(143, 231, 255, 0.26), transparent 72%),
            linear-gradient(180deg, rgba(31, 73, 118, 0.92), rgba(10, 24, 39, 0.96));
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.08),
            0 0 24px rgba(143, 231, 255, 0.24),
            0 0 42px rgba(76, 167, 255, 0.12);
    }

    75% {
        border-color: rgba(143, 231, 255, 0.18);
        background:
            linear-gradient(180deg, rgba(21, 48, 80, 0.76), rgba(8, 18, 31, 0.9));
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.05),
            0 0 0 rgba(0,0,0,0);
    }
}

@keyframes cyberex-web-page-cycle {
    0%,
    22% {
        opacity: 1;
    }

    30%,
    100% {
        opacity: 0;
    }
}

@keyframes cyberex-web-device-focus {
    0%,
    22% {
        border-color: rgba(143, 231, 255, 0.16);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 20px rgba(97, 184, 255, 0.08);
    }

    8%,
    16% {
        border-color: rgba(143, 231, 255, 0.6);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 28px rgba(97, 184, 255, 0.22);
    }

    100% {
        border-color: rgba(143, 231, 255, 0.16);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 20px rgba(97, 184, 255, 0.08);
    }
}

@keyframes cyberex-web-sync-pulse {
    0%,
    100% {
        opacity: 0.24;
    }

    50% {
        opacity: 0.72;
    }
}

@keyframes cyberex-user-awareness-slide-cycle {
    0%,
    22% {
        opacity: 1;
    }

    30%,
    100% {
        opacity: 0;
    }
}

@keyframes cyberex-user-awareness-teacher-shift {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-3px) rotate(1deg);
    }
}

@keyframes cyberex-user-awareness-student-listen {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.86;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.cyberex-story {
    padding: 1rem 0 5rem;
}

.cyberex-story__card {
    padding: 2.5rem 3rem;
}

.cyberex-services {
    padding: 0 0 6rem;
}

.cyberex-services__intro {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 48rem;
    padding: 2rem 2.25rem;
    border-radius: 30px;
    border: 1px solid rgba(91, 157, 255, 0.16);
    background: linear-gradient(180deg, rgba(11, 24, 39, 0.84), rgba(6, 13, 24, 0.56));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 40px rgba(76, 167, 255, 0.07);
}

.cyberex-services__intro h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
}

.cyberex-services__intro p:last-child {
    color: var(--cyberex-text-soft);
    line-height: 1.7;
}

.cyberex-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.cyberex-service-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.6rem;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(10, 24, 39, 0.94), rgba(5, 13, 23, 0.98));
    border: 1px solid var(--cyberex-line);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(76, 167, 255, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cyberex-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyberex-accent-glow-strong);
    background: linear-gradient(180deg, rgba(18, 40, 66, 0.98), rgba(7, 19, 34, 0.99));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 34px rgba(76, 167, 255, 0.2);
}

.cyberex-service-card__icon {
    margin-bottom: 0.35rem;
}

.cyberex-service-card strong {
    font-size: 1.15rem;
}

.cyberex-service-card span {
    color: var(--cyberex-text-soft);
    line-height: 1.6;
}

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

.cyberex-remote-card {
    position: relative;
    overflow: hidden;
}

.cyberex-remote-card__eyebrow {
    margin: 0 0 0.8rem;
    color: var(--cyberex-accent-bright);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cyberex-remote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 280px);
    margin: 1rem 0 0.9rem;
    padding: 1rem 1.6rem;
    border: 1px solid rgba(73, 118, 201, 0.95);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(234, 243, 255, 0.96));
    color: #1b2450;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.34) inset;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.cyberex-remote-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.42) inset,
        0 0 24px rgba(140, 234, 255, 0.18);
}

.cyberex-remote-card__hint {
    margin-bottom: 0;
    color: var(--cyberex-text-muted);
    font-size: 0.92rem;
}

.cyberex-remote-steps {
    margin: 0;
    padding-left: 1.25rem;
    color: #d8e3ee;
    line-height: 1.8;
}

.cyberex-remote-steps li + li {
    margin-top: 0.35rem;
}

.cyberex-remote-screenshot {
    margin: 1rem 0 1.2rem;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(143, 231, 255, 0.14);
    background: linear-gradient(180deg, rgba(10, 20, 32, 0.94), rgba(6, 12, 20, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 46px rgba(0, 0, 0, 0.22);
}

.cyberex-remote-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.cyberex-remote-card__callout {
    margin-bottom: 0;
    color: var(--cyberex-text-soft);
    font-weight: 600;
}

@media (max-width: 860px) {
    .cyberex-panel-grid,
    .cyberex-remote-grid,
    .cyberex-pricing-grid,
    .cyberex-hero__layout,
    .cyberex-page-hero__layout {
        grid-template-columns: 1fr;
    }

    .cyberex-hero__copy,
    .cyberex-story__card,
    .cyberex-hero__panel,
    .cyberex-page-hero,
    .cyberex-content-panel,
    .cyberex-pricing-card {
        padding: 2rem;
    }

    .cyberex-service-grid {
        grid-template-columns: 1fr;
    }

    .cyberex-network-hero {
        min-height: 190px;
    }

    .cyberex-user-awareness-hero {
        min-height: 206px;
    }

    .cyberex-user-awareness-hero__board {
        left: 86px;
        right: 16px;
        height: 96px;
    }

    .cyberex-user-awareness-hero__students {
        left: 88px;
        right: 10px;
        gap: 2px;
    }

    .cyberex-user-awareness-hero__student {
        width: 64px;
        height: 70px;
    }
}

@media (max-width: 860px) {
    .cyberex-nav-toggle {
        display: inline-flex;
    }

    .cyberex-shell--header,
    .cyberex-shell--footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .cyberex-primary-nav {
        display: none;
        width: 100%;
    }

    .cyberex-primary-nav.is-open {
        display: block;
    }

    .cyberex-menu,
    .cyberex-menu ul,
    .cyberex-primary-nav .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .cyberex-menu {
        width: 100%;
        gap: 0.35rem;
    }

    .cyberex-menu > .menu-item {
        width: 100%;
    }

    .cyberex-menu__item {
        width: 100%;
        justify-content: space-between;
    }

    .cyberex-menu a,
    .cyberex-primary-nav .menu a {
        padding-left: 0;
    }

    .cyberex-menu .sub-menu {
        position: static;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        margin-top: 0.35rem;
        padding: 0.5rem 0 0 1rem;
        border: 0;
        border-left: 1px solid var(--cyberex-line-strong);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: none;
        justify-items: stretch;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .cyberex-menu .sub-menu > .menu-item {
        width: 100%;
    }

    .menu-item-has-children:hover > .sub-menu,
    .menu-item-has-children:focus-within > .sub-menu {
        display: none;
    }

    .menu-item-has-children.is-open > .sub-menu,
    .menu-item-has-children.current-menu-item > .sub-menu {
        display: grid;
    }

    .cyberex-menu .sub-menu a {
        padding: 0.65rem 0.9rem;
    }
}
