/* ==========================================================================
   MYMONTHLYINCOME - ULTRA-PREMIUM FINTECH DESIGN SYSTEM
   Theme: Obsidian & Slate Dark Mode with Luminous Emerald & Cyan Accents
   ========================================================================== */

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

:root {
    /* Base Color Tokens */
    --bg-darkest: #05070d;
    --bg-surface: #0a0e1a;
    --bg-card: rgba(14, 20, 36, 0.78);
    --bg-card-hover: rgba(20, 29, 52, 0.92);
    --bg-glass: rgba(15, 23, 42, 0.65);
    
    /* Brand Accent: Luminous Emerald & Tech Cyan */
    --emerald-primary: #10b981;
    --emerald-light: #34d399;
    --emerald-glow: rgba(16, 185, 129, 0.35);
    --emerald-subtle: rgba(16, 185, 129, 0.12);
    --emerald-dark: #065f46;
    
    --cyan-accent: #06b6d4;
    --cyan-light: #38bdf8;
    --cyan-glow: rgba(6, 182, 212, 0.3);
    
    --indigo-accent: #6366f1;
    --gold-accent: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.25);
    
    /* Typography Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-highlight: #ffffff;
    
    /* Borders & Outlines */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(16, 185, 129, 0.4);
    --border-cyan: rgba(56, 189, 248, 0.35);
    
    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-cyan: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #38bdf8 100%);
    --gradient-hero-glow: radial-gradient(circle at top center, rgba(16, 185, 129, 0.18) 0%, rgba(6, 182, 212, 0.08) 35%, transparent 70%);
    --gradient-card: linear-gradient(145deg, rgba(20, 28, 48, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 35px var(--emerald-glow);
    --shadow-glow-cyan: 0 0 30px var(--cyan-glow);
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darkest);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Ambient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 50% -10%, rgba(16, 185, 129, 0.15), transparent 60%),
                radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.08), transparent 50%),
                radial-gradient(circle at 15% 60%, rgba(99, 102, 241, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-highlight);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: var(--emerald-light);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #fff;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 900px;
}

/* Section Spacing */
.section-py {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-py-sm {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--emerald-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 30px;
    color: var(--emerald-light);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.section-title span {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   TOP BAR & LANGUAGE SWITCHER
   ========================================================================== */
.top-bar {
    background: rgba(5, 7, 13, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1002;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-announcement {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

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

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

.top-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.top-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-weight: 600;
}

.top-contact-link:hover {
    color: var(--emerald-light);
}

.top-contact-link.whatsapp:hover {
    color: #25d366;
}

.top-contact-link.telegram:hover {
    color: #229ed9;
}

/* Language Selector */
.lang-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #0d1322;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1010;
}

.lang-dropdown.show {
    display: block;
    animation: fadeInDown 0.2s ease;
}

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

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.lang-item:hover {
    background: rgba(16, 185, 129, 0.12);
    color: #fff;
}

/* Google Translate Widget Override */
#google_translate_element {
    display: inline-block;
    position: relative;
    z-index: 1005;
}
.goog-te-gadget-simple {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.82rem !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.goog-te-gadget-simple:hover {
    background-color: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}
.goog-te-gadget-simple .goog-te-menu-value {
    color: #ffffff !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
    color: #f8fafc !important;
    font-weight: 600 !important;
}
.goog-te-gadget-icon {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
}
/* Ensure Google Translate dropdown frame is ALWAYS in front and fully visible */
iframe.goog-te-menu-frame {
    z-index: 99999999 !important;
    position: fixed !important;
    max-width: 95vw !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    border-radius: 10px !important;
    visibility: visible !important;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 12, 22, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    height: 72px;
    transition: all 0.3s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1440px;
    padding: 0 1.5rem;
    width: 100%;
    margin: 0 auto;
}

/* Sleek Modern Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover .brand-logo-mark {
    transform: scale(1.06);
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.brand-text-main {
    color: #ffffff;
    font-weight: 800;
}

.brand-highlight {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap !important;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.nav-link.active::after {
    display: none;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    white-space: nowrap !important;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-nav-join {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #022013 !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    white-space: nowrap !important;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
    transition: all 0.2s;
}

.btn-nav-join:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 22px rgba(16, 185, 129, 0.45);
    color: #022013 !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: #fff;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #10b981;
}

.mobile-toggle:hover {
    border-color: var(--emerald-primary);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1.6rem;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 100px;
}

.btn-primary {
    background: var(--gradient-emerald);
    color: #032313;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55);
    color: #000;
}

.btn-secondary {
    background: var(--gradient-cyan);
    color: #022032;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
    color: #000;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--emerald-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: #fff;
}

/* ==========================================================================
   CARDS & CONTAINERS
   ========================================================================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.glass-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.12);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--emerald-subtle);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--emerald-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(14, 20, 36, 0.65);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-number.emerald {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number.cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   INTERACTIVE INCOME CALCULATOR
   ========================================================================== */
.calculator-card {
    background: linear-gradient(145deg, rgba(16, 24, 44, 0.95) 0%, rgba(9, 13, 24, 0.95) 100%);
    border: 2px solid var(--border-accent);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.15);
    position: relative;
}

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

.calc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.calc-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}

.calc-val-badge {
    background: var(--emerald-subtle);
    border: 1px solid var(--border-accent);
    color: var(--emerald-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Custom Range Slider */
input[type="range"].calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: all 0.2s;
}

input[type="range"].calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--emerald-primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--emerald-primary);
    border: 2px solid #fff;
    transition: all 0.2s;
}

input[type="range"].calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-output-box {
    background: rgba(6, 10, 20, 0.85);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.calc-output-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--emerald-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.calc-output-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.calc-output-breakdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   PAY PLAN TIER CARDS (NO NETFLIX)
   ========================================================================== */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
    backdrop-filter: blur(14px);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.7), 0 0 20px var(--emerald-glow);
}

.tier-card.featured {
    border: 2px solid var(--emerald-primary);
    background: linear-gradient(145deg, rgba(16, 28, 48, 0.9) 0%, rgba(10, 16, 30, 0.9) 100%);
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.8), 0 0 30px var(--emerald-glow);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-emerald);
    color: #032313;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tier-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.tier-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--emerald-light);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.tier-specs {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-specs li span.val {
    font-weight: 700;
    color: #fff;
}

/* ==========================================================================
   DATA TABLES
   ========================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--border-card);
    background: rgba(14, 20, 36, 0.85);
    backdrop-filter: blur(16px);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background: rgba(6, 10, 20, 0.9);
    padding: 18px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-card);
}

.premium-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.premium-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-light);
    border: 1px solid var(--border-accent);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 18px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.25s;
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-question {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    transition: color 0.2s;
}

.faq-item.open .faq-question h4 {
    color: var(--emerald-light);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--emerald-subtle);
    color: var(--emerald-light);
}

.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #04060a;
    border-top: 1px solid var(--border-subtle);
    padding: 90px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 1.2rem 0 1.8rem;
    max-width: 340px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--emerald-subtle);
    color: var(--emerald-light);
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.social-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.4);
}

.social-btn.telegram:hover {
    background: rgba(34, 158, 217, 0.15);
    color: #229ed9;
    border-color: rgba(34, 158, 217, 0.4);
}

.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--emerald-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    margin-top: 25px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1180px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-heading {
        font-size: 2.8rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .top-links {
        width: 100%;
        justify-content: space-between;
    }
    .calculator-card {
        padding: 1.5rem;
    }
    .calc-output-number {
        font-size: 2.6rem;
    }
}

/* Mobile Offcanvas Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #090e1c;
    border-left: 1px solid var(--border-card);
    z-index: 2000;
    padding: 30px 24px;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.close-drawer {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.mobile-menu-links a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
}

.mobile-drawer-overlay.open {
    display: block;
}
