/* ========================================
   ROOT VARIABLES
======================================== */
:root {
    --color-primary: #111216;
    --color-primary-light: #24262d;

    --color-accent: #d2a02f;
    --color-accent-dark: #b8871e;
    --color-accent-light: #f0d797;

    --color-background: #fafaf8;
    --color-white: #ffffff;

    --color-text: #202126;
    --color-text-light: #6e7078;

    --color-border: #e7e7e2;
    --color-border-dark: #d5d5cf;

    --font-primary: "Manrope", sans-serif;

    --header-height: 88px;

    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s ease;

    --container-padding: 42px;
}

/* ========================================
   RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* ========================================
   CUSTOM CONTAINER
======================================== */
.custom-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ========================================
   PAGE LOADER
======================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.loader-mark {
    display: flex;
    align-items: center;
    gap: 8px;
}

.loader-mark span {
    width: 42px;
    height: 7px;
    display: block;
    background: var(--color-accent);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-mark span:nth-child(2) {
    animation-delay: 0.15s;
}

.loader-mark span:nth-child(3) {
    animation-delay: 0.3s;
}

.loader-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scaleX(0.55);
        opacity: 0.4;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ========================================
   HEADER
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(250, 250, 248, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal);
}

.site-header.is-scrolled {
    background: rgba(250, 250, 248, 0.94);
    border-color: var(--color-border);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header .navbar {
    min-height: var(--header-height);
    padding: 0;
}

/* LOGO */
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 50px;
    padding: 0;
}

.header-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
}

/* NAVIGATION */
.navbar-nav {
    gap: 7px;
}

.navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 34px 14px !important;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 0;
    height: 2px;
    content: "";
    background: var(--color-accent);
    transform: translateX(-50%);
    transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-accent-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 22px;
}

/* Remove default Bootstrap dropdown arrow */
.navbar-nav .dropdown-toggle::before {
    display: none;
}

.navbar-nav .dropdown-toggle::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: 3px;
    border: 0;
    content: "\F282";
    background: none;
    font-family: "bootstrap-icons";
    font-size: 10px;
    transform: none;
}

/* ====== DROPDOWN ====== */
.custom-dropdown {
    width: 340px;
    margin-top: 0 !important;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(17, 18, 22, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border-radius: 12px;
    white-space: normal;
    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.custom-dropdown .dropdown-item:hover {
    background: #f5f4ef;
    transform: translateX(3px);
}

.dropdown-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border: 1px solid rgba(210, 160, 47, 0.28);
    border-radius: 10px;
    color: var(--color-accent-dark);
    font-size: 17px;
}

.custom-dropdown .dropdown-item>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.custom-dropdown strong {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
}

.custom-dropdown small {
    color: var(--color-text-light);
    font-size: 11px;
    line-height: 1.5;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-login {
    position: relative;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
}

.header-login::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.header-login:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========================================
   PRIMARY BUTTON
======================================== */
.btn-primary-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 20px;
    overflow: hidden;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    transition:
        color var(--transition-normal),
        border-color var(--transition-normal);
}

.btn-primary-custom::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--color-accent);
    transform: translateY(102%);
    transition: transform var(--transition-normal);
}

.btn-primary-custom span,
.btn-primary-custom i {
    position: relative;
    z-index: 1;
}

.btn-primary-custom i {
    font-size: 15px;
    transition: transform var(--transition-fast);
}

.btn-primary-custom:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary-custom:hover::before {
    transform: translateY(0);
}

.btn-primary-custom:hover i {
    transform: translate(3px, -3px);
}

/* ========================================
   MOBILE TOGGLER
======================================== */
.custom-toggler {
    width: 46px;
    height: 46px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    background: var(--color-primary);
    border: 0;
    border-radius: 10px;
    box-shadow: none !important;
}

.toggler-line {
    width: 19px;
    height: 1.5px;
    display: block;
    background: var(--color-white);
    transition:
        transform var(--transition-fast),
        width var(--transition-fast);
}

/* ========================================
   HEADER LOGIN BUTTON
======================================== */
.login-modal-button {
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}


/* ========================================
   LOGIN MODAL
======================================== */
.login-modal {
    --bs-modal-width: 490px;
}

.login-modal .modal-dialog {
    padding: 18px;
}

.login-modal-content {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background:
        linear-gradient(145deg,
            rgba(31, 32, 38, 0.99),
            rgba(9, 10, 13, 1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.login-modal-content::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.login-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.login-modal-close:hover {
    background: rgba(210, 160, 47, 0.13);
    color: var(--color-accent);
    transform: rotate(90deg);
}

/* Modal Header */
.login-modal-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    text-align: center;
}

.login-modal-logo {
    width: 160px;
    margin: 0 auto 24px;
}

.login-modal-logo img {
    filter: brightness(0) invert(1);
}

.login-modal-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.login-modal-header h2 {
    margin-bottom: 11px;
    color: var(--color-white);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.login-modal-header p {
    max-width: 360px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    line-height: 1.7;
}

/* Login Form */
.login-modal-form {
    position: relative;
    z-index: 2;
}

.login-form-group {
    margin-bottom: 18px;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 700;
}

.login-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forgot-password-link {
    margin-bottom: 8px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrapper>i {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.login-input-wrapper input {
    width: 100%;
    height: 52px;
    padding: 0 46px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    outline: none;
    color: var(--color-white);
    font-size: 10px;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.login-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.login-input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(210, 160, 47, 0.52);
    box-shadow: 0 0 0 4px rgba(210, 160, 47, 0.08);
}

.password-toggle {
    position: absolute;
    right: 11px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.32);
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--color-accent);
}

.login-error-message {
    display: none;
    margin-top: 7px;
    color: #f2a7a7;
    font-size: 10px;
}

.login-form-group.has-error .login-error-message {
    display: block;
}

.login-form-group.has-error .login-input-wrapper input {
    border-color: rgba(242, 167, 167, 0.6);
}

/* Checkbox */
.login-options-row {
    margin-bottom: 22px;
}

.login-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    cursor: pointer;
}

.login-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.login-checkbox-mark {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    color: transparent;
    font-size: 10px;
}

.login-checkbox input:checked+.login-checkbox-mark {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.login-checkbox>span:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Submit */
.login-submit-button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 11px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.login-submit-button:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.login-submit-button i {
    transition: transform var(--transition-fast);
}

.login-submit-button:hover i {
    transform: translateX(4px);
}

/* Modal Footer */
.login-modal-footer {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.login-modal-footer p {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 12px;
}

.login-modal-footer p a {
    color: var(--color-accent);
    font-weight: 700;
}

.login-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
}

.login-security-note i {
    color: var(--color-accent);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 70px) 0 85px;
    overflow: hidden;
    background: var(--color-background);
}

.hero-row {
    position: relative;
    z-index: 5;
    min-height: 700px;
}

/* HERO BACKGROUND */
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(17, 18, 22, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(17, 18, 22, 0.035) 1px,
            transparent 1px);
    background-size: 55px 55px;
    mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7),
            transparent 93%);
    -webkit-mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7),
            transparent 93%);
}

.hero-glow {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-one {
    top: 6%;
    right: -160px;
    background: rgba(210, 160, 47, 0.12);
}

.hero-glow-two {
    bottom: -240px;
    left: -170px;
    background: rgba(17, 18, 22, 0.07);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 690px;
    padding-right: 35px;
}

.hero-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--color-accent);
    border-radius: 50%;
}

.eyebrow-dot::after {
    position: absolute;
    inset: -5px;
    content: "";
    border: 1px solid rgba(210, 160, 47, 0.42);
    border-radius: 50%;
    animation: eyebrowPulse 2s ease-out infinite;
}

@keyframes eyebrowPulse {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.hero-title {
    max-width: 720px;
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: clamp(54px, 5.7vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--color-accent-dark);
}

.hero-title-highlight::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 3px;
    height: 8px;
    content: "";
    opacity: 0.75;
    background-image:
        linear-gradient(90deg,
            transparent,
            var(--color-accent),
            transparent);
    transform: scaleX(0.88);
    filter: blur(8px);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--color-text-light);
    font-size: 17px;
    line-height: 1.8;
}

/* HERO ACTIONS */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 45px;
}

.hero-primary-button {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 10px 0 24px;
    overflow: hidden;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 13px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast);
}

.hero-primary-button::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--color-accent);
    transform: translateX(-101%);
    transition: transform 0.45s ease;
}

.hero-primary-button>span {
    position: relative;
    z-index: 2;
}

.hero-primary-button .button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.hero-primary-button:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.hero-primary-button:hover::before {
    transform: translateX(0);
}

.hero-primary-button:hover .button-icon {
    background: rgba(17, 18, 22, 0.12);
    transform: rotate(45deg);
}

.hero-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}

.play-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 19px;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.hero-secondary-button:hover .play-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.08);
}

/* HERO TRUST */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    color: var(--color-primary);
    font-size: 19px;
    font-weight: 800;
}

.trust-item span {
    color: var(--color-text-light);
    font-size: 11px;
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: var(--color-border-dark);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    max-width: 680px;
    margin-left: auto;
    perspective: 1200px;
}

.network-panel {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(30, 31, 36, 0.98),
            rgba(10, 11, 14, 1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow:
        0 40px 100px rgba(17, 18, 22, 0.18);
    transform: rotateY(-3deg) rotateX(1deg);
    transition: transform 0.25s ease-out;
}

.network-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 75% 20%,
            rgba(210, 160, 47, 0.16),
            transparent 28%);
    pointer-events: none;
}

.network-panel-header {
    position: relative;
    z-index: 4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.network-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(210, 160, 47, 0.12);
    animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
    50% {
        box-shadow: 0 0 0 11px rgba(210, 160, 47, 0);
    }
}

.network-region {
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.network-canvas {
    position: relative;
    min-height: 540px;
}

.network-canvas::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 42px 42px;
    mask-image:
        radial-gradient(circle at center,
            #000 20%,
            transparent 78%);
    -webkit-mask-image:
        radial-gradient(circle at center,
            #000 20%,
            transparent 78%);
}

/* NETWORK SVG LINES */
.network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.route-line {
    fill: none;
    stroke: rgba(210, 160, 47, 0.28);
    stroke-width: 1.4;
    stroke-dasharray: 7 8;
    animation: routeDash 12s linear infinite;
}

.route-line-two {
    animation-duration: 15s;
}

.route-line-three {
    animation-duration: 17s;
}

.route-line-four {
    animation-duration: 14s;
}

@keyframes routeDash {
    to {
        stroke-dashoffset: -120;
    }
}

.route-particle {
    fill: var(--color-accent);
    filter: drop-shadow(0 0 7px rgba(210, 160, 47, 0.95));
}

.route-particle-one {
    offset-path:
        path("M105 115 C210 115, 215 250, 310 250");
    animation: moveParticle 4.5s linear infinite;
}

.route-particle-two {
    offset-path:
        path("M515 110 C410 110, 420 250, 310 250");
    animation: moveParticle 5.3s linear infinite 1s;
}

.route-particle-three {
    offset-path:
        path("M105 390 C220 390, 215 250, 310 250");
    animation: moveParticle 5s linear infinite 2s;
}

.route-particle-four {
    offset-path:
        path("M515 390 C405 390, 410 250, 310 250");
    animation: moveParticle 4.8s linear infinite 0.5s;
}

@keyframes moveParticle {
    from {
        offset-distance: 0%;
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    to {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* MESSAGE NODES */
.message-node {
    position: absolute;
    z-index: 3;
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: nodeFloat 4.5s ease-in-out infinite;
}

.sms-node {
    top: 55px;
    left: 24px;
}

.whatsapp-node {
    top: 50px;
    right: 25px;
    animation-delay: 0.8s;
}

.rcs-node {
    bottom: 80px;
    left: 24px;
    animation-delay: 1.4s;
}

.verification-node {
    right: 25px;
    bottom: 80px;
    animation-delay: 2s;
}

@keyframes nodeFloat {
    50% {
        transform: translateY(-7px);
    }
}

.node-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border: 1px solid rgba(210, 160, 47, 0.22);
    border-radius: 10px;
    color: var(--color-accent);
    font-size: 16px;
}

.node-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.node-content strong {
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
}

.node-content span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 500;
}

/* CENTRAL PLATFORM NODE */
.central-platform-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.central-node-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(210, 160, 47, 0.22);
    border-radius: 50%;
    animation: centralRing 3s ease-out infinite;
}

.central-ring-two {
    animation-delay: 1.5s;
}

@keyframes centralRing {
    0% {
        opacity: 0.9;
        transform: scale(0.58);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.central-node-content {
    position: relative;
    z-index: 3;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background:
        linear-gradient(145deg,
            rgba(210, 160, 47, 0.95),
            rgba(176, 126, 23, 0.95));
    border: 6px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 45px rgba(210, 160, 47, 0.24);
}

.central-node-logo {
    display: flex;
    gap: 3px;
    margin-bottom: 2px;
}

.central-node-logo span {
    width: 15px;
    height: 3px;
    display: block;
    background: var(--color-primary);
}

.central-node-content strong {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.central-node-content small {
    color: rgba(17, 18, 22, 0.65);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    z-index: 7;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.delivery-card {
    top: 150px;
    right: -20px;
    min-width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.floating-card-icon.success {
    background: rgba(210, 160, 47, 0.14);
    color: var(--color-accent-dark);
}

.delivery-card>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.delivery-card span {
    color: var(--color-text-light);
    font-size: 12px;
}

.delivery-card strong {
    color: var(--color-primary);
    font-size: 11px;
}

.delivery-card small {
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 700;
}

@keyframes cardFloat {
    50% {
        transform: translateY(-9px);
    }
}

.otp-card {
    bottom: 18px;
    left: 50%;
    width: 235px;
    padding: 15px;
    transform: translateX(-50%);
    animation: otpCardFloat 4.5s ease-in-out infinite;
}

@keyframes otpCardFloat {
    50% {
        transform: translate(-50%, -7px);
    }
}

.otp-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 600;
}

.otp-card-top i {
    color: var(--color-accent-dark);
    font-size: 14px;
}

.otp-code {
    display: flex;
    gap: 7px;
}

.otp-code span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f4ef;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.otp-progress {
    height: 3px;
    margin-top: 13px;
    overflow: hidden;
    background: #ebe9e2;
    border-radius: 100px;
}

.otp-progress span {
    width: 70%;
    height: 100%;
    display: block;
    background: var(--color-accent);
    border-radius: inherit;
    animation: otpProgress 3.5s linear infinite;
}

@keyframes otpProgress {
    from {
        width: 100%;
    }

    to {
        width: 10%;
    }
}

/* MESSAGE ACTIVITY */
.message-activity {
    position: absolute;
    bottom: 25px;
    left: 22px;
    z-index: 4;
    width: 175px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.activity-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

.message-activity strong {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--color-white);
    font-size: 16px;
}

.message-activity small {
    color: var(--color-accent);
    font-size: 12px;
}

.activity-bars {
    height: 34px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 11px;
}

.activity-bars span {
    width: 100%;
    height: var(--bar-height);
    display: block;
    background:
        linear-gradient(to top,
            rgba(210, 160, 47, 0.35),
            var(--color-accent));
    border-radius: 2px 2px 0 0;
    animation: barActivity 1.8s ease-in-out infinite alternate;
}

.activity-bars span:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-bars span:nth-child(3) {
    animation-delay: 0.5s;
}

.activity-bars span:nth-child(4) {
    animation-delay: 0.1s;
}

.activity-bars span:nth-child(5) {
    animation-delay: 0.7s;
}

.activity-bars span:nth-child(6) {
    animation-delay: 0.3s;
}

.activity-bars span:nth-child(7) {
    animation-delay: 0.8s;
}

.activity-bars span:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes barActivity {
    to {
        height: calc(var(--bar-height) * 0.62);
        opacity: 0.55;
    }
}

/* SECURITY BADGE */
.hero-security-badge {
    position: absolute;
    right: 35px;
    bottom: -36px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(17, 18, 22, 0.1);
    animation: securityFloat 4.3s ease-in-out infinite;
}

@keyframes securityFloat {
    50% {
        transform: translateY(-6px);
    }
}

.security-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border-radius: 10px;
    color: var(--color-accent-dark);
}

.hero-security-badge>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-security-badge strong {
    color: var(--color-primary);
    font-size: 10px;
}

.hero-security-badge span {
    color: var(--color-text-light);
    font-size: 12px;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-line {
    position: relative;
    width: 45px;
    height: 1px;
    overflow: hidden;
    background: var(--color-border-dark);
}

.scroll-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background: var(--color-accent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    from {
        transform: translateX(-18px);
    }

    to {
        transform: translateX(48px);
    }
}

/* HERO REVEAL */
.hero-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

body.hero-ready .hero-reveal {
    opacity: 1;
    transform: translateY(0);
}

body.hero-ready .hero-title {
    transition-delay: 0.12s;
}

body.hero-ready .hero-description {
    transition-delay: 0.22s;
}

body.hero-ready .hero-actions {
    transition-delay: 0.32s;
}

body.hero-ready .hero-trust {
    transition-delay: 0.42s;
}

body.hero-ready .hero-visual {
    transition-delay: 0.18s;
}

/* ========================================
   TRUSTED INFRASTRUCTURE STRIP
======================================== */
.infrastructure-strip {
    position: relative;
    z-index: 10;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.infrastructure-strip-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.infrastructure-intro {
    flex: 0 0 auto;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.infrastructure-intro span {
    max-width: 190px;
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.infrastructure-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.infrastructure-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.infrastructure-item i {
    color: var(--color-accent);
    font-size: 16px;
}

.infrastructure-item:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ========================================
   MESSAGE JOURNEY SECTION
======================================== */
.message-journey-section {
    position: relative;
    padding: 120px 0 145px;
    overflow: hidden;
    background: #f4f3ef;
}

.journey-background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(17, 18, 22, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(17, 18, 22, 0.035) 1px,
            transparent 1px);
    background-size: 52px 52px;
    mask-image:
        linear-gradient(to bottom,
            transparent,
            #000 18%,
            #000 82%,
            transparent);
    -webkit-mask-image:
        linear-gradient(to bottom,
            transparent,
            #000 18%,
            #000 82%,
            transparent);
}

.journey-orbit {
    position: absolute;
    border: 1px solid rgba(210, 160, 47, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.journey-orbit-one {
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
}

.journey-orbit-two {
    bottom: -350px;
    left: -300px;
    width: 760px;
    height: 760px;
}

/* SECTION HEADING */
.section-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 70px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--color-accent-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker span {
    width: 22px;
    height: 1px;
    display: block;
    background: var(--color-accent);
}

.section-heading h2 {
    max-width: 900px;
    margin: 0 auto 24px;
    color: var(--color-primary);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.section-heading h2 span {
    color: var(--color-accent-dark);
}

.section-heading p {
    max-width: 690px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* JOURNEY WRAPPER */
.message-journey-wrapper {
    position: relative;
    z-index: 4;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 18, 22, 0.08);
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(17, 18, 22, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.journey-console-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.68);
    border-bottom: 1px solid var(--color-border);
}

.journey-console-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
}

.console-status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(210, 160, 47, 0.12);
    animation: consolePulse 2s ease-in-out infinite;
}

@keyframes consolePulse {
    50% {
        box-shadow: 0 0 0 11px rgba(210, 160, 47, 0);
    }
}

.journey-console-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text-light);
    font-size: 10px;
}

.journey-console-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.journey-console-meta strong {
    padding: 7px 10px;
    background: rgba(210, 160, 47, 0.1);
    border: 1px solid rgba(210, 160, 47, 0.22);
    border-radius: 7px;
    color: var(--color-accent-dark);
    font-size: 10px;
}

/* DESKTOP JOURNEY */
.message-journey-desktop {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 90px 26px 75px;
}

.journey-route-line {
    position: absolute;
    top: 165px;
    right: 9%;
    left: 9%;
    z-index: 1;
    height: 2px;
    background: var(--color-border);
}

.journey-route-line::before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background-image:
        linear-gradient(90deg,
            var(--color-border-dark) 50%,
            transparent 50%);
    background-size: 10px 1px;
    transform: translateY(-50%);
}

.journey-route-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(210, 160, 47, 0.5);
    transition: width 0.7s ease;
}

.journey-packet {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 4;
    transform: translate(-50%, -50%);
    transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-packet-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 12px;
    box-shadow:
        0 8px 22px rgba(17, 18, 22, 0.22),
        0 0 0 6px rgba(210, 160, 47, 0.12);
    transform: rotate(45deg);
}

/* JOURNEY STEP */
.journey-step {
    position: relative;
    z-index: 3;
    min-height: 310px;
    padding: 0 10px;
    text-align: center;
    opacity: 0.48;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.journey-step.is-active {
    opacity: 1;
    transform: translateY(-8px);
}

.journey-step.is-complete {
    opacity: 0.78;
}

.journey-step-number {
    position: absolute;
    top: -58px;
    left: 50%;
    color: rgb(17 18 22 / 57%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    transform: translateX(-50%);
}

.journey-step-icon {
    position: relative;
    z-index: 4;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 60px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text-light);
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(17, 18, 22, 0.06);
    transition:
        background 0.5s ease,
        border-color 0.5s ease,
        color 0.5s ease,
        transform 0.5s ease;
}

.journey-step.is-active .journey-step-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-accent);
    transform: scale(1.08);
    box-shadow:
        0 16px 34px rgba(17, 18, 22, 0.16),
        0 0 0 7px rgba(210, 160, 47, 0.1);
}

.journey-step.is-complete .journey-step-icon {
    border-color: rgba(210, 160, 47, 0.46);
    color: var(--color-accent-dark);
}

.journey-step-content {
    min-height: 162px;
}

.journey-step-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey-step h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 800;
}

.journey-step p {
    max-width: 190px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 11px;
    line-height: 1.75;
}

.journey-step-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 7px 10px;
    background: #f5f4ef;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 700;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
}

.journey-step-status span {
    width: 6px;
    height: 6px;
    background: var(--color-border-dark);
    border-radius: 50%;
}

.journey-step.is-active .journey-step-status {
    background: rgba(210, 160, 47, 0.11);
    border-color: rgba(210, 160, 47, 0.3);
    color: var(--color-accent-dark);
}

.journey-step.is-active .journey-step-status span {
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(210, 160, 47, 0.12);
}

/* MOBILE JOURNEY */
.message-journey-mobile {
    position: relative;
    display: none;
    padding: 45px 22px;
}

.mobile-journey-line {
    position: absolute;
    top: 69px;
    bottom: 69px;
    left: 43px;
    width: 2px;
    overflow: hidden;
    background: var(--color-border);
}

.mobile-journey-line span {
    width: 100%;
    height: 0;
    display: block;
    background: var(--color-accent);
    transition: height 0.7s ease;
}

.mobile-journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding-bottom: 38px;
    opacity: 0.45;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.mobile-journey-step:last-child {
    padding-bottom: 0;
}

.mobile-journey-step.is-active {
    opacity: 1;
    transform: translateX(5px);
}

.mobile-journey-step.is-complete {
    opacity: 0.75;
}

.mobile-step-marker {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-light);
    font-size: 16px;
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease;
}

.mobile-journey-step.is-active .mobile-step-marker {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(210, 160, 47, 0.1);
}

.mobile-step-content span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-step-content h3 {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 800;
}

.mobile-step-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 11px;
    line-height: 1.7;
}

/* JOURNEY FOOTER */
.journey-console-footer {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 15px 28px;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-message-preview,
.journey-delivery-result {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-preview-icon,
.delivery-result-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
}

.message-preview-icon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--color-accent);
}

.delivery-result-icon {
    background: rgba(210, 160, 47, 0.13);
    border: 1px solid rgba(210, 160, 47, 0.24);
    color: var(--color-accent);
}

.journey-message-preview>div:last-child,
.journey-delivery-result>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.journey-console-footer span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
}

.journey-console-footer strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px;
    font-weight: 700;
}


/* ========================================
   GENERAL SCROLL REVEAL
======================================== */
/* Content remains visible even if JavaScript fails */
.reveal-element {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* Hide only after JavaScript confirms it is running */
html.js-enabled .reveal-element {
    opacity: 0;
    transform: translateY(35px);
}

html.js-enabled .reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PRODUCTS SECTION
======================================== */
.products-section {
    position: relative;
    padding: 145px 0;
    overflow: hidden;
    background: var(--color-primary);
}

.products-background-text {
    position: absolute;
    top: 55px;
    left: 50%;
    color: rgba(255, 255, 255, 0.018);
    font-size: clamp(170px, 22vw, 370px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
}

.products-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.products-glow-one {
    top: -220px;
    right: -170px;
    width: 480px;
    height: 480px;
    background: rgba(210, 160, 47, 0.14);
}

.products-glow-two {
    bottom: -260px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.035);
}

/* PRODUCTS HEADING */
.products-heading-row {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 90px;
    margin-bottom: 70px;
}

.products-kicker {
    color: var(--color-accent);
}

.products-heading-content h2 {
    max-width: 760px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.products-heading-content h2 span {
    display: block;
    color: var(--color-accent);
}

.products-heading-description {
    padding-bottom: 6px;
}

.products-heading-description p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
}

.products-heading-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
}

.products-heading-link i {
    color: var(--color-accent);
    transition: transform var(--transition-fast);
}

.products-heading-link:hover {
    color: var(--color-white);
}

.products-heading-link:hover i {
    transform: translate(4px, -4px);
}

/* PRODUCTS EXPERIENCE */
.products-experience {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
}

/* PRODUCTS NAVIGATION */
.products-navigation {
    padding: 15px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.products-navigation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 20px;
}

.products-navigation-header span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 700;
}

.products-navigation-header small {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-nav-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 27px 42px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 11px;
    padding: 14px 12px;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-fast);
}

.product-nav-item+.product-nav-item {
    margin-top: 5px;
}

.product-nav-item::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    content: "";
    background: var(--color-accent);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transition:
        opacity var(--transition-normal),
        transform var(--transition-normal);
}

.product-nav-item:hover {
    background: rgba(255, 255, 255, 0.035);
}

.product-nav-item.is-active {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.09);
}

.product-nav-item.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

.product-nav-index {
    color: rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-nav-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        color var(--transition-normal);
}

.product-nav-item.is-active .product-nav-icon {
    background: rgba(210, 160, 47, 0.13);
    border-color: rgba(210, 160, 47, 0.26);
    color: var(--color-accent);
}

.product-nav-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-nav-content strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
}

.product-nav-content small {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    line-height: 1.4;
}

.product-nav-arrow {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.product-nav-item.is-active .product-nav-arrow {
    color: var(--color-accent);
    transform: translateX(3px);
}

/* PRODUCT PREVIEW PANEL */
.product-preview-panel {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(32, 33, 39, 0.97),
            rgba(12, 13, 16, 1));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 26px;
    transition: opacity 0.25s ease;
}

.product-preview-panel.is-changing {
    opacity: 0.45;
}

.product-preview-grid {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 43px 43px;
    mask-image:
        radial-gradient(circle at 65% 50%,
            #000 15%,
            transparent 72%);
    -webkit-mask-image:
        radial-gradient(circle at 65% 50%,
            #000 15%,
            transparent 72%);
}

.product-preview-orbit {
    position: absolute;
    border: 1px solid rgba(210, 160, 47, 0.11);
    border-radius: 50%;
}

.orbit-one {
    top: 90px;
    right: -160px;
    width: 470px;
    height: 470px;
}

.orbit-two {
    right: 80px;
    bottom: -260px;
    width: 560px;
    height: 560px;
}


/* PRODUCT PREVIEW HEADER */
.product-preview-header {
    position: relative;
    z-index: 4;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-live-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
}

.preview-live-dot {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(210, 160, 47, 0.1);
    animation: previewStatusPulse 1.8s ease-in-out infinite;
}

@keyframes previewStatusPulse {
    50% {
        box-shadow: 0 0 0 11px rgba(210, 160, 47, 0);
    }
}

.preview-product-code {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* PRODUCT PREVIEW CONTENT */
.product-preview-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(390px, 1.2fr);
    align-items: center;
    gap: 35px;
    min-height: 565px;
    padding: 55px 45px;
}

.product-preview-information {
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.product-preview-panel.is-changing .product-preview-information {
    opacity: 0;
    transform: translateY(10px);
}

.product-preview-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    background: rgba(210, 160, 47, 0.13);
    border: 1px solid rgba(210, 160, 47, 0.24);
    border-radius: 15px;
    color: var(--color-accent);
    font-size: 20px;
}

.product-preview-label {
    display: block;
    margin-bottom: 11px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-preview-information h3 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.product-preview-information>p {
    max-width: 470px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.85;
}

.product-feature-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 600;
}

.product-feature-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 11px;
}

.product-preview-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.product-preview-button:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.product-preview-button i {
    transition: transform var(--transition-fast);
}

.product-preview-button:hover i {
    transform: translate(3px, -3px);
}


/* PRODUCT INTERFACE VISUAL */
.product-interface-visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-device {
    position: relative;
    z-index: 4;
    width: 285px;
    min-height: 500px;
    overflow: hidden;
    background: #f4f3ef;
    border: 7px solid #050608;
    border-radius: 38px;
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.38);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.product-preview-panel.is-changing .product-device {
    opacity: 0.45;
    transform: scale(0.97);
}

.device-top-bar {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #f4f3ef;
    color: #101116;
    font-size: 12px;
    font-weight: 800;
}

.device-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.device-screen {
    min-height: 450px;
    padding: 19px 16px;
    background:
        linear-gradient(to bottom,
            #f7f6f2,
            #eceae3);
}

.device-brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.device-brand-logo {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 11px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 800;
}

.device-brand-header>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.device-brand-header strong {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
}

.device-brand-header span {
    color: #8c8d92;
    font-size: 10px;
}

.device-message-card {
    padding: 16px;
    background: var(--color-white);
    border: 1px solid #deddd7;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(17, 18, 22, 0.07);
}

.device-message-time {
    display: block;
    margin-bottom: 11px;
    color: #96979c;
    font-size: 10px;
}

.device-message-card p {
    margin: 0;
    color: #25262b;
    font-size: 10px;
    line-height: 1.7;
}

.device-message-card p strong {
    color: var(--color-accent-dark);
    font-size: 13px;
}

.device-message-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #ebeae6;
    color: #a0a1a6;
    font-size: 10px;
}

.device-message-footer i {
    color: var(--color-accent-dark);
    font-size: 11px;
}

.device-action-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.device-action-preview button {
    min-height: 38px;
    background: var(--color-white);
    border: 1px solid #deddd7;
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
}

/* PRODUCT FLOATING CARDS */
.product-data-card {
    position: absolute;
    z-index: 6;
    padding: 13px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 13px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.delivery-rate-card {
    top: 85px;
    left: -5px;
    width: 145px;
    animation: productFloat 4s ease-in-out infinite;
}

.delivery-rate-card>span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text-light);
    font-size: 10px;
}

.delivery-rate-card strong {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 800;
}

.data-card-progress {
    height: 4px;
    margin-top: 10px;
    overflow: hidden;
    background: #e9e7df;
    border-radius: 50px;
}

.data-card-progress span {
    height: 100%;
    display: block;
    background: var(--color-accent);
    border-radius: inherit;
    transition: width 0.5s ease;
}

.delivery-speed-card {
    right: -5px;
    bottom: 90px;
    min-width: 165px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: productFloat 4.7s ease-in-out infinite 0.7s;
}

.delivery-speed-icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.13);
    border-radius: 10px;
    color: var(--color-accent-dark);
}

.delivery-speed-card>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.delivery-speed-card span {
    color: var(--color-text-light);
    font-size: 10px;
}

.delivery-speed-card strong {
    color: var(--color-primary);
    font-size: 10px;
}

@keyframes productFloat {
    50% {
        transform: translateY(-8px);
    }

}

.product-analytics-card {
    position: absolute;
    right: 12px;
    top: 45px;
    z-index: 5;
    width: 140px;
    padding: 13px;
    background: rgba(17, 18, 22, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.analytics-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.analytics-card-header span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
}

.analytics-card-header small {
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

.analytics-bars {
    height: 44px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.analytics-bars span {
    width: 100%;
    height: var(--activity-height);
    background:
        linear-gradient(to top,
            rgba(210, 160, 47, 0.35),
            var(--color-accent));
    border-radius: 2px 2px 0 0;
    animation: productBarMove 1.8s ease-in-out infinite alternate;
}

.analytics-bars span:nth-child(2) {
    animation-delay: 0.3s;
}

.analytics-bars span:nth-child(3) {
    animation-delay: 0.5s;
}

.analytics-bars span:nth-child(4) {
    animation-delay: 0.15s;
}

.analytics-bars span:nth-child(5) {
    animation-delay: 0.75s;
}

.analytics-bars span:nth-child(6) {
    animation-delay: 0.25s;
}

.analytics-bars span:nth-child(7) {
    animation-delay: 0.65s;
}

.analytics-bars span:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes productBarMove {
    to {
        height: calc(var(--activity-height) * 0.58);
        opacity: 0.52;
    }

}

/* PRODUCT PREVIEW FOOTER */
.product-preview-footer {
    position: relative;
    z-index: 5;
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-preview-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-preview-stat span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-preview-stat strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
}

.preview-stat-divider {
    width: 1px;
    height: 29px;
    margin: 0 28px;
    background: rgba(255, 255, 255, 0.09);
}

/* ========================================
   ENTERPRISE TRUST SECTION
======================================== */
.enterprise-trust-section {
    position: relative;
    padding: 145px 0;
    overflow: hidden;
    background: #f4f3ef;
}

.enterprise-trust-grid {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(17, 18, 22, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(17, 18, 22, 0.035) 1px,
            transparent 1px);
    background-size: 52px 52px;
    mask-image:
        linear-gradient(to bottom,
            transparent,
            #000 14%,
            #000 86%,
            transparent);
    -webkit-mask-image:
        linear-gradient(to bottom,
            transparent,
            #000 14%,
            #000 86%,
            transparent);
}

.enterprise-trust-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.trust-glow-one {
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: rgba(210, 160, 47, 0.14);
}

.trust-glow-two {
    bottom: -240px;
    left: -200px;
    width: 560px;
    height: 560px;
    background: rgba(17, 18, 22, 0.07);
}

.enterprise-trust-row {
    position: relative;
    z-index: 4;
}

/* ENTERPRISE TRUST CONTENT */
.enterprise-trust-content {
    max-width: 610px;
    padding-right: 35px;
}

.enterprise-trust-content h2 {
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.enterprise-trust-content h2 span {
    display: block;
    color: var(--color-accent-dark);
}

.enterprise-trust-content>p {
    max-width: 560px;
    margin-bottom: 35px;
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ENTERPRISE TRUST LIST */
.enterprise-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.enterprise-trust-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal);
}

.enterprise-trust-item:hover {
    background: var(--color-white);
    border-color: rgba(210, 160, 47, 0.4);
    transform: translateX(6px);
}

.enterprise-trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.11);
    border: 1px solid rgba(210, 160, 47, 0.24);
    border-radius: 12px;
    color: var(--color-accent-dark);
    font-size: 18px;
}

.enterprise-trust-item>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.enterprise-trust-item strong {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
}

.enterprise-trust-item span {
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.6;
}

/* ENTERPRISE TRUST ACTIONS */
.enterprise-trust-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.enterprise-trust-primary-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 20px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 11px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.enterprise-trust-primary-button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.enterprise-trust-primary-button i {
    transition: transform var(--transition-fast);
}

.enterprise-trust-primary-button:hover i {
    transform: translate(3px, -3px);
}

.enterprise-trust-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
}

.enterprise-trust-secondary-link i {
    color: var(--color-accent-dark);
    transition: transform var(--transition-fast);
}

.enterprise-trust-secondary-link:hover {
    color: var(--color-primary);
}

.enterprise-trust-secondary-link:hover i {
    transform: translateX(4px);
}

/* ENTERPRISE TRUST VISUAL */
.enterprise-trust-visual {
    position: relative;
    max-width: 760px;
    margin-left: auto;
}

.trust-dashboard {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(31, 32, 38, 0.98),
            rgba(9, 10, 13, 1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 27px;
    box-shadow: 0 40px 95px rgba(17, 18, 22, 0.2);
}

.trust-dashboard::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 42px 42px;
    mask-image:
        radial-gradient(circle at 70% 40%,
            #000 18%,
            transparent 72%);
    -webkit-mask-image:
        radial-gradient(circle at 70% 40%,
            #000 18%,
            transparent 72%);
}

/* TRUST DASHBOARD HEADER */
.trust-dashboard-header {
    position: relative;
    z-index: 3;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(210, 160, 47, 0.12);
    animation: trustStatusPulse 2s ease-in-out infinite;
}

@keyframes trustStatusPulse {
    50% {
        box-shadow: 0 0 0 12px rgba(210, 160, 47, 0);
    }

}

.trust-dashboard-title>div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-dashboard-title strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 700;
}

.trust-dashboard-title small {
    color: rgba(255, 255, 255, 0.33);
    font-size: 10px;
}

.trust-dashboard-status {
    padding: 8px 11px;
    background: rgba(210, 160, 47, 0.1);
    border: 1px solid rgba(210, 160, 47, 0.2);
    border-radius: 8px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

/* TRUST DASHBOARD CONTENT */
.trust-dashboard-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
}

.trust-uptime-panel,
.trust-security-panel,
.trust-route-panel {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* UPTIME PANEL */
.trust-uptime-panel {
    min-height: 255px;
    padding: 19px;
}

.trust-panel-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 600;
}

.trust-panel-label i {
    color: var(--color-accent);
}

.trust-uptime-value {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.trust-uptime-value strong {
    color: var(--color-white);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
}

.trust-uptime-value span {
    margin-top: 5px;
    margin-left: 3px;
    color: var(--color-accent);
    font-size: 15px;
    font-weight: 800;
}

.trust-uptime-chart {
    height: 78px;
}

.trust-uptime-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trust-chart-area {
    fill: url("#uptimeGradient");
}

.trust-chart-line {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 7px rgba(210, 160, 47, 0.45));
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawTrustChart 2.5s ease forwards;
}

@keyframes drawTrustChart {
    to {
        stroke-dashoffset: 0;
    }
}

.trust-uptime-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.trust-uptime-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

.trust-uptime-footer small {
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
}

/* SECURITY PANEL */
.trust-security-panel {
    min-height: 255px;
    padding: 18px;
}

.trust-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
}

.trust-panel-heading>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-panel-heading span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.trust-panel-heading strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 700;
}

.trust-panel-heading>small {
    color: rgba(255, 255, 255, 0.24);
    font-size: 10px;
}

.trust-security-shield {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border: 1px solid rgba(210, 160, 47, 0.23);
    border-radius: 10px;
    color: var(--color-accent);
    font-size: 15px;
}

.trust-security-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-security-item {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 10px;
}

.security-check {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.11);
    border-radius: 8px;
    color: var(--color-accent);
    font-size: 11px;
}

.trust-security-item>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-security-item strong {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

.trust-security-item small {
    color: rgba(255, 255, 255, 0.27);
    font-size: 10px;
}

.security-state {
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

/* ROUTE PANEL */
.trust-route-panel {
    grid-column: 1 / -1;
    padding: 18px;
}

.trust-route-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.trust-route-item {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) 52px auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 11px;
}

.trust-country-code {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.11);
    border: 1px solid rgba(210, 160, 47, 0.18);
    border-radius: 9px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 800;
}

.trust-route-information {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-route-information strong {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.trust-route-information span {
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
}

.trust-route-bars {
    height: 23px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.trust-route-bars span {
    width: 100%;
    height: 45%;
    display: block;
    background: var(--color-accent);
    border-radius: 2px 2px 0 0;
    animation: trustRouteBar 1.4s ease-in-out infinite alternate;
}

.trust-route-bars span:nth-child(2) {
    height: 68%;
    animation-delay: 0.2s;
}

.trust-route-bars span:nth-child(3) {
    height: 84%;
    animation-delay: 0.4s;
}

.trust-route-bars span:nth-child(4) {
    height: 62%;
    animation-delay: 0.6s;
}

@keyframes trustRouteBar {
    to {
        height: 28%;
        opacity: 0.45;
    }
}

.trust-route-state {
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

/* DASHBOARD FOOTER */
.trust-dashboard-footer {
    position: relative;
    z-index: 3;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-dashboard-footer>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-dashboard-footer span {
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
}

.trust-dashboard-footer strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.trust-dashboard-footer-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

.trust-dashboard-footer-status span {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(210, 160, 47, 0.1);
}

/* FLOATING TRUST BADGES */
.trust-monitoring-badge {
    position: absolute;
    right: -20px;
    bottom: 75px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: 0 20px 42px rgba(17, 18, 22, 0.14);
    animation: trustBadgeFloat 4.4s ease-in-out infinite;
}

.trust-monitoring-badge>div {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border-radius: 10px;
    color: var(--color-accent-dark);
}

.trust-monitoring-badge>span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-monitoring-badge strong {
    color: var(--color-primary);
    font-size: 12px;
}

.trust-monitoring-badge small {
    color: var(--color-text-light);
    font-size: 10px;
}

.trust-delivery-badge {
    position: absolute;
    top: 115px;
    left: -35px;
    z-index: 7;
    min-width: 145px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: 0 20px 42px rgba(17, 18, 22, 0.14);
    animation: trustBadgeFloat 4.8s ease-in-out infinite 0.6s;
}

.trust-delivery-badge>span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text-light);
    font-size: 10px;
}

.trust-delivery-badge strong {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 800;
}

.trust-delivery-badge strong i {
    color: var(--color-accent-dark);
    font-size: 12px;
}

@keyframes trustBadgeFloat {
    50% {
        transform: translateY(-8px);
    }
}

/* ENTERPRISE STATISTICS */
.enterprise-statistics {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    margin-top: 75px;
    padding: 30px 26px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(17, 18, 22, 0.07);
}

.enterprise-stat-item {
    text-align: center;
}

.enterprise-stat-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 7px;
}

.enterprise-stat-value strong {
    color: var(--color-primary);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.enterprise-stat-value span {
    margin-top: 2px;
    margin-left: 2px;
    color: var(--color-accent-dark);
    font-size: 13px;
    font-weight: 800;
}

.enterprise-stat-item p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 600;
}

.enterprise-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #f4f3ef;
}

.final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(17, 18, 22, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(17, 18, 22, 0.035) 1px,
            transparent 1px);
    background-size: 52px 52px;
}

.final-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.final-cta-glow-one {
    top: -190px;
    right: -160px;
    width: 470px;
    height: 470px;
    background: rgba(210, 160, 47, 0.13);
}

.final-cta-glow-two {
    bottom: -240px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: rgba(17, 18, 22, 0.06);
}

/* CTA WRAPPER */
.final-cta-wrapper {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 70px;
    min-height: 580px;
    padding: 75px;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(31, 32, 38, 0.99),
            rgba(8, 9, 12, 1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    box-shadow: 0 45px 110px rgba(17, 18, 22, 0.22);
}

.final-cta-wrapper::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);

    background-size: 44px 44px;
    mask-image:
        radial-gradient(circle at 75% 45%,
            #000 15%,
            transparent 72%);
    -webkit-mask-image:
        radial-gradient(circle at 75% 45%,
            #000 15%,
            transparent 72%);
}


/* CTA DECORATION */
.cta-orbit {
    position: absolute;
    border: 1px solid rgba(210, 160, 47, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.cta-orbit-one {
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
}

.cta-orbit-two {
    right: 150px;
    bottom: -330px;
    width: 680px;
    height: 680px;
}

.cta-packet {
    position: absolute;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border: 1px solid rgba(210, 160, 47, 0.22);
    border-radius: 12px;
    color: var(--color-accent);
    animation: ctaPacketFloat 5s ease-in-out infinite;
}

.cta-packet-one {
    top: 65px;
    right: 46%;
}

.cta-packet-two {
    bottom: 55px;
    left: 44%;
    animation-delay: 1.2s;
}

@keyframes ctaPacketFloat {
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* CTA CONTENT */
.final-cta-content {
    position: relative;
    z-index: 4;
    max-width: 680px;
}

.final-cta-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.final-cta-status-dot {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(210, 160, 47, 0.11);
    animation: finalCtaPulse 2s ease-in-out infinite;
}

@keyframes finalCtaPulse {
    50% {
        box-shadow: 0 0 0 11px rgba(210, 160, 47, 0);
    }
}

.final-cta-content h2 {
    margin-bottom: 25px;
    color: var(--color-white);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.final-cta-content h2 span {
    display: block;
    color: var(--color-accent);
}

.final-cta-content>p {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 14px;
    line-height: 1.8;
}

/* CTA ACTIONS */
.final-cta-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}

.final-cta-primary-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 10px 0 23px;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 13px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.final-cta-button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 18, 22, 0.1);
    border-radius: 9px;
    transition: transform var(--transition-fast);
}

.final-cta-primary-button:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.final-cta-primary-button:hover .final-cta-button-icon {
    transform: rotate(45deg);
}

.final-cta-secondary-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.final-cta-secondary-button i {
    color: var(--color-accent);
}

.final-cta-secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 160, 47, 0.35);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* CTA TRUST */
.final-cta-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px 24px;
}

.final-cta-trust>div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
}

.final-cta-trust i {
    color: var(--color-accent);
    font-size: 10px;
}

/* CTA VISUAL */
.final-cta-visual {
    position: relative;
    z-index: 4;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-network-card {
    position: relative;
    width: 100%;
    max-width: 510px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.cta-network-card-header {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-network-card-header>div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cta-live-dot {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(210, 160, 47, 0.11);
}

.cta-network-card-header strong {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

.cta-network-card-header small {
    padding: 6px 9px;
    background: rgba(210, 160, 47, 0.11);
    border: 1px solid rgba(210, 160, 47, 0.2);
    border-radius: 7px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
}

/* CTA NETWORK FLOW */
.cta-network-card-content {
    min-height: 220px;
    display: grid;
    grid-template-columns:
        minmax(85px, 1fr) minmax(45px, 0.5fr) minmax(100px, 1fr) minmax(45px, 0.5fr) minmax(85px, 1fr);
    align-items: center;
    padding: 34px 20px;
}

.cta-network-node {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    text-align: center;
}

.cta-network-node>div:first-child {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    color: var(--color-accent);
    font-size: 17px;
}

.cta-network-node>span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 600;
}

.cta-node-center {
    position: relative;
}

.cta-center-node-ring {
    position: absolute;
    width: 105px;
    height: 105px;
    border: 1px solid rgba(210, 160, 47, 0.22);
    border-radius: 50%;
    animation: ctaCenterPulse 3s ease-out infinite;
}

@keyframes ctaCenterPulse {
    from {
        opacity: 0.8;
        transform: scale(0.65);
    }

    to {
        opacity: 0;
        transform: scale(1.15);
    }
}

.cta-center-node-content {
    position: relative;
    z-index: 2;
    width: 75px !important;
    height: 75px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 3px;
    background: var(--color-accent) !important;
    border: 6px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 50% !important;
}

.cta-center-node-content span {
    width: 11px;
    height: 3px;
    display: block;
    background: var(--color-primary);
}

.cta-node-center strong {
    color: var(--color-white);
    font-size: 12px;
}

.cta-network-route {
    position: relative;
    height: 2px;
    background:
        repeating-linear-gradient(90deg,
            rgba(210, 160, 47, 0.4) 0 6px,
            transparent 6px 12px);
}

.cta-moving-packet {
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 12px;
    transform: translate(-50%, -50%);
    animation: ctaMovingPacket 2.8s linear infinite;
}

.second-packet {
    animation-delay: 1.2s;
}

@keyframes ctaMovingPacket {
    from {
        left: 0;
        opacity: 0;
    }

    15%,
    85% {
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }
}

/* CTA NETWORK FOOTER */
.cta-network-card-footer {
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-network-card-footer>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-network-card-footer span {
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

.cta-network-card-footer strong {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

.cta-network-card-footer i {
    color: var(--color-accent);
}

/* CTA FLOATING STATUS */
.cta-floating-status {
    position: absolute;
    right: -15px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
    animation: ctaStatusFloat 4.2s ease-in-out infinite;
}

.cta-floating-status>div {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.13);
    border-radius: 10px;
    color: var(--color-accent-dark);
}

.cta-floating-status>span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cta-floating-status small {
    color: var(--color-text-light);
    font-size: 10px;
}

.cta-floating-status strong {
    color: var(--color-primary);
    font-size: 12px;
}

@keyframes ctaStatusFloat {
    50% {
        transform: translateY(-8px);
    }

}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 48px 48px;
    mask-image:
        linear-gradient(to bottom,
            #000,
            transparent 85%);
    -webkit-mask-image:
        linear-gradient(to bottom,
            #000,
            transparent 85%);
}

/* FOOTER MAIN */
.footer-main {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:
        minmax(300px, 1.35fr) minmax(170px, 0.65fr) minmax(150px, 0.6fr) minmax(340px, 1.25fr);
    gap: 55px;
    padding: 90px 0 70px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 25px;
}

.footer-logo {
    width: 225px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand-column>p {
    max-width: 370px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    line-height: 1.8;
}


/* FOOTER SOCIAL */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social-links a {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-social-links a:hover {
    background: rgba(210, 160, 47, 0.13);
    border-color: rgba(210, 160, 47, 0.25);
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* FOOTER LINKS */
.footer-links-column h3,
.footer-contact-column h3 {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 700;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links-column a {
    position: relative;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    font-weight: 500;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.footer-links-column a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: var(--color-accent);
    transform: translateY(-50%);
    transition: width var(--transition-fast);
}

.footer-links-column a:hover {
    padding-left: 14px;
    color: var(--color-white);
}

.footer-links-column a:hover::before {
    width: 8px;
}

/* FOOTER CONTACT */
.footer-contact-column>p {
    margin-bottom: 19px;
    color: rgba(255, 255, 255, 0.37);
    font-size: 12px;
    line-height: 1.7;
}

.footer-email-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 700;
    transition: border-color var(--transition-fast);
}

.footer-email-link i {
    color: var(--color-accent);
    transition: transform var(--transition-fast);
}

.footer-email-link:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.footer-email-link:hover i {
    transform: translate(3px, -3px);
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.footer-contact-card>div {
    width: 37px;
    height: 37px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 160, 47, 0.12);
    border-radius: 9px;
    color: var(--color-accent);
}

.footer-contact-card>span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-card small {
    color: rgba(255, 255, 255, 0.27);
    font-size: 10px;
}

.footer-contact-card strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

/* EXPANDED FOOTER CONTACT */
.footer-contact-expanded>p {
    max-width: 360px;
}

.footer-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-primary-action,
.footer-login-action {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.footer-primary-action {
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: var(--color-primary);
}

.footer-primary-action:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
}

.footer-primary-action i {
    transition: transform var(--transition-fast);
}

.footer-primary-action:hover i {
    transform: translate(3px, -3px);
}

.footer-login-action {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
}

.footer-login-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 160, 47, 0.28);
    color: var(--color-white);
}

.footer-support-row {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.footer-support-row>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-support-row>div>i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(210, 160, 47, 0.12);
    border-radius: 9px;
    color: var(--color-accent);
}

.footer-support-row>div>span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-support-row small {
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

.footer-support-row strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
}

.footer-live-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.footer-live-status>span {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(210, 160, 47, 0.1);
}

/* FOOTER BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 3;
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-back-to-top {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.footer-back-to-top i {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--color-accent);
    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.footer-back-to-top:hover {
    color: var(--color-white);
}

.footer-back-to-top:hover i {
    background: rgba(210, 160, 47, 0.12);
    transform: translateY(-3px);
}