/*
Theme Name: ZonaOknum
Theme URI: https://zonaoknum4d.xyz/
Author: ZonaOknum
Description: Custom WordPress Theme
Version: 2.2.0
*/

/* =========================================================
   ROOT
========================================================= */

:root {
    --bg: #030604;
    --bg-deep: #010201;
    --surface: #071009;
    --surface-2: #0b160e;

    --green: #39ff6b;
    --green-bright: #55ff80;
    --green-dark: #0b7a32;

    --gold: #d6b15a;

    --text: #f2f7f3;
    --muted: #8d9a91;
    --muted-light: #b8c3bb;

    --border: rgba(57,255,107,.12);

    --container: 1180px;
    --header-height: 78px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(57,255,107,.07),
            transparent 500px
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.7;
}

body.is-loading {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-inline: auto;
}


/* =========================================================
   PREMIUM LOADER
========================================================= */

.site-loader {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(57,255,107,.14),
            transparent 360px
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(57,255,107,.04),
            transparent 650px
        ),
        #010302;

    opacity: 1;
    visibility: visible;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* LOADER GRID */

.site-loader__grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(57,255,107,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(57,255,107,.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 75%
        );

    animation: loaderGrid 8s linear infinite;
}


/* LOADER CONTENT */

.site-loader__content {
    position: relative;
    z-index: 2;

    width: min(
        420px,
        calc(100% - 40px)
    );

    text-align: center;
}


/* LOADER MARK */

.site-loader__mark {
    position: relative;

    width: 72px;
    height: 72px;

    margin: 0 auto 26px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(57,255,107,.45);

    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(57,255,107,.2),
        0 0 80px rgba(57,255,107,.08);

    animation:
        loaderPulse 1.6s ease-in-out infinite;
}

.site-loader__mark::before {
    content: "";

    position: absolute;

    inset: 9px;

    border:
        1px solid
        rgba(57,255,107,.22);

    border-radius: 50%;

    animation:
        loaderRotate 4s linear infinite;
}

.site-loader__mark::after {
    content: "";

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green),
        0 0 35px rgba(57,255,107,.8);
}

.site-loader__mark span {
    position: absolute;

    width: 5px;
    height: 5px;

    top: 3px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green);
}


/* LOADER LOGO */

.site-loader__logo {
    margin-bottom: 14px;

    color: #f4f8f5;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: .16em;
}

.site-loader__logo span {
    color: var(--green);

    text-shadow:
        0 0 12px rgba(57,255,107,.7),
        0 0 30px rgba(57,255,107,.25);
}


/* LOADER STATUS */

.site-loader__status {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    color: rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .25em;
}

.site-loader__status-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green);

    animation:
        statusBlink 1s ease-in-out infinite;
}


/* LOADER BAR */

.site-loader__bar {
    position: relative;

    width: 100%;
    height: 3px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,.07);
}

.site-loader__bar span {
    display: block;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: var(--green);

    box-shadow:
        0 0 12px rgba(57,255,107,.9),
        0 0 30px rgba(57,255,107,.4);

    animation:
        loaderBar 1.2s ease-in-out infinite;
}


/* LOADER BOTTOM */

.site-loader__bottom {
    display: flex;

    justify-content: space-between;

    margin-top: 10px;

    color: rgba(255,255,255,.3);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;
}

.site-loader__bottom strong {
    color: var(--green);

    text-shadow:
        0 0 8px rgba(57,255,107,.6);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 9999;

    height: var(--header-height);

    background:
        rgba(2,5,3,.78);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 180px;
    height: 1px;

    transform: translateX(-50%);

    background: var(--green);

    box-shadow:
        0 0 12px rgba(57,255,107,.8),
        0 0 35px rgba(57,255,107,.25);
}

.site-header__inner {
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    color: #f4f8f5;

    font-weight: 900;
}

.site-logo__dot {
    position: relative;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 8px var(--green),
        0 0 20px rgba(57,255,107,.7);
}

.site-logo__dot::after {
    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid
        rgba(57,255,107,.25);

    border-radius: 50%;

    animation:
        logoPulse 2s ease-in-out infinite;
}

.site-logo__text {
    font-size: 17px;

    font-weight: 900;

    letter-spacing: -.03em;
}

.site-logo__text span {
    color: var(--green);

    text-shadow:
        0 0 10px rgba(57,255,107,.5);
}


/* =========================================================
   WORDPRESS MENU
========================================================= */

.primary-navigation {
    margin-left: auto;
}

.primary-menu,
.primary-navigation ul {
    display: flex;

    align-items: center;

    gap: 5px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.primary-menu li,
.primary-navigation li {
    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu a,
.primary-navigation a {
    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 10px 14px;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;
    font-weight: 700;

    transition:
        color .25s ease,
        background .25s ease;
}

.primary-menu a::after,
.primary-navigation a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 4px;

    height: 1px;

    background: var(--green);

    box-shadow:
        0 0 8px
        rgba(57,255,107,.8);

    transform:
        scaleX(0);

    transition:
        transform .25s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
    color: #fff;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    border:
        1px solid
        rgba(57,255,107,.35);

    border-radius: 8px;

    background:
        rgba(57,255,107,.06);

    color: #dfffe7;

    font-size: 11px;
    font-weight: 800;

    transition:
        .25s ease;
}

.header-cta:hover {
    border-color:
        rgba(57,255,107,.8);

    background:
        rgba(57,255,107,.12);

    box-shadow:
        0 0 25px
        rgba(57,255,107,.12);

    transform:
        translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height:
        calc(100vh - var(--header-height));

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(57,255,107,.1),
            transparent 420px
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(20,130,55,.06),
            transparent 450px
        ),
        var(--bg-deep);
}


/* GRID */

.hero-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(57,255,107,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(57,255,107,.025) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 80%
        );
}


/* GLOW */

.hero-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}

.hero-glow--one {
    top: 5%;
    right: 5%;

    background:
        rgba(57,255,107,.07);
}

.hero-glow--two {
    bottom: -20%;
    left: 10%;

    background:
        rgba(20,150,70,.05);
}


/* HERO INNER */

.hero-section__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);

    align-items: center;

    gap: 80px;

    /* INI YANG MEMBUAT HERO TIDAK MEPET */
    padding: 95px 42px 110px;
}



/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 100%;
    max-width: 650px;

    /* sedikit dorong ke kanan */
    padding-left: 18px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    color: var(--green);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .22em;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 8px var(--green),
        0 0 20px
        rgba(57,255,107,.5);
}

.hero-title {
    margin: 0;

    max-width: 650px;

    color: #f3f7f4;

    /*
     * Sebelumnya sampai 86px.
     * Kita turunkan sedikit agar lebih elegan.
     */
    font-size: clamp(52px, 5.5vw, 76px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 900;
}


.hero-title span {
    color: #39ff6b;

    text-shadow:
        0 0 20px rgba(57,255,107,.16),
        0 0 45px rgba(57,255,107,.06);
}

.hero-description {
    max-width: 560px;

    margin: 28px 0 0;

    color: rgba(255,255,255,.52);

    font-size: 15px;

    line-height: 1.8;
}



/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 34px;
}


.hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.hero-button--primary {
    color: #021006;

    background: var(--green);

    box-shadow:
        0 0 20px
        rgba(57,255,107,.15);
}

.hero-button--primary:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 0 35px
        rgba(57,255,107,.35);
}

.hero-button--secondary {
    color:
        rgba(255,255,255,.75);

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.025);
}

.hero-button--secondary:hover {
    color: #fff;

    border-color:
        rgba(57,255,107,.35);

    transform:
        translateY(-2px);
}


/* =========================================================
   HERO STATUS
========================================================= */
.hero-status {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 42px;
}

.hero-status__item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.hero-status__item strong {
    display: block;

    color: #dce8df;

    font-size: 10px;

    letter-spacing: .12em;
}

.hero-status__item small {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.32);

    font-size: 9px;
}

.status-icon {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px
        rgba(57,255,107,.8);
}

.hero-status__line {
    width: 1px;
    height: 30px;

    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: grid;

    place-items: center;
}


/* ORBITS */

.hero-orbit {
    position: absolute;

    border:
        1px solid
        rgba(57,255,107,.1);

    border-radius: 50%;
}

.hero-orbit--one {
    width: 390px;
    height: 390px;

    border-left-color:
        rgba(57,255,107,.4);

    animation:
        orbitRotate 18s linear infinite;
}

.hero-orbit--two {
    width: 270px;
    height: 270px;

    border-right-color:
        rgba(57,255,107,.25);

    animation:
        orbitRotateReverse
        13s linear infinite;
}


/* CORE */

.hero-core {
    position: relative;

    width: 190px;
    height: 190px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(57,255,107,.13),
            rgba(57,255,107,.025) 48%,
            transparent 70%
        );

    box-shadow:
        0 0 80px
        rgba(57,255,107,.08);
}

.hero-core__ring {
    position: absolute;

    inset: 18px;

    border:
        1px solid
        rgba(57,255,107,.28);

    border-radius: 50%;
}

.hero-core__logo {
    position: relative;

    z-index: 2;

    width: 74px;
    height: 74px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(57,255,107,.55);

    border-radius: 18px;

    background:
        rgba(3,10,5,.85);

    box-shadow:
        0 0 30px
        rgba(57,255,107,.12);
}

.hero-core__logo span {
    color: var(--green);

    font-size: 34px;
    font-weight: 900;

    text-shadow:
        0 0 15px
        rgba(57,255,107,.5);
}

.hero-core__pulse {
    position: absolute;

    width: 12px;
    height: 12px;

    top: 22px;
    right: 34px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green),
        0 0 25px
        rgba(57,255,107,.8);

    animation:
        corePulse 2s ease-in-out infinite;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.hero-floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 14px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 9px;

    background:
        rgba(4,8,5,.72);

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

    animation:
        floatingCard
        4s ease-in-out infinite;
}

.hero-floating-card strong {
    display: block;

    color: #dce8df;

    font-size: 9px;

    letter-spacing: .1em;
}

.hero-floating-card small {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.32);

    font-size: 8px;
}

.hero-floating-card--top {
    top: 90px;
    right: 0;
}

.hero-floating-card--bottom {
    bottom: 90px;
    left: 0;

    animation-delay: -2s;
}

.floating-card__icon {
    color: var(--green);

    font-size: 18px;

    text-shadow:
        0 0 12px
        rgba(57,255,107,.6);
}

.floating-card__status {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px
        rgba(57,255,107,.8);
}


/* =========================================================
   SECTIONS
========================================================= */

.intro-section,
.services-section,
.contact-section {
    position: relative;

    padding: 120px 0;

    background:
        #030604;

    border-top:
        1px solid
        rgba(255,255,255,.045);
}

.services-section {
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(57,255,107,.035),
            transparent 500px
        ),
        #020403;
}

.section-heading {
    max-width: 700px;
}

.section-heading--center {
    margin-inline: auto;

    text-align: center;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .22em;
}

.section-heading h2,
.contact-box h2 {
    margin: 0;

    color: #edf4ef;

    font-size:
        clamp(35px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -.045em;
}

.section-heading h2 span,
.contact-box h2 span {
    color: var(--green);

    text-shadow:
        0 0 18px
        rgba(57,255,107,.12);
}

.section-heading p,
.contact-box p {
    max-width: 600px;

    margin: 24px 0 0;

    color:
        rgba(255,255,255,.45);

    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    margin-top: 55px;
}

.service-card {
    position: relative;

    min-height: 260px;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.service-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(57,255,107,.25);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25),

        0 0 30px
        rgba(57,255,107,.04);
}

.service-number {
    color:
        rgba(57,255,107,.5);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15em;
}

.service-card h3 {
    margin:
        45px 0 14px;

    color: #eaf2ed;

    font-size: 22px;
}

.service-card p {
    margin: 0;

    color:
        rgba(255,255,255,.4);

    font-size: 13px;

    line-height: 1.7;
}

.service-arrow {
    position: absolute;

    right: 25px;
    bottom: 24px;

    color: var(--green);

    font-size: 20px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border:
        1px solid
        rgba(57,255,107,.12);

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(57,255,107,.08),
            transparent 450px
        ),
        rgba(255,255,255,.015);

    box-shadow:
        inset 0 0 60px
        rgba(57,255,107,.015);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    padding: 35px 0;

    color: var(--muted);

    font-size: 13px;

    background:
        #020403;
}

.site-footer__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.site-footer p {
    margin: 0;
}

.site-footer__accent {
    color: var(--green);

    text-shadow:
        0 0 8px
        rgba(57,255,107,.25);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes loaderPulse {

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

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

@keyframes loaderRotate {

    from {
        transform: rotate(0deg);
    }

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

@keyframes loaderBar {

    0% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(330%);
    }
}

@keyframes loaderGrid {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .35;
    }

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

@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

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

@keyframes orbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

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

@keyframes corePulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .5;
    }

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

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero-section__inner {
        grid-template-columns: 1fr;

        gap: 55px;

        padding: 80px 30px 90px;

        text-align: center;
    }

    .hero-content {
        max-width: 700px;

        margin: 0 auto;

        padding-left: 0;
    }

    .hero-title {
        max-width: 700px;

        font-size: clamp(48px, 9vw, 68px);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-status {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-orbit--one {
        width: 320px;
        height: 320px;
    }

    .hero-orbit--two {
        width: 230px;
        height: 230px;
    }

    .hero-floating-card--top {
        right: 5%;
    }

    .hero-floating-card--bottom {
        left: 5%;
    }
}

@media (max-width: 800px) {

    :root {
        --header-height: 68px;
    }

    .container {
        width:
            min(
                var(--container),
                calc(100% - 28px)
            );
    }

    .primary-navigation {
        position: absolute;

        top:
            calc(100% + 8px);

        left: 14px;
        right: 14px;

        padding: 10px;

        border:
            1px solid
            rgba(57,255,107,.12);

        border-radius: 12px;

        background:
            rgba(3,6,4,.97);

        backdrop-filter:
            blur(20px);

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.5);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-8px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }

    .primary-navigation.is-open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .primary-menu,
    .primary-navigation ul {
        flex-direction: column;

        align-items: stretch;

        gap: 2px;
    }

    .primary-menu a,
    .primary-navigation a {
        width: 100%;

        padding: 13px;

        border-radius: 7px;
    }

    .primary-menu a:hover,
    .primary-navigation a:hover {
        background:
            rgba(57,255,107,.06);
    }

    .primary-menu a::after,
    .primary-navigation a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

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

    .contact-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px;
    }
}


@media (max-width: 600px) {

    .hero-section {
        min-height: auto;
    }

    .hero-section__inner {
        gap: 30px;

        padding: 65px 20px 90px;
    }

    .hero-title {
        font-size: clamp(42px, 12vw, 58px);

        letter-spacing: -.045em;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 320px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-button {
        width: 100%;
    }

    .hero-status {
        gap: 15px;

        margin-top: 35px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-orbit--one {
        width: 270px;
        height: 270px;
    }

    .hero-orbit--two {
        width: 195px;
        height: 195px;
    }

    .hero-core {
        width: 150px;
        height: 150px;
    }

    .hero-core__logo {
        width: 62px;
        height: 62px;
    }

    .hero-core__logo span {
        font-size: 28px;
    }

    .hero-floating-card {
        padding: 9px 11px;
    }

    .hero-floating-card--top {
        top: 45px;
        right: 0;
    }

    .hero-floating-card--bottom {
        bottom: 40px;
        left: 0;
    }

    .hero-scroll {
        display: none;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */

.intro-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0, 255, 100, 0.07),
            transparent 35%
        ),
        #020604;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 100, 0.06);
    filter: blur(120px);
    pointer-events: none;
}

.intro-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}


/* LEFT */

.intro-heading {
    position: relative;
}

.intro-heading .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;

    color: #35ff72;
}

.intro-heading .section-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;

    background: #35ff72;

    box-shadow:
        0 0 10px rgba(53, 255, 114, 0.8);
}

.intro-heading h2 {
    max-width: 520px;

    margin: 0;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;

    font-weight: 800;

    color: #f3f7f4;
}

.intro-heading h2 span {
    display: block;

    color: #35ff72;

    text-shadow:
        0 0 30px rgba(53, 255, 114, 0.12);
}

.intro-line {
    width: 80px;
    height: 2px;

    margin-top: 35px;

    background: #35ff72;

    box-shadow:
        0 0 15px rgba(53, 255, 114, 0.5);
}


/* RIGHT */

.intro-content {
    padding-top: 55px;
}

.intro-content p {
    max-width: 650px;

    margin: 0 0 24px;

    color: #7f9086;

    font-size: 15px;
    line-height: 1.9;
}

.intro-content .intro-lead {
    color: #d7e0da;

    font-size: 20px;
    line-height: 1.7;
}


/* STATS */

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.intro-stat {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 28px 20px 20px 0;

    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.intro-stat:not(:first-child) {
    padding-left: 25px;
}

.intro-stat:last-child {
    border-right: 0;
}

.intro-stat strong {
    color: #35ff72;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.intro-stat span {
    color: #9aa79f;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .intro-section {
        padding: 100px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .intro-content {
        padding-top: 0;
    }

}


@media (max-width: 600px) {

    .intro-section {
        padding: 80px 0;
    }

    .intro-heading h2 {
        font-size: 46px;
    }

    .intro-content .intro-lead {
        font-size: 17px;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .intro-stat,
    .intro-stat:not(:first-child) {
        padding: 20px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .intro-stat:last-child {
        border-bottom: 0;
    }

}

/* SEO content section: scoped styles that do not alter existing components. */
.zonaoknum-faq { padding: 4rem 0; }
.zonaoknum-faq .faq-grid { display: grid; gap: 1.5rem; }
.zonaoknum-faq .faq-item h3 { margin-bottom: .5rem; }
.zonaoknum-faq .faq-item p { margin: 0; }
