:root {
    --bg-dark: #050508;
    --card-bg: rgba(15, 15, 20, 0.4);
    --primary-color: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary-color: #a855f7;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --private-color: #10b981;
    --shared-color: #f59e0b;
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Dynamic Background Elements */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a14 0%, #050508 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: 200vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    opacity: 0.5;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 15s infinite alternate ease-in-out;
}

.orb-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--primary-color); }
.orb-2 { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--secondary-color); animation-delay: -5s; }
.orb-3 { top: 40%; left: 60%; width: 30vw; height: 30vw; background: #00E5FF; animation-delay: -2s; animation-duration: 20s; opacity: 0.3; }
.orb-4 { top: 20%; left: 20%; width: 25vw; height: 25vw; background: #FF0055; animation-delay: -7s; animation-duration: 18s; opacity: 0.2; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(10%, -10%) scale(1.2) rotate(45deg); }
    66% { transform: translate(-5%, 15%) scale(0.9) rotate(-15deg); }
    100% { transform: translate(-10%, -5%) scale(1.1) rotate(30deg); }
}

/* Header & Hero */
header {
    position: relative;
    text-align: center;
    padding: 3rem 1rem 1rem;
    animation: fadeInDown 1s ease-out;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

@media (max-width: 600px) {
    .lang-switcher {
        top: 0.5rem;
        right: 0.5rem;
        transform: scale(0.85);
    }
}

.logo h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.logo span {
    background: linear-gradient(135deg, #00F5D4, #00A8E8, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

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

.hero {
    text-align: center;
    padding: 2rem 1rem 4rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--text-main);
    text-shadow: 0 0 15px var(--primary-glow);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Section Titles */
.section-title-container {
    text-align: center;
    margin: 4rem 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-title-container.show {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: rgba(20, 20, 25, 0.6);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.section-title:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
}

.section-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 340px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mouse hover spotlight effect overlay */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }

.pricing-card > * { position: relative; z-index: 1; }

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Top energetic border */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-color, var(--primary-color)), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

.pricing-card:hover::after {
    transform: scaleX(1);
}

.pricing-card.popular {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255,255,255,0.15);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular.show {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
}

.pricing-card.popular:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255,255,255, 0.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Card Content Details */
.card-header { margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }

.title-with-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.title-with-logo h3 { font-size: 1.6rem; font-weight: 700; }
.service-logo { width: 30px; height: 30px; border-radius: 6px; object-fit: cover; }

.account-type {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-type.private { background: rgba(16, 185, 129, 0.1); color: var(--private-color); border: 1px solid rgba(16, 185, 129, 0.2); }
.account-type.shared-badge { background: rgba(245, 158, 11, 0.1); color: var(--shared-color); border: 1px solid rgba(245, 158, 11, 0.2); }

.price { margin-bottom: 2rem; display: flex; align-items: flex-start; }
.currency { font-size: 1.4rem; font-weight: 600; margin-top: 0.6rem; margin-right: 0.4rem; color: var(--text-muted); }
.amount { font-size: 4.5rem; font-weight: 800; line-height: 1; letter-spacing: -2px; }

.features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.features li { margin-bottom: 1.2rem; color: #cbd5e1; display: flex; align-items: flex-start; font-size: 1rem; line-height: 1.4; transition: transform 0.2s ease; }
.features li:hover { transform: translateX(5px); color: white; }

.icon { margin-right: 1rem; font-weight: bold; font-style: normal; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.05); font-size: 0.8rem; }

.btn {
    display: block; width: 100%; padding: 1.2rem; text-align: center; text-decoration: none;
    border-radius: 16px; font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
    letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative; overflow: hidden; z-index: 1;
}

.buy-btn { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); border: none; }
.buy-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg); transition: 0.5s; z-index: -1;
}
.buy-btn:hover { box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6); transform: translateY(-3px) scale(1.02); }
.buy-btn:hover::before { left: 150%; }

.shared .buy-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: var(--text-main); box-shadow: none; }
.shared .buy-btn:hover { background: var(--text-main); color: var(--bg-dark); }

footer {
    text-align: center; padding: 4rem 1rem; color: var(--text-muted);
    border-top: 1px solid var(--border-color); margin-top: 5rem;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
}
footer p { margin-bottom: 0.5rem; font-size: 1.1rem; }
footer a { color: var(--primary-color); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
footer a:hover { color: var(--secondary-color); text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }

/* Brand Colors dynamically inheriting */
.chatgpt-title { color: #10a37f; box-shadow: 0 0 30px rgba(16, 163, 127, 0.15); }
.chatgpt-logo { color: #10a37f; fill: #10a37f; }
.chatgpt-badge { background: rgba(16, 163, 127, 0.1) !important; color: #10a37f !important; border: 1px solid rgba(16, 163, 127, 0.2) !important; }
.chatgpt-icon { color: #10a37f !important; background: rgba(16, 163, 127, 0.1); }
.chatgpt-btn { background: linear-gradient(135deg, #10a37f, #0d8466) !important; box-shadow: 0 4px 15px rgba(16, 163, 127, 0.3) !important; color: white !important;}
.chatgpt-btn:hover { box-shadow: 0 8px 30px rgba(16, 163, 127, 0.6) !important; }

/* CapCut (White branding) */
.capcut-title { color: #ffffff; box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); }
.capcut-logo { filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }
.capcut-icon { color: #ffffff !important; background: rgba(255,255,255,0.1); }

/* YouTube */
.youtube-title { color: #ff0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.15); }
.youtube-logo { color: #ff0000; fill: #ff0000; }
.youtube-badge { background: rgba(255, 0, 0, 0.1) !important; color: #ff0000 !important; border: 1px solid rgba(255, 0, 0, 0.2) !important; }
.youtube-icon { color: #ff0000 !important; background: rgba(255, 0, 0, 0.1); }
.youtube-btn { background: linear-gradient(135deg, #ff0000, #cc0000) !important; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important; color: white !important;}
.youtube-btn:hover { box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6) !important; }

/* Spotify */
.spotify-title { color: #1DB954; box-shadow: 0 0 30px rgba(29, 185, 84, 0.15); }
.spotify-logo { color: #1DB954; fill: #1DB954; }
.spotify-badge { background: rgba(29, 185, 84, 0.1) !important; color: #1DB954 !important; border: 1px solid rgba(29, 185, 84, 0.2) !important; }
.spotify-icon { color: #1DB954 !important; background: rgba(29, 185, 84, 0.1); }
.spotify-btn { background: linear-gradient(135deg, #1DB954, #1aa34a) !important; box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3) !important; color: white !important;}
.spotify-btn:hover { box-shadow: 0 8px 30px rgba(29, 185, 84, 0.6) !important; }

/* Adobe Creative Cloud */
.adobe-title { color: #FF0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.15); }
.adobe-logo { color: #FF0000; fill: #FF0000; }
.adobe-badge { background: rgba(255, 0, 0, 0.1) !important; color: #FF0000 !important; border: 1px solid rgba(255, 0, 0, 0.2) !important; }
.adobe-icon { color: #FF0000 !important; background: rgba(255, 0, 0, 0.1); }
.adobe-btn { background: linear-gradient(135deg, #FF0000, #b30000) !important; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important; color: white !important;}
.adobe-btn:hover { box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6) !important; }

/* ExpressVPN */
.expressvpn-title { color: #db2728; box-shadow: 0 0 30px rgba(219, 39, 40, 0.15); }
.expressvpn-logo { color: #db2728; fill: #db2728; }
.expressvpn-badge { background: rgba(219, 39, 40, 0.1) !important; color: #db2728 !important; border: 1px solid rgba(219, 39, 40, 0.2) !important; }
.expressvpn-icon { color: #db2728 !important; background: rgba(219, 39, 40, 0.1); }
.expressvpn-btn { background: linear-gradient(135deg, #db2728, #b01e1f) !important; box-shadow: 0 4px 15px rgba(219, 39, 40, 0.3) !important; color: white !important;}
.expressvpn-btn:hover { box-shadow: 0 8px 30px rgba(219, 39, 40, 0.6) !important; }

/* Canva Pro */
.canva-title { color: #00C4CC; box-shadow: 0 0 30px rgba(0, 196, 204, 0.15); }
.canva-logo { color: #00C4CC; fill: #00C4CC; }
.canva-badge { background: rgba(125, 42, 232, 0.1) !important; color: #7D2AE8 !important; border: 1px solid rgba(125, 42, 232, 0.2) !important; }
.canva-icon { color: #00C4CC !important; background: rgba(0, 196, 204, 0.1); }
.canva-btn { background: linear-gradient(135deg, #00C4CC, #7D2AE8) !important; box-shadow: 0 4px 15px rgba(125, 42, 232, 0.3) !important; color: white !important;}
.canva-btn:hover { box-shadow: 0 8px 30px rgba(125, 42, 232, 0.6) !important; }

/* Facebook */
.facebook-title { color: #1877F2; box-shadow: 0 0 30px rgba(24, 119, 242, 0.15); }
.facebook-logo { color: #1877F2; fill: #1877F2; }
.facebook-badge { background: rgba(24, 119, 242, 0.1) !important; color: #1877F2 !important; border: 1px solid rgba(24, 119, 242, 0.2) !important; }
.facebook-icon { color: #1877F2 !important; background: rgba(24, 119, 242, 0.1); }
.facebook-btn { background: linear-gradient(135deg, #1877F2, #0d5ea6) !important; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3) !important; color: white !important;}
.facebook-btn:hover { box-shadow: 0 8px 30px rgba(24, 119, 242, 0.6) !important; }

/* Perplexity AI */
.perplexity-title { color: #00E5FF; box-shadow: 0 0 30px rgba(0, 229, 255, 0.15); }
.perplexity-logo { color: #00E5FF; fill: #00E5FF; }
.perplexity-badge { background: rgba(0, 229, 255, 0.1) !important; color: #00E5FF !important; border: 1px solid rgba(0, 229, 255, 0.2) !important; }
.perplexity-icon { color: #00E5FF !important; background: rgba(0, 229, 255, 0.1); }
.perplexity-btn { background: linear-gradient(135deg, #00E5FF, #00B3CC) !important; color: #0a0a0f !important; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3) !important; font-weight: 800 !important; }
.perplexity-btn:hover { box-shadow: 0 8px 30px rgba(0, 229, 255, 0.6) !important; }

/* Grok */
.grok-title { color: #ffffff; box-shadow: 0 0 30px rgba(255, 255, 255, 0.15); }
.grok-logo { color: #ffffff; fill: #ffffff; }
.grok-badge { background: rgba(255, 255, 255, 0.1) !important; color: #ffffff !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; }
.grok-icon { color: #ffffff !important; background: rgba(255, 255, 255, 0.1); }
.grok-btn { background: linear-gradient(135deg, #ffffff, #e2e8f0) !important; color: #0a0a0f !important; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important; font-weight: 800 !important; }
.grok-btn:hover { box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6) !important; }

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
}

.stars {
    color: #FBBF24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.customer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.customer-info span {
    font-size: 0.8rem;
    color: var(--private-color);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-right: 1rem;
    color: var(--text-main);
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.4s ease;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

/* Stats Section */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 4rem auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stats-container.show {
    opacity: 1;
    transform: translateY(0);
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    pointer-events: none;
}
.stat-box:hover::before { opacity: 1; }
.stat-box > * { position: relative; z-index: 1; }

.stat-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(255, 255, 255, 0.1);
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

.stat-box:hover::after {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00F5D4, #00A8E8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #F43F5E, #8B5CF6, #00C4CC);
    color: white;
    padding: 0.6rem 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    z-index: 1000;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}

.top-banner:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem auto 3rem;
    padding: 0 1rem;
    max-width: 1000px;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* How to Buy Steps */
.how-to-buy-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card.show {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: pulse 2s infinite;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1) rotate(0); box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
    70% { transform: scale(1.05) rotate(0); box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
    100% { transform: scale(1) rotate(0); box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #128C7E;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.floating-wa:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

/* Hot Deals Slider */
.hot-deals-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.hot-deals-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.hot-deals-slider:active {
    cursor: grabbing;
}

.hot-deals-slider::-webkit-scrollbar {
    display: none;
}

.deal-card {
    min-width: 280px;
    max-width: 300px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.3);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(255,77,79,0.15);
    border-color: rgba(255, 77, 79, 0.3);
}

.deal-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a24;
}

.deal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.08);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.deal-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.deal-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.deal-pricing del {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.new-price {
    color: #ff4d4f;
    font-size: 1.2rem;
    font-weight: 800;
}

.deal-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.deal-tag {
    background: #1877F2;
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.deal-qty {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.slider-scrollbar-wrap {
    padding: 0;
    margin-top: 10px;
}

.slider-scrollbar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.scrollbar-thumb {
    height: 100%;
    width: 25%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: absolute;
    left: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.scrollbar-thumb:hover, .scrollbar-thumb:active {
    background: var(--text-main);
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Chatbot Widget */
.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.chat-toggle-btn svg { width: 25px; height: 25px; }
.chat-toggle-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}
.chat-toggle-btn .chat-tooltip {
    position: absolute;
    left: 80px;
    background: white;
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.chat-toggle-btn:hover .chat-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 330px;
    max-height: 480px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: rgba(99, 102, 241, 0.15);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.chat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-main);
}
.online-dot {
    width: 8px;
    height: 8px;
    background: var(--private-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--private-color);
}
.close-chat {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}
.close-chat:hover { color: var(--text-main); }

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 250px;
    max-height: 250px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}
.bot-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.user-message {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.chat-suggestions {
    display: flex;
    gap: 8px;
    padding: 0 15px 10px;
    overflow-x: auto;
    scrollbar-width: none;
}
.chat-suggestions::-webkit-scrollbar { display: none; }
.sugg-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}
.sugg-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.chat-input-area {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border-color);
    gap: 10px;
}
#chatInput {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}
#chatInput::placeholder { color: var(--text-muted); }
#sendChatBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: transform 0.2s;
}
#sendChatBtn svg { width: 16px; height: 16px; pointer-events: none; }
#sendChatBtn:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: translateY(0) scale(1);
    }
    .pricing-card.popular.show {
        transform: translateY(0) scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    .logo h1 { font-size: 2.2rem; }
    .amount { font-size: 3.5rem; }
    .grid-overlay {
       background-size: 30px 30px;
    }
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.payment-modal .modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,0.6);
    animation: modalFadeIn 0.3s ease-out;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal-header h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 800;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-box:hover {
    background: rgba(255, 255, 255, 0.08);
}

.payment-method-box.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.method-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-title h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.method-details {
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    font-size: 0.95rem;
}

.binance-id-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.5);
    padding: 12px 18px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 2px;
    border: 1px dashed rgba(255,255,255,0.2);
    color: #FCD535;
    margin-bottom: 8px;
}

.binance-id-box .copy-btn {
    background: #FCD535;
    color: #1E2329;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.binance-id-box .copy-btn:hover {
    transform: scale(1.05);
}

.tx-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-family: monospace;
    outline: none;
    transition: border-color 0.3s;
}

.tx-input:focus {
    border-color: #FCD535;
    box-shadow: 0 0 5px rgba(252, 213, 53, 0.3);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-toast {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.toast-error {
    border-left-color: #ff4d4f;
}

.custom-toast.toast-error .toast-icon {
    color: #ff4d4f;
}

.custom-toast.toast-success {
    border-left-color: #10b981;
}

.custom-toast.toast-success .toast-icon {
    color: #10b981;
}

.toast-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    margin-left: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    color: #fff;
}

/* Stock Status Indicators */
.stock-status {
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.stock-label {
    color: var(--text-muted);
}

.in-stock .stock-text { color: #10b981; }
.low-stock .stock-text { color: #f59e0b; }
.sold-out .stock-text { color: #ff4d4f; }

.stock-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stock-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.in-stock .stock-bar { background: linear-gradient(90deg, #059669, #10b981); }
.low-stock .stock-bar { background: linear-gradient(90deg, #d97706, #f59e0b); }
.sold-out .stock-bar-bg { display: none; }

.sold-out-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #64748b !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    /* Horizontal Swipe Cards for Mobile */
    .pricing-container, .testimonials-container, .how-to-buy-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem 1.5rem 2.5rem 1.5rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
    }
    
    .pricing-container::-webkit-scrollbar, .testimonials-container::-webkit-scrollbar, .how-to-buy-container::-webkit-scrollbar {
        display: none;
    }

    /* Set width to 82vw so the next card heavily peeks out from the right, naturally hinting at scroll */
    .pricing-card, .testimonial-card, .step-card {
        flex: 0 0 82vw;
        max-width: 82vw;
        scroll-snap-align: center;
        margin: 0;
    }

    /* Disable hover transforms on mobile scroll to prevent jitter */
    .pricing-card:hover, .pricing-card.popular, .pricing-card.popular.show, .pricing-card.popular:hover, .testimonial-card:hover, .testimonial-card.show, .step-card:hover, .step-card.show {
        transform: none !important;
    }

    /* Add "Swipe for more" hint below the section title purely with CSS */
    .section-title-container::after {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-muted);
        margin-top: 10px;
        opacity: 0.8;
        letter-spacing: 1px;
        text-transform: uppercase;
        animation: swipeHintAnim 2s infinite ease-in-out;
    }
    .section-title-container:has(+ .pricing-container)::after {
        content: 'Swipe for more packages ⇿';
    }
    .section-title-container:has(+ .testimonials-container)::after {
        content: 'Swipe for more reviews ⇿';
    }
    .section-title-container:has(+ .how-to-buy-container)::after {
        content: 'Swipe for more steps ⇿';
    }
    .section-title-container:has(+ .faq-container)::after {
        content: 'Tap questions to view answers 👇';
        animation: none;
    }

    @keyframes swipeHintAnim {
        0%, 100% { transform: translateX(0); opacity: 0.6; }
        50% { transform: translateX(10px); opacity: 1; }
    }
}
