/* datacollect-pro.com - Modern UI-UX Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-dark-base: #070514;
    --bg-dark-card: rgba(255, 255, 255, 0.03);
    --bg-dark-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(139, 92, 246, 0.3);
    
    --primary: #8b5cf6;       /* Violet */
    --primary-glow: rgba(139, 92, 246, 0.15);
    --secondary: #06b6d4;     /* Cyan */
    --secondary-glow: rgba(6, 182, 212, 0.15);
    --emerald: #10b981;       /* Green for positive stats */
    --emerald-glow: rgba(16, 185, 129, 0.15);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Ambient glow background blobs */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 75%);
    z-index: -1;
    pointer-events: none;
    filter: blur(120px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

/* Gradients & Utilities */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 10%, #a855f7 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.glow-btn:hover::before {
    left: 100%;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Glassmorphism Container */
.glass-panel {
    background: var(--bg-dark-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(7, 5, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: var(--primary);
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
}

.stat-item h4 {
    font-size: 1.75rem;
    color: #ffffff;
}

.stat-item p {
    font-size: 0.85rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
    animation: float 6s ease-in-out infinite;
}

/* Sections Common Styles */
section {
    padding: 7rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.01) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.step-card p {
    font-size: 0.9rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* Earnings Calculator Section */
.calc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.calc-controls h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-slider-group {
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.slider-label span:last-child {
    color: var(--secondary);
}

.modern-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--transition-smooth);
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: var(--transition-smooth);
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

.calc-result-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calc-result-box p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.calc-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1.5rem;
}

/* Live Stats & Ticker Section */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.live-feed-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.live-feed-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald);
    animation: pulse-glow-emerald 2s infinite;
}

.live-feed-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    height: 100%;
}

.feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    animation: slide-in 0.4s ease forwards;
}

.feed-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feed-user {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.feed-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feed-badge.lead {
    background: rgba(139, 92, 246, 0.15);
    color: #a855f7;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.feed-badge.survey {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.feed-badge.transcribe {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.feed-payout {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--emerald);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    transition: var(--transition-smooth);
}

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

.faq-icon {
    font-size: 1.25rem;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.005);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
    transition: max-height 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-answer p {
    font-size: 0.95rem;
}

/* CTA Footer banner */
.footer-cta {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.footer-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--border-color);
    position: relative;
}

.footer-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.footer-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: rgba(3, 0, 20, 0.9);
    padding: 5rem 2rem 2.5rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.08);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.newsletter-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(168, 85, 247, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

@keyframes pulse-glow-emerald {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Grid / Layout Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 4rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(7, 5, 20, 0.95);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Toggle active state */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .steps-grid, .features-grid, .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .calc-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-cta-container {
        padding: 3rem 1.5rem;
    }
    
    .footer-cta-container h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Generator Page & Checkout Panel Styles
   ========================================================================== */

.generator-page {
    padding-top: 8rem;
    min-height: 100vh;
}

.generator-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Steps Progress Header */
.gen-steps-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.step-indicator.active {
    color: var(--secondary);
}

.step-indicator.completed {
    color: var(--emerald);
}

.step-indicator-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.step-indicator.active .step-indicator-num {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.step-indicator.completed .step-indicator-num {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

/* Panel Sections */
.panel-card {
    padding: 2.5rem;
}

.panel-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-row {
    margin-bottom: 1.5rem;
}

.panel-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.panel-select, .panel-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.panel-select:focus, .panel-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.panel-select option {
    background: var(--bg-dark-base);
    color: #ffffff;
}

/* Payment tabs */
.pay-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.pay-tab-btn {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pay-tab-btn svg {
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.pay-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.pay-tab-btn.active {
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.pay-tab-btn.active svg {
    opacity: 1;
    color: var(--secondary);
}

.pay-tab-content {
    display: none;
    animation: slide-in 0.3s ease;
}

.pay-tab-content.active {
    display: block;
}

/* Card Mockup Visual styling */
.card-mockup-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.card-mockup {
    width: 320px;
    height: 190px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 50%, #083344 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.card-chip {
    width: 40px;
    height: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

.card-number-display {
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    word-spacing: 0.25em;
    margin: 1.5rem 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder-display {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.card-expiry-display {
    font-family: monospace;
    font-size: 0.85rem;
    opacity: 0.9;
}

.card-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Bank Details design */
.bank-details-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.bank-detail-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.bank-detail-row span:first-child {
    color: var(--text-dim);
}

.bank-detail-row span:last-child {
    font-weight: 600;
    color: #ffffff;
}

/* Code voucher box */
.code-box-wrapper {
    text-align: center;
    padding: 1rem 0;
}

.code-badge-info {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
}

/* Order Summary Box */
.summary-card {
    padding: 2rem;
}

.summary-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-item span:first-child {
    color: var(--text-muted);
}

.summary-item span:last-child {
    color: #ffffff;
    font-weight: 500;
}

.summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--secondary);
}

/* Compilation Loader Overlay */
.compiling-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 0, 20, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.compiling-overlay.active {
    display: flex;
}

.loader-spinner-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.loader-spinner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.1);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 1.5s linear infinite;
}

.loader-pulse-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: loader-pulse 2s infinite ease-in-out;
}

.loader-percentage {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.loader-status {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Success download panel layout */
.download-card {
    grid-column: 1 / -1;
    display: none;
    animation: slide-in 0.5s ease;
}

.download-card.active {
    display: block;
}

.download-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.download-banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.success-badge {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 1.75rem;
}

.download-banner-text h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.data-preview-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.data-table th {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
}

.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-family: monospace;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loader-pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
}

/* ==========================================================================
   Mobile Responsiveness Improvements for Generator and Index Pages
   ========================================================================== */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    /* Hide decorative background glow blobs to prevent layout shift and heavy CPU repaint */
    body::before, body::after {
        display: none !important;
    }

    /* Sections Padding */
    section {
        padding: 4rem 1.25rem;
    }
    
    /* Header nav container padding */
    .nav-container {
        padding: 1rem 1.25rem;
    }

    /* Generator Page margins */
    .generator-page {
        padding: 6rem 1rem 3rem 1rem;
    }

    /* Generator Grid Columns Collapse */
    .generator-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-card {
        padding: 1.5rem;
    }
    
    /* Steps Header adjustment */
    .gen-steps-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.25rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .step-indicator {
        font-size: 0.85rem;
    }
    
    /* Card mockup scale down */
    .card-mockup {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1.6 / 1;
        padding: 1.25rem;
    }
    
    .card-number-display {
        font-size: 1.15rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    /* Tab buttons scroll/wrap */
    .pay-tabs {
        flex-wrap: wrap;
    }
    
    .pay-tab-btn {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Download Banner alignment */
    .download-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        padding: 1.5rem 1rem;
    }
    
    .download-banner-left {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .download-banner-text {
        width: 100%;
        text-align: center;
    }

    .download-banner-text h3 {
        font-size: 1.15rem !important;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Table font adjustments */
    .data-table th, .data-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap; /* Keep rows aligned without vertical wrapping */
    }

    .data-preview-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--border-color);
    }

    /* Collapsing checkbox grid columns on tablet/medium viewports */
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel-card {
        padding: 1.5rem;
        min-width: 0; /* Let grid elements scale down below content width */
    }

    .download-card {
        min-width: 0; /* Let step 3 card scale down */
    }
}

@media (max-width: 480px) {
    .gen-steps-header {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 1rem 0.5rem;
    }
    
    .step-indicator span:last-child {
        display: none; /* Hide text label on tiny screens, show only numbers */
    }

    /* Stacking checkbox columns on small mobile screen */
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Row Hover Highlights & Copy Button tweaks */
.data-table tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.copy-row-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

/* Mobile Lead Card Layout Options */
.data-preview-cards-wrapper {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .data-preview-table-wrapper {
        display: none !important; /* Hide standard table on mobile */
    }
    
    .data-preview-cards-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .data-lead-card {
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        transition: var(--transition-smooth);
    }
    
    .data-lead-card:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
        transform: translateY(-2px);
    }
    
    .lead-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .lead-card-id {
        font-family: monospace;
        font-weight: 700;
        color: var(--secondary);
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }
    
    .lead-card-country {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 600;
        background: rgba(255, 255, 255, 0.03);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
    }
    
    .lead-card-body {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .lead-card-field {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
    }
    
    .lead-card-field .field-label {
        color: var(--text-dim);
    }
    
    .lead-card-field .field-value {
        color: #ffffff;
        font-weight: 500;
        text-align: right;
        max-width: 65%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Pagination Buttons Active & Disabled Styles */
.pag-num-btn.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.pag-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

