/* ═══════════════════════════════════════════════════════════
   INDEX.CSS — Full Luxury Dark Mode (Plus Jakarta Sans)
   Theme: Sleek Obsidian & Vibrant Neon Orange Casino
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Section (Deep Dark Background with Orange Accents) ── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(255, 133, 51, 0.1) 0%, transparent 40%),
                linear-gradient(180deg, #070a12 0%, #0a0e17 50%, #0d121f 100%);
    overflow: hidden;
    padding: 3.5rem 5% 4rem;
    color: #ffffff;
}

/* Subtle background grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Bottom fade into dark content */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.18;
}

.hero-shape--1 {
    width: 550px;
    height: 550px;
    background: #ff6b00;
    top: -150px;
    right: -100px;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-shape--2 {
    width: 400px;
    height: 400px;
    background: #ea580c;
    bottom: 50px;
    left: -100px;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.15; }
    100% { transform: scale(1.15) translate(-20px, 20px); opacity: 0.25; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0 2rem;
}

/* Hero Content */
.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.14);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: #ffaa66;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge__dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, #ff8533 0%, #ff5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 520px;
    margin-bottom: 2.2rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    align-items: center;
}

.btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #ff7a1a 0%, #ff5500 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    border: none;
    cursor: pointer;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.48);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    background: rgba(20, 27, 45, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.6rem;
    backdrop-filter: blur(14px);
    width: fit-content;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.hero-stat strong span {
    color: var(--primary);
}

.hero-stat span.stat-lbl {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

/* Right: Visual Showcase (Modern 3D VIP Card Stack) */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 360px;
    height: 420px;
}

.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.28) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

.hero-card-bg-2 {
    position: absolute;
    width: 320px;
    height: 380px;
    top: 40px;
    right: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(20, 27, 45, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transform: rotate(8deg);
    z-index: 1;
    backdrop-filter: blur(10px);
}

.hero-card-bg-1 {
    position: absolute;
    width: 330px;
    height: 390px;
    top: 20px;
    right: 5px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(20, 27, 45, 0.9) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-lg);
    transform: rotate(4deg);
    z-index: 2;
    backdrop-filter: blur(12px);
}

.hero-card-main {
    position: absolute;
    width: 340px;
    height: 400px;
    top: 0;
    right: 20px;
    background: linear-gradient(145deg, #182238 0%, #0f1626 100%);
    border: 1px solid rgba(255, 107, 0, 0.45);
    border-radius: var(--radius-lg);
    z-index: 3;
    padding: 1.8rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 107, 0, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: cardFloat 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7a1a, #ffaa40, #ff5500);
}

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

.hero-card-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-card-brand span {
    color: var(--primary);
}

.hero-vip-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.hero-card-body {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin: 1rem 0;
}

.hero-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hero-card-item:last-child {
    margin-bottom: 0;
}

.hero-card-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.hero-card-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f8fafc;
}

.hero-card-val.highlight {
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-jackpot-banner {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(234, 88, 12, 0.06) 100%);
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    text-align: center;
}

.hero-jackpot-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #ffaa66;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.hero-jackpot-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-member {
    font-size: 0.75rem;
    color: #94a3b8;
}

.hero-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-scroll__line {
    width: 1.5px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Ticker Bar (Live Info Bar) ── */
.ticker-bar {
    background: #080c14;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 48px;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-label {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff7a1a 0%, #ff5500 100%);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0 1.4rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.ticker-label svg {
    width: 14px;
    height: 14px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.ticker-inner {
    display: flex;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    white-space: nowrap;
    padding: 0 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
}

.ticker-item:hover {
    color: var(--primary);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1: PLATFORM OVERVIEW (4 Cards — Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.platform-overview {
    padding: 6.5rem 0;
    background: var(--bg-main);
    position: relative;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.45);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.12);
}

.overview-card:hover::before {
    background: var(--primary);
}

/* Circular orange outline icon badge matching mockup */
.overview-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.6rem;
    transition: var(--transition);
}

.overview-icon svg {
    width: 24px;
    height: 24px;
}

.overview-card:hover .overview-icon {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
}

.overview-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.overview-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.overview-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.overview-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.overview-card:hover .overview-link svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: CORE SOLUTIONS (Split Section — Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.core-solutions {
    padding: 6.5rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.solutions-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.solutions-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #080c14;
}

.solutions-visual img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solutions-visual:hover img {
    transform: scale(1.03);
}

.solutions-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    color: #ffffff;
}

.solutions-badge {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.8rem;
}

.solutions-visual-overlay h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.solutions-visual-overlay p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Solutions Right Column: 3 Feature Rows with alternating circular icons */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.solution-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.solution-row:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.4);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

/* Alternating dark circle and orange circle icons */
.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.solution-icon--dark {
    background: #1e283d;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-icon--orange {
    background: rgba(255, 107, 0, 0.14);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.4);
}

.solution-row:hover .solution-icon--dark {
    background: #0f172a;
    color: var(--primary);
    border-color: var(--primary);
}

.solution-row:hover .solution-icon--orange {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.45);
}

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

.solution-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.solution-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.solution-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.solution-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
}

.solution-row:hover .solution-link svg {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: TECH ARCHITECTURE & VIP ECOSYSTEM (Modern Bento Grid)
   ═══════════════════════════════════════════════════════════ */
.platform-characteristics {
    padding: 6.5rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.platform-characteristics::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.characteristics-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.75rem;
    align-items: stretch;
    margin: 3.5rem 0 3rem;
}

/* ── Console Hub (Left Column) ── */
.tech-console-hub {
    background: linear-gradient(160deg, #161f36 0%, #0c1220 100%);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.12);
    transition: var(--transition);
}

.tech-console-hub:hover {
    border-color: rgba(255, 107, 0, 0.6);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.25);
}

.tech-console-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tech-console-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.console-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.35);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.console-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: consolePulse 1.8s infinite ease-in-out;
}

@keyframes consolePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.console-logo {
    margin-bottom: 1.25rem;
}

.console-logo img {
    height: 38px;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.console-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.console-title span {
    color: var(--primary);
    display: block;
    font-size: 1.15rem;
    margin-top: 0.25rem;
}

.console-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.console-metrics {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 14, 23, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
}

.console-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.metric-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.metric-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.console-metric-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── 4 Pillars Grid (Right Column: 2x2) ── */
.tech-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.tech-pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.tech-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.45);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.15);
}

.pillar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.pillar-icon--shield {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pillar-icon--network {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pillar-icon--payout {
    background: rgba(255, 107, 0, 0.14);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.35);
}

.pillar-icon--mobile {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tech-pillar-card:hover .pillar-icon {
    transform: scale(1.08);
}

.pillar-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pillar-index {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-light);
    font-family: monospace;
}

.pillar-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.3px;
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.tech-pillar-card:hover .pillar-title {
    color: var(--primary);
}

.pillar-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Wrap ── */
.tech-cta-wrap {
    text-align: center;
    margin-top: 1rem;
}

/* Backwards compatibility for legacy selectors */
.diagram-wrapper { display: none; }
.diagram-orbit { display: none; }
.diagram-center { display: none; }
.diagram-node { display: none; }

/* ═══════════════════════════════════════════════════════════
   SECTION 4: GAME CATEGORIES / FEATURES GRID
   ═══════════════════════════════════════════════════════════ */
.game-features {
    padding: 6.5rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.45);
    background: var(--bg-card-hover);
}

.game-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: #080c14;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover img {
    transform: scale(1.06);
}

.game-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(8px);
    color: #ffaa66;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 107, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.game-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.btn-outline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    align-self: flex-start;
    background: transparent;
}

.btn-outline svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn-outline:hover svg {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: LATEST INSIGHTS / NEWS (Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.latest-news {
    padding: 6.5rem 0;
    background: var(--bg-main);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.4);
    background: var(--bg-card-hover);
}

.news-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #080c14;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-content h3 a {
    color: #ffffff;
    transition: color 0.2s;
}

.news-card:hover h3 a {
    color: var(--primary);
}

.news-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.news-read-more svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
}

.news-card:hover .news-read-more svg {
    transform: translateX(3px);
}

.news-bottom-cta {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6: POPULAR SECTION (Top Rated Luxury Cards Showcase)
   ═══════════════════════════════════════════════════════════ */
.popular-section {
    padding: 6.5rem 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 107, 0, 0.05) 0%, var(--bg-surface) 65%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.popular-header .section-header {
    margin-bottom: 0;
    text-align: left;
    margin-left: 0;
    max-width: 720px;
}

.section-tag-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.popular-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.4px;
}

.popular-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: popularPulseLive 2s infinite ease-in-out;
}

@keyframes popularPulseLive {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.popular-header-actions {
    flex-shrink: 0;
}

/* ── 5-Column Grid ── */
.popular-grid {
    counter-reset: popular-rank;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.popular-card {
    counter-increment: popular-rank;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.popular-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 107, 0, 0.22);
}

.popular-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

/* ── Card Media Wrap ── */
.popular-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #080c14;
}

.popular-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.popular-card:hover .popular-card__img {
    transform: scale(1.1);
}

.popular-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.15) 0%, rgba(10, 14, 23, 0.75) 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

/* ── Dynamic Rank Badges (Gold, Silver, Bronze, Obsidian) ── */
.popular-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.rank-label::before {
    content: "#0" counter(popular-rank);
}

/* Rank 1: Gold Champion */
.popular-card:nth-child(1) {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 45%);
}

.popular-card:nth-child(1) .popular-rank-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #0b0f19;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
}

.popular-card:nth-child(1) .rank-label::before {
    content: "👑 #01";
}

/* Rank 2: Silver Runner-Up */
.popular-card:nth-child(2) .popular-rank-badge {
    background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
    color: #0b0f19;
    box-shadow: 0 4px 14px rgba(148, 163, 184, 0.35);
}

.popular-card:nth-child(2) .rank-label::before {
    content: "🥈 #02";
}

/* Rank 3: Bronze */
.popular-card:nth-child(3) .popular-rank-badge {
    background: linear-gradient(135deg, #fb923c 0%, #b45309 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(180, 83, 9, 0.35);
}

.popular-card:nth-child(3) .rank-label::before {
    content: "🥉 #03";
}

/* Rank 4 & 5: Sleek High-Tech Obsidian */
.popular-card:nth-child(4) .popular-rank-badge,
.popular-card:nth-child(5) .popular-rank-badge {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── Live RTP Pill ── */
.popular-rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(10, 14, 23, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: #ff914d;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

/* ── Interactive Play Overlay ── */
.popular-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(10, 14, 23, 0.72);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.popular-card:hover .popular-card__overlay {
    opacity: 1;
    transform: scale(1);
}

.popular-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 25px var(--primary-glow), 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.popular-card:hover .popular-play-btn {
    transform: scale(1.1);
}

.popular-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.popular-play-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ── Card Body & Details ── */
.popular-card__body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 0.85rem;
}

.popular-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.popular-card__provider {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--primary-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
}

.popular-card__rating svg {
    width: 13px;
    height: 13px;
    fill: #fbbf24;
}

.popular-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    transition: color 0.2s;
}

.popular-card:hover .popular-card__title {
    color: var(--primary);
}

.popular-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border-subtle);
}

.popular-activity {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.popular-card__arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.popular-card__arrow svg {
    width: 13px;
    height: 13px;
}

.popular-card:hover .popular-card__arrow {
    background: var(--primary);
    color: #ffffff;
    transform: translateX(3px);
}

/* ── Trust / Popular Highlights Banner ── */
.popular-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-strip-item:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 1.25rem;
}

.stat-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-strip-icon svg {
    width: 22px;
    height: 22px;
}

.stat-strip-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-strip-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.stat-strip-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Backwards compatibility for legacy selectors if needed */
.popular-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.2rem;
}
.popular-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7: WHY US (High-Contrast Obsidian Grid)
   ═══════════════════════════════════════════════════════════ */
.why-us {
    padding: 6.5rem 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.why-us .section-title {
    color: #ffffff;
}

.why-us .section-desc {
    color: #94a3b8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: #111726;
    border: 1px solid #1e293b;
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: #162035;
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 0, 0.15);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    transition: var(--transition);
}

.why-icon svg {
    width: 26px;
    height: 26px;
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 8: TESTIMONIALS (Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 6.5rem 0;
    background: var(--bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.2rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.4);
    background: var(--bg-card-hover);
}

.testimonial-rating {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 3px;
    color: #f59e0b;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

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

.author-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.78rem;
    color: #22c55e;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 9: ABOUT SECTION (Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.about-section {
    padding: 6.5rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 0.6rem;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.4rem;
    line-height: 1.25;
}

.about-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.about-stat span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
}

.about-image-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-image-card img {
    max-width: 180px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.about-badge-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.about-badge-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #cbd5e1;
    font-weight: 600;
}

.about-badge-row svg {
    color: #22c55e;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 10: FAQ SECTION (Dark Mode)
   ═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 6.5rem 0;
    background: var(--bg-main);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.faq-question svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    padding-left: 1.7rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 11: CALL TO ACTION BANNER (Dark Mode with Radiant Glow)
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #070a12 0%, #0d1220 50%, #151d30 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #ffffff;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-text {
    max-width: 650px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.cta-text p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.65;
}

.cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.6rem;
    background: linear-gradient(135deg, #ff7a1a 0%, #ff5500 100%);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.45);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.55);
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-visual img {
        height: 320px;
    }

    .tech-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.1rem;
        padding-bottom: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
    }

    .popular-grid::-webkit-scrollbar {
        height: 6px;
    }

    .popular-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .popular-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .popular-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
    }

    .popular-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-strip-item:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .popular-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.2rem;
    }

    .tech-pillars-grid {
        grid-template-columns: 1fr;
    }

    .tech-console-hub {
        padding: 1.75rem 1.25rem;
    }

    .console-metrics {
        flex-direction: column;
        gap: 0.75rem;
    }

    .console-metric-divider {
        width: 100%;
        height: 1px;
    }

    .popular-card {
        flex: 0 0 215px;
    }

    .popular-stats-strip {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 1.2rem;
    }

    .stat-strip-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1.2rem;
    }
}
