/* ===== CSS VARIABLES ===== */
:root {
    --primary: #25D366;
    --primary-dark: #1da851;
    --primary-light: #34eb7a;
    --secondary: #075E54;
    --accent: #128C7E;
    --bg-body: #f8faf9;
    --bg-white: #ffffff;
    --bg-dark: #0f1923;
    --bg-card: #ffffff;
    --bg-glass: rgba(255,255,255,0.8);
    --border: #e8ede9;
    --border-light: #f0f4f1;
    --text-dark: #1a2332;
    --text-body: #4a5568;
    --text-muted: #8a9bae;
    --gradient-primary: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-hero: linear-gradient(135deg, #0f1923 0%, #1a3040 50%, #0f2318 100%);
    --gradient-warm: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 4px 30px rgba(37,211,102,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled { padding: 10px 0; border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 700; }
.logo-icon { font-size: 1.4rem; }
.logo-text { color: var(--text-dark); }
.accent { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-body); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--gradient-primary); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    transition: var(--transition); cursor: pointer; border: none; font-family: var(--font);
}
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: 0 4px 15px rgba(37,211,102,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37,211,102,0.35); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(37,211,102,0.05); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===== FLASH MESSAGES ===== */
.flash-container { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 9999; width: 90%; max-width: 500px; }
.flash-message { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 500; animation: slideDown 0.3s ease; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.flash-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: inherit; opacity: 0.7; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px; background: var(--gradient-hero); color: white;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 60%);
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-block; padding: 8px 16px; background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3); border-radius: 50px;
    font-size: 0.85rem; color: var(--primary-light); font-weight: 500; margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; max-width: 500px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary-light); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Hero Image */
.hero-image-wrapper { position: relative; }
.hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-width: 450px; margin: 0 auto; }
.hero-float-card {
    position: absolute; padding: 10px 16px; background: rgba(255,255,255,0.95);
    border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; color: var(--text-dark); animation: float 3s ease-in-out infinite;
}
.float-card-1 { top: 15%; right: -10px; animation-delay: 0s; }
.float-card-2 { bottom: 20%; left: -10px; animation-delay: 1.5s; }
.float-icon { font-size: 1.2rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== CAROUSEL ===== */
.carousel-section { padding: 30px 0; background: var(--bg-white); overflow: hidden; border-bottom: 1px solid var(--border-light); }
.carousel-track {
    display: flex; gap: 20px; animation: scroll 30s linear infinite;
    width: max-content;
}
.carousel-slide { flex-shrink: 0; width: 200px; height: 130px; border-radius: var(--radius); overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-caption { text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block; padding: 6px 14px; background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.2); border-radius: 50px;
    font-size: 0.78rem; color: var(--primary-dark); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== BEFORE/AFTER ===== */
.before-after { background: var(--gradient-warm); }
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.ba-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 2px solid var(--border); }
.ba-before { border-color: #ffcdd2; }
.ba-after { border-color: #c8e6c9; }
.ba-label { padding: 8px 16px; text-align: center; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; }
.ba-before .ba-label { background: #ffebee; color: #c62828; }
.ba-after .ba-label { background: #e8f5e9; color: #2e7d32; }
.ba-img { width: 100%; height: 180px; object-fit: cover; }
.ba-content { padding: 20px; }
.ba-content h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--text-dark); }
.ba-content ul { list-style: none; }
.ba-content li { padding: 4px 0; font-size: 0.9rem; color: var(--text-body); }
.ba-arrow { display: flex; align-items: center; font-size: 2rem; color: var(--primary); font-weight: bold; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step-card {
    background: var(--bg-body); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 20px; text-align: center; transition: var(--transition); position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.step-number {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; background: var(--gradient-primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== FEATURES ===== */
.features { background: var(--bg-body); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.feature-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 24px; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,211,102,0.3); }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing { background: var(--bg-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pricing-card {
    background: var(--bg-body); border: 2px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 22px; display: flex; flex-direction: column; transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular { border-color: var(--primary); background: white; box-shadow: var(--shadow-glow); transform: scale(1.02); }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.vip { border-color: #ffd700; background: #fffdf5; }
.popular-badge, .vip-badge { position: absolute; top: 12px; right: 12px; padding: 4px 10px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.popular-badge { background: var(--gradient-primary); color: white; }
.vip-badge { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #333; }
.pricing-header { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.pricing-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.currency { font-size: 1rem; color: var(--text-muted); }
.price { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); }
.period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.pricing-features { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-features li { padding: 7px 0; font-size: 0.88rem; color: var(--text-body); }

/* ===== CAROUSEL SECTION ===== */
.carousel-section { padding: 40px 0; background: var(--bg-white); }
.carousel-featured { padding: 100px 0; background: var(--gradient-warm); }
.carousel-header { text-align: center; margin-bottom: 50px; }
.carousel-header h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.carousel-header p { font-size: 1.05rem; color: var(--text-muted); font-weight: 500; }
.carousel-wrapper {
    position: relative; overflow: hidden; border-radius: 24px; background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); padding: 20px;
}
.carousel-track {
    display: flex; gap: 24px; animation: scrollSmooth 40s linear infinite; padding: 0;
}
.carousel-slide {
    flex: 0 0 380px; height: 380px; border-radius: 16px;
    overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.carousel-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, transparent 100%); opacity: 0; transition: opacity 0.5s; }
.carousel-slide:hover::after { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide:hover img { transform: scale(1.08); }
.carousel-slide:hover { transform: translateY(-12px); box-shadow: 0 20px 60px rgba(37,211,102,0.2); }
.carousel-caption { text-align: center; margin-top: 24px; font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
@keyframes scrollSmooth {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 5 - 24px * 5)); }
}

/* ===== LIVE COUNTER SECTION ===== */
.live-counter-section {
    padding: 120px 0; background: linear-gradient(135deg, #0f1923 0%, #1a3040 50%, #0f2318 100%);
    color: white; position: relative; overflow: hidden;
}
.live-counter-section::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.counter-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 1; }
.counter-header h2 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.counter-header p { font-size: 1.1rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; position: relative; z-index: 1; }
.counter-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px; padding: 48px 32px; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
}
.counter-card::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.4s;
}
.counter-card:hover::before { opacity: 1; }
.counter-card:hover {
    transform: translateY(-16px); background: rgba(255,255,255,0.12);
    border-color: rgba(37,211,102,0.3); box-shadow: 0 20px 60px rgba(37,211,102,0.2);
}
.counter-icon { font-size: 3.5rem; margin-bottom: 20px; position: relative; z-index: 1; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
.counter-value {
    font-size: clamp(2.2rem, 7vw, 4rem); font-weight: 900; margin-bottom: 16px;
    color: var(--primary-light); font-variant-numeric: tabular-nums; position: relative; z-index: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-label { font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 600; position: relative; z-index: 1; }
.live-indicator { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--primary-light); margin-top: 12px; position: relative; z-index: 1; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-light); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gradient-warm); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #ffc107; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.author-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-role { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* ===== LEGAL PAGES ===== */
.legal-section { padding: 110px 0 60px; min-height: 100vh; background: var(--bg-body); }
.legal-container { max-width: 900px; }
.legal-header { text-align: center; margin-bottom: 50px; }
.legal-header h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.legal-header p { font-size: 0.95rem; color: var(--text-muted); }
.legal-content { background: var(--bg-white); border-radius: var(--radius-xl); padding: 50px 40px; box-shadow: var(--shadow-md); line-height: 1.8; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-top: 32px; margin-bottom: 16px; }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-top: 20px; margin-bottom: 12px; }
.legal-content p { color: var(--text-body); margin-bottom: 14px; }
.legal-content ul { margin-left: 24px; margin-bottom: 16px; }
.legal-content li { color: var(--text-body); margin-bottom: 8px; }
.legal-footer { text-align: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq { background: var(--bg-white); }
.faq-grid { max-width: 750px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--bg-body); transition: var(--transition); }
.faq-item:hover { border-color: rgba(37,211,102,0.3); }
.faq-item.active { border-color: var(--primary); background: white; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; color: var(--text-dark); font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--font); }
.faq-question:hover { color: var(--primary-dark); }
.faq-toggle { font-size: 1.3rem; color: var(--primary); transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-body); font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 80px 0; background: var(--gradient-hero); color: white; }
.cta-content {
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-content h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 60px 0; }
.cta-box {
    background: var(--gradient-hero); border-radius: var(--radius-xl); padding: 50px 40px;
    text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%; background: radial-gradient(circle, rgba(37,211,102,0.1) 0%, transparent 60%); }
.cta-box h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-box p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; position: relative; }
.cta-box .btn { position: relative; }

/* ===== FOOTER ===== */
.footer { padding: 50px 0 24px; background: var(--bg-dark); color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer .logo-text { color: white; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; color: white; }
.footer-links a { display: block; font-size: 0.82rem; padding: 4px 0; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== AUTH PAGES ===== */
.auth-section { padding: 120px 0 60px; min-height: 100vh; background: var(--gradient-warm); }
.auth-container { max-width: 480px; margin: 0 auto; }
.auth-card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-header h1 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.auth-header p { font-size: 0.92rem; color: var(--text-muted); }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.auth-form input, .auth-form select {
    width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius);
    font-size: 0.92rem; font-family: var(--font); transition: var(--transition); background: var(--bg-body);
}
.auth-form input:focus, .auth-form select:focus { outline: none; border-color: var(--primary); background: white; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input { width: auto; margin-top: 3px; }
.form-checkbox label { font-size: 0.82rem; color: var(--text-body); line-height: 1.4; }
.form-checkbox a { color: var(--primary); text-decoration: underline; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ===== DASHBOARD ===== */
.dashboard-section { padding: 110px 0 60px; min-height: 100vh; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.dash-welcome h1 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); }
.dash-welcome p { font-size: 0.92rem; color: var(--text-muted); }
.dash-actions { display: flex; gap: 10px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-stat-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; gap: 14px; }
.stat-icon { font-size: 2rem; }
.stat-value { display: block; font-size: 1.3rem; font-weight: 800; color: var(--text-dark); }
.stat-value.ready { color: var(--primary); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); }
.dash-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.dash-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }

/* Download Form */
.download-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.download-form .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.download-form select { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; font-family: var(--font); background: var(--bg-body); }
.download-form select:focus { outline: none; border-color: var(--primary); }

/* Cooldown & Notices */
.cooldown-notice, .no-credits-notice { text-align: center; padding: 30px 20px; }
.cooldown-icon, .notice-icon { font-size: 3rem; margin-bottom: 12px; }
.cooldown-notice h3, .no-credits-notice h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 8px; }
.vip-upsell { margin-top: 12px; font-size: 0.85rem; }
.vip-upsell a { color: var(--primary); font-weight: 600; }

/* Account Info */
.account-info { display: grid; gap: 10px; }
.info-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.info-label { font-weight: 600; color: var(--text-dark); min-width: 120px; font-size: 0.88rem; }
.info-value { color: var(--text-body); font-size: 0.88rem; }

/* Table */
.table-responsive { overflow-x: auto; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.dash-table th { text-align: left; padding: 10px 12px; background: var(--bg-body); color: var(--text-dark); font-weight: 600; border-bottom: 2px solid var(--border); }
.dash-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); color: var(--text-body); }

/* ===== BUY PAGE ===== */
.buy-section-title { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin: 30px 0 16px; }
.buy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.buy-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; transition: var(--transition); position: relative; }
.buy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.buy-card.popular { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.buy-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.buy-price { font-size: 1.8rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 6px; }
.buy-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.vip-card { background: var(--bg-white); border: 2px solid #ffd700; border-radius: var(--radius-lg); padding: 28px; }
.vip-content { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.vip-icon { font-size: 3rem; }
.vip-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.vip-info p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 12px; }
.vip-perks { list-style: none; }
.vip-perks li { font-size: 0.85rem; padding: 3px 0; color: var(--text-body); }
.payment-info { background: var(--bg-body); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-top: 24px; }
.payment-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.payment-info p, .payment-info li { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.payment-info ul { margin: 8px 0; padding-left: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-arrow { justify-content: center; transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: white; flex-direction: column; padding: 80px 30px; gap: 20px; transition: var(--transition); box-shadow: var(--shadow-lg); z-index: 999; }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .hero { padding: 110px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-float-card { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .dashboard-header { flex-direction: column; align-items: flex-start; }
    .download-form .form-row { grid-template-columns: 1fr; }
    .vip-content { flex-direction: column; }
    .auth-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(37,211,102,0.3); border-radius: 4px; }
::selection { background: rgba(37,211,102,0.2); }
