/* ============================================
   CSS Variables - Color Palette
   ============================================ */
:root {
    /* Background colors */
    --bg-dark: #070815;
    --bg-darker: #0b0b20;
    
    /* Accent colors */
    --purple: #7c3aed;
    --purple-light: #8b5cf6;
    --pink: #ec4899;
    --pink-light: #f472b6;
    --orange: #fb923c;
    --orange-light: #f59e0b;
    
    /* Text colors */
    --text-primary: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.60);
    --text-subtle: rgba(255, 255, 255, 0.40);
    
    /* Card colors */
    --card-surface: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.10);
    --card-border-hover: rgba(255, 255, 255, 0.15);
    
    /* Glow colors */
    --glow-purple: rgba(124, 58, 237, 0.4);
    --glow-pink: rgba(236, 72, 153, 0.4);
    --glow-orange: rgba(251, 146, 60, 0.4);
    
    /* Spacing */
    --section-padding: 3rem 0;
    --container-max-width: 1400px;
    
    /* Advantages section specific */
    --accentA: var(--orange); /* orange */
    --accentB: var(--purple); /* purple */
    --card: #0B1020;
    --card2: #0A1324;
    --stroke: rgba(255, 255, 255, 0.08);
    --stroke2: rgba(255, 255, 255, 0.12);
    --muted: rgba(255, 255, 255, 0.70);
    --muted2: rgba(255, 255, 255, 0.55);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    --radius: 18px;
    --maxw: 1200px;
    
    /* Trade with us section spacing */
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 16px;
    --spacing-4: 24px;
    --accent-soft: rgba(212, 247, 241, 0.8);
    --accent: #1daa91;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(ellipse at top, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* ============================================
   Starfield Background
   ============================================ */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: block;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
}

.star.small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.star.medium {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.star.large {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px var(--glow-purple), 0 0 12px var(--glow-pink);
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* ============================================
   Navigation
   ============================================ */
/* FXFIY-style Navigation */
.site-header {
    position: fixed;
    top: 38px;
    width: calc(100% - 100px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999;
    transition: all 0.6s;
}

@media (max-width: 1350px) {
    .site-header {
        width: 100%;
        top: 0;
    }
}

.site-header .main-header {
    will-change: backdrop-filter;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    max-width: 100% !important;
    background: rgba(7, 8, 21, 0.6);
}

@media (max-width: 1350px) {
    .site-header .main-header {
        padding: 16px;
        border-radius: 0;
    }
}

.site-header .main-header .logo {
    position: relative;
    z-index: 998;
    width: auto;
    height: 80px;
    flex-basis: auto;
    margin: 0;
}

.site-header .main-header .logo a {
    width: auto;
    height: 80px;
    display: flex;
    text-decoration: none;
}

.site-header .main-header .logo .logo-image {
    height: 80px;
    width: auto;
    display: block;
}

.site-header .main-header .nav-vertSeparator {
    width: 1px;
    height: 15px;
    background: rgba(194, 208, 228, 0.5);
}

@media (max-width: 992px) {
    .site-header .main-header .nav-vertSeparator {
        display: none;
    }
}

.footer-logo .logo-image {
    height: 150px;
}

.site-header .main-header .main-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.site-header .main-header .main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .main-header .main-navigation ul li {
    margin: 0 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.site-header .main-header .main-navigation ul li a,
.site-header .main-header .main-navigation ul li span {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: inherit;
    cursor: pointer;
}

.site-header .main-header .main-navigation ul li.current_page_item a {
    color: var(--purple);
}

.site-header .main-header .main-navigation ul li.current-menu-item a {
    color: var(--purple);
}

.site-header .main-header .main-navigation ul li:hover a {
    color: var(--purple);
}

.site-header .main-header .login-cta-normal {
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.7s ease-in-out;
    outline: none;
}

@media (max-width: 992px) {
    .site-header .main-header .login-cta-normal {
        display: none;
    }
}

.site-header .main-header .login-cta-normal a {
    padding: 12px 24px;
    width: 100%;
    gap: 10px;
    background: rgba(194, 208, 228, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.7s ease;
}

.site-header .main-header .login-cta-normal:hover a {
    opacity: 0.6;
}

.site-header .main-header .checkout-cta-normal {
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .site-header .main-header .checkout-cta-normal {
        display: none;
    }
}

.site-header .main-header .checkout-cta-normal a {
    padding: 12px 24px;
    width: 100%;
    gap: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    backdrop-filter: blur(20px);
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.7s ease;
}

.site-header .main-header .mobile-menu-toggle {
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 999;
    height: 20px;
    width: 32px;
    border-radius: 100px;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    margin-right: 7px;
    background: transparent;
    border: none;
    padding: 0;
}

@media (min-width: 993px) {
    .site-header .main-header .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu-close {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .site-header .main-header .mobile-menu-toggle {
        display: flex;
    }
    
    .site-header .main-header .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(7, 8, 21, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        z-index: 999998;
    }
    
    .site-header .main-header .main-navigation.active {
        display: flex;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
        transition: all 0.3s ease;
        z-index: 999999;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
    
    .mobile-menu-close:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.5;
    }
    
    .site-header .main-header .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        padding: 0 2rem;
    }
    
    .site-header .main-header .main-navigation ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .site-header .main-header .main-navigation ul li a {
        font-size: 20px;
        padding: 1rem;
        display: block;
    }
}

.site-header .main-header .mobile-menu-toggle .lines-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.site-header .main-header .mobile-menu-toggle .lines-wrapper .menu-line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    position: relative;
    transition: background 10ms 300ms ease;
    transform: translateY(9px);
}

.site-header .main-header .mobile-menu-toggle .lines-wrapper .menu-line::before,
.site-header .main-header .mobile-menu-toggle .lines-wrapper .menu-line::after {
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    position: absolute;
    background: #ffffff;
    width: 100%;
    height: 2px;
    content: "";
}

.site-header .main-header .mobile-menu-toggle .lines-wrapper .menu-line::before {
    top: -8px;
}

.site-header .main-header .mobile-menu-toggle .lines-wrapper .menu-line::after {
    top: 8px;
}

.site-header .main-header .mobile-menu-toggle.active .lines-wrapper .menu-line {
    background: transparent;
}

.site-header .main-header .mobile-menu-toggle.active .lines-wrapper .menu-line:after,
.site-header .main-header .mobile-menu-toggle.active .lines-wrapper .menu-line:before {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 0;
}

.site-header .main-header .mobile-menu-toggle.active .lines-wrapper .menu-line:before {
    transform: rotate(45deg);
}

.site-header .main-header .mobile-menu-toggle.active .lines-wrapper .menu-line:after {
    transform: rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 120px;
    position: relative;
    z-index: 10;
    margin-top: 0;
    overflow: hidden;
    background: radial-gradient(125% 125% at 50% 0%, var(--bg-primary) 50%, var(--aurora-color, var(--purple)));
    transition: background 0.3s ease;
}


.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

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

.hero-content > h1,
.hero-content > p:not(.hero-bottom-text),
.hero-content > .hero-buttons {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: 0 4px 20px var(--glow-purple);
}

.hero-cta-button {
    background: rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--aurora-button-border, var(--purple));
    box-shadow: 0px 4px 24px var(--aurora-button-shadow, rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    transform: scale(1.015);
    background: rgba(15, 23, 42, 0.5);
}

.hero-cta-button:active {
    transform: scale(0.985);
}

.hero-arrow-icon {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-arrow-icon {
    transform: rotate(-45deg);
}

.hero-cta-button:active .hero-arrow-icon {
    transform: rotate(-12deg);
}

.btn-primary svg {
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--card-border-hover);
    color: white;
}

.btn-secondary svg {
    color: white;
}

.btn-secondary:hover svg {
    color: white;
}

.hero-bottom-text {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--purple);
    background: rgba(124, 58, 237, 0.1);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.feature-item svg {
    color: var(--purple);
}

/* ============================================
   Numbers Section
   ============================================ */
.numbers-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.number-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.number-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.number-value {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.number-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    text-align: left;
    max-width: 700px;
    margin: 0 0 4rem 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.h3-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: 1.5rem 0 3rem 0;
    position: relative;
    z-index: 10;
}

.how-it-works-section .section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works-section .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-it-works-section .top-heading {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.how-it-works-section .h3-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.how-it-works-section .paragraph {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 2rem;
}

.how-it-works-section .cards-container {
    margin-top: 2rem;
    border-top: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    align-items: start;
}

.how-it-works-section .cards-container .vertical {
    width: 1px;
    background: var(--card-border);
    align-self: stretch;
}

.how-it-works-section .card-1 {
    display: flex;
    padding: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    position: relative;
    height: 100%;
    transition: all 0.3s;
}

.how-it-works-section .card-1:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.how-it-works-section .card-1 .c__title {
    background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 1rem;
}

.how-it-works-section .card-1 .c__text {
    color: #ffffff;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
    margin-bottom: 1.5rem;
}

.how-it-works-section .card-1 .c__text p {
    margin-bottom: 1rem;
}

.how-it-works-section .card-1 .c__text p:last-child {
    margin-bottom: 0;
}

.how-it-works-footer {
    margin-top: 3rem;
    text-align: left;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    white-space: nowrap;
}

@media (max-width: 992px) {
    .how-it-works-section .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-section .cards-container .vertical {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-section .cards-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Education Section
   ============================================ */
.education-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.card-stack-container {
    position: relative;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card-stack-stage {
    position: relative;
    height: 500px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack-card {
    position: absolute;
    width: 520px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    will-change: transform, opacity, z-index;
}

.card-stack-card[data-index="0"] {
    z-index: 5;
    transform: translateX(0) translateY(0) scale(1.03) rotateY(0deg);
    opacity: 1;
}

.card-stack-card[data-index="1"] {
    z-index: 4;
    transform: translateX(120px) translateY(20px) scale(0.94) rotateY(-12deg) rotateZ(8deg);
    opacity: 0.9;
}

.card-stack-card[data-index="2"] {
    z-index: 3;
    transform: translateX(240px) translateY(40px) scale(0.88) rotateY(-24deg) rotateZ(16deg);
    opacity: 0.7;
}

.card-stack-card[data-index="3"] {
    z-index: 2;
    transform: translateX(-120px) translateY(20px) scale(0.94) rotateY(12deg) rotateZ(-8deg);
    opacity: 0.9;
}

.card-stack-card[data-index="4"] {
    z-index: 1;
    transform: translateX(-240px) translateY(40px) scale(0.88) rotateY(24deg) rotateZ(-16deg);
    opacity: 0.7;
}

.card-stack-card:hover {
    transform: translateX(0) translateY(-10px) scale(1.05) rotateY(0deg) !important;
    z-index: 10 !important;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-stack-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-stack-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.card-stack-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.card-stack-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-stack-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: white;
}

.card-stack-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.card-stack-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.card-stack-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.card-stack-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--card-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.card-stack-dot:hover {
    background: var(--purple);
    transform: scale(1.2);
}

.card-stack-dot.active {
    background: var(--purple);
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.card-stack-arrows {
    display: flex;
    gap: 1rem;
}

.card-stack-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-stack-arrow:hover {
    background: var(--card-surface-hover);
    border-color: var(--card-border-hover);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.card-stack-arrow:active {
    transform: scale(0.95);
}

.card-stack-arrow svg {
    width: 20px;
    height: 20px;
}

.card-stack-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .card-stack-stage {
        height: 450px;
    }
    
    .card-stack-card {
        width: 460px;
        height: 280px;
    }
    
    .card-stack-card[data-index="1"] {
        transform: translateX(100px) translateY(20px) scale(0.94) rotateY(-10deg) rotateZ(6deg);
    }
    
    .card-stack-card[data-index="2"] {
        transform: translateX(200px) translateY(40px) scale(0.88) rotateY(-20deg) rotateZ(12deg);
    }
    
    .card-stack-card[data-index="3"] {
        transform: translateX(-100px) translateY(20px) scale(0.94) rotateY(10deg) rotateZ(-6deg);
    }
    
    .card-stack-card[data-index="4"] {
        transform: translateX(-200px) translateY(40px) scale(0.88) rotateY(20deg) rotateZ(-12deg);
    }
}

@media (max-width: 768px) {
    .card-stack-stage {
        height: 400px;
    }
    
    .card-stack-card {
        width: 90%;
        max-width: 400px;
        height: 250px;
    }
    
    .card-stack-card[data-index="0"] {
        transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
    }
    
    .card-stack-card[data-index="1"],
    .card-stack-card[data-index="2"],
    .card-stack-card[data-index="3"],
    .card-stack-card[data-index="4"] {
        transform: translateX(0) translateY(0) scale(0.9) rotateY(0deg) rotateZ(0deg);
        opacity: 0;
        pointer-events: none;
    }
    
    .card-stack-title {
        font-size: 1.5rem;
    }
    
    .card-stack-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   Packages Section
   ============================================ */
.packages-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
    width: 100%;
}

.package-card {
    position: relative;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.package-popular {
    border: 2px solid var(--purple);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.package-popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
}

.package-card-header {
    padding: 2rem;
    padding-bottom: 0;
}

.package-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.package-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.package-description {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--text-muted);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.package-price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.package-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.package-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0.25rem;
}

.package-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.package-starting-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.package-card-content {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-btn-primary {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.package-card:not(.package-popular) .package-btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: var(--glow-purple);
    border: 1px solid var(--purple);
}

.package-card.package-popular .package-btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: var(--glow-purple);
    border: 1px solid var(--purple);
}

.package-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.package-card.package-popular .package-btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.4), 0 10px 10px -5px rgba(249, 115, 22, 0.3);
}

.package-btn-secondary {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    background: var(--card-surface);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--card-border-hover);
}

.package-features-section {
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.package-features-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.package-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.package-check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--card-surface);
    border: 1px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    color: var(--purple);
}

.package-check-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, auto) !important;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem;
    }
    
    .package-card-header,
    .package-card-content {
        padding: 1.5rem;
    }
    
    .package-card-header {
        padding-bottom: 0;
    }
    
    .package-card-content {
        padding-top: 0;
    }
    
    .package-amount {
        font-size: 2rem;
    }
    
    .package-currency {
        font-size: 1.5rem;
    }
}

/* ============================================
   Advantages Section
   ============================================ */
.advantages-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.advantages-wrap {
    position: relative;
    padding: 56px 18px 80px;
}

.advantages-panel {
    max-width: var(--maxw);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 34px 22px 26px;
    background:
        radial-gradient(1200px 700px at 50% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
        rgba(4, 6, 14, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.advantages-title {
    margin: 0 0 22px;
    text-align: left;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.2px;
    font-weight: 700;
    color: rgba(220, 245, 255, 0.95);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ===== GRID LAYOUT ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 18px;
    align-items: start;
}

/* Card base */
.advantage-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, var(--card), var(--card2));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    min-height: 190px;
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--stroke2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

/* glow accent ring */
.advantage-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(600px 300px at 20% 20%, rgba(139, 92, 246, 0.22), transparent 60%),
        radial-gradient(600px 300px at 80% 80%, rgba(251, 146, 60, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.advantage-card:hover::before {
    opacity: 1;
}

/* inner padding */
.card__in {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
}

.icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon svg {
    width: 22px;
    height: 22px;
}

.icon.teal svg {
    stroke: var(--orange);
}

.icon.purple svg {
    stroke: var(--purple);
}

.title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-primary);
}

.desc {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14.5px;
    max-width: 56ch;
    flex: 1;
}

/* number-heavy cards */
.metric {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-top: 2px;
    color: var(--text-primary);
}

.metric span {
    font-size: 16px;
    font-weight: 700;
    color: var(--muted);
    margin-left: 10px;
    letter-spacing: 0;
}

/* decorative illustration block */
.art {
    margin-top: auto;
    height: 88px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(120px 80px at 20% 40%, rgba(251, 146, 60, 0.35), transparent 60%),
        radial-gradient(140px 80px at 75% 50%, rgba(139, 92, 246, 0.22), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    opacity: 0.9;
    position: relative;
    overflow: hidden;
    margin-top: 12px;
}

.art::after {
    content: "";
    position: absolute;
    inset: -40px -30px;
    background:
        radial-gradient(closest-side at 20% 70%, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(closest-side at 70% 20%, rgba(255, 255, 255, 0.10), transparent 60%);
    filter: blur(4px);
}

/* Ensure cards with art blocks have proper spacing */
.advantage-card .card__in {
    gap: 12px;
}

/* ===== Placement (desktop) ===== */
/* Top row - all three cards are tall, spanning 2 rows */
.backed {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
    min-height: 260px;
}

.capital {
    grid-column: 5 / span 4;
    grid-row: 1 / span 2;
    min-height: 260px;
}

.split {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
    min-height: 260px;
}

/* Bottom row - short cards on left and middle, tall card on right */
.eas {
    grid-column: 1 / span 4;
    grid-row: 3;
    min-height: 170px;
}

.payouts {
    grid-column: 5 / span 4;
    grid-row: 3;
    min-height: 170px;
}

.dash {
    grid-column: 9 / span 4;
    grid-row: 3 / span 2;
    min-height: 260px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .advantages-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .backed {
        grid-column: 1 / span 8;
        grid-row: auto;
        min-height: 220px;
    }
    
    .capital {
        grid-column: 1 / span 4;
    }
    
    .split {
        grid-column: 5 / span 4;
    }
    
    .eas {
        grid-column: 1 / span 4;
    }
    
    .payouts {
        grid-column: 5 / span 4;
    }
    
    .dash {
        grid-column: 1 / span 8;
    }
}

@media (max-width: 720px) {
    .advantages-panel {
        padding: 26px 16px 18px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    
    .backed,
    .capital,
    .split,
    .eas,
    .payouts,
    .dash {
        grid-column: 1 / span 4;
        grid-row: auto;
        min-height: 0;
    }
    
    .metric {
        font-size: 30px;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .advantage-card {
        transition: none;
    }
    
    .advantage-card::before {
        transition: none;
    }
}



/* ============================================
   Our Benefits Section
   ============================================ */
.benefits-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.benefits-section .section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

/* ============================================
   Payouts Section
   ============================================ */
.payouts-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

/* Header */
.payouts-header {
    text-align: left;
    margin-bottom: 4rem;
}

.payouts-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.payouts-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
}

/* Three Payout Method Cards */
.payout-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payout-method-card {
    padding: 2.5rem;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.payout-method-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.method-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.btn-request-payout {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-request-payout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--glow-purple);
}

.method-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* Digital Asset Card */
.payout-method-card.digital-asset {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coin-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.coin-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coin-icon.small {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.coin-icon.large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
    border-color: var(--purple);
    color: var(--purple);
}

/* Bank Transfer Card */
.payout-method-card.bank-transfer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.bank-card-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
}

.bank-flag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bank-currency {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.bank-account {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* Feature Bar */
.payout-features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-item {
    text-align: center;
}

.feature-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-label {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Payouts Grid Container */
.payouts-grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Total Payouts Card */
.total-payouts-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-align: center;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.total-label {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.total-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Reviews Section
   ============================================ */
/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.testimonials-columns-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-height: 740px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    animation: scrollUp 15s linear infinite;
    will-change: transform;
}

.testimonials-column:hover {
    animation-play-state: paused;
}

.testimonials-column-2 {
    animation-duration: 19s;
}

.testimonials-column-3 {
    animation-duration: 17s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    max-width: 320px;
    width: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.testimonial-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-border);
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-column-3 {
        display: none;
    }
    
    .testimonials-columns-container {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials-column-2,
    .testimonials-column-3 {
        display: none;
    }
    
    .testimonials-columns-container {
        gap: 1rem;
        max-height: 600px;
    }
    
    .testimonial-card {
        max-width: 100%;
        padding: 2rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .testimonials-column {
        animation: none;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(7, 8, 21, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--card-border-hover);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-disclaimer p {
        text-align: left;
        font-size: 0.7rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 2.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(7, 8, 21, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 1px solid var(--card-border);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    
    .payout-methods {
        grid-template-columns: 1fr;
    }
    
    .payout-features-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-value {
        font-size: 2.5rem;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .payout-method-card {
        padding: 2rem;
    }
    
    .method-amount {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
    }
    
    .hero-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons svg {
        width: 14px;
        height: 14px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-section {
        background: radial-gradient(125% 125% at 50% 0%, var(--bg-primary) 50%, var(--purple));
        transition: none;
    }
    
    .hero-cta-button {
        transition: transform 0.2s ease;
    }
    
    .hero-cta-button:hover .hero-arrow-icon {
        transition: transform 0.2s ease;
    }
}

/* Trade With Us Section */
.trade-with-us-section {
    padding: 160px 1.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 1200px) {
    .trade-with-us-section {
        padding: 128px 1.5rem;
    }
}

.trade-with-us-section .h__cards {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
}

.v2 .hero-card-wrapper {
    padding: 8px;
    flex: 1 1 0;
}

.v2 .hero-card-wrapper:not(:last-of-type) {
    border-right: 1px solid var(--card-border);
}

@media (max-width: 1200px) {
    .v2 .hero-card-wrapper {
        flex: 1 1 45%;
        border: none !important;
    }
}

@media (max-width: 768px) {
    .v2 .hero-card-wrapper {
        flex: 1 1 100%;
    }
    
    .trade-with-us-section {
        padding: 80px 1rem;
    }
    
    .trade-with-us-section .h__cards {
        flex-direction: column;
        gap: 1rem;
    }
}
.v2 .hero-card-wrapper .hero-card {
    border-radius: 10px;
    border: 1px solid var(--card-border);
    background: var(--card-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 8px;
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
}

.v2 .hero-card-wrapper .hero-card .hc__header {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    border-bottom: 1px solid var(--card-border);
    position: relative;
}

.v2 .hero-card-wrapper .hero-card .hc__header::before {
    content: '';
    width: 150px;
    height: 25px;
    position: absolute;
    left: -5px;
    top: -5px;
    background: var(--glow-purple);
    filter: blur(30px);
    transform: rotate(33.01deg);
}

.v2 .hero-card-wrapper .hero-card .hc__header svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.v2 .hero-card-wrapper .hero-card .hc__header span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.556px;
}

.v2 .hero-card-wrapper .hero-card .hc__body {
    display: flex;
    flex-flow: column nowrap;
    padding: 0 8px 8px;
    gap: 4px;
    flex: 1 1 auto;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hero-title {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1.5px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hero-sub {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hero-title-2 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.85px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders {
    flex: 1 1 auto;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    display: flex;
    padding: 16px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders::after {
    content: '';
    position: absolute;
    right: -65.967px;
    top: -0.926px;
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders .left {
    flex: 1 1 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders .right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders .right .flags-grid {
    width: 100px;
    height: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    position: relative;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__active-traders .right .flags-grid::before {
    content: '🌍🌎🌏';
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__countries {
    flex: 1 1 auto;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    display: flex;
    padding: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__countries::after {
    content: '';
    position: absolute;
    left: -65.967px;
    top: -0.926px;
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__countries .left {
    flex: 1 1 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__countries .left .globe-icon {
    font-size: 60px;
    opacity: 0.5;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__countries .right {
    flex: 1 1 0;
    text-align: right;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social {
    display: flex;
    flex-flow: column nowrap;
    text-decoration: none;
    padding: 8px;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    outline: none;
    position: relative;
    justify-content: center;
    overflow: hidden;
    transition: all 0.8s ease;
    flex: 1 1 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social::before {
    content: '';
    width: 103.196px;
    height: 18.411px;
    position: absolute;
    right: -14.622px;
    top: -1.852px;
    background: var(--glow-purple);
    filter: blur(14px);
    transition: all 0.8s ease;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social .s__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social .s__icon svg {
    fill: #FFF;
    filter: drop-shadow(0px 0px 1px #FFFfff90);
    height: 24px;
    width: auto;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social .s__title {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.648px;
    margin-top: 8px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social .s__text {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.556px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social:hover {
    border: 1px solid var(--card-border-hover);
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__socials a.social:hover::before {
    background: var(--glow-pink);
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
    gap: 4px;
}

@media (max-width: 576px) {
    .v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts {
        flex-wrap: wrap;
    }
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .left,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right {
    flex: 1 1 0;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    padding: 16px;
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .left,
    .v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right {
        flex: 1 1 100%;
    }
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .left::before,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right::before {
    content: '';
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
    position: absolute;
    left: -53.249px;
    bottom: 0.156px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .left .hc__image,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right .hc__image {
    flex: 0 1 70px;
    position: relative;
    margin-top: auto;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .left .hc__image .payout-icon,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right .hc__image .payout-icon {
    font-size: 50px;
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    left: 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__payouts .right {
    text-align: right;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts {
    flex: 1 1 auto;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts::after {
    content: '';
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    position: absolute;
    right: -65.967px;
    top: -0.926px;
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts .title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    position: relative;
    z-index: 10;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts .image {
    position: absolute;
    height: 100%;
    width: auto;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts .image .payout-certificates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.5;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__weekly-payouts .image .payout-certificates .certificate {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements {
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
    flex: 1 1 100%;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .left {
    flex: 1 1 0;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
    overflow: hidden;
    position: relative;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .left::before {
    content: '';
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    position: absolute;
    right: -55.013px;
    bottom: 0.156px;
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
    z-index: -1;
}

@media (max-width: 576px) {
    .v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .left {
        flex: 1 1 100%;
    }
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .right {
    flex: 1 1 0;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
    overflow: hidden;
    position: relative;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .right::before {
    content: '';
    width: 256.632px;
    height: 54.785px;
    transform: rotate(11.567deg);
    position: absolute;
    right: -55.013px;
    bottom: 0.156px;
    border-radius: 256.632px;
    background: var(--glow-purple);
    filter: blur(37.03704px);
    z-index: -1;
}

@media (max-width: 576px) {
    .v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .right {
        flex: 1 1 100%;
    }
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .left,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .right {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .left .a__container,
.v2 .hero-card-wrapper .hero-card .hc__body .hc__announcements .right .a__container {
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
    flex: 1 1 auto;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion {
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__title svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__title span {
    color: var(--text-muted);
    margin-left: 4px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__btn {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-promotion .sp__expiration {
    color: var(--text-muted);
    font-size: 11px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-update {
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-update:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-update .update-date {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.v2 .hero-card-wrapper .hero-card .hc__body .single-update .update-text {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}
