@font-face {
    font-family: 'Rostex';
    src: url('../fonts/Rostex-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    /* ==================================================
       COLORS
    ================================================== */
    --bg-primary: #000000;
    --bg-hero: #030006;
    --bg-mobile-menu: rgba(8, 3, 15, 0.97);
    --bg-submenu: rgba(10, 5, 20, 0.96);
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.62);
    --text-muted-light: rgba(255, 255, 255, 0.75);
    --purple-primary: #8f32ff;
    --purple-dark: #5a19ff;
    --purple-light: #dba9ff;
    --purple-glow: rgba(120, 0, 255, 0.25);
    --purple-glow-hover: rgba(120, 0, 255, 0.45);
    --badge-bg: rgba(100, 0, 255, 0.08);
    --badge-border: rgba(170, 90, 255, 0.35);
    --badge-text: #c798ff;
    --border-color: rgba(255, 255, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.08);
    --box-shadow-main: 0 10px 40px rgba(100, 0, 255, 0.25);
    --font-family: Arial, Helvetica, sans-serif;
    /* ==================================================
       WHY SECTION
    ================================================== */
    --section-card-bg: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
    );
    --section-card-radius: 18px;
    --section-title-color: #eeeeee;
    --section-card-title: #ededed;
    --section-card-text: rgba(255, 255, 255, 0.42);
    --section-number: rgba(255, 255, 255, 0.20);
    --section-icon-color: #b96aff;
    --section-icon-bg: linear-gradient(
            135deg,
            rgba(161, 60, 255, 0.18),
            rgba(75, 20, 255, 0.08)
    );
    --section-glow-purple: rgba(121, 0, 255, 0.12);
    --section-glow-blue: rgba(49, 0, 255, 0.13);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--text-color);
    font-family: var(--font-family);
}

body {
    overflow-x: hidden;
}

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

.crypto-hero {
    position: relative;
    min-height: 760px;
    height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-hero);
    background-image: linear-gradient(90deg,
    rgba(0, 0, 0, .92) 0%,
    rgba(0, 0, 0, .78) 35%,
    rgba(5, 0, 15, .52) 65%,
    rgba(0, 0, 0, .78) 100%),
    url("../image/slider/bg.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================================
   COLOR OVERLAY
========================================== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%,
    rgba(110, 0, 255, .30),
    transparent 35%),
    radial-gradient(circle at 85% 70%,
            rgba(255, 0, 220, .18),
            transparent 30%),
    linear-gradient(180deg,
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .65));
    pointer-events: none;
}

/* ==========================================
   BOTTOM FADE
========================================== */
.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(to bottom,
    transparent,
    var(--bg-primary));
    z-index: 2;
    pointer-events: none;
}

/* ==========================================
   NAVBAR
========================================== */
.hero-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 25px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color) !important;
    font-family: 'Rostex', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1.8px;
    text-decoration: none;
}

.brand-symbol {
    color: var(--purple-primary);
    font-size: 30px;
    font-weight: 400;
    text-shadow: 0 0 18px var(--purple-glow);
    line-height: 1;
}

.navbar-brand .brand-dot {
    color: var(--purple-primary);
    text-shadow: 0 0 15px var(--purple-glow);
}

.main-header {

    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition:
            background-color 0.3s ease,
            box-shadow 0.3s ease,
            backdrop-filter 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
}

.main-header.scrolled  .hero-navbar {
    padding: 15px 0;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-link {
    color: var(--text-muted-light) !important;
    font-size: 14px;
    margin: 0 10px;
    transition: .3s ease;
}

/*.nav-link:hover {*/
/*    color: var(--text-color) !important;*/
/*}*/

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active,
.mobile-menu .mobile-link.active{
    color: var(--purple-primary) !important;
}

.nav-login {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    margin-right: 20px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg,
    var(--purple-primary),
    var(--purple-dark));
    border: 1px solid var(--border-color);
    box-shadow: 0 0 25px var(--purple-glow);
    transition: .3s ease;
}

.nav-button:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--purple-glow-hover);
}

/* ==========================================
   HERO CONTENT
========================================== */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 680px;
}

/* ==========================================
   BADGE
========================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 25px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 13px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-light);
    box-shadow: 0 0 10px var(--purple-light);
}

/* ==========================================
   TITLE
========================================== */
.hero-title {
    margin: 0;
    color: var(--text-color);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -4px;
}

.hero-title .gradient {
    background: linear-gradient(90deg,
    var(--text-color),
    var(--purple-light) 45%,
    var(--purple-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   DESCRIPTION
========================================== */
.hero-description {
    max-width: 580px;
    margin-top: 25px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ==========================================
   BUTTONS
========================================== */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 160px;
    padding: 14px 24px;
    border-radius: 9px;
    background: linear-gradient(135deg,
    var(--purple-primary),
    var(--purple-dark));
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--box-shadow-main);
    transition: .3s ease;
}

.btn-primary-custom:hover {
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--purple-glow-hover);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .03);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

.btn-outline-custom:hover {
    color: var(--text-color);
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-3px);
}


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

.site-footer {
    position: relative;
    padding: 90px 20px 30px;
    background: linear-gradient(
            180deg,
            var(--bg-primary) 0%,
            var(--bg-hero) 100%
    );
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}


/* ==================================================
   BACKGROUND GLOW
================================================== */

.footer-glow {
    position: absolute;
    width: 600px;
    height: 250px;
    left: 50%;
    top: -180px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
            ellipse,
            var(--purple-glow-hover),
            transparent 70%
    );
    filter: blur(50px);
    pointer-events: none;
}


/* ==================================================
   MAIN
================================================== */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}


/* ==================================================
   BRAND
================================================== */

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 130px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    margin: 23px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ==================================================
   STATUS
================================================== */

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 8px 11px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.018);
    color: var(--text-muted-light);
    font-size: 11px;
    letter-spacing: .3px;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 8px var(--purple-primary);
    animation: footerPulse 2s infinite;
}

@keyframes footerPulse {

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

    50% {
        opacity: 1;
    }
}


/* ==================================================
   NAV
================================================== */

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer-column h4 {
    margin: 4px 0 20px;
    color: var(--text-muted-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column a {
    position: relative;
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease,
    transform .25s ease;
}

.footer-column a:hover {
    color: var(--purple-light);
    transform: translateX(3px);
}


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

.footer-cta {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(145, 55, 255, .15);
    border-radius: 14px;
    background: radial-gradient(
            circle at 100% 0%,
            var(--purple-glow),
            transparent 50%
    ),
    rgba(255, 255, 255, .018);
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--purple-primary),
            transparent
    );
    opacity: .6;
}

.footer-cta-label {
    color: var(--badge-text);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.footer-cta h3 {
    margin: 18px 0 23px;
    color: var(--section-title-color);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.footer-cta h3 span {
    display: block;
    color: var(--purple-light);
}


/* ==================================================
   CTA BUTTON
================================================== */

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: var(--purple-light);
    border: 1px solid var(--badge-border);
    border-radius: 6px;
    background: var(--badge-bg);
    text-decoration: none;
    font-size: 12px;
    transition: .3s ease;
}

.footer-cta-button i {
    transition: .3s ease;
}

.footer-cta-button:hover {
    color: var(--text-color);
    background: rgba(120, 30, 255, .12);
    border-color: var(--purple-glow-hover);
    box-shadow: var(--box-shadow-main);
}

.footer-cta-button:hover i {
    transform: translate(2px, -2px);
}


/* ==================================================
   DIVIDER
================================================== */

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--border-light) 20%,
            var(--border-light) 80%,
            transparent
    );
}


/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
}


/* ==================================================
   LEGAL
================================================== */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-legal a:hover {
    color: var(--purple-light);
}


/* ==================================================
   SOCIAL
================================================== */

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    border-radius: 7px;
    background: rgba(255, 255, 255, .018);
    text-decoration: none;
    font-size: 12px;
    transition: .3s ease;
}

.footer-social a:hover {
    color: var(--purple-light);
    border-color: var(--badge-border);
    background: var(--badge-bg);
    transform: translateY(-2px);
}


/* ==================================================
   DISCLAIMER
================================================== */

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 850px;
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .035);
}

.footer-disclaimer i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--purple-dark);
    font-size: 12px;
}

.footer-disclaimer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns: 1.2fr 2fr;
        gap: 50px;
    }

    .footer-cta {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}


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

@media (max-width: 767px) {

    .site-footer {
        padding: 70px 15px 25px;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding-bottom: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .footer-cta {
        width: 100%;
        max-width: none;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .footer-disclaimer {
        margin-top: 25px;
    }
}

/* ==========================================
   STATS
========================================== */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}

.stat {
    position: relative;
}

.stat-number {
    display: block;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

.stat-label {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

/* ==========================================
   SLIDER CONTROLS
========================================== */
.slider-controls {
    position: absolute;
    right: 60px;
    bottom: 70px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .3);
    color: var(--text-color);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

.slider-btn:hover {
    background: rgba(130, 40, 255, .4);
    border-color: rgba(190, 130, 255, .5);
}

/* ==========================================
   SLIDE COUNTER
========================================== */
.slide-counter {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    margin: 0 8px;
}

/* ==========================================
   PROGRESS BAR
========================================== */
.slider-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .1);
    z-index: 20;
}

.slider-progress-bar {
    width: 33.33%;
    height: 100%;
    background: linear-gradient(90deg,
    var(--purple-light),
    var(--purple-dark));
    transition: width .4s ease;
}

/* ==========================================
   FLOATING GLOW
========================================== */
.floating-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle,
    rgba(126, 0, 255, .22),
    transparent 65%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 2;
}

/* ==========================================
   SLIDES
========================================== */
.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: slideIn .7s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   NAV DROPDOWN / SUBMENU
========================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: transform .3s ease;
}

.submenu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 190px;
    padding: 8px;
    background: var(--bg-submenu);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5),
    0 0 30px rgba(120, 0, 255, .15);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
    z-index: 100;
}

.submenu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--bg-submenu);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: .25s ease;
}

.submenu a i {
    width: 18px;
    color: var(--purple-light);
    font-size: 15px;
}

.submenu a:hover {
    color: var(--text-color);
    background: linear-gradient(135deg,
    rgba(140, 50, 255, .22),
    rgba(90, 25, 255, .10));
    transform: translateX(3px);
}

/* ==========================================
   MOBILE MENU
========================================== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    color: var(--text-color);
    font-size: 25px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 15px;
    right: 15px;
    z-index: 100;
    padding: 12px;
    background: var(--bg-mobile-menu);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .6),
    0 0 40px rgba(110, 0, 255, .15);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 70px;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 12px;
    border: 0;
    background: transparent;
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 15px;
    text-align: left;
    border-radius: 9px;
    transition: .25s ease;
}

.mobile-link:hover {
    color: var(--text-color);
    background: rgba(140, 50, 255, .12);
}

.mobile-dropdown-toggle i {
    font-size: 11px;
    transition: transform .3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease,
    opacity .25s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
    opacity: 1;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: .25s ease;
}

.mobile-submenu a i {
    width: 18px;
    color: var(--purple-light);
}

.mobile-submenu a:hover {
    color: var(--text-color);
    background: rgba(140, 50, 255, .12);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.mobile-login {
    flex: 1;
    padding: 12px;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.mobile-actions .nav-button {
    flex: 1;
    text-align: center;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {
    .hero-navbar {
        padding: 18px 0;
    }

    .nav-menu,
    .nav-right {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 576px) {
    .crypto-hero {
        min-height: 700px;
        height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
        background-position: center;
    }

    .hero-navbar {
        padding: 16px 0;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .hero-title {
        font-size: 43px;
        letter-spacing: -2px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }

    .hero-stats {
        gap: 25px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 18px;
    }

    .slider-controls {
        right: 20px;
        bottom: 30px;
    }

    .floating-glow {
        width: 300px;
        height: 300px;
        right: -100px;
    }

    .mobile-menu {
        top: 72px;
    }

    .mobile-actions {
        flex-direction: column;
    }

    .mobile-actions .mobile-login,
    .mobile-actions .nav-button {
        width: 100%;
    }
}


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

.site-footer {
    position: relative;
    padding: 90px 20px 30px;
    background: linear-gradient(
            180deg,
            var(--bg-primary) 0%,
            var(--bg-hero) 100%
    );
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}


/* ==================================================
   BACKGROUND GLOW
================================================== */

.footer-glow {
    position: absolute;
    width: 600px;
    height: 250px;
    left: 50%;
    top: -180px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
            ellipse,
            var(--purple-glow-hover),
            transparent 70%
    );
    filter: blur(50px);
    pointer-events: none;
}


/* ==================================================
   MAIN
================================================== */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}


/* ==================================================
   BRAND
================================================== */

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 130px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    margin: 23px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ==================================================
   STATUS
================================================== */

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 8px 11px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.018);
    color: var(--text-muted-light);
    font-size: 11px;
    letter-spacing: .3px;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 8px var(--purple-primary);
    animation: footerPulse 2s infinite;
}

@keyframes footerPulse {

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

    50% {
        opacity: 1;
    }
}


/* ==================================================
   NAV
================================================== */

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer-column h4 {
    margin: 4px 0 20px;
    color: var(--text-muted-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column a {
    position: relative;
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease,
    transform .25s ease;
}

.footer-column a:hover {
    color: var(--purple-light);
    transform: translateX(3px);
}


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

.footer-cta {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(145, 55, 255, .15);
    border-radius: 14px;
    background: radial-gradient(
            circle at 100% 0%,
            var(--purple-glow),
            transparent 50%
    ),
    rgba(255, 255, 255, .018);
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--purple-primary),
            transparent
    );
    opacity: .6;
}

.footer-cta-label {
    color: var(--badge-text);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.footer-cta h3 {
    margin: 18px 0 23px;
    color: var(--section-title-color);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.footer-cta h3 span {
    display: block;
    color: var(--purple-light);
}


/* ==================================================
   CTA BUTTON
================================================== */

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: var(--purple-light);
    border: 1px solid var(--badge-border);
    border-radius: 6px;
    background: var(--badge-bg);
    text-decoration: none;
    font-size: 12px;
    transition: .3s ease;
}

.footer-cta-button i {
    transition: .3s ease;
}

.footer-cta-button:hover {
    color: var(--text-color);
    background: rgba(120, 30, 255, .12);
    border-color: var(--purple-glow-hover);
    box-shadow: var(--box-shadow-main);
}

.footer-cta-button:hover i {
    transform: translate(2px, -2px);
}


/* ==================================================
   DIVIDER
================================================== */

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--border-light) 20%,
            var(--border-light) 80%,
            transparent
    );
}


/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
}


/* ==================================================
   LEGAL
================================================== */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-legal a:hover {
    color: var(--purple-light);
}


/* ==================================================
   SOCIAL
================================================== */

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    border-radius: 7px;
    background: rgba(255, 255, 255, .018);
    text-decoration: none;
    font-size: 12px;
    transition: .3s ease;
}

.footer-social a:hover {
    color: var(--purple-light);
    border-color: var(--badge-border);
    background: var(--badge-bg);
    transform: translateY(-2px);
}


/* ==================================================
   DISCLAIMER
================================================== */

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 850px;
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .035);
}

.footer-disclaimer i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--purple-dark);
    font-size: 12px;
}

.footer-disclaimer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns: 1.2fr 2fr;
        gap: 50px;
    }

    .footer-cta {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}


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

@media (max-width: 767px) {

    .site-footer {
        padding: 70px 15px 25px;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding-bottom: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .footer-cta {
        width: 100%;
        max-width: none;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .footer-disclaimer {
        margin-top: 25px;
    }
}

/* ==================================================
   WHY CHOOSE US
================================================== */

.why-choose-section {
    position: relative;
    padding: 130px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}


/* ==================================================
   BACKGROUND GLOW
================================================== */

.why-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    z-index: 0;
}

.why-glow-purple {
    width: 450px;
    height: 450px;
    left: -180px;
    top: 20%;
    background: var(--purple-primary);
    opacity: var(--section-glow-purple);
}

.why-glow-blue {
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: 5%;
    background: var(--purple-dark);
    opacity: var(--section-glow-blue);
}


/* ==================================================
   CONTAINER
================================================== */

.why-choose-section .container {
    position: relative;
    z-index: 2;
}


/* ==================================================
   SECTION BADGE
================================================== */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 22px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 12px;
}

.section-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 10px var(--purple-primary);
}


/* ==================================================
   SECTION TITLE
================================================== */

.section-title {
    margin: 0;
    color: var(--section-title-color);
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2px;
}

.section-title span {
    display: inline-block;
    background: linear-gradient(
            90deg,
            var(--text-color) 0%,
            var(--purple-light) 45%,
            var(--purple-primary) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==================================================
   SECTION DESCRIPTION
================================================== */

.section-description {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ==================================================
   FEATURE CARD
================================================== */

.why-card {
    position: relative;
    height: 100%;
    min-height: 285px;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: var(--section-card-radius);
    background: var(--section-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    transition: transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* ==================================================
   CARD GLOW
================================================== */

.why-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -80px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    transition: opacity 0.4s ease;
}


/* ==================================================
   CARD BOTTOM LINE
================================================== */

.why-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--purple-primary),
            transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}


/* ==================================================
   CARD HOVER
================================================== */

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(143, 50, 255, 0.35);
    box-shadow: 0 20px 70px rgba(80, 0, 180, 0.15);
}

.why-card:hover::before {
    opacity: 0.16;
}

.why-card:hover::after {
    opacity: 1;
}


/* ==================================================
   CARD TOP
================================================== */

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}


/* ==================================================
   FEATURE ICON
================================================== */

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--section-icon-color);
    font-size: 21px;
    background: var(--section-icon-bg);
    border: 1px solid rgba(165, 75, 255, 0.18);
    box-shadow: inset 0 0 20px rgba(160, 60, 255, 0.04);
}


/* ==================================================
   NUMBER
================================================== */

.feature-number {
    color: var(--section-number);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* ==================================================
   CARD TITLE
================================================== */

.why-card h3 {
    margin: 0 0 13px;
    color: var(--section-card-title);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.3px;
}


/* ==================================================
   CARD DESCRIPTION
================================================== */

.why-card p {
    margin: 0;
    color: var(--section-card-text);
    font-size: 14px;
    line-height: 1.75;
}


/* ==================================================
   CARD LINK
================================================== */

.feature-link {
    position: absolute;
    left: 30px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--purple-light);
    font-size: 12px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease,
    transform 0.3s ease;
}

.why-card:hover .feature-link {
    opacity: 1;
    transform: translateY(0);
}

.feature-link i {
    font-size: 11px;
}


/* ==================================================
   BOTTOM CTA
================================================== */

.why-cta {
    position: relative;
    margin-top: 70px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: var(--section-card-radius);
    border: 1px solid rgba(145, 70, 255, 0.2);
    background: radial-gradient(
            circle at 80% 50%,
            var(--purple-glow),
            transparent 40%
    ),
    rgba(255, 255, 255, 0.025);
}

.why-cta-title {
    margin-bottom: 6px;
    color: var(--section-card-title);
    font-size: 18px;
}

.why-cta-text {
    color: var(--text-muted);
    font-size: 13px;
}


/* ==================================================
   CTA BUTTON
================================================== */

.why-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 9px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    background: linear-gradient(
            135deg,
            var(--purple-primary),
            var(--purple-dark)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px var(--purple-glow);
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-cta-button:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px var(--purple-glow-hover);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 768px) {

    .why-choose-section {
        padding: 90px 15px;
    }

    .section-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

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

    .why-card {
        min-height: 270px;
        padding: 25px;
    }

    .why-cta {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .why-cta-button {
        width: 100%;
    }
}


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

@media (max-width: 576px) {

    .why-choose-section {
        padding: 80px 15px;
    }

    .section-title {
        font-size: 33px;
        line-height: 1.15;
    }

    .section-description {
        font-size: 13px;
    }

    .why-card {
        min-height: 260px;
        padding: 23px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 12px;
    }

    .feature-link {
        left: 23px;
    }

    .why-cta {
        margin-top: 50px;
    }
}


/* ==================================================
   WALLET TRACKING STEPS
================================================== */

.crypto-section {
    position: relative;
    min-height: 100vh;
    padding: 50px 20px 80px;
    background: var(--bg-primary);
    overflow: hidden;
}


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

.top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    margin-bottom: 24px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    color: var(--badge-text);
    background: var(--badge-bg);
    font-size: 13px;
    font-weight: 400;
}

.main-title {
    margin: 0 0 18px;
    color: var(--section-title-color);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
}

.main-title span {
    background: linear-gradient(
            90deg,
            var(--text-color),
            var(--purple-light),
            var(--purple-primary)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-description {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}


/* ==================================================
   STEPS AREA
================================================== */

.steps-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 570px;
    margin: 40px auto 0;
}


/* ==================================================
   CIRCLE
================================================== */

.steps-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
}


/* ==================================================
   CENTER GLOW
================================================== */

.main-glow {
    position: absolute;
    width: 430px;
    height: 330px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
            ellipse,
            rgba(255, 0, 230, 0.75) 0%,
            rgba(214, 0, 255, 0.65) 25%,
            rgba(97, 0, 255, 0.55) 50%,
            var(--purple-glow) 65%,
            transparent 75%
    );
    filter: blur(35px);
    opacity: 0.9;
    pointer-events: none;
}


/* ==================================================
   PURPLE GLOW
================================================== */

.pink-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 28%;
    top: 35%;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.3;
    pointer-events: none;
}


/* ==================================================
   BLUE / DARK PURPLE GLOW
================================================== */

.blue-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: 25%;
    bottom: 15%;
    background: var(--purple-dark);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
    pointer-events: none;
}



/* ==================================================
   STEPS
================================================== */

.step {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted-light);
    font-size: 14px;
    font-weight: 400;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02),
    0 0 10px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.step-title {
    color: var(--section-card-title);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.step:hover .step-number {
    border-color: var(--purple-primary);
    color: var(--purple-light);
    box-shadow: 0 0 20px var(--purple-glow);
}


/* ==================================================
   STEP POSITIONS
================================================== */

.step-1 {
    left: 20px;
    top: 54%;
    transform: translateY(-50%);
}

.step-2 {
    left: 130px;
    top: 23%;
}

.step-3 {
    left: 50%;
    top: 2%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 8px;
}

.step-4 {
    right: 130px;
    top: 23%;
    flex-direction: row-reverse;
}

.step-5 {
    right: 20px;
    top: 54%;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}


/* ==================================================
   PARTICLES
================================================== */

.particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--text-color),
    0 0 10px var(--purple-primary);
}

.particle-1 {
    left: 26%;
    top: 39%;
}

.particle-2 {
    left: 30%;
    top: 53%;
}

.particle-3 {
    left: 68%;
    top: 38%;
}

.particle-4 {
    left: 74%;
    top: 55%;
}

.particle-5 {
    left: 37%;
    top: 68%;
}

.particle-6 {
    left: 63%;
    top: 66%;
}

.particle-7 {
    left: 45%;
    top: 29%;
}

.particle-8 {
    left: 57%;
    top: 31%;
}

.particle-9 {
    left: 41%;
    top: 58%;
}

.particle-10 {
    left: 60%;
    top: 50%;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 768px) {

    .crypto-section {
        padding: 35px 15px 60px;
    }

    .main-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

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

    .steps-container {
        height: 600px;
        margin-top: 30px;
    }

    .steps-circle {
        width: 500px;
        height: 500px;
    }

    .step {
        gap: 7px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 12px;
    }

    .step-title {
        font-size: 11px;
    }

    .step-1 {
        left: 5px;
        top: 51%;
    }

    .step-2 {
        left: 35px;
        top: 18%;
    }

    .step-3 {
        top: 3%;
    }

    .step-4 {
        right: 35px;
        top: 18%;
    }

    .step-5 {
        right: 5px;
        top: 51%;
    }

    .main-glow {
        width: 350px;
        height: 280px;
    }
}


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

@media (max-width: 500px) {

    .crypto-section {
        padding-top: 30px;
    }

    .top-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .main-title {
        font-size: 31px;
        line-height: 1.15;
    }

    .main-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .steps-container {
        height: 530px;
    }

    .steps-circle {
        width: 390px;
        height: 390px;
    }

    .main-glow {
        width: 280px;
        height: 230px;
        top: 50%;
    }

    .step-title {
        font-size: 10px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 11px;
    }

    .step-1 {
        left: 0;
        top: 51%;
    }

    .step-2 {
        left: 8px;
        top: 18%;
    }

    .step-3 {
        top: 2%;
    }

    .step-4 {
        right: 8px;
        top: 18%;
    }

    .step-5 {
        right: 0;
        top: 51%;
    }
}


/* ==================================================
   VERY SMALL SCREENS
================================================== */

@media (max-width: 380px) {

    .steps-container {
        height: 500px;
    }

    .steps-circle {
        width: 350px;
        height: 350px;
    }

    .step-title {
        font-size: 9px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .step-2 {
        left: 0;
    }

    .step-4 {
        right: 0;
    }
}

/* ==================================================
   CENTER WALLET CORE
================================================== */

.wallet-core {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}


/* ==================================================
   CORE GLOW
================================================== */

.wallet-core-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(219, 169, 255, 0.45) 0%,
            var(--purple-glow) 45%,
            transparent 72%
    );
    filter: blur(20px);
    animation: walletGlow 4s ease-in-out infinite;
}


/* ==================================================
   RINGS
================================================== */

.wallet-core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(143, 50, 255, 0.35);
}

.wallet-core-ring-outer {
    width: 190px;
    height: 190px;
    border-color: rgba(143, 50, 255, 0.18);
    animation: walletRotate 18s linear infinite;
}

.wallet-core-ring-inner {
    width: 145px;
    height: 145px;
    border-color: rgba(219, 169, 255, 0.28);
    border-style: dashed;
    animation: walletRotateReverse 12s linear infinite;
}


/* ==================================================
   WALLET ICON CONTAINER
================================================== */

.wallet-core-icon {
    position: relative;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: var(--purple-light);
    background: linear-gradient(
            145deg,
            rgba(161, 60, 255, 0.25),
            rgba(75, 20, 255, 0.10)
    );
    border: 1px solid rgba(219, 169, 255, 0.25);
    box-shadow: inset 0 0 30px rgba(160, 60, 255, 0.08),
    0 0 35px var(--purple-glow),
    0 0 80px rgba(100, 0, 255, 0.15);
    backdrop-filter: blur(12px);
    z-index: 3;
}

.wallet-core-icon i {
    font-size: 38px;
    filter: drop-shadow(0 0 10px var(--purple-primary));
}


/* ==================================================
   PULSE
================================================== */

.wallet-core-pulse {
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    border: 1px solid var(--purple-primary);
    opacity: 0;
    animation: walletPulse 3s ease-out infinite;
}


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

@keyframes walletGlow {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.65;
    }

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

@keyframes walletRotate {

    from {
        transform: rotate(0deg);
    }

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

@keyframes walletRotateReverse {

    from {
        transform: rotate(360deg);
    }

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

@keyframes walletPulse {

    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    70%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 768px) {

    .wallet-core {
        width: 170px;
        height: 170px;
    }

    .wallet-core-ring-outer {
        width: 150px;
        height: 150px;
    }

    .wallet-core-ring-inner {
        width: 115px;
        height: 115px;
    }

    .wallet-core-icon {
        width: 72px;
        height: 72px;
        border-radius: 19px;
    }

    .wallet-core-icon i {
        font-size: 30px;
    }

    .wallet-core-pulse {
        width: 72px;
        height: 72px;
        border-radius: 19px;
    }
}


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

@media (max-width: 500px) {

    .wallet-core {
        width: 135px;
        height: 135px;
        top: 50%;
    }

    .wallet-core-ring-outer {
        width: 120px;
        height: 120px;
    }

    .wallet-core-ring-inner {
        width: 90px;
        height: 90px;
    }

    .wallet-core-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .wallet-core-icon i {
        font-size: 24px;
    }

    .wallet-core-pulse {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }
}

/* ==================================================
   OUR CASES
================================================== */

.our-cases-section {
    position: relative;
    padding: 140px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}


/* ==================================================
   BACKGROUND GLOWS
================================================== */

.cases-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

.cases-glow-left {
    left: -300px;
    top: 20%;
    background: var(--purple-primary);
    opacity: 0.12;
}

.cases-glow-right {
    right: -300px;
    bottom: 10%;
    background: var(--purple-dark);
    opacity: 0.12;
}


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

.cases-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 12px;
}

.cases-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 10px var(--purple-primary);
}

.cases-title {
    margin: 0;
    color: var(--section-title-color);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.5px;
}

.cases-title span {
    background: linear-gradient(
            90deg,
            var(--text-color),
            var(--purple-light) 50%,
            var(--purple-primary)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cases-description {
    max-width: 720px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ==================================================
   CASE ROW
================================================== */

.case-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1150px;
    margin: 110px auto 0;
}

.case-row:first-of-type {
    margin-top: 90px;
}


/* ==================================================
   IMAGE
================================================== */

.case-image-wrapper {
    position: relative;
}

.case-image {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--section-card-radius);
    background: var(--bg-hero);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


/* Image color treatment */

.case-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
            135deg,
            rgba(143, 50, 255, 0.20),
            transparent 45%,
            rgba(90, 25, 255, 0.15)
    );
    pointer-events: none;
}


/* Image */

.case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease,
    filter 0.7s ease;
}


/* Bottom overlay */

.case-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 55%
    );
}


/* Case number */

.case-image-number {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 4;
    padding: 7px 11px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-muted-light);
    font-size: 9px;
    letter-spacing: 1.5px;
}


/* Image hover */

.case-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.85)
    saturate(1.15);
}


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

.case-content-wrapper {
    display: flex;
    align-items: center;
}

.case-content {
    max-width: 500px;
}


/* Tag */

.case-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Title */

.case-content h3 {
    margin: 0 0 20px;
    color: var(--section-card-title);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.case-content h3 span {
    display: block;
    background: linear-gradient(
            90deg,
            var(--text-color),
            var(--purple-light)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Description */

.case-content p {
    margin: 0 0 15px;
    color: var(--section-card-text);
    font-size: 14px;
    line-height: 1.8;
}


/* ==================================================
   CASE STATS
================================================== */

.case-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.case-stat strong {
    color: var(--section-card-title);
    font-size: 19px;
    font-weight: 500;
}

.case-stat span {
    color: var(--section-number);
    font-size: 10px;
    white-space: nowrap;
}


/* ==================================================
   CASE LINK
================================================== */

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
    color: var(--purple-light);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.case-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.case-link:hover {
    color: var(--text-color);
}

.case-link:hover i {
    transform: translate(3px, -3px);
}


/* ==================================================
   VERTICAL ACCENT
================================================== */

.case-row::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100px;
    left: 50%;
    bottom: -155px;
    background: linear-gradient(
            to bottom,
            var(--purple-glow),
            transparent
    );
}

.case-row:last-child::before {
    display: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .case-row {
        gap: 45px;
    }

    .case-content h3 {
        font-size: 31px;
    }

    .case-image {
        height: 380px;
    }

    .case-stats {
        gap: 20px;
    }
}


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

@media (max-width: 767px) {

    .our-cases-section {
        padding: 90px 15px;
    }

    .cases-title {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .cases-description {
        font-size: 13px;
    }

    .case-row {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-top: 70px;
    }

    .case-row:first-of-type {
        margin-top: 60px;
    }


    /* Always image first */

    .case-row-reverse .case-image-wrapper {
        order: -1;
    }

    .case-image {
        height: 300px;
        border-radius: 14px;
    }

    .case-content-wrapper {
        width: 100%;
    }

    .case-content {
        max-width: none;
    }

    .case-content h3 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .case-content p {
        font-size: 13px;
    }

    .case-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .case-stat strong {
        font-size: 17px;
    }

    .case-row::before {
        display: none;
    }
}


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

@media (max-width: 480px) {

    .case-image {
        height: 250px;
    }

    .case-content h3 {
        font-size: 27px;
    }

    .case-stats {
        justify-content: space-between;
        gap: 10px;
    }

    .case-stat strong {
        font-size: 15px;
    }

    .case-stat span {
        font-size: 9px;
    }
}

/* ==================================================
   PRODUCT EVOLUTION
================================================== */

.product-evolution-section {
    position: relative;
    padding: 140px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

/* ==================================================
   BACKGROUND GLOW
================================================== */

.evolution-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.evolution-glow-left {
    left: -320px;
    top: 25%;
    background: var(--purple-primary);
    opacity: .11;
}

.evolution-glow-right {
    right: -320px;
    bottom: 10%;
    background: var(--purple-dark);
    opacity: .10;
}

/* ==================================================
   CONTAINER
================================================== */

.product-evolution-section .container {
    position: relative;
    z-index: 2;
}

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

.evolution-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 23px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 11px;
    letter-spacing: .2px;
}

.evolution-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 10px var(--purple-primary);
}

.evolution-title {
    margin: 0;
    color: var(--text-color);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.evolution-title span {
    display: block;
    background: linear-gradient(
            90deg,
            #fff 0%,
            var(--purple-light) 48%,
            var(--purple-primary) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evolution-description {
    max-width: 720px;
    margin: 23px auto 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ==================================================
   TIMELINE
================================================== */

.evolution-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 100px auto 0;
}

/* ==================================================
   TIMELINE LINE
================================================== */

.evolution-line {
    position: absolute;
    top: 65px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: var(--border-light);
    z-index: 0;
}

.evolution-line-active {
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            var(--purple-dark),
            var(--purple-primary),
            var(--purple-dark)
    );
    box-shadow: 0 0 12px var(--purple-glow-hover);
}

/* ==================================================
   ITEM
================================================== */

.evolution-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ==================================================
   YEAR
================================================== */

.evolution-year {
    height: 30px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.evolution-current .evolution-year {
    color: var(--purple-primary);
}

.evolution-future .evolution-year {
    color: rgba(255, 255, 255, .28);
}

/* ==================================================
   NODE
================================================== */

.evolution-node {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(145, 60, 255, .28);
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(130, 35, 255, .18),
            var(--bg-primary) 65%
    );
    box-shadow: 0 0 25px var(--purple-glow);
    transition: .4s ease;
}

.evolution-node span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 12px var(--purple-primary),
    0 0 25px var(--purple-glow-hover);
}

.evolution-item:hover .evolution-node {
    border-color: var(--purple-primary);
    box-shadow: 0 0 40px var(--purple-glow-hover);
    transform: scale(1.06);
}

/* Current node */

.evolution-current .evolution-node {
    border-color: var(--purple-glow-hover);
    box-shadow: 0 0 35px var(--purple-glow);
}

.evolution-current .evolution-node span {
    background: var(--purple-light);
    box-shadow: 0 0 12px var(--purple-light),
    0 0 30px var(--purple-primary);
    animation: evolutionPulse 2s infinite;
}

@keyframes evolutionPulse {
    0% {
        transform: scale(.8);
        opacity: .6;
    }

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

    100% {
        transform: scale(.8);
        opacity: .6;
    }
}

/* ==================================================
   CARD
================================================== */

.evolution-card {
    min-height: 310px;
    padding: 25px 22px;
    text-align: left;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .012)
    );
    backdrop-filter: blur(15px);
    transition: transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.evolution-card:hover {
    transform: translateY(-7px);
    border-color: var(--badge-border);
    box-shadow: 0 25px 70px var(--purple-glow);
}

/* ==================================================
   ICON
================================================== */

.evolution-card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--badge-border);
    border-radius: 11px;
    color: var(--purple-primary);
    font-size: 18px;
    background: linear-gradient(
            135deg,
            rgba(155, 60, 255, .17),
            rgba(60, 20, 255, .06)
    );
}

/* ==================================================
   LABEL
================================================== */

.evolution-label {
    display: block;
    margin-bottom: 9px;
    color: var(--purple-primary);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
}

/* ==================================================
   CARD TITLE
================================================== */

.evolution-card h3 {
    margin: 0 0 13px;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

/* ==================================================
   CARD TEXT
================================================== */

.evolution-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   META
================================================== */

.evolution-meta {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    color: rgba(255, 255, 255, .30);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.evolution-current .evolution-meta {
    color: var(--purple-primary);
}

/* ==================================================
   FUTURE CARD
================================================== */

.evolution-future .evolution-card {
    opacity: .55;
    border-style: dashed;
}

.evolution-future:hover .evolution-card {
    opacity: 1;
}

/* ==================================================
   BOTTOM
================================================== */

.evolution-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 70px auto 0;
    color: rgba(255, 255, 255, .27);
    font-size: 9px;
    letter-spacing: 2px;
}

.evolution-bottom-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--badge-border)
    );
}

.evolution-bottom-line:last-child {
    background: linear-gradient(
            90deg,
            var(--badge-border),
            transparent
    );
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .evolution-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
    }

    .evolution-line {
        display: none;
    }
}

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

@media (max-width: 767px) {

    .product-evolution-section {
        padding: 90px 15px;
    }

    .evolution-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .evolution-description {
        font-size: 13px;
    }

    .evolution-timeline {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 65px;
    }

    .evolution-item {
        display: grid;
        grid-template-columns: 55px 1fr;
        column-gap: 18px;
        text-align: left;
    }

    .evolution-year {
        grid-column: 1;
        grid-row: 1;
        height: auto;
        padding-top: 18px;
        font-size: 9px;
    }

    .evolution-node {
        grid-column: 1;
        grid-row: 2;
        width: 55px;
        height: 55px;
        margin: 0;
    }

    .evolution-card {
        grid-column: 2;
        grid-row: 1 / span 2;
        min-height: auto;
        padding: 23px;
    }

    .evolution-card h3 {
        font-size: 16px;
    }

    .evolution-card p {
        font-size: 13px;
    }

    .evolution-bottom {
        margin-top: 55px;
        font-size: 8px;
    }
}

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

@media (max-width: 480px) {

    .evolution-title {
        font-size: 32px;
    }

    .evolution-item {
        grid-template-columns: 45px 1fr;
        gap: 13px;
    }

    .evolution-node {
        width: 45px;
        height: 45px;
    }

    .evolution-card {
        padding: 20px;
    }

    .evolution-card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==================================================
   CUSTOMER FEEDBACK
================================================== */

.customer-feedback-section {
    position: relative;
    padding: 140px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

/* ==================================================
   GLOWS
================================================== */

.feedback-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

.feedback-glow-left {
    left: -300px;
    top: 20%;
    background: var(--purple-primary);
    opacity: .10;
}

.feedback-glow-right {
    right: -300px;
    bottom: 10%;
    background: var(--purple-dark);
    opacity: .10;
}

/* ==================================================
   CONTAINER
================================================== */

.customer-feedback-section .container {
    position: relative;
    z-index: 2;
}

/* ==================================================
   BADGE
================================================== */

.feedback-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 11px;
}

.feedback-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 10px var(--purple-primary);
}

/* ==================================================
   TITLE
================================================== */

.feedback-title {
    margin: 0;
    color: var(--text-color);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.feedback-title span {
    display: block;
    background: linear-gradient(
            90deg,
            var(--text-color) 0%,
            var(--purple-light) 48%,
            var(--purple-primary) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-description {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ==================================================
   GRID
================================================== */

.feedback-grid {
    max-width: 1120px;
    margin: 80px auto 0;
}

/* ==================================================
   CARD
================================================== */

.feedback-card {
    position: relative;
    height: 100%;
    min-height: 335px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .012)
    );
    backdrop-filter: blur(15px);
    transition: transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.feedback-card:hover {
    transform: translateY(-7px);
    border-color: var(--badge-border);
    box-shadow: var(--box-shadow-main);
}

/* ==================================================
   FEATURED CARD
================================================== */

.feedback-card-featured {
    border-color: var(--badge-border);
    background: radial-gradient(
            circle at 85% 10%,
            var(--purple-glow),
            transparent 35%
    ),
    linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .012)
    );
    box-shadow: var(--box-shadow-main);
}

.featured-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: var(--purple-primary);
    filter: blur(80px);
    opacity: .18;
    pointer-events: none;
}

/* ==================================================
   CARD TOP
================================================== */

.feedback-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================================================
   USER
================================================== */

.feedback-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-avatar {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 600;
    background: linear-gradient(
            135deg,
            var(--purple-glow),
            rgba(60, 20, 255, .08)
    );
    border: 1px solid var(--badge-border);
}

.feedback-avatar-purple {
    color: var(--text-color);
    background: linear-gradient(
            135deg,
            var(--purple-primary),
            var(--purple-dark)
    );
    border-color: var(--border-color);
    box-shadow: 0 0 25px var(--purple-glow);
}

.feedback-user h4 {
    margin: 0 0 3px;
    color: var(--text-muted-light);
    font-size: 13px;
    font-weight: 500;
}

.feedback-user span {
    color: var(--text-muted);
    font-size: 9px;
}

/* ==================================================
   QUOTE
================================================== */

.feedback-quote {
    color: var(--purple-glow-hover);
    font-size: 28px;
    line-height: 1;
}

/* ==================================================
   STARS
================================================== */

.feedback-stars {
    display: flex;
    gap: 4px;
    margin-top: 27px;
    color: var(--purple-primary);
    font-size: 10px;
}

/* ==================================================
   TEXT
================================================== */

.feedback-text {
    margin: 22px 0 0;
    color: var(--text-muted-light);
    font-size: 13px;
    line-height: 1.85;
}

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

.feedback-footer {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    padding-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.feedback-footer span:last-child {
    color: var(--text-muted-light);
    text-transform: none;
    letter-spacing: 0;
}

.feedback-footer i {
    margin-left: 3px;
    color: var(--purple-primary);
}

/* ==================================================
   SMALL CARDS
================================================== */

.feedback-card-small {
    min-height: 220px;
    padding: 25px;
}

.feedback-mini-icon {
    color: var(--purple-primary);
    font-size: 17px;
    opacity: .7;
}

.feedback-card-small .feedback-text {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   MINI USER
================================================== */

.feedback-mini-user {
    position: absolute;
    left: 25px;
    bottom: 23px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-avatar-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    color: var(--purple-light);
    font-size: 8px;
    font-weight: 600;
}

.feedback-mini-user strong {
    display: block;
    color: var(--text-muted-light);
    font-size: 10px;
    font-weight: 500;
}

.feedback-mini-user span {
    display: block;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
}

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

.feedback-trust {
    max-width: 850px;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.feedback-trust-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--badge-border)
    );
}

.feedback-trust-line:last-child {
    background: linear-gradient(
            90deg,
            var(--badge-border),
            transparent
    );
}

.feedback-trust-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-trust-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--purple-light);
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    font-size: 14px;
}

.feedback-trust-content strong {
    display: block;
    color: var(--text-muted-light);
    font-size: 13px;
    font-weight: 500;
}

.feedback-trust-content span {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {
    .feedback-grid {
        margin-top: 65px;
    }

    .feedback-card {
        min-height: 320px;
    }
}

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

@media (max-width: 767px) {
    .customer-feedback-section {
        padding: 90px 15px;
    }

    .feedback-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .feedback-description {
        font-size: 13px;
    }

    .feedback-grid {
        margin-top: 55px;
    }

    .feedback-card {
        min-height: 320px;
        padding: 23px;
    }

    .feedback-footer {
        left: 23px;
        right: 23px;
    }

    .feedback-trust {
        margin-top: 55px;
        gap: 15px;
    }

    .feedback-trust-line {
        display: none;
    }
}

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

@media (max-width: 480px) {
    .feedback-title {
        font-size: 32px;
    }

    .feedback-card {
        min-height: 330px;
    }

    .feedback-text {
        font-size: 12px;
    }

    .feedback-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .feedback-trust-content {
        align-items: flex-start;
    }
}


/* ==================================================
   FAQ SECTION
================================================== */

.faq-section {
    position: relative;
    padding: 140px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

.faq-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.faq-glow-left {
    left: -350px;
    top: 20%;
    background: var(--purple-primary);
    opacity: .10;
}

.faq-glow-right {
    right: -350px;
    bottom: 0;
    background: var(--purple-dark);
    opacity: .09;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.faq-sticky {
    position: sticky;
    top: 100px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 23px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 11px;
}

.faq-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 10px var(--purple-primary);
}

.faq-title {
    margin: 0;
    color: var(--section-title-color);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.faq-title span {
    display: block;
    background: linear-gradient(
            90deg,
            #fff,
            var(--purple-light) 50%,
            var(--purple-primary)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-description {
    max-width: 420px;
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* ==================================================
   HELP BOX
================================================== */

.faq-help-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 35px;
    padding: 17px;
    max-width: 360px;
    border: 1px solid var(--border-light);
    border-radius: 13px;
    background: var(--section-card-bg);
}

.faq-help-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--section-icon-color);
    background: var(--section-icon-bg);
    border: 1px solid var(--border-light);
}

.faq-help-box strong {
    display: block;
    color: var(--text-muted-light);
    font-size: 11px;
    font-weight: 500;
}

.faq-help-box span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 10px;
}


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

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px 18px;
    color: var(--purple-light);
    text-decoration: none;
    font-size: 11px;
    border: 1px solid var(--badge-border);
    border-radius: 8px;
    background: var(--badge-bg);
    transition: .3s ease;
}

.faq-contact-btn i {
    transition: .3s ease;
}

.faq-contact-btn:hover {
    color: var(--text-color);
    border-color: rgba(170, 90, 255, .55);
    background: rgba(100, 0, 255, .12);
    box-shadow: 0 10px 35px var(--purple-glow);
}

.faq-contact-btn:hover i {
    transform: translate(3px, -3px);
}


/* ==================================================
   FAQ LIST
================================================== */

.faq-list {
    width: 100%;
    border-top: 1px solid var(--border-light);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}


/* ==================================================
   QUESTION
================================================== */

.faq-question {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 45px 1fr 40px;
    align-items: center;
    gap: 10px;
    padding: 25px 5px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text-muted-light);
    text-align: left;
    cursor: pointer;
}

.faq-number {
    color: var(--section-number);
    font-size: 9px;
    letter-spacing: 1px;
}

.faq-question-text {
    color: var(--text-muted-light);
    font-size: 14px;
    font-weight: 400;
    transition: .3s ease;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 12px;
    transition: .3s ease;
}


/* ==================================================
   HOVER
================================================== */

.faq-question:hover .faq-question-text {
    color: var(--text-color);
}

.faq-question:hover .faq-icon {
    color: var(--purple-light);
    border-color: var(--badge-border);
    background: var(--badge-bg);
}


/* ==================================================
   OPEN STATE
================================================== */

.faq-question:not(.collapsed) {
    padding-bottom: 18px;
}

.faq-question:not(.collapsed) .faq-number {
    color: var(--purple-primary);
}

.faq-question:not(.collapsed) .faq-question-text {
    color: var(--text-color);
}

.faq-question:not(.collapsed) .faq-icon {
    color: var(--text-color);
    background: linear-gradient(
            135deg,
            var(--purple-primary),
            var(--purple-dark)
    );
    border-color: transparent;
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--purple-glow);
}


/* ==================================================
   ANSWER
================================================== */

.faq-answer {
    max-width: 700px;
    padding: 0 50px
    25px 50px;
    color: var(--section-card-text);
    font-size: 14px;
    line-height: 1.85;
}


/* ==================================================
   ANIMATION
================================================== */

.faq-answer.collapsing {
    transition: height .35s ease;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .faq-sticky {
        position: relative;
        top: auto;
    }

    .faq-description {
        max-width: 600px;
    }

    .faq-help-box {
        margin-top: 25px;
    }

    .faq-contact-btn {
        margin-bottom: 30px;
    }
}


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

@media (max-width: 767px) {

    .faq-section {
        padding: 90px 15px;
    }

    .faq-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .faq-description {
        font-size: 12px;
    }

    .faq-list {
        margin-top: 20px;
    }

    .faq-question {
        grid-template-columns: 30px 1fr 35px;
        gap: 8px;
        padding: 21px 0;
    }

    .faq-question-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .faq-icon {
        width: 29px;
        height: 29px;
        font-size: 10px;
    }

    .faq-answer {
        padding: 0 35px
        22px 38px;
        font-size: 13px;
        line-height: 1.8;
    }
}


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

@media (max-width: 480px) {

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        grid-template-columns: 25px 1fr 30px;
    }

    .faq-number {
        font-size: 8px;
    }

    .faq-question-text {
        font-size: 11px;
    }

    .faq-answer {
        padding-left: 33px;
        font-size: 13px;
    }
}

/* ==================================================
   FINAL CTA
================================================== */

.final-cta-section {
    position: relative;
    padding: 130px 20px 140px;
    background: var(--bg-primary);
    overflow: hidden;
}


/* ==================================================
   GRID BACKGROUND
================================================== */

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image: linear-gradient(
            rgba(150, 70, 255, .055) 1px,
            transparent 1px
    ),
    linear-gradient(
            90deg,
            rgba(150, 70, 255, .055) 1px,
            transparent 1px
    );
    background-size: 70px 70px;
    mask-image: radial-gradient(
            ellipse at center,
            black 0%,
            transparent 70%
    );
    -webkit-mask-image: radial-gradient(
            ellipse at center,
            black 0%,
            transparent 70%
    );
    pointer-events: none;
}


/* ==================================================
   GLOWS
================================================== */

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cta-glow-main {
    width: 550px;
    height: 350px;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
            ellipse,
            var(--purple-primary),
            var(--purple-dark) 45%,
            transparent 75%
    );
    opacity: .20;
}

.cta-glow-left {
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 0;
    background: var(--purple-primary);
    opacity: .10;
}

.cta-glow-right {
    width: 300px;
    height: 300px;
    right: -180px;
    top: 0;
    background: var(--purple-dark);
    opacity: .10;
}


/* ==================================================
   CONTAINER
================================================== */

.final-cta-section .container {
    position: relative;
    z-index: 2;
}


/* ==================================================
   CTA BOX
================================================== */

.cta-box {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 90px 60px;
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--badge-border);
    border-radius: 25px;
    background: radial-gradient(
            circle at 50% 0%,
            var(--purple-glow),
            transparent 42%
    ),
    var(--section-card-bg);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 120px rgba(50, 0, 130, .12);
}


/* ==================================================
   DECORATIVE LINES
================================================== */

.cta-line {
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--purple-primary)
    );
    opacity: .6;
}

.cta-line-top {
    top: 0;
    left: 0;
}

.cta-line-bottom {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}


/* ==================================================
   BADGE
================================================== */

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 25px;
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 10px;
    letter-spacing: .7px;
}

.cta-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow: 0 0 8px var(--purple-primary),
    0 0 18px var(--purple-glow-hover);
    animation: ctaStatusPulse 2s infinite;
}

@keyframes ctaStatusPulse {

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

    50% {
        opacity: 1;
    }
}


/* ==================================================
   TITLE
================================================== */

.cta-title {
    max-width: 850px;
    margin: 0 auto;
    color: var(--section-title-color);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -3px;
}

.cta-title span {
    display: block;
    background: linear-gradient(
            90deg,
            var(--text-color) 0%,
            var(--purple-light) 48%,
            var(--purple-primary) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==================================================
   DESCRIPTION
================================================== */

.cta-description {
    max-width: 650px;
    margin: 25px auto 0;
    color: var(--section-card-text);
    font-size: 13px;
    line-height: 1.85;
}


/* ==================================================
   ACTIONS
================================================== */

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}


/* ==================================================
   PRIMARY
================================================== */

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 21px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(
            135deg,
            var(--purple-primary),
            var(--purple-dark)
    );
    border: 1px solid rgba(196, 130, 255, .35);
    box-shadow: var(--box-shadow-main);
    transition: .3s ease;
}

.cta-primary i {
    transition: .3s ease;
}

.cta-primary:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px var(--purple-glow-hover);
}

.cta-primary:hover i {
    transform: translate(3px, -3px);
}


/* ==================================================
   SECONDARY
================================================== */

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 21px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
    transition: .3s ease;
}

.cta-secondary i {
    transition: .3s ease;
}

.cta-secondary:hover {
    color: var(--text-muted-light);
    border-color: var(--badge-border);
    background: var(--badge-bg);
}

.cta-secondary:hover i {
    transform: translateX(4px);
}


/* ==================================================
   TRUST
================================================== */

.cta-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 45px;
    color: var(--text-muted);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
}

.cta-trust-item i {
    color: var(--section-icon-color);
    font-size: 12px;
}

.cta-trust-divider {
    width: 1px;
    height: 14px;
    background: var(--border-light);
}


/* ==================================================
   CODE LINE
================================================== */

.cta-code {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 45px;
    color: rgba(255, 255, 255, .20);
    font-size: 8px;
    letter-spacing: 2px;
}

.cta-code b {
    color: var(--purple-primary);
    font-weight: 400;
    opacity: .55;
}


/* ==================================================
   TOP GLOW LINE
================================================== */

.cta-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 220px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
            90deg,
            transparent,
            var(--purple-primary),
            transparent
    );
    box-shadow: 0 0 20px var(--purple-primary);
    opacity: .8;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .cta-box {
        padding: 75px 40px;
    }

    .cta-title {
        font-size: 50px;
    }
}


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

@media (max-width: 767px) {

    .final-cta-section {
        padding: 90px 15px;
    }

    .cta-box {
        padding: 65px 22px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .cta-description {
        font-size: 12px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 13px;
        margin-top: 35px;
    }

    .cta-trust-divider {
        display: none;
    }

    .cta-code {
        margin-top: 35px;
        font-size: 7px;
    }
}


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

@media (max-width: 480px) {

    .cta-title {
        font-size: 32px;
    }

    .cta-badge {
        font-size: 9px;
    }

    .cta-code {
        gap: 6px;
        letter-spacing: 1.2px;
    }
}


/* =========================================================
 INVESTIGATION GUIDE
========================================================= */
.investigation-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-color);
}

/* =========================================================
BACKGROUND
========================================================= */
.investigation-grid {
    position: absolute;
    inset: 0;
    opacity: .7;
    pointer-events: none;
    background-image:
            linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
            linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);
    background-size: 70px 70px;
}

.investigation-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
}

.investigation-glow-1 {
    width: 700px;
    height: 700px;
    top: -350px;
    left: -300px;
    background: var(--purple-primary);
    opacity: .07;
}

.investigation-glow-2 {
    width: 600px;
    height: 600px;
    top: 1900px;
    right: -300px;
    background: var(--purple-dark);
    opacity: .06;
}

/* =========================================================
HERO
========================================================= */
.investigation-hero {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 145px 0 80px;
}

.investigation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--badge-text);
    font-size: 11px;
    letter-spacing: 2.5px;
}

.investigation-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
    box-shadow:
            0 0 15px var(--purple-primary);
}

.investigation-hero h1 {
    margin: 22px 0 0;
    color: var(--section-title-color);
    font-size: clamp(52px, 7vw, 86px);
    line-height: .94;
    font-weight: 300;
    letter-spacing: -4px;
}

.investigation-hero h1 span {
    background:
            linear-gradient(90deg,
            #ffffff,
            var(--purple-light),
            var(--purple-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.investigation-hero p {
    max-width: 680px;
    margin: 30px auto 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

.investigation-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.ig-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 21px;
    border: 1px solid var(--badge-border);
    border-radius: 8px;
    color: var(--text-color);
    background: var(--badge-bg);
    font-size: 12px;
    text-decoration: none;
    transition: .3s ease;
}

.ig-primary-btn:hover {
    color: #fff;
    border-color: var(--purple-primary);
    transform: translateY(-2px);
    box-shadow:
            0 15px 40px var(--purple-glow);
}

.ig-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: .25s ease;
}

.ig-secondary-btn:hover {
    color: var(--text-color);
}

/* =========================================================
HERO INVESTIGATION VISUAL
========================================================= */
.investigation-visual {
    position: relative;
    z-index: 2;
    height: 470px;
    max-width: 1100px;
    margin: 20px auto 0;
    overflow: hidden;
    border:
            1px solid var(--border-light);
    border-radius: var(--section-card-radius);
    background:
            radial-gradient(circle at center,
            rgba(120, 0, 255, .09),
            transparent 55%),
            #020202;
}

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

.investigation-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
            translate(-50%, -50%);
    border:
            1px solid rgba(143, 50, 255, .14);
    border-radius: 50%;
}

.investigation-orbit-a {
    width: 220px;
    height: 220px;
}

.investigation-orbit-b {
    width: 390px;
    height: 390px;
}

.investigation-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
            translate(-50%, -50%);
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border:
            1px solid rgba(143, 50, 255, .4);
    border-radius: 50%;
    background: #050505;
    color: var(--section-icon-color);
    box-shadow:
            0 0 80px var(--purple-glow);
}

.investigation-center i {
    font-size: 28px;
}

.investigation-center strong {
    margin-top: 8px;
    color: var(--text-muted-light);
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 400;
}

.investigation-center small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 8px;
    letter-spacing: 1px;
}

/* =========================================================
VISUAL CARDS
========================================================= */
.investigation-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border:
            1px solid var(--border-light);
    border-radius: 8px;
    background:
            rgba(4, 4, 4, .94);
    color: var(--text-muted);
    font-size: 10px;
    box-shadow:
            0 15px 40px rgba(0, 0, 0, .45);
}

.investigation-node i {
    color: var(--section-icon-color);
    font-size: 14px;
}

.investigation-node-1 {
    top: 18%;
    left: 13%;
}

.investigation-node-2 {
    top: 18%;
    right: 13%;
}

.investigation-node-3 {
    bottom: 18%;
    left: 13%;
}

.investigation-node-4 {
    bottom: 18%;
    right: 13%;
}

.investigation-line {
    position: absolute;
    height: 1px;
    background:
            linear-gradient(90deg,
            transparent,
            rgba(143, 50, 255, .35),
            transparent);
    transform-origin: center;
}

.investigation-line-1 {
    width: 280px;
    top: 39%;
    left: 25%;
    transform: rotate(28deg);
}

.investigation-line-2 {
    width: 280px;
    top: 39%;
    right: 25%;
    transform: rotate(-28deg);
}

.investigation-line-3 {
    width: 280px;
    bottom: 39%;
    left: 25%;
    transform: rotate(-28deg);
}

.investigation-line-4 {
    width: 280px;
    bottom: 39%;
    right: 25%;
    transform: rotate(28deg);
}

.investigation-status {
    position: absolute;
    left: 24px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: 1.5px;
}

.investigation-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #65a878;
    box-shadow:
            0 0 12px rgba(70, 180, 100, .6);
}

/* =========================================================
GUIDE INTRO
========================================================= */
.guide-section {
    position: relative;
    padding: 150px 0 100px;
}

.guide-heading {
    max-width: 720px;
    margin-bottom: 80px;
}

.guide-heading h2 {
    margin: 20px 0 0;
    color: var(--section-title-color);
    font-size: clamp(42px, 5vw, 64px);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.guide-heading h2 span {
    color: var(--purple-light);
}

.guide-heading p {
    max-width: 650px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
GUIDE STEPS
========================================================= */
.guide-step {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr 220px;
    align-items: center;
    gap: 35px;
    padding: 35px 0;
    border-top:
            1px solid var(--border-light);
}

.guide-step:last-child {
    border-bottom:
            1px solid var(--border-light);
}

.guide-step-number {
    color: var(--section-number);
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 1px;
}

.guide-step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
            1px solid var(--badge-border);
    border-radius: 12px;
    color: var(--section-icon-color);
    background:
            var(--section-icon-bg);
    font-size: 21px;
}

.guide-step-main {
    display: flex;
    align-items: center;
    gap: 22px;
}

.guide-step-content h3 {
    margin: 0;
    color: var(--section-card-title);
    font-size: 25px;
    font-weight: 400;
}

.guide-step-content p {
    max-width: 600px;
    margin: 8px 0 0;
    color: var(--section-card-text);
    font-size: 13px;
    line-height: 1.7;
}

.guide-step-tag {
    justify-self: end;
    padding: 8px 11px;
    border:
            1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: 1px;
    background:
            rgba(255, 255, 255, .025);
}

/* =========================================================
WHAT CAN BE INVESTIGATED
========================================================= */
.investigate-section {
    padding: 120px 0 150px;
}

.investigate-heading {
    max-width: 680px;
    margin-bottom: 60px;
}

.investigate-heading h2 {
    margin: 20px 0 0;
    color: var(--section-title-color);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.investigate-heading h2 span {
    color: var(--purple-light);
}

.investigate-heading p {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.investigate-grid {
    display: grid;
    grid-template-columns:
                    repeat(4, 1fr);
    gap: 16px;
}

.investigate-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border:
            1px solid var(--border-light);
    border-radius: var(--section-card-radius);
    background:
            var(--section-card-bg);
    transition:
            .3s ease;
}

.investigate-card:hover {
    transform: translateY(-5px);
    border-color:
            var(--badge-border);
    box-shadow:
            var(--box-shadow-main);
}

.investigate-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--section-icon-color);
    background:
            var(--section-icon-bg);
    font-size: 21px;
}

.investigate-card h3 {
    margin: 28px 0 10px;
    color: var(--section-card-title);
    font-size: 21px;
    font-weight: 400;
}

.investigate-card p {
    margin: 0;
    color: var(--section-card-text);
    font-size: 13px;
    line-height: 1.8;
}

.investigate-card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: var(--section-number);
    font-family: monospace;
    font-size: 10px;
}

/* =========================================================
AI SECTION
========================================================= */
.ai-section {
    padding: 120px 0 150px;
}

.ai-box {
    position: relative;
    overflow: hidden;
    padding: 75px;
    border:
            1px solid var(--badge-border);
    border-radius:
            var(--section-card-radius);
    background:
            radial-gradient(circle at 80% 50%,
            rgba(120, 0, 255, .12),
            transparent 50%),
            #030303;
}

.ai-box-grid {
    display: grid;
    grid-template-columns:
                    1fr 1fr;
    align-items: center;
    gap: 80px;
}

.ai-content .investigation-eyebrow {
    margin-bottom: 20px;
}

.ai-content h2 {
    margin: 0;
    color: var(--section-title-color);
    font-size: clamp(40px, 5vw, 60px);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.ai-content h2 span {
    color: var(--purple-light);
}

.ai-content p {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
AI FLOW
========================================================= */
.ai-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.ai-flow-item {
    width: 230px;
    padding: 15px 18px;
    border:
            1px solid var(--border-light);
    border-radius: 8px;
    background:
            rgba(5, 5, 5, .9);
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
}

.ai-flow-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--section-card-title);
    font-size: 12px;
    font-weight: 400;
}

.ai-flow-arrow {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    font-size: 16px;
}

/* =========================================================
WORKFLOW
========================================================= */
.workflow-section {
    padding: 120px 0 150px;
}

.workflow-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.workflow-heading h2 {
    margin: 20px 0 0;
    color: var(--section-title-color);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.workflow-heading h2 span {
    color: var(--purple-light);
}

.workflow-heading p {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.workflow-grid {
    display: grid;
    grid-template-columns:
                    repeat(5, 1fr);
    gap: 0;
}

.workflow-item {
    position: relative;
    padding: 25px 20px;
    border-top:
            1px solid var(--border-light);
}

.workflow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -1px;
    width: 1px;
    height: 80px;
    background:
            var(--border-light);
}

.workflow-number {
    color: var(--purple-primary);
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 1px;
}

.workflow-item h3 {
    margin: 18px 0 10px;
    color: var(--section-card-title);
    font-size: 20px;
    font-weight: 400;
}

.workflow-item p {
    margin: 0;
    color: var(--section-card-text);
    font-size: 11px;
    line-height: 1.75;
}

/* =========================================================
CTA
========================================================= */
.investigation-cta {
    padding: 60px 0 150px;
}

.investigation-cta-box {
    position: relative;
    overflow: hidden;
    padding: 100px 30px;
    text-align: center;
    border:
            1px solid var(--badge-border);
    border-radius:
            var(--section-card-radius);
    background:
            radial-gradient(circle at 50% 100%,
            rgba(120, 0, 255, .13),
            transparent 55%),
            #030303;
}

.investigation-cta-box h2 {
    margin: 20px 0;
    color: var(--section-title-color);
    font-size: clamp(42px, 6vw, 68px);
    line-height: .95;
    font-weight: 300;
    letter-spacing: -3px;
}

.investigation-cta-box h2 span {
    color: var(--purple-light);
}

.investigation-cta-box p {
    max-width: 570px;
    margin: 0 auto 30px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .investigation-hero {
        padding-top: 110px;
    }

    .investigation-visual {
        height: 440px;
    }

    .guide-step {
        grid-template-columns:
                        70px 1fr;
    }

    .guide-step-tag {
        display: none;
    }

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

    .ai-box {
        padding: 55px;
    }

    .ai-box-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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

    .workflow-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .investigation-hero {
        padding:
                90px 15px 60px;
    }

    .investigation-hero h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .investigation-hero p {
        font-size: 13px;
    }

    .investigation-actions {
        flex-direction: column;
        align-items: center;
    }

    .investigation-visual {
        height: 420px;
    }

    .investigation-node {
        transform: scale(.82);
    }

    .investigation-node-1 {
        left: 1%;
    }

    .investigation-node-2 {
        right: 1%;
    }

    .investigation-node-3 {
        left: 1%;
    }

    .investigation-node-4 {
        right: 1%;
    }

    .guide-section,
    .investigate-section,
    .ai-section,
    .workflow-section {
        padding:
                100px 15px;
    }

    .guide-heading {
        margin-bottom: 50px;
    }

    .guide-step {
        grid-template-columns: 55px 1fr;
        gap: 15px;
        padding: 30px 0;
    }

    .guide-step-main {
        align-items: flex-start;
        gap: 15px;
    }

    .guide-step-icon {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
    }

    .guide-step-content h3 {
        font-size: 21px;
    }

    .guide-step-content p {
        font-size: 13px;
    }

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

    .ai-box {
        padding: 45px 25px;
    }

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

    .investigation-cta {
        padding:
                40px 15px 100px;
    }

    .investigation-cta-box {
        padding: 70px 20px;
    }
}

@media (max-width: 480px) {
    .investigation-visual {
        height: 380px;
    }

    .investigation-node {
        transform: scale(.7);
    }

    .investigation-center {
        width: 100px;
        height: 100px;
    }

    .investigation-center i {
        font-size: 23px;
    }

    .investigation-center strong {
        font-size: 9px;
    }

    .investigation-orbit-a {
        width: 180px;
        height: 180px;
    }

    .investigation-orbit-b {
        width: 290px;
        height: 290px;
    }

    .guide-step-number {
        font-size: 12px;
    }

    .investigate-card {
        min-height: 220px;
        padding: 24px;
    }

    .ai-flow-item {
        width: 200px;
    }

    .investigation-cta-box h2 {
        font-size: 42px;
    }
}