/* ==========================================================================
   High-End Agency Landing Page CSS - LikeSub3s.Com SMM Panel
   ========================================================================== */

:root {
    --ld-bg: #070913;
    --ld-surface: rgba(15, 23, 42, 0.65);
    --ld-surface-hover: rgba(30, 41, 59, 0.85);
    --ld-primary: #3b82f6;
    --ld-cyan: #06b6d4;
    --ld-purple: #8b5cf6;
    --ld-amber: #f59e0b;
    --ld-text-main: #f8fafc;
    --ld-text-muted: #94a3b8;
    --ld-border: rgba(255, 255, 255, 0.08);
    --ld-glow-primary: 0 0 25px rgba(59, 130, 246, 0.35);
    --ld-glow-cyan: 0 0 25px rgba(6, 182, 212, 0.35);
}

/* Base Body Styles */
body.landing-page {
    background-color: var(--ld-bg) !important;
    color: var(--ld-text-main) !important;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Glowing Background Blobs */
.landing-bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.landing-bg-glow.glow-1 {
    top: -100px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
    animation: floatGlow1 16s ease-in-out infinite alternate;
}

.landing-bg-glow.glow-2 {
    top: 40%;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
    animation: floatGlow2 20s ease-in-out infinite alternate;
}

.landing-bg-glow.glow-3 {
    bottom: -150px;
    left: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    animation: floatGlow1 22s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -50px) scale(1.15); }
    100% { transform: translate(40px, -90px) scale(0.9); }
}

/* Header Styling */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ld-border);
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--ld-text-muted);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.nav-links a i {
    font-size: 13px;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    color: var(--ld-text-main);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-signup {
    color: #ffffff;
    background: linear-gradient(135deg, var(--ld-primary), var(--ld-cyan));
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
    color: #ffffff;
}

.landing-header .pill-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ld-border);
    transition: all 0.25s ease;
    height: 38px;
    flex-shrink: 0;
}

.landing-header .pill-select-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.landing-header .pill-select-wrapper .select-icon {
    position: absolute;
    left: 10px;
    font-size: 13px;
    color: var(--ld-cyan);
    pointer-events: none;
    z-index: 2;
}

.landing-header .public-language,
.landing-header .public-currency {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    color: var(--ld-text-main);
    border-radius: 10px;
    padding: 0 24px 0 30px;
    height: 100%;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 11px;
}

.landing-header .public-language option,
.landing-header .public-currency option {
    background-color: #0f172a;
    color: #f8fafc;
    font-weight: 600;
}

@media (max-width: 992px) {
    .landing-header .pill-select-wrapper {
        min-width: 44px !important;
        height: 38px !important;
        padding: 0 2px !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
    }

    .landing-header .pill-select-wrapper .select-icon {
        display: none !important;
    }

    .landing-header .public-currency,
    .landing-header .public-language {
        width: 100% !important;
        min-width: 44px !important;
        height: 38px !important;
        padding: 0 14px 0 6px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        color: var(--ld-text-main) !important;
        text-align: center !important;
        text-align-last: center !important;
        background-position: right 3px center !important;
        background-size: 9px !important;
    }

    .landing-header .public-currency option,
    .landing-header .public-language option {
        font-size: 13px !important;
        color: #f8fafc !important;
        background-color: #0f172a !important;
        text-align: left !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 160px 0 80px 0;
    text-align: center;
}

.hero-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-badge {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 99px;
    color: var(--ld-amber);
    padding: 7px 18px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    animation: pulseBadge 3s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

.glow-icon {
    animation: iconSpin 4s linear infinite alternate;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.15); transform: translateY(0); }
    50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.35); transform: translateY(-2px); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.22;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 50%, #a78bfa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-desc {
    color: var(--ld-text-muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 0 38px 0;
    font-weight: 450;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-cta {
    position: relative;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.5);
    color: #ffffff;
}

.btn-hero-cta .icon-arrow {
    transition: transform 0.25s ease;
}

.btn-hero-cta:hover .icon-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    color: var(--ld-text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

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

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--ld-border);
    padding: 10px 22px;
    border-radius: 99px;
    backdrop-filter: blur(12px);
    margin-bottom: 50px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--ld-bg);
    object-fit: cover;
    margin-right: -10px;
    transition: transform 0.2s ease;
}

.avatar-group img:hover {
    transform: scale(1.15);
    z-index: 10;
}

.social-proof-text {
    font-size: 13.5px;
    color: var(--ld-text-muted);
    font-weight: 500;
}

.highlight-number {
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Visual Preview Dashboard Card */
.hero-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-top: 10px;
}

.hero-preview-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--ld-glow-primary);
    backdrop-filter: blur(20px);
    text-align: left;
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

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

.preview-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.preview-dots .dot.red { background: #ef4444; }
.preview-dots .dot.yellow { background: #f59e0b; }
.preview-dots .dot.green { background: #10b981; }

.preview-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ld-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-green {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 1.5s infinite;
}

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

.preview-stat-item {
    margin-bottom: 16px;
}

.preview-stat-item:last-child {
    margin-bottom: 0;
}

.stat-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-meta .stat-title {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-meta .stat-status {
    font-size: 12px;
}

.progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 99px;
}

.progress-bar-fill.fill-1 {
    width: 98%;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.progress-bar-fill.fill-2 {
    width: 100%;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
}

.progress-bar-fill.fill-3 {
    width: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: left;
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge i {
    font-size: 24px;
}

.floating-badge strong {
    display: block;
    font-size: 13.5px;
    color: #ffffff;
    font-weight: 800;
}

.floating-badge span {
    display: block;
    font-size: 11.5px;
    color: var(--ld-text-muted);
}

.badge-top-right {
    top: -20px;
    right: -25px;
}

.badge-bottom-left {
    bottom: -20px;
    left: -25px;
    animation-delay: 2s;
}

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

/* Supported Platforms Section */
.platforms-section {
    position: relative;
    z-index: 1;
    padding: 40px 0 60px 0;
}

.platforms-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.platforms-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ld-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.platform-badge {
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ld-text-main);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.platform-badge i {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.platform-badge:hover {
    background: var(--ld-surface-hover);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-badge:hover i {
    transform: scale(1.2);
}

/* Brand Colors */
.platform-badge.facebook:hover { border-color: rgba(24, 119, 242, 0.5); }
.platform-badge.facebook:hover i { color: #1877f2; }

.platform-badge.tiktok:hover { border-color: rgba(0, 242, 254, 0.5); }
.platform-badge.tiktok:hover i { color: #00f2fe; }

.platform-badge.instagram:hover { border-color: rgba(225, 48, 108, 0.5); }
.platform-badge.instagram:hover i { color: #e1306c; }

.platform-badge.youtube:hover { border-color: rgba(255, 0, 0, 0.5); }
.platform-badge.youtube:hover i { color: #ff0000; }

.platform-badge.telegram:hover { border-color: rgba(0, 136, 204, 0.5); }
.platform-badge.telegram:hover i { color: #0088cc; }

.platform-badge.twitter:hover { border-color: rgba(29, 161, 242, 0.5); }
.platform-badge.twitter:hover i { color: #1da1f2; }

.platform-badge.spotify:hover { border-color: rgba(30, 215, 96, 0.5); }
.platform-badge.spotify:hover i { color: #1ed760; }

.platform-badge.discord:hover { border-color: rgba(114, 137, 218, 0.5); }
.platform-badge.discord:hover i { color: #7289da; }

.platform-badge.twitch:hover { border-color: rgba(145, 70, 255, 0.5); }
.platform-badge.twitch:hover i { color: #9146ff; }

.platform-badge.reddit:hover { border-color: rgba(255, 69, 0, 0.5); }
.platform-badge.reddit:hover i { color: #ff4500; }

/* Stats Counter Section */
.stats-section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    text-align: center;
}

.stats-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 16px;
    color: var(--ld-text-muted);
    margin: 0 0 54px 0;
}

.stats-grid-ld {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-ld {
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 20px;
    padding: 36px 24px;
    backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card-ld:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--ld-surface-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-card-ld.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.18));
    border: 1.5px solid rgba(6, 182, 212, 0.4);
    box-shadow: var(--ld-glow-cyan);
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.stat-icon-wrapper.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-icon-wrapper.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.stat-icon-wrapper.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.stat-icon-wrapper.amber {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.stat-card-ld.highlight .stat-number {
    background: linear-gradient(135deg, #ffffff, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-label {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
}

.stat-desc {
    color: var(--ld-text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Services Showcase Section */
.showcase-section {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.showcase-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.showcase-card {
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ld-primary), var(--ld-cyan));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--ld-glow-primary);
}

.showcase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.showcase-platform {
    font-size: 15px;
    font-weight: 800;
    color: var(--ld-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.showcase-tag {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.showcase-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.showcase-card p {
    color: var(--ld-text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 24px 0;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.showcase-features span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-text-main);
    display: flex;
    align-items: center;
    gap: 7px;
}

.showcase-features span i {
    color: var(--ld-cyan);
    font-size: 14px;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 90px 0;
    text-align: center;
}

.features-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-grid-ld {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-ld {
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: left;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-ld:hover {
    transform: translateY(-5px);
    background: var(--ld-surface-hover);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-cyan);
    font-size: 18px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card-ld:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
}

.feature-card-ld h4 {
    font-size: 17.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.feature-card-ld p {
    color: var(--ld-text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion Section */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 110px 0;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-top: 40px;
}

.faq-item {
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
}

.faq-item.open {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: var(--ld-glow-cyan);
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-icon {
    font-size: 14px;
    color: var(--ld-text-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--ld-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--ld-text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Real-time Order Notification Toast */
.live-toast-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.9);
    border: 1.5px solid rgba(6, 182, 212, 0.4);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--ld-glow-cyan);
    backdrop-filter: blur(16px);
    z-index: 9999;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.live-toast-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.toast-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.toast-body {
    font-size: 12px;
    color: var(--ld-cyan);
    font-weight: 600;
}

/* Footer Styling */
.landing-footer {
    position: relative;
    z-index: 1;
    background: rgba(7, 9, 19, 0.95);
    border-top: 1px solid var(--ld-border);
    padding: 30px 0;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: var(--ld-text-muted);
    font-size: 13.5px;
    margin: 0;
}

.footer-left strong {
    color: #ffffff;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-icons span {
    color: var(--ld-text-muted);
    font-size: 22px;
    transition: all 0.2s ease;
}

.payment-icons span:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   SUPER CLEAN MOBILE RESPONSIVE DESIGN (Tối ưu giao diện điện thoại & máy tính bảng)
   ========================================================================== */

@media (max-width: 1024px) {
    .stats-grid-ld {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .badge-top-right, .badge-bottom-left {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .landing-header {
        padding: 10px 0 !important;
    }

    .header-container {
        padding: 0 16px !important;
    }

    .logo img {
        height: 34px !important;
    }

    .nav-links {
        display: none !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .btn-login,
    .btn-signup {
        padding: 7px 12px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    .hero-section {
        padding: 110px 0 45px 0 !important;
    }

    .hero-container {
        padding: 0 16px !important;
    }

    .promo-badge {
        font-size: 11px !important;
        padding: 5px 14px !important;
        margin-bottom: 18px !important;
    }

    .hero-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }

    .hero-desc {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 26px !important;
    }

    .hero-cta-group {
        gap: 10px !important;
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .btn-hero-cta,
    .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    .social-proof {
        padding: 7px 16px !important;
        margin-bottom: 32px !important;
    }

    .avatar-group img {
        width: 26px !important;
        height: 26px !important;
    }

    .social-proof-text {
        font-size: 12px !important;
    }

    .hero-preview-card {
        padding: 14px 16px !important;
        border-radius: 14px !important;
    }

    .preview-card-header {
        padding-bottom: 10px !important;
        margin-bottom: 14px !important;
    }

    .preview-title {
        font-size: 11px !important;
    }

    .preview-badge {
        font-size: 10px !important;
        padding: 2px 8px !important;
    }

    .stat-meta {
        font-size: 11.5px !important;
    }

    .platforms-section {
        padding: 24px 0 40px 0 !important;
    }

    .platforms-container {
        padding: 0 16px !important;
    }

    .platforms-label {
        font-size: 11px !important;
        margin-bottom: 14px !important;
    }

    .platforms-list {
        gap: 8px !important;
    }

    .platform-badge {
        padding: 7px 12px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    .platform-badge i {
        font-size: 14px !important;
    }

    .stats-section {
        padding: 50px 0 !important;
    }

    .stats-container {
        padding: 0 16px !important;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }

    .section-sub {
        font-size: 13.5px !important;
        margin-bottom: 32px !important;
    }

    .stats-grid-ld {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .stat-card-ld {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }

    .stat-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }

    .stat-number {
        font-size: 24px !important;
        margin-bottom: 2px !important;
    }

    .stat-label {
        font-size: 12.5px !important;
        margin-bottom: 4px !important;
    }

    .stat-desc {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .showcase-section {
        padding: 30px 0 !important;
    }

    .showcase-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 16px !important;
    }

    .showcase-card {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .showcase-card h3 {
        font-size: 19px !important;
        margin-bottom: 10px !important;
    }

    .showcase-card p {
        font-size: 13px !important;
        margin-bottom: 18px !important;
    }

    .showcase-features span {
        font-size: 12px !important;
    }

    .features-section {
        padding: 40px 0 60px 0 !important;
    }

    .features-container {
        padding: 0 16px !important;
    }

    .features-grid-ld {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .feature-card-ld {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    .feature-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }

    .feature-card-ld h4 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .feature-card-ld p {
        font-size: 11.5px !important;
        line-height: 1.45 !important;
    }

    .faq-section {
        padding: 40px 0 70px 0 !important;
    }

    .faq-container {
        padding: 0 16px !important;
    }

    .faq-accordion {
        gap: 10px !important;
        margin-top: 24px !important;
    }

    .faq-question {
        padding: 14px 16px !important;
        font-size: 13.5px !important;
    }

    .faq-answer p {
        font-size: 12.5px !important;
    }

    .live-toast-notification {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        padding: 9px 14px !important;
    }

    .toast-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .toast-title {
        font-size: 12px !important;
    }

    .toast-body {
        font-size: 11px !important;
    }

    .landing-footer {
        padding: 20px 0 !important;
    }

    .footer-container {
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
    }

    .footer-left p {
        font-size: 12px !important;
    }

    .payment-icons span {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px !important;
    }
    .stats-grid-ld,
    .features-grid-ld {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* ======================================================
   CRITICAL MOBILE HEADER & RESPONSIVE REFINEMENTS
   ====================================================== */
.btn-text-short {
    display: none;
}

.logo {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.logo a {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.logo img {
    height: 38px !important;
    width: auto !important;
    max-width: 140px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
}

.btn-login,
.btn-signup {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
}

.landing-header .pill-select-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
}

.landing-header .public-language,
.landing-header .public-currency {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    border: none !important;
    height: 100% !important;
    outline: none !important;
    cursor: pointer !important;
}

.landing-header .public-language option,
.landing-header .public-currency option {
    background-color: #0f172a !important;
    color: #f8fafc !important;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 12px !important;
        gap: 8px !important;
    }

    .header-actions {
        gap: 6px !important;
        flex-shrink: 1 !important;
    }

    .btn-login,
    .btn-signup {
        padding: 7px 10px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    .btn-text-full {
        display: none !important;
    }

    .btn-text-short {
        display: inline !important;
    }

    .landing-header .pill-select-wrapper {
        height: 34px !important;
    }

    .landing-header .public-currency,
    .landing-header .public-language {
        height: 34px !important;
        font-size: 11.5px !important;
        padding: 0 16px 0 4px !important;
    }
}

@media (max-width: 520px) {
    .header-container {
        padding: 0 8px !important;
    }

    .logo img {
        height: 30px !important;
        max-width: 100px !important;
    }

    .header-actions {
        gap: 4px !important;
    }

    .btn-login,
    .btn-signup {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }

    .btn-text-logout {
        display: none !important;
    }

    .landing-header .pill-select-wrapper {
        min-width: 36px !important;
        padding: 0 !important;
    }

    .landing-header .public-currency,
    .landing-header .public-language {
        padding: 0 12px 0 2px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 400px) {
    .currency-select-wrapper {
        display: none !important;
    }
}

/* ======================================================
   DARK THEME SURFACE OVERRIDES FOR UNAUTHENTICATED PUBLIC PAGES ONLY
   ====================================================== */
.public-container {
    --bg-main: #090d16;
    --bg-surface: #0f172a;
    --bg-soft: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
}

.public-container .panel,
.public-container .rank-card-item,
.public-container .category-accordion,
.public-container .rank-mini-card,
.public-container .quick-buy-card {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #f8fafc !important;
}

.public-container .category-accordion-header {
    background: #0f172a !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.public-container .svc-input-box input,
.public-container .svc-select-box select,
.public-container .qb-form-group input,
.public-container .qb-form-group select {
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #f8fafc !important;
}

.public-container .platform-tab-pill {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
}

.public-container .platform-tab-pill:hover {
    color: #2563eb !important;
    border-color: #2563eb !important;
}

.public-container .platform-tab-pill.active {
    background: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
}
