/* ===============
   HERO SECTION
   =============== */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 208, 0.1);
    border: 1px solid rgba(0, 240, 208, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-cta .btn-signup {
    padding: 14px 28px;
    font-size: 15px;
}

.hero-cta .btn-outline {
    padding: 14px 28px;
    font-size: 15px;
}

.hero-partners {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-partners span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logos span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    text-transform: none;
    letter-spacing: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-logo-img {
    position: relative;
    width: 340px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatLogo 6s ease-in-out infinite;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===============
   DASHBOARD PREVIEW
   =============== */
.dashboard-preview {
    padding: 40px 0 80px;
}

.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #eab308; }
.mockup-dot.green { background: #22c55e; }

.mockup-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 320px;
}

.mockup-sidebar {
    padding: 24px 16px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-nav-item {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mockup-nav-item.active {
    background: rgba(0, 240, 208, 0.15);
    color: var(--primary-color);
    box-shadow: inset 2px 0 0 var(--primary-color);
}

.mockup-main {
    padding: 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.mockup-chart {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mockup-chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.mockup-chart-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 12px;
}

.mockup-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-bar:hover, .mockup-bar.active-bar {
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 15px rgba(0, 240, 208, 0.3);
}

.mockup-bar-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--text-color);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 10;
}

.mockup-bar:hover .mockup-bar-tooltip, .mockup-bar.active-bar .mockup-bar-tooltip {
    opacity: 1;
}

.mockup-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.mockup-chart-labels span {
    font-size: 11px;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}

.mockup-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mockup-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.mockup-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mockup-stat-icon.teal { background: rgba(0, 240, 208, 0.15); color: var(--primary-color); }
.mockup-stat-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--secondary-color); }
.mockup-stat-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }

.mockup-stat-info {
    display: flex;
    flex-direction: column;
}

.mockup-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.mockup-stat-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

/* ===============
   SECTION HEADERS
   =============== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ===============
   STATS BANNER
   =============== */
.stats-banner {
    padding: 80px 0;
}

.stats-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.stats-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-item .stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
}

.stats-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-globe {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 240, 208, 0.2), rgba(139, 92, 246, 0.15));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--glow-purple);
}

.stats-globe-icon {
    font-size: 80px;
    opacity: 0.8;
}

.stats-globe::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 208, 0.2);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===============
   GAME FEATURE GRID
   =============== */
.games-section {
    padding: 40px 0 80px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-teal);
}

.game-card > a {
    display: block;
}

.game-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card-content {
    padding: 20px;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.game-card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* ===============
   FEATURES GRID
   =============== */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.teal { background: rgba(0, 240, 208, 0.12); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.15); }
.feature-icon.orange { background: rgba(249, 115, 22, 0.12); }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===============
   MARKETING CONTAINER
   =============== */
.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent-text {
    color: var(--primary-color);
}

/* Brand Section */
.brand-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}

.brand-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.brand-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.brand-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

/* Info Card */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 20px;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0 10px;
}

.info-card p, .info-list, .info-list-numbered {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.info-list { list-style: disc; padding-left: 20px; }
.info-list-numbered { list-style: decimal; padding-left: 20px; }
.info-list li, .info-list-numbered li { margin-bottom: 8px; }

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: border-color var(--transition-speed);
}

.info-box:hover {
    border-color: var(--border-glow);
}

.info-box-full {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 240, 208, 0.05);
    border-color: rgba(0, 240, 208, 0.2);
}

.info-box-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.info-box p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.promo-col {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promo-col-reverse {
    display: flex;
    flex-direction: column;
}

.promo-col-reverse .promo-img { order: 2; }
.promo-col-reverse h3,
.promo-col-reverse .promo-rules { order: 1; }

.promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-title {
    color: var(--text-color);
    padding: 20px 24px 8px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.promo-rules {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rule-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-rules ol {
    padding-left: 20px;
    line-height: 1.7;
}

/* Jili Section */
.jili-section {
    margin-bottom: 60px;
}

.jili-hero {
    text-align: center;
    margin-bottom: 40px;
}

.jili-main-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.jili-gift-section,
.jili-deposit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.jili-deposit-section {
    direction: rtl;
}

.jili-deposit-section > * {
    direction: ltr;
}

.jili-gift-img img,
.jili-deposit-img img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.jili-title {
    color: var(--text-color);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 8px;
}

.jili-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 14px;
}

.jili-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.jili-list li {
    color: var(--text-muted);
    margin-bottom: 6px;
    font-size: 0.92rem;
    padding-left: 20px;
    position: relative;
}

.jili-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-tag {
    background: rgba(0, 240, 208, 0.1);
    border: 1px solid rgba(0, 240, 208, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
}

.testimonial-location {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
}

/* ===============
   STATS SECTION
   =============== */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 240, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===============
   PRICING / VIP TIERS
   =============== */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 240, 208, 0.05);
    box-shadow: var(--glow-teal);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #070714;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: all var(--transition-speed);
}

.pricing-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-card.featured .pricing-btn {
    background: var(--primary-color);
    color: #070714;
    border-color: var(--primary-color);
}

.pricing-card.featured .pricing-btn:hover {
    background: #33f5da;
}

/* ===============
   FAQ SECTION
   =============== */
.faq-section {
    padding: 80px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 240, 208, 0.15));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: var(--glow-purple);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.faq-item.active {
    border-color: var(--border-glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 240, 208, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition-speed), background var(--transition-speed);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: #070714;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

/* ===============
   PAYMENT METHODS
   =============== */
.payment-section {
    padding: 60px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.payment-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.payment-method-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.payment-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.payment-method-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.payment-method-card p {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin: 0;
}

/* ===============
   CTA BANNER
   =============== */
.cta-banner {
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(0, 240, 208, 0.15));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 208, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cta-rocket {
    font-size: 64px;
    animation: rocketBounce 3s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-partners { justify-content: center; }
    .hero-visual { min-height: 280px; }
    .stats-banner-inner { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-section { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .jili-gift-section, .jili-deposit-section { grid-template-columns: 1fr; }
    .jili-deposit-section { direction: ltr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-visual { order: -1; }
    .payment-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }
    .mockup-main { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 40px 0 40px; }
    .hero-logo-img { width: 260px; }
    .stats-row { grid-template-columns: 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .info-card { padding: 24px; }
    .cta-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
    .cta-action { flex-direction: column; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: 1fr 1fr; }
}
