/* HERO SECTION PREMIUM ENHANCEMENTS */

/* ================================================
   DARK BRANDED PAGE LOADER — all pages
   ================================================ */
.lp-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #05070e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.lp-page-loader.lp-loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lp-loader-brand {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.9;
}

.lp-loader-brand span {
    color: #4facfe;
}

.lp-loader-bar-wrap {
    width: 180px;
    height: 2px;
    border-radius: 50px;
    background: rgba(79, 172, 254, 0.12);
    position: relative;
    overflow: hidden;
}

.lp-loader-bar {
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, #4461DF, #4facfe, transparent);
    animation: lpLoaderScan 1.1s ease-in-out infinite;
}

@keyframes lpLoaderScan {
    0% {
        left: -60%;
    }

    100% {
        left: 110%;
    }
}

.lp-loader-dots {
    display: flex;
    gap: 8px;
}

.lp-loader-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4461DF;
    animation: lpLoaderPulse 1.1s ease-in-out infinite;
}

.lp-loader-dots span:nth-child(2) {
    animation-delay: 0.18s;
    background: #4f80ef;
}

.lp-loader-dots span:nth-child(3) {
    animation-delay: 0.36s;
    background: #4facfe;
}

@keyframes lpLoaderPulse {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.75);
    }

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


/* ================================================
   GLOBAL NAVBAR FIXES — hide theme-injected clones
   ================================================ */
.sticky-nav,
#navbarModal,
.btn-mobile-navbar {
    display: none !important;
}

/* ================================================
   INNER PAGE NAVBAR (non-landing, light theme)
   ================================================ */
.navbar:not(.navbar-slanted) {
    background: #ffffff !important;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
    padding: 12px 0;
    transition: box-shadow 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.navbar:not(.navbar-slanted) .nav-link {
    color: #374151 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    padding: 8px 16px !important;
    border-radius: 6px;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.navbar:not(.navbar-slanted) .nav-link:hover {
    color: #4461DF !important;
    background: rgba(68, 97, 223, 0.06);
}

.navbar:not(.navbar-slanted) .nav-link:not(.dropdown-toggle)::after {
    display: none !important;
}

.navbar:not(.navbar-slanted) .dropdown-menu {
    font-family: 'Inter', sans-serif;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
    padding: 8px !important;
    margin-top: 8px !important;
}

.navbar:not(.navbar-slanted) .dropdown-item {
    color: #374151 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.navbar:not(.navbar-slanted) .dropdown-item:hover {
    background: rgba(68, 97, 223, 0.06) !important;
    color: #4461DF !important;
    transform: translateX(4px);
}

/* ================================================
   HERO GLOBE SECTION
   ================================================ */
.hero-globe-section {
    position: relative;
    padding: 120px 0 30px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(68, 97, 223, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(79, 172, 254, 0.05) 0%, transparent 40%),
        #05070e;
    color: white;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 97, 223, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 97, 223, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

/* Mouse-tracking highlight layer */
.hero-grid-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 97, 223, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 97, 223, 0.22) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle 350px at var(--mouse-x, -999px) var(--mouse-y, -999px), black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle 350px at var(--mouse-x, -999px) var(--mouse-y, -999px), black 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-globe-section:hover .hero-grid-pattern::after {
    opacity: 1;
}


/* Subtle Grain Effect */
.hero-globe-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: premiumFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(210, 215, 240, 0.8);
    margin-bottom: 35px;
    max-width: 90%;
    animation: premiumFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

@keyframes premiumFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Premium Marquee with Scan Animation */
.globe-marquee {
    width: 220%;
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.03), transparent);
}

.globe-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.15), transparent);
    animation: marqueeScan 4s linear infinite;
}

@keyframes marqueeScan {
    to {
        left: 200%;
    }
}


/* --- PREMIUM HIGHLIGHTS --- */
.text-gradient-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    to {
        background-position: 200% center;
    }
}

.elevate-btn {
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    border-radius: 50px !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.elevate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.elevate-btn:hover::before {
    left: 100%;
}

.elevate-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4) !important;
}

.btn-primary.elevate-btn {
    background: linear-gradient(135deg, #4461DF 0%, #4facfe 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(68, 97, 223, 0.3);
}

.btn-outline-light.elevate-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.text-primary-glow {
    color: #4facfe;
    text-shadow: 0 0 12px rgba(79, 172, 254, 0.8);
    letter-spacing: 4px;
    font-weight: 800;
    animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(79, 172, 254, 0.6);
    }

    50% {
        text-shadow: 0 0 20px rgba(79, 172, 254, 1), 0 0 30px rgba(79, 172, 254, 0.4);
    }
}

.globe-marquee p {
    font-size: 0.85rem;
    white-space: nowrap;
    margin: 0;
    opacity: 0.8;
}

/* ================================================
   GLOBE CONTAINER
   ================================================ */
#globe-container {
    width: 100%;
    height: 370px;
    cursor: grab;
    position: relative;
    z-index: 5;
    margin-left: 0;
    margin-right: 0;
    filter: drop-shadow(0 0 50px rgba(79, 172, 254, 0.2));
}

#globe-container:active {
    cursor: grabbing;
}

/* Glow effect around globe */
#globe-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(74, 172, 254, 0.15) 0%, rgba(68, 97, 223, 0.05) 40%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

/* UI Indicators around globe */
.globe-ui-indicator {
    position: absolute;
    background: rgba(13, 19, 38, 0.7);
    backdrop-filter: blur(8px);
    border-left: 2px solid #4facfe;
    padding: 8px 12px;
    border-radius: 4px;
    z-index: 10;
    font-family: 'Space Grotesk', sans-serif;
    min-width: 120px;
    animation: fadePulse 4s ease-in-out infinite;
    pointer-events: none;
}

.globe-ui-indicator.top-left { top: 10%; left: 0%; transform: translateX(-50%); }
.globe-ui-indicator.top-right { top: 10%; right: 0%; transform: translateX(50%); }
.globe-ui-indicator.bottom-left { bottom: 10%; left: 0%; transform: translateX(-50%); }
.globe-ui-indicator.bottom-right { bottom: 10%; right: 0%; transform: translateX(50%); }

.globe-ui-indicator .label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    font-weight: 800;
}

.globe-ui-indicator .value {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

/* ================================================
   LANDING PAGE NAVBAR (dark, glassmorphic)
   ================================================ */
.navbar-slanted {
    background: rgba(5, 7, 14, 0.4) !important;
    backdrop-filter: blur(18px) saturate(200%);
    -webkit-backdrop-filter: blur(18px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    position: fixed;
    top: 0;
    width: 100% !important;
    padding: 14px 0;
    z-index: 1060;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Animated Bottom Border */
.navbar-slanted::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.3), rgba(68, 97, 223, 0.4), rgba(79, 172, 254, 0.3), transparent);
    z-index: 1061;
}

.navbar-slanted.scrolled {
    background: rgba(5, 7, 14, 0.97) !important;
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(79, 172, 254, 0.15);
}

/* Premium Brand Styling */
.navbar-brand {
    font-family: 'Space Grotesk', 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    letter-spacing: 1px;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    z-index: 1062;
    padding: 0;
}

.navbar-brand:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

/* Navbar Links Styling — Desktop */
.navbar-slanted .nav-link {
    color: rgba(255, 255, 255, 0.65) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.navbar-slanted .nav-link:hover {
    color: #ffffff !important;
}

/* Underline animation — desktop only, exclude dropdown toggles which need their caret */
.navbar-slanted .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, #4461DF, #4facfe);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(79, 172, 254, 0.3);
}

.navbar-slanted .nav-link:not(.dropdown-toggle):hover::after {
    transform: scaleX(1);
}

/* Dropdown caret color on dark navbar */
.navbar-slanted .dropdown-toggle::after {
    border-top-color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.navbar-slanted .dropdown-toggle:hover::after {
    border-top-color: rgba(255, 255, 255, 0.8);
}

/* Dropdown — Desktop (dark glassmorphic) */
.navbar-slanted .dropdown-menu {
    font-family: 'Inter', sans-serif;
    background: rgba(13, 19, 38, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5) !important;
    padding: 10px !important;
    margin-top: 10px !important;
    animation: dropdownSlideUpPremium 0.3s ease-out;
}

@keyframes dropdownSlideUpPremium {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar-slanted .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: 'Inter', sans-serif;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.navbar-slanted .dropdown-item:hover {
    background: rgba(68, 97, 223, 0.1) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

/* Active link indicator */
.navbar-slanted .nav-item.active .nav-link {
    color: #ffffff !important;
}

.navbar-slanted .nav-item.active .nav-link::after {
    transform: scaleX(1);
    background: #4facfe;
}

/* Buttons inside slanted navbar */
.navbar-slanted .btn-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-slanted .btn-link:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.navbar-slanted .btn-outline-primary {
    border: 1px solid rgba(79, 172, 254, 0.4) !important;
    color: #ffffff !important;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-slanted .btn-outline-primary:hover {
    background: #4facfe;
    color: #0d1326 !important;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.4);
    transform: translateY(-2px);
    border-color: #4facfe !important;
}

/* ================================================
   RESPONSIVE — TABLET / MOBILE (≤991px)
   ================================================ */
@media (max-width: 1399px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    #globe-container {
        height: 480px;
        margin-left: 0;
    }
}

@media (max-width: 991px) {

    /* --- Hero Section adjustments --- */
    .hero-globe-section {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    #globe-container {
        display: none !important;
    }

    #globe-container::before {
        width: 110%;
        height: 110%;
    }

    /* Header is position:relative on mobile, so hero no longer needs
       large padding-top to clear an absolute navbar */
    .tv-hero-section.style-8 .hero-content-left {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    /* ================================================
       MOBILE NAVBAR — Landing page (dark theme)
       ================================================ */

    /* Toggler button */
    .navbar-slanted .navbar-toggler {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-slanted .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.4) !important;
    }

    .navbar-slanted .navbar-toggler-icon {
        filter: invert(1) brightness(1.5);
        width: 20px;
        height: 20px;
    }

    /* Collapse panel — both .show (fully open) and .collapsing (animating) */
    .navbar-slanted .navbar-collapse.show,
    .navbar-slanted .navbar-collapse.collapsing {
        background: rgba(13, 19, 38, 0.98);
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    /* Nav links inside mobile collapse */
    .navbar-slanted .navbar-collapse .nav-link {
        padding: 12px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.9rem;
    }

    .navbar-slanted .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Hide the custom underline pseudo-element on mobile (not dropdown carets) */
    .navbar-slanted .nav-link:not(.dropdown-toggle)::after {
        display: none !important;
    }

    /* Dropdown menu on mobile — flat style, no float */
    .navbar-slanted .dropdown-menu {
        background: rgba(20, 28, 54, 0.95) !important;
        border: none !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        margin-top: 4px !important;
        padding: 4px 8px !important;
        animation: none;
    }

    .navbar-slanted .dropdown-item {
        padding: 10px 14px !important;
        font-size: 0.85rem;
        border-radius: 8px !important;
    }

    /* ================================================
       MOBILE NAVBAR — Inner pages (light theme)
       ================================================ */
    .navbar:not(.navbar-slanted) .navbar-toggler {
        border: 1px solid rgba(0, 0, 0, 0.15) !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar:not(.navbar-slanted) .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(68, 97, 223, 0.3) !important;
    }

    .navbar:not(.navbar-slanted) .navbar-collapse.show,
    .navbar:not(.navbar-slanted) .navbar-collapse.collapsing {
        background: #ffffff;
        border-radius: 12px;
        margin-top: 10px;
        padding: 12px 16px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .navbar:not(.navbar-slanted) .navbar-collapse .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar:not(.navbar-slanted) .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar:not(.navbar-slanted) .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        margin-top: 4px !important;
        background: #f9fafb !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    #globe-container {
        display: none !important;
    }

    #globe-container::before {
        width: 110%;
        height: 110%;
    }
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 16px 16px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent-inner {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(15, 20, 40, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(68, 97, 223, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(68, 97, 223, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cookie-consent-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(68, 97, 223, 0.2), rgba(79, 172, 254, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #4facfe;
    margin-top: 2px;
}

.cookie-consent-text h6 {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: 0.2px;
}

.cookie-consent-text p {
    color: rgba(200, 210, 235, 0.7);
    font-size: 0.76rem;
    line-height: 1.55;
    margin: 0;
}

.cookie-consent-text a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
    color: #7fc4fe;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie-decline,
.btn-cookie-accept {
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.3px;
}

.btn-cookie-decline {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(200, 210, 235, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #4461DF 0%, #4facfe 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(68, 97, 223, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 97, 223, 0.45);
}

@media (max-width: 575px) {
    .cookie-consent-inner {
        padding: 16px 18px;
    }

    .cookie-consent-icon {
        display: none;
    }

    .cookie-consent-actions {
        flex-direction: row;
    }

    .btn-cookie-decline,
    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
}

/* =================================================================
   LANDING PAGE — BELOW-HERO SECTION STYLES
   ================================================================= */

/* ----- Shared Design Tokens ----- */
:root {
    --lp-dark: #05070e;
    --lp-dark-2: #0c1121;
    --lp-dark-3: #111827;
    --lp-primary: #4461DF;
    --lp-blue: #4facfe;
    --lp-teal: #00f2fe;
    --lp-violet: #a78bfa;
    --lp-amber: #f59e0b;
    --lp-green: #10b981;
    --lp-orange: #f97316;
    --lp-card-border: rgba(255, 255, 255, 0.07);
    --lp-glass: rgba(12, 17, 33, 0.7);
}

/* ----- Scroll-reveal base ----- */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].lp-aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Section header shared ----- */
.lp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--lp-blue);
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 50px;
    background: rgba(79, 172, 254, 0.06);
    margin-bottom: 14px;
}

.lp-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.lp-section-sub {
    color: rgba(180, 195, 230, 0.65);
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 0;
}

/* ----- Shared buttons ----- */
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-blue));
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 30px rgba(68, 97, 223, 0.35);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.lp-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lp-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(68, 97, 223, 0.5);
}

.lp-cta-btn:hover::before {
    opacity: 1;
}

.lp-outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none !important;
    background: rgba(79, 172, 254, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lp-outline-btn:hover {
    border-color: var(--lp-blue);
    color: #fff !important;
    background: rgba(79, 172, 254, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

/* =============================================
   1. LIVE STATS TICKER
   ============================================= */
.lp-stats-ticker {
    background: var(--lp-dark-3);
    border-top: 1px solid rgba(68, 97, 223, 0.18);
    border-bottom: 1px solid rgba(68, 97, 223, 0.18);
    overflow: hidden;
    padding: 0;
}

.lp-ticker-inner {
    display: flex;
    align-items: stretch;
    height: 52px;
}

.lp-ticker-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--lp-blue);
    background: linear-gradient(90deg, rgba(68, 97, 223, 0.12), rgba(68, 97, 223, 0.06));
    border-right: 1px solid rgba(68, 97, 223, 0.2);
    white-space: nowrap;
}

.lp-ticker-track {
    display: flex;
    align-items: center;
    animation: lpTickerScroll 40s linear infinite;
    white-space: nowrap;
    gap: 0;
}

@keyframes lpTickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp-ticker-track:hover {
    animation-play-state: paused;
}

.lp-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(200, 215, 245, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.lp-ticker-val,
.lp-ticker-val-dup {
    font-weight: 800;
    color: #ffffff;
    margin-left: 6px;
}

/* =============================================
   2. FEATURES SECTION
   ============================================= */
.lp-features-section {
    background: linear-gradient(180deg, var(--lp-dark-3) 0%, var(--lp-dark-2) 100%);
    padding: 100px 0;
}

.lp-feat-card {
    position: relative;
    background: var(--lp-glass);
    border: 1px solid var(--lp-card-border);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(16px);
}

.lp-feat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(79, 172, 254, 0.1);
}

.lp-feat-card:hover .lp-feat-glow {
    opacity: 1;
}

.lp-feat-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 97, 223, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.lp-feat-glow.lp-glow-teal {
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3), transparent 70%);
}

.lp-feat-glow.lp-glow-violet {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
}

.lp-feat-glow.lp-glow-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}

.lp-feat-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(68, 97, 223, 0.25), rgba(79, 172, 254, 0.15));
    border: 1px solid rgba(79, 172, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--lp-blue);
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.lp-feat-card:hover .lp-feat-icon-ring {
    transform: scale(1.1) rotate(-6deg);
}

.lp-feat-icon-ring.lp-icon-teal {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0, 242, 254, 0.08));
    border-color: rgba(0, 242, 254, 0.2);
    color: var(--lp-teal);
}

.lp-feat-icon-ring.lp-icon-violet {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.08));
    border-color: rgba(167, 139, 250, 0.2);
    color: var(--lp-violet);
}

.lp-feat-icon-ring.lp-icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--lp-amber);
}

.lp-feat-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-feat-card p {
    color: rgba(180, 195, 230, 0.65);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.lp-feat-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-blue) !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.lp-feat-link:hover {
    gap: 10px;
}

/* =============================================
   3. THREE-STEP SECTION
   ============================================= */
.lp-steps-section {
    position: relative;
    background: var(--lp-dark);
    padding: 100px 0;
    overflow: hidden;
}

.lp-steps-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 97, 223, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 97, 223, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.lp-steps-track {
    position: relative;
    padding-top: 20px;
}

.lp-step-connector {
    position: absolute;
    top: 52px;
    left: 16.7%;
    right: 16.7%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.3), rgba(68, 97, 223, 0.5), rgba(79, 172, 254, 0.3), transparent);
    z-index: 0;
}

.lp-step-card {
    position: relative;
    background: var(--lp-glass);
    border: 1px solid var(--lp-card-border);
    border-radius: 20px;
    padding: 36px 28px 28px;
    margin: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    backdrop-filter: blur(16px);
    z-index: 1;
}

.lp-step-card.lp-step-active {
    border-color: rgba(79, 172, 254, 0.4);
    background: rgba(79, 172, 254, 0.06);
    box-shadow: 0 0 0 1px rgba(79, 172, 254, 0.2), 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
}

.lp-step-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(79, 172, 254, 0.06);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
}

.lp-step-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(68, 97, 223, 0.3), rgba(79, 172, 254, 0.15));
    border: 1px solid rgba(79, 172, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--lp-blue);
    margin: 0 auto 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step-card.lp-step-active .lp-step-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

.lp-step-icon-wrap.lp-step-icon-teal {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(0, 242, 254, 0.1));
    border-color: rgba(0, 242, 254, 0.25);
    color: var(--lp-teal);
}

.lp-step-icon-wrap.lp-step-icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.1));
    border-color: rgba(245, 158, 11, 0.25);
    color: var(--lp-amber);
}

.lp-step-card h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-step-card p {
    color: rgba(180, 195, 230, 0.6);
    font-size: 0.87rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.lp-step-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(68, 97, 223, 0.12);
    border: 1px solid rgba(68, 97, 223, 0.25);
    color: var(--lp-blue);
}

.lp-step-badge.lp-badge-teal {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.2);
    color: var(--lp-teal);
}

.lp-step-badge.lp-badge-amber {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--lp-amber);
}

/* =============================================
   4. LIVE SIGNAL SECTION
   ============================================= */
.lp-signal-section {
    background: linear-gradient(180deg, var(--lp-dark-2) 0%, var(--lp-dark) 100%);
    padding: 100px 0;
}

.lp-signal-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.lp-signal-features li {
    color: rgba(180, 195, 230, 0.75);
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-signal-features li:last-child {
    border-bottom: none;
}

/* Terminal */
.lp-signal-terminal {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 172, 254, 0.06);
    background: #0a0f1e;
}

.lp-terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-terminal-dots {
    display: flex;
    gap: 7px;
}

.lp-terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.lp-terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.lp-terminal-dots span:nth-child(3) {
    background: #27c93f;
}

.lp-terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(180, 195, 230, 0.6);
    letter-spacing: 1px;
}

.lp-terminal-badge {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    animation: terminalPulse 2s ease-in-out infinite;
}

@keyframes terminalPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.lp-terminal-body {
    padding: 6px 0;
    max-height: 340px;
    overflow: hidden;
}

.lp-signal-row {
    display: grid;
    grid-template-columns: 80px 90px 90px 60px 1fr;
    gap: 0;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    transition: background 0.3s ease;
}

.lp-signal-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.lp-signal-row.lp-signal-new {
    background: rgba(79, 172, 254, 0.08);
    animation: signalFlash 0.4s ease-out forwards;
}

@keyframes signalFlash {
    from {
        background: rgba(79, 172, 254, 0.25);
    }

    to {
        background: transparent;
    }
}

.lp-sig-time {
    color: rgba(180, 195, 230, 0.4);
    font-size: 0.72rem;
}

.lp-sig-asset {
    color: rgba(220, 230, 255, 0.9);
    font-weight: 700;
}

.lp-sig-conf {
    color: rgba(180, 195, 230, 0.55);
    font-size: 0.75rem;
}

.lp-sig-model {
    color: rgba(180, 195, 230, 0.35);
    font-size: 0.72rem;
}

.lp-sig-dir {
    font-weight: 800;
    font-size: 0.78rem;
}

.lp-dir-buy {
    color: #10b981;
}

.lp-dir-sell {
    color: #ef4444;
}

.lp-sig-buy {
    border-left: 2px solid rgba(16, 185, 129, 0.3);
}

.lp-sig-sell {
    border-left: 2px solid rgba(239, 68, 68, 0.3);
}

/* =============================================
   5. MARKET CATEGORIES
   ============================================= */
.lp-markets-section {
    background: var(--lp-dark-3);
    padding: 100px 0;
}

.lp-market-card {
    position: relative;
    border-radius: 20px;
    padding: 34px 28px 28px;
    background: var(--lp-glass);
    border: 1px solid var(--lp-card-border);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s, box-shadow 0.4s;
}

.lp-market-card:hover {
    transform: translateY(-12px) rotate(-0.5deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lp-market-card:hover .lp-market-shine {
    opacity: 1;
    left: 100%;
}

.lp-market-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.7s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.lp-market-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.lp-market-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.lp-market-card h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-market-card p {
    color: rgba(180, 195, 230, 0.6);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.lp-market-pairs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-market-pairs span {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(200, 215, 245, 0.7);
}

/* Color accents per market */
.lp-market-blue {
    --accent: var(--lp-blue);
}

.lp-market-orange {
    --accent: var(--lp-orange);
}

.lp-market-green {
    --accent: var(--lp-green);
}

.lp-market-violet {
    --accent: var(--lp-violet);
}

.lp-market-blue .lp-market-icon {
    background: rgba(79, 172, 254, 0.12);
    border: 1px solid rgba(79, 172, 254, 0.2);
    color: var(--lp-blue);
}

.lp-market-orange .lp-market-icon {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--lp-orange);
}

.lp-market-green .lp-market-icon {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--lp-green);
}

.lp-market-violet .lp-market-icon {
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: var(--lp-violet);
}

.lp-market-blue .lp-market-label {
    color: var(--lp-blue);
}

.lp-market-orange .lp-market-label {
    color: var(--lp-orange);
}

.lp-market-green .lp-market-label {
    color: var(--lp-green);
}

.lp-market-violet .lp-market-label {
    color: var(--lp-violet);
}

.lp-market-blue:hover {
    border-color: rgba(79, 172, 254, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(79, 172, 254, 0.08);
}

.lp-market-orange:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 115, 22, 0.08);
}

.lp-market-green:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.08);
}

.lp-market-violet:hover {
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(167, 139, 250, 0.08);
}

/* =============================================
   6. STRATEGIES SECTION
   ============================================= */
.lp-strategies-section {
    background: linear-gradient(180deg, var(--lp-dark-3) 0%, var(--lp-dark-2) 100%);
    padding: 100px 0;
}

.lp-strategy-card {
    position: relative;
    background: var(--lp-glass);
    border: 1px solid var(--lp-card-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(16px);
}

.lp-strategy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(68, 97, 223, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(68, 97, 223, 0.1);
}

.lp-strategy-card:hover .lp-strategy-shine {
    left: 100%;
    opacity: 1;
}

.lp-strategy-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.8s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.lp-strategy-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(68, 97, 223, 0.12);
    border: 1px solid rgba(68, 97, 223, 0.25);
    color: var(--lp-blue);
    margin-bottom: 20px;
}

.lp-strategy-icon {
    font-size: 2.4rem;
    color: var(--lp-blue);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.lp-strategy-card:hover .lp-strategy-icon {
    transform: scale(1.15) rotate(-5deg);
}

.lp-strategy-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-strategy-card p {
    color: rgba(180, 195, 230, 0.6);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.lp-strategy-deploy {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border: 1px solid rgba(68, 97, 223, 0.35);
    border-radius: 50px;
    color: var(--lp-blue) !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    background: rgba(68, 97, 223, 0.06);
    transition: all 0.3s ease;
}

.lp-strategy-deploy:hover {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(68, 97, 223, 0.35);
}

/* =============================================
   7. CTA SECTION
   ============================================= */
.lp-cta-section {
    position: relative;
    background: var(--lp-dark);
    padding: 120px 0;
    overflow: hidden;
}

.lp-cta-glow-left,
.lp-cta-glow-right {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.lp-cta-glow-left {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(68, 97, 223, 0.12) 0%, transparent 70%);
}

.lp-cta-glow-right {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
}

.lp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    margin-bottom: 24px;
}

.lp-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.lp-cta-sub {
    color: rgba(180, 200, 240, 0.6);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.lp-cta-hint {
    font-size: 0.78rem;
    color: rgba(180, 200, 240, 0.35);
    letter-spacing: 0.3px;
}

/* =============================================
   8. PAYMENT BAR
   ============================================= */
.lp-payment-section {
    background: #ffffff;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-pay-label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
}

.lp-pay-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.lp-pay-logos img {
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.lp-pay-logos img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .lp-step-connector {
        display: none;
    }

    .lp-signal-row {
        grid-template-columns: 70px 80px 80px 55px 1fr;
        font-size: 0.73rem;
        padding: 9px 14px;
    }

    .lp-features-section,
    .lp-steps-section,
    .lp-signal-section,
    .lp-markets-section,
    .lp-strategies-section,
    .lp-cta-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .lp-ticker-label {
        display: none;
    }

    .lp-step-card {
        margin: 6px 0;
    }

    .lp-signal-row {
        grid-template-columns: 65px 80px 70px 50px auto;
    }

    .lp-section-title {
        font-size: 1.8rem;
    }

    .lp-cta-title {
        font-size: 2rem;
    }

    .lp-pay-logos {
        gap: 20px;
    }
}

/* =============================================
   LANDING PAGE DARK FOOTER
   Overrides .in-avo-footer styles to match
   the home page dark (#05070e / #0c1121) palette
   ============================================= */
.lp-footer.in-avo-footer {
    background: var(--lp-dark);
    border-top: 1px solid rgba(68, 97, 223, 0.15);
    color: rgba(180, 195, 230, 0.6);
    position: relative;
    overflow: hidden;
}

/* Subtle top glow strip */
.lp-footer.in-avo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 97, 223, 0.5), rgba(79, 172, 254, 0.4), rgba(68, 97, 223, 0.5), transparent);
    pointer-events: none;
}

/* Heading overrides */
.lp-footer.in-avo-footer h5,
.lp-footer.in-avo-footer .h5 {
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.lp-footer.in-avo-footer h5::before,
.lp-footer.in-avo-footer .h5::before {
    background-color: var(--lp-primary);
    opacity: 0.7;
}

/* Link list */
.lp-footer.in-avo-footer .list-unstyled {
    line-height: 3;
}

.lp-footer.in-avo-footer .list-unstyled a {
    color: rgba(180, 195, 230, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.88rem;
}

.lp-footer.in-avo-footer .list-unstyled a:hover {
    color: var(--lp-blue);
}

/* Contact email */
.lp-footer.in-avo-footer .footer-email {
    color: var(--lp-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer.in-avo-footer .footer-email:hover {
    color: var(--lp-teal);
}

/* Social icons */
.lp-footer.in-avo-footer .social-media-list div {
    background-color: rgba(68, 97, 223, 0.08);
    border: 1px solid rgba(68, 97, 223, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lp-footer.in-avo-footer .social-media-list div:hover {
    background-color: rgba(68, 97, 223, 0.2);
    border-color: rgba(79, 172, 254, 0.4);
}

.lp-footer.in-avo-footer .social-media-list a i {
    color: rgba(79, 172, 254, 0.7);
    transition: color 0.2s ease;
}

.lp-footer.in-avo-footer .social-media-list a:hover i {
    color: var(--lp-blue);
}

/* Trade warning box */
.lp-footer.in-avo-footer .trade-warning {
    background: rgba(68, 97, 223, 0.04);
    border-color: rgba(68, 97, 223, 0.2);
    color: rgba(180, 195, 230, 0.5);
}

.lp-footer.in-avo-footer .trade-warning h6,
.lp-footer.in-avo-footer .trade-warning .h6 {
    color: rgba(79, 172, 254, 0.6);
}

.lp-footer.in-avo-footer .trade-warning h6 span,
.lp-footer.in-avo-footer .trade-warning .h6 span {
    background: var(--lp-dark);
    color: rgba(79, 172, 254, 0.6);
}

/* Copyright */
.lp-footer.in-avo-footer .copyright-text {
    color: rgba(180, 195, 230, 0.3);
    font-size: 0.78rem;
}