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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #080808;
    color: #e4e4e7;
    min-height: 100vh;
}

body.in-app {
    display: flex;
}

/* ===== APP CONTAINER ===== */
.app-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ===== LANDING PAGE ===== */
.landing-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1111;
}

.landing-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
}

.landing-header-actions {
    display: flex;
    gap: 10px;
}

.landing-header-actions .btn-login,
.landing-header-actions .btn-signup {
    padding: 9px 20px;
    font-size: 0.85rem;
}

.landing-nav {
    display: flex;
    gap: 24px;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav a:hover {
    color: #ff6b35;
}

/* Mobile: Hide nav at 640px and below (phones) */
@media (max-width: 640px) {
    .landing-nav {
        display: none;
    }
}

/* Tablet: Make nav links smaller to fit */
@media (max-width: 900px) and (min-width: 641px) {
    .landing-nav {
        gap: 16px;
    }
    .landing-nav a {
        font-size: 0.85rem;
    }
}

/* Landing Mobile Menu */
.landing-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.landing-mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.landing-mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    flex-direction: column;
    gap: 4px;
}

.landing-mobile-dropdown.active {
    display: flex;
}

.landing-mobile-dropdown a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.landing-mobile-dropdown a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
}

.landing-mobile-dropdown .btn-login,
.landing-mobile-dropdown .btn-signup {
    width: 100%;
    margin-top: 4px;
}

/* Mobile: Show hamburger menu at 640px and below */
@media (max-width: 640px) {
    .landing-mobile-menu-btn {
        display: block;
    }

    .landing-header-actions {
        display: none;
    }
}

/* Mobile Quick Links in Drawer */
.mobile-quick-links {
    border-top: 1px solid #222;
    padding-top: 12px;
    margin-top: 8px;
}

.mobile-link-item {
    text-decoration: none;
    color: inherit;
}

.mobile-link-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Hero */
.landing-hero {
    text-align: center;
    padding: 160px 32px 80px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #f4f4f5;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-highlight {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-hero-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 24px rgba(220, 38, 38, 0.35);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    padding: 14px 36px;
    background: transparent;
    color: #d4d4d8;
    border: 1px solid #2a1515;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-hero-secondary:hover {
    border-color: #dc2626;
    color: #fff;
    background: rgba(220, 38, 38, 0.08);
}

/* Hero Capabilities Grid */
.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 32px auto;
    position: relative;
    z-index: 1;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid #1a1111;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.capability-item:hover {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.06);
    transform: translateY(-1px);
}

.capability-item svg {
    color: #ef4444;
    flex-shrink: 0;
}

.capability-item span {
    font-size: 0.875rem;
    color: #d4d4d8;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.how-it-works-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 48px;
}

.how-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    border: 2px solid #1a1111;
    border-radius: 20px;
    margin-bottom: 24px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.step-icon svg {
    stroke: url(#stepIconGradient);
}

.how-step:hover .step-icon {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.6;
    font-weight: 400;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: #3f3f46;
}

.step-connector svg {
    stroke: #3f3f46;
}

/* Add gradient definition for step icons */
svg defs {
    position: absolute;
}

/* Video Section */
.video-section {
    padding: 60px 48px 80px;
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

.video-container {
    text-align: center;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 12px;
}

.video-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #0c0c0c;
    border: 1px solid #1a1111;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.video-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 0.875rem;
    color: #71717a;
    font-weight: 500;
}

/* Features Section */
.landing-features {
    padding: 80px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #525252;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background: #0c0c0c;
    border: 1px solid #1a1111;
    border-radius: 14px;
    padding: 28px 22px;
    transition: all 0.2s ease;
    position: relative;
}

.feature-card:hover {
    border-color: #2d1111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.82rem;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 14px;
}

.feature-tier {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.free-tier {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.basic-tier {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.pro-tier {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.plus-tier {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Landing Tools Section */
.landing-tools {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent 0%, rgba(255,107,53,0.03) 50%, transparent 100%);
}

.tools-header {
    text-align: center;
    margin-bottom: 48px;
}

.no-login-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.15));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 30px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.no-login-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.no-login-badge svg {
    color: #22c55e;
}

/* Popular Tools Section */
.popular-tools-section {
    margin-bottom: 60px;
}

.popular-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e4e4e7;
    margin-bottom: 24px;
    text-align: center;
}

.popular-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.popular-tool {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
    border: 1px solid #2a2020;
}

.popular-tool:hover {
    border-color: #ff6b35;
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.25);
}

.popular-tool .tool-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.popular-tool h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.popular-tool p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 16px;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.popular-badge svg {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* All Tools Section */
.all-tools-section {
    margin-top: 60px;
}

.all-tools-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e4e4e7;
    margin-bottom: 24px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tool-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0c0c0c;
    border: 1px solid #1a1111;
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    border-color: #ff6b35;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: #ff6b35;
}

.tool-card p {
    font-size: 0.9rem;
    color: #71717a;
    line-height: 1.6;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.tool-stats {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #1a1111;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #a1a1aa;
    font-weight: 500;
}

.stat-item svg {
    color: #71717a;
    flex-shrink: 0;
}

/* Landing Pricing */
.landing-pricing {
    padding: 80px 32px;
    max-width: 960px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    background: #0c0c0c;
    border: 1px solid #1a1111;
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.billing-option {
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.billing-option:hover {
    color: #d4d4d8;
}

.billing-option.active {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 600;
}

/* Landing CTA */
.landing-cta {
    text-align: center;
    padding: 80px 32px;
    border-top: 1px solid #1a1111;
}

.landing-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 12px;
}

.landing-cta p {
    font-size: 1rem;
    color: #71717a;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Landing Footer */
.landing-footer {
    text-align: center;
    padding: 24px 32px;
    border-top: 1px solid #1a1111;
    color: #3f3f46;
    font-size: 0.78rem;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 260px;
    background: #0c0c0c;
    border-right: 1px solid #1a1111;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid #1a1111;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-version {
    font-size: 0.7rem;
    color: #525252;
    font-weight: 400;
}

/* Sidebar navigation */
.sidebar-nav {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    min-height: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #a1a1aa;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
    text-align: left;
}

.nav-item:hover {
    background: #141414;
    color: #d4d4d8;
}

.nav-item.active {
    background: #1a0a0a;
    color: #f4f4f5;
    font-weight: 500;
    border: 1px solid #2d1111;
}

.nav-item.active .nav-icon {
    color: #ef4444;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Sidebar services section */
.sidebar-services {
    padding: 4px 12px 8px;
    border-top: 1px solid #1a1111;
    flex-shrink: 0;
}

.sidebar-services-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px 4px;
}

.service-nav-item.unlocked .lock-icon {
    display: none;
}

/* Home button */
.home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 9px 12px;
    margin-bottom: 8px;
    border: 1px solid #2a1515;
    background: transparent;
    color: #a1a1aa;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.home-btn:hover {
    background: #1a0a0a;
    color: #ef4444;
    border-color: #dc2626;
}

/* Admin link */
.admin-link-btn {
    display: block;
    width: 100%;
    padding: 9px 12px;
    margin-bottom: 8px;
    border: 1px solid #1e1b4b;
    background: rgba(99, 102, 241, 0.05);
    color: #818cf8;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.15s ease;
}

.admin-link-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border-color: #4f46e5;
}

/* Panel service tag */
.panel-svc-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.3px;
}

/* Sidebar footer */
.sidebar-footer {
    padding: 16px;
    border-top: 1px solid #1a1111;
    flex-shrink: 0;
}

.clear-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #2a1515;
    background: transparent;
    color: #71717a;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.clear-btn:hover {
    background: #1a0a0a;
    color: #ef4444;
    border-color: #dc2626;
}

/* ===== MAIN CONTENT ===== */
.main {
    flex: 1;
    margin-left: 260px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Panels */
.panel {
    display: none;
    flex-direction: column;
    flex: 1;
    height: 100vh;
    min-height: 0;
}

.panel.active {
    display: flex;
}

/* Panel header */
.panel-header {
    padding: 20px 32px;
    border-bottom: 1px solid #1a1111;
    background: #080808;
}

.panel-header h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f4f4f5;
}

.panel-desc {
    font-size: 0.82rem;
    color: #525252;
    margin-top: 2px;
}

/* Quick actions */
.quick-actions {
    display: flex;
    gap: 8px;
    padding: 16px 32px;
    flex-wrap: wrap;
    border-bottom: 1px solid #1a1111;
    background: #0a0a0a;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #2a1515;
    background: #121010;
    color: #a1a1aa;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.quick-btn:hover {
    background: #1a0a0a;
    color: #fca5a5;
    border-color: #dc2626;
}

.quick-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quick-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ===== CHAT WINDOW ===== */
.chat-window {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

/* Welcome message */
.welcome-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 12px;
    flex: 1;
}

.welcome-icon {
    color: #ef4444;
    opacity: 0.7;
    margin-bottom: 8px;
}

.credit-icon {
    color: #f97316;
}

.social-icon {
    color: #ef4444;
}

.business-icon {
    color: #f59e0b;
}

.funding-icon {
    color: #22c55e;
}

.ai-icon {
    color: #8b5cf6;
}

.welcome-message h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e4e4e7;
}

.welcome-message p {
    font-size: 0.9rem;
    color: #525252;
    max-width: 400px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 0.78rem !important;
    color: #71717a !important;
    font-style: italic;
    margin-top: 4px;
}

/* Messages */
.message {
    max-width: 720px;
    padding: 14px 18px;
    border-radius: 12px;
    line-height: 1.7;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border-bottom-right-radius: 4px;
    max-width: 600px;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.2);
}

.message.assistant {
    align-self: flex-start;
    background: #111111;
    color: #d4d4d8;
    border: 1px solid #1f1515;
    border-bottom-left-radius: 4px;
}

.message.error {
    align-self: center;
    background: #1c0808;
    color: #ef4444;
    border: 1px solid #2d1111;
    font-size: 0.82rem;
    max-width: 500px;
    text-align: center;
}

.message.loading {
    align-self: flex-start;
    background: #111111;
    color: #71717a;
    border: 1px solid #1f1515;
    border-bottom-left-radius: 4px;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}

/* ===== INPUT BAR ===== */
.input-bar {
    padding: 16px 32px 24px;
    padding-right: 90px; /* Space for Tawk.to chat widget */
    border-top: 1px solid #1a1111;
    background: #080808;
}

/* File chip area */
.file-chip-area {
    min-height: 0;
}

.file-chip-area:empty {
    display: none;
}

.file-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 8px;
    background: #1a0a0a;
    border: 1px solid #2d1111;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #fca5a5;
    max-width: 100%;
}

.file-chip.uploading {
    color: #71717a;
    border-color: #2a1515;
}

.file-chip-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.file-chip-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-chip-remove {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #ef4444;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.file-chip-remove:hover {
    opacity: 1;
}

/* Hidden file input */
.file-input-hidden {
    display: none;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: #111111;
    border: 1px solid #2a1515;
    border-radius: 12px;
    padding: 4px;
    transition: border-color 0.15s ease;
}

/* Upload button */
.upload-btn {
    padding: 10px 10px;
    border: none;
    background: transparent;
    color: #525252;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upload-btn:hover {
    color: #ef4444;
    background: #1a0a0a;
}

.input-wrapper:focus-within {
    border-color: #dc2626;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.15);
}

.input-wrapper textarea {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background: transparent;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-family: inherit;
    resize: none;
    outline: none;
    max-height: 120px;
    line-height: 1.5;
}

.input-wrapper textarea::placeholder {
    color: #3f3f46;
}

.send-btn {
    padding: 10px 12px;
    border: none;
    background: #dc2626;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.send-btn:hover {
    background: #ef4444;
    box-shadow: 0 0 16px rgba(220, 38, 38, 0.3);
}

.send-btn:active {
    transform: scale(0.95);
}

.send-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

/* ===== SCROLLBAR ===== */
.chat-window::-webkit-scrollbar {
    width: 6px;
}

.chat-window::-webkit-scrollbar-track {
    background: transparent;
}

.chat-window::-webkit-scrollbar-thumb {
    background: #2a1515;
    border-radius: 3px;
}

.chat-window::-webkit-scrollbar-thumb:hover {
    background: #3d1f1f;
}

/* ===== MOBILE TOP BAR ===== */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #0c0c0c;
    border-bottom: 1px solid #1a1111;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 200;
}

.mobile-menu-btn,
.mobile-clear-btn {
    border: none;
    background: transparent;
    color: #a1a1aa;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.mobile-menu-btn:hover,
.mobile-clear-btn:hover {
    color: #ef4444;
    background: #1a0a0a;
}

.mobile-topbar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f4f4f5;
}

/* ===== MOBILE DRAWER ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 300;
}

.mobile-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #0c0c0c;
    border-right: 1px solid #1a1111;
    z-index: 400;
    display: flex;
    flex-direction: column;
    transition: left 0.25s ease;
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    padding: 20px 16px;
    border-bottom: 1px solid #1a1111;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-close {
    border: none;
    background: transparent;
    color: #525252;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.mobile-drawer-close:hover {
    color: #ef4444;
    background: #1a0a0a;
}

.mobile-drawer-user {
    padding: 12px 16px;
    border-bottom: 1px solid #1a1111;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-drawer-section-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px 4px;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 10px;
}

.mobile-drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: #a1a1aa;
    font-size: 0.88rem;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
    text-align: left;
    width: 100%;
}

.mobile-drawer-item:hover {
    background: #141414;
    color: #d4d4d8;
}

.mobile-drawer-item.active {
    background: #1a0a0a;
    color: #f4f4f5;
    font-weight: 500;
    border: 1px solid #2d1111;
}

.mobile-drawer-item.active .nav-icon {
    color: #ef4444;
}

.mobile-drawer-item.unlocked .lock-icon {
    display: none;
}

.mobile-drawer-item .lock-icon {
    margin-left: auto;
    color: #525252;
    flex-shrink: 0;
}

.mobile-drawer-item .free-badge {
    margin-left: auto;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid #1a1111;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-auth {
    display: flex;
    gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    .mobile-topbar {
        display: flex;
    }

    .panel-header {
        padding: 16px 20px;
        margin-top: 56px;
    }

    .quick-actions {
        padding: 12px 20px;
    }

    .chat-window {
        padding: 16px 20px;
    }

    .input-bar {
        padding: 12px 16px 24px;
    }

    .message {
        max-width: 90%;
    }

    .welcome-message {
        padding: 40px 16px;
    }

    .modal {
        width: 95%;
        margin: 20px;
    }

    .modal-wide {
        max-width: 95%;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .pricing-card {
        min-width: 0;
    }

    /* Landing page responsive */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .popular-tools-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .popular-tool {
        padding: 24px;
    }

    .popular-tool .tool-icon {
        width: 56px;
        height: 56px;
    }

    .popular-tool h3 {
        font-size: 1.1rem;
    }

    .popular-tool p {
        font-size: 0.9rem;
    }

    .popular-badge {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .no-login-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .popular-title,
    .all-tools-title {
        font-size: 1.2rem;
    }

    .landing-tools {
        padding: 60px 20px;
    }

    .landing-hero {
        padding: 120px 20px 60px;
    }

    .landing-features,
    .landing-pricing {
        padding: 60px 20px;
    }

    .billing-toggle {
        flex-wrap: wrap;
        width: 100%;
    }

    .billing-option {
        flex: 1;
        padding: 10px 16px;
        text-align: center;
    }

    .landing-header-inner {
        padding: 12px 20px;
    }

    /* Hero Capabilities - Mobile */
    .hero-capabilities {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 24px auto;
    }

    .capability-item {
        padding: 8px 10px;
    }

    .capability-item span {
        font-size: 0.8rem;
    }

    /* Video Section - Mobile */
    .video-section {
        padding: 40px 20px 60px;
    }

    .video-title {
        font-size: 1.5rem;
    }

    .video-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .video-highlights {
        gap: 24px;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    /* How It Works - Mobile */
    .how-it-works-section {
        padding: 60px 20px;
    }

    .how-it-works-container {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }

    .how-step {
        max-width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 32px;
        height: 32px;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    /* Hero Capabilities - Small Mobile */
    .hero-capabilities {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .capability-item svg {
        width: 18px;
        height: 18px;
    }

    /* Video - Small Mobile */
    .video-title {
        font-size: 1.3rem;
    }

    .video-highlights {
        gap: 16px;
    }
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

.modal {
    background: #111111;
    border: 1px solid #2a1515;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: modalSlideIn 0.2s ease;
}

.modal-wide {
    max-width: 860px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    color: #525252;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.15s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #ef4444;
    background: #1a0a0a;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f4f4f5;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #525252;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 10px;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input::placeholder {
    color: #3f3f46;
}

.form-group input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.15);
}

.form-error {
    color: #ef4444;
    font-size: 0.82rem;
    margin-bottom: 12px;
    text-align: center;
    min-height: 0;
}

.form-error:empty {
    display: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.modal-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: #525252;
}

.btn-link {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.btn-link:hover {
    color: #fca5a5;
}

/* ===== SIDEBAR AUTH BUTTONS ===== */
.sidebar-auth {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.btn-login,
.btn-signup {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-login {
    background: transparent;
    color: #a1a1aa;
    border: 1px solid #2a1515;
}

.btn-login:hover {
    background: #1a0a0a;
    color: #f4f4f5;
    border-color: #dc2626;
}

.btn-signup {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.3);
}

/* ===== SIDEBAR USER INFO ===== */
.sidebar-user {
    margin-bottom: 10px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
    padding: 0 2px;
}

.user-email {
    font-size: 0.82rem;
    color: #d4d4d8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-plan {
    font-size: 0.72rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-plan.premium {
    color: #f59e0b;
}

.btn-logout {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #2a1515;
    background: transparent;
    color: #71717a;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.btn-logout:hover {
    background: #1a0a0a;
    color: #ef4444;
    border-color: #dc2626;
}

/* ===== FREE BADGE & LOCK ICON ===== */
.free-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.lock-icon {
    margin-left: auto;
    color: #525252;
    flex-shrink: 0;
    transition: color 0.15s ease;
}

.nav-item.active .lock-icon {
    color: #ef4444;
}

.nav-item.unlocked .lock-icon {
    display: none;
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.pricing-card {
    flex: 1;
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 0;
    transition: border-color 0.15s ease;
}

.pricing-card:hover {
    border-color: #dc2626;
}

.pricing-card.popular {
    border-color: #dc2626;
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.plus-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a1a1aa;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 4px;
}

.pricing-price .pricing-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: #525252;
}

.pricing-savings {
    font-size: 0.78rem;
    color: #22c55e;
    margin-bottom: 12px;
    min-height: 18px;
}

.pricing-savings:empty {
    min-height: 18px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
    width: 100%;
    text-align: left;
}

.pricing-features li {
    font-size: 0.82rem;
    color: #a1a1aa;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.btn-pricing {
    margin-top: auto;
}

/* ===== BUNDLE BUILDER & CATEGORY BUNDLES ===== */
.pricing-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.pricing-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a1515, transparent);
}

.pricing-divider span {
    position: relative;
    background: #000;
    padding: 0 20px;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.bundle-builder-section,
.category-bundles-section {
    margin-top: 40px;
}

.bundle-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4f4f5;
    text-align: center;
    margin-bottom: 8px;
}

.bundle-section-subtitle {
    text-align: center;
    color: #71717a;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Bundle Pricing Tiers */
.bundle-pricing-tiers {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.bundle-tier {
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    position: relative;
}

.bundle-tier:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
}

.bundle-tier.active {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.bundle-tier.popular-bundle {
    border-color: #dc2626;
}

.bundle-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bundle-tier-count {
    font-size: 0.85rem;
    color: #a1a1aa;
    font-weight: 600;
    margin-bottom: 4px;
}

.bundle-tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f4f5;
}

/* Mode Selector Grid */
.mode-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.mode-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.mode-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mode-card-content {
    background: #0a0a0a;
    border: 2px solid #2a1515;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mode-card:hover .mode-card-content {
    border-color: #dc2626;
    transform: translateY(-2px);
}

.mode-card input:checked ~ .mode-card-content {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.mode-card.always-included .mode-card-content {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.03);
    cursor: not-allowed;
}

.mode-icon {
    color: #dc2626;
    margin-bottom: 4px;
}

.mode-card.always-included .mode-icon {
    color: #22c55e;
}

.mode-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f4f4f5;
    line-height: 1.3;
}

.mode-free-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Bundle Summary */
.bundle-summary {
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bundle-counter {
    font-size: 0.9rem;
    color: #a1a1aa;
}

.bundle-counter span {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.1rem;
}

.bundle-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
}

.bundle-current-price {
    background: linear-gradient(135deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-bundle-subscribe {
    min-width: 250px;
    padding: 14px 32px;
}

.btn-bundle-subscribe:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Category Bundles */
.category-bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-bundle-card {
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}

.category-bundle-card:hover {
    border-color: #dc2626;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.category-bundle-card.popular-category {
    border-color: #dc2626;
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.1);
}

.category-bundle-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.category-bundle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    text-align: center;
}

.category-bundle-icon {
    color: #dc2626;
    margin-bottom: 12px;
}

.wealth-icon {
    color: #22c55e;
}

.business-icon {
    color: #3b82f6;
}

.creator-icon {
    color: #ec4899;
}

.credit-icon {
    color: #f59e0b;
}

.category-bundle-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 8px;
}

.category-bundle-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f4f5;
}

.category-bundle-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #71717a;
}

.category-bundle-desc {
    font-size: 0.88rem;
    color: #71717a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.category-bundle-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #a1a1aa;
    padding: 8px 0;
}

.category-bundle-features svg {
    color: #22c55e;
    flex-shrink: 0;
}

.btn-bundle {
    width: 100%;
}

/* Responsive Bundle Styles */
@media (max-width: 768px) {
    .bundle-pricing-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .mode-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mode-card-content {
        padding: 16px 12px;
    }

    .bundle-section-title {
        font-size: 1.5rem;
    }

    .category-bundles-grid {
        grid-template-columns: 1fr;
    }

    .bundle-summary {
        padding: 20px;
    }

    .btn-bundle-subscribe {
        min-width: 100%;
    }
}

/* ===== MARKETING ICON ===== */
.marketing-icon {
    color: #ef4444;
}

.ebook-icon {
    color: #3b82f6;
}

/* ===== TRUST & GUARANTEE SECTION ===== */
.trust-guarantee-section {
    padding: 60px 32px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid #1a1111;
}

/* Guarantee Banner */
.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 32px 48px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon svg {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    stroke: url(#gradient);
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.3));
}

.guarantee-icon svg {
    stroke: #ef4444;
}

.guarantee-content {
    text-align: left;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f4f5;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.5;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 12px;
    padding: 24px 16px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.03);
    transform: translateY(-2px);
}

.badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
}

.badge-icon svg {
    stroke: #ef4444;
}

.badge-text {
    text-align: center;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f4f4f5;
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: #71717a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-guarantee-section {
        padding: 40px 20px;
    }

    .guarantee-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-title {
        font-size: 1.25rem;
    }

    .guarantee-text {
        font-size: 0.9rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-badge {
        padding: 20px 12px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon svg {
        width: 24px;
        height: 24px;
    }

    .badge-title {
        font-size: 0.85rem;
    }

    .badge-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* ===== SERVICES SECTION ===== */
.landing-services {
    padding: 80px 32px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid #1a1111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    border-color: #dc2626;
}

.service-card.featured {
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-icon {
    color: #ef4444;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.85rem;
    color: #71717a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    text-align: left;
}

.service-features li {
    font-size: 0.82rem;
    color: #a1a1aa;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.service-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 20px;
}

.service-price .service-period {
    font-size: 0.8rem;
    font-weight: 400;
    color: #525252;
}

.btn-service {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-service:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-service:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* ===== FAQ SECTION ===== */
.landing-faq {
    padding: 80px 32px;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #1a1111;
}

.faq-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid #1a1111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2a1515;
}

.faq-item.active {
    border-color: #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #f4f4f5;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #ef4444;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    color: #71717a;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ef4444;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

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

.faq-answer p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: #ef4444;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.landing-contact {
    padding: 80px 32px;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #1a1111;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a1a1aa;
    font-size: 0.88rem;
}

.contact-item svg {
    color: #ef4444;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #2a1515;
    border-radius: 10px;
    color: #f4f4f5;
    font-size: 0.88rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
}

/* ===== DISCLAIMERS SECTION ===== */
.landing-disclaimers {
    padding: 60px 32px;
    border-top: 1px solid #1a1111;
}

.disclaimers-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimers-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #71717a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimers-content p {
    font-size: 0.75rem;
    color: #3f3f46;
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimers-content strong {
    color: #525252;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    color: #525252;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

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

.footer-legal {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-legal a {
    font-size: 0.75rem;
    color: #404040;
}

/* ===== SERVICES / CONTACT RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .landing-services,
    .landing-faq,
    .landing-contact {
        padding: 60px 20px;
    }

    .landing-disclaimers {
        padding: 40px 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.landing-testimonials {
    padding: 100px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

/* Testimonial Header (Stars + Verified Badge) */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    font-size: 1.15rem;
}

.star-filled {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* Verified Badge */
.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verified-badge svg {
    color: #22c55e;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.4));
}

/* Testimonial Result Highlight */
.testimonial-result {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    margin-bottom: 4px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar with Gradient Border */
.testimonial-avatar-wrapper {
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, #ff6b35, #fbbf24, #22c55e, #3b82f6);
    border-radius: 50%;
    animation: rotate-gradient 6s linear infinite;
}

@keyframes rotate-gradient {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

/* Tool Used Badge */
.testimonial-tool-used {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
}

/* ===== FOOTER SOCIAL LINKS ===== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: #ff6b35;
    text-decoration: underline;
}

.cookie-accept {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
}

.exit-popup-close:hover {
    color: #fff;
}

.exit-popup h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.exit-popup p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exit-popup-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
}

.exit-popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #ff6b35;
}

.exit-popup-form button,
.exit-popup-btn {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.exit-popup-form button:hover,
.exit-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.exit-popup-note {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 500px) {
    .exit-popup {
        padding: 30px 24px;
    }

    .exit-popup h2 {
        font-size: 1.5rem;
    }
}

/* ===== SETTINGS MODAL ===== */
.modal-settings {
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
}

.btn-settings {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}

.btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.settings-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.settings-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.settings-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.settings-tab.active {
    color: #fff;
    background: rgba(255, 107, 53, 0.2);
}

.settings-content {
    display: none;
}

.settings-content.active {
    display: block;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 8px;
}

.settings-section {
    margin-bottom: 28px;
}

.settings-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.settings-field {
    margin-bottom: 16px;
}

.settings-field label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.settings-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.95rem;
}

.settings-field input:focus {
    outline: none;
    border-color: #ff6b35;
}

.settings-field input[readonly] {
    opacity: 0.7;
    cursor: not-allowed;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.plan-status {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.plan-status.trial {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.usage-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.usage-bar {
    height: 100%;
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.usage-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.settings-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.settings-danger h3 {
    color: #ef4444;
}

.settings-danger p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.btn-danger {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-danger:hover {
    background: #dc2626;
}

#settings-trial-section {
    display: none;
}

#settings-trial-section.show {
    display: block;
}

@media (max-width: 500px) {
    .settings-tabs {
        flex-wrap: wrap;
    }

    .settings-tab {
        flex: 1;
        text-align: center;
    }
}

/* ===== VOICE CONTROLS ===== */
.voice-btn {
    background: transparent;
    border: none;
    color: #525252;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-btn:hover {
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.05);
}

.voice-btn.recording {
    color: #ef4444;
    animation: pulse-recording 1.5s infinite;
}

@keyframes pulse-recording {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.voice-btn.playing {
    color: #22c55e;
}

.voice-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.voice-btn.hidden {
    display: none;
}

.message .speak-btn {
    background: transparent;
    border: none;
    color: #525252;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    margin-left: 8px;
    opacity: 0;
    transition: all 0.2s;
}

.message:hover .speak-btn {
    opacity: 1;
}

.message .speak-btn:hover {
    color: #a1a1aa;
}

.message .speak-btn.playing {
    color: #22c55e;
    opacity: 1;
}

/* Message Action Buttons */
.message-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #1f1515;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #1a0a0a;
    border: 1px solid #2d1111;
    border-radius: 6px;
    color: #a1a1aa;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #2d1111;
    color: #fca5a5;
    border-color: #ef4444;
}

.action-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.action-btn.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

.copy-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

.download-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.voice-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.voice-indicator .voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 16px;
}

.voice-indicator .voice-wave span {
    width: 3px;
    background: #ef4444;
    border-radius: 2px;
    animation: voice-wave 0.5s ease-in-out infinite;
}

.voice-indicator .voice-wave span:nth-child(1) { animation-delay: 0s; height: 8px; }
.voice-indicator .voice-wave span:nth-child(2) { animation-delay: 0.1s; height: 12px; }
.voice-indicator .voice-wave span:nth-child(3) { animation-delay: 0.2s; height: 16px; }
.voice-indicator .voice-wave span:nth-child(4) { animation-delay: 0.3s; height: 12px; }
.voice-indicator .voice-wave span:nth-child(5) { animation-delay: 0.4s; height: 8px; }

@keyframes voice-wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* ===== IMAGE GENERATOR ===== */
.image-gen-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px);
    padding: 20px;
    gap: 20px;
}

.image-gen-form {
    background: #0c0c0c;
    border: 1px solid #1a1111;
    border-radius: 12px;
    padding: 20px;
}

.image-gen-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 14px;
    color: #e4e4e7;
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
}

.image-gen-form textarea:focus {
    border-color: #ef4444;
}

.image-gen-form textarea::placeholder {
    color: #525252;
}

.image-gen-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 16px;
}

.image-size-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-size-select label {
    color: #71717a;
    font-size: 0.85rem;
}

.image-size-select select {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px 14px;
    color: #e4e4e7;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
}

.btn-generate-image {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-generate-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.btn-generate-image:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.image-gen-result {
    flex: 1;
    background: #0c0c0c;
    border: 1px solid #1a1111;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-gen-placeholder {
    text-align: center;
    color: #3f3f46;
}

.image-gen-placeholder svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.image-gen-placeholder p {
    font-size: 0.9rem;
}

.generated-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.generated-image {
    max-width: 100%;
    max-height: calc(100% - 60px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-download-image {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #e4e4e7;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-download-image:hover {
    background: #222;
    border-color: #444;
}

.image-gen-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #71717a;
}

.image-gen-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #222;
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .image-gen-container {
        height: auto;
        min-height: calc(100vh - 180px);
    }

    .image-gen-options {
        flex-direction: column;
        align-items: stretch;
    }

    .image-size-select {
        justify-content: space-between;
    }

    .btn-generate-image {
        justify-content: center;
    }

    .image-gen-result {
        min-height: 300px;
    }
}

/* ===== SOCIAL PROOF POPUP ===== */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideInLeft 0.5s ease;
    max-width: 300px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.social-proof-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.social-proof-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.3;
}

.social-proof-text strong {
    display: block;
    color: #fff;
}

.social-proof-text span {
    color: #888;
}

.social-proof-time {
    font-size: 0.7rem;
    color: #666;
}

/* ===== WELCOME DISCOUNT POPUP ===== */
.welcome-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.welcome-popup {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.welcome-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.welcome-badge {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.welcome-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.welcome-popup p {
    color: #aaa;
    margin-bottom: 15px;
}

.welcome-code {
    background: #0a0a0a;
    border: 2px dashed #ff6b35;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    border-radius: 10px;
    margin: 20px 0;
    letter-spacing: 3px;
}

.welcome-popup-btn {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.welcome-popup-note {
    font-size: 0.75rem;
    color: #666;
    margin-top: 15px;
}

/* ===== SPIN TO WIN WHEEL ===== */
.spin-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: 20px;
}

.spin-popup {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #8b5cf6;
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    text-align: center;
    position: relative;
}

.spin-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.spin-popup h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spin-popup > p {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.spin-wheel-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
}

.spin-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid #333;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    right: 0;
    transform-origin: bottom left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: rotate(calc(var(--i) * 60deg));
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
}

.spin-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spin-form input {
    padding: 12px 16px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
}

.spin-form button {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.spin-form button:hover {
    transform: scale(1.02);
}

.spin-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spin-result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 10px;
}

.spin-result h3 {
    color: #22c55e;
    margin-bottom: 5px;
}

.spin-result p {
    color: #fff;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(255,107,53,0.4);
    transition: bottom 0.4s ease;
}

.sticky-cta.show {
    bottom: 20px;
}

.sticky-cta span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.sticky-cta-btn {
    background: #fff;
    color: #ff4d4d;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-banner {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    padding: 12px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,107,53,0); }
}

.countdown-banner p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.countdown-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.landing-testimonials {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.testimonials-carousel .testimonial-card {
    min-width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.testimonials-carousel .testimonial-stars {
    display: flex;
    gap: 4px;
    font-size: 1.15rem;
}

.testimonials-carousel .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    flex-grow: 1;
}

.testimonials-carousel .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials-carousel .testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.testimonials-carousel .testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonials-carousel .testimonial-author span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.1);
}

/* ===== LIVE VISITORS COUNTER ===== */
.live-visitors {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #22c55e;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

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

/* ===== REFERRAL LEADERBOARD ===== */
.landing-leaderboard {
    padding: 80px 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leaderboard-container {
    margin-top: 40px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.leaderboard-item:hover {
    transform: translateX(5px);
}

.leaderboard-item.gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
    border-color: #ffd700;
}

.leaderboard-item.silver {
    background: linear-gradient(135deg, rgba(192,192,192,0.1), rgba(192,192,192,0.05));
    border-color: #c0c0c0;
}

.leaderboard-item.bronze {
    background: linear-gradient(135deg, rgba(205,127,50,0.1), rgba(205,127,50,0.05));
    border-color: #cd7f32;
}

.leaderboard-rank {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.leaderboard-item.gold .leaderboard-rank { background: #ffd700; color: #000; }
.leaderboard-item.silver .leaderboard-rank { background: #c0c0c0; color: #000; }
.leaderboard-item.bronze .leaderboard-rank { background: #cd7f32; color: #fff; }

.leaderboard-name {
    flex: 1;
    text-align: left;
    margin-left: 15px;
    font-weight: 600;
    color: #e4e4e7;
}

.leaderboard-referrals {
    color: #888;
    font-size: 0.9rem;
    margin-right: 20px;
}

.leaderboard-earned {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

/* ===== EXIT SURVEY ===== */
.exit-survey-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    padding: 20px;
}

.exit-survey {
    background: #151515;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    text-align: center;
}

.exit-survey h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.exit-survey > p {
    color: #888;
    margin-bottom: 25px;
}

.exit-survey-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.exit-survey-option {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    color: #e4e4e7;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.exit-survey-option:hover {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.1);
}

.exit-survey-option.selected {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.15);
}

.exit-survey-textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    color: #e4e4e7;
    font-family: inherit;
    resize: none;
    margin-bottom: 20px;
    display: none;
}

.exit-survey-btn {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.exit-survey-skip {
    background: none;
    border: none;
    color: #666;
    margin-top: 15px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* ===== SIGNUP PROGRESS BAR ===== */
.signup-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.progress-step.active {
    color: #ff6b35;
}

.progress-step.completed {
    color: #22c55e;
}

.progress-dot {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.progress-step.active .progress-dot {
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    color: #fff;
}

.progress-step.completed .progress-dot {
    background: #22c55e;
    color: #fff;
}

.progress-line {
    width: 30px;
    height: 2px;
    background: #333;
}

.progress-step.completed + .progress-line,
.progress-line.active {
    background: #22c55e;
}

/* Mobile adjustments for new features */
@media (max-width: 768px) {
    /* Testimonials - Stack vertically on mobile */
    .testimonials-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .testimonials-track {
        gap: 15px;
    }

    .testimonials-carousel .testimonial-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        scroll-snap-align: center;
        padding: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-stars {
        font-size: 1rem;
        gap: 3px;
    }

    .testimonial-result {
        font-size: 0.88rem;
        padding: 8px 12px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .verified-badge {
        font-size: 0.65rem;
    }

    .verified-badge svg {
        width: 12px;
        height: 12px;
    }

    .testimonial-avatar-wrapper {
        padding: 2px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .testimonial-author strong {
        font-size: 0.88rem;
    }

    .testimonial-info span {
        font-size: 0.78rem;
    }

    .testimonial-tool-used {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .testimonials-nav {
        display: none; /* Hide nav buttons on mobile, use swipe instead */
    }

    .landing-testimonials {
        padding: 50px 15px;
    }

    .landing-testimonials .section-title {
        font-size: 1.5rem;
    }

    .landing-testimonials .section-subtitle {
        font-size: 0.9rem;
    }

    /* Leaderboard mobile */
    .landing-leaderboard {
        padding: 50px 15px;
    }

    .leaderboard-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
    }

    .leaderboard-name {
        flex-basis: 50%;
    }

    .leaderboard-referrals {
        margin-right: 0;
        font-size: 0.8rem;
    }

    .leaderboard-earned {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Live visitors */
    .live-visitors {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .social-proof-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .welcome-popup, .spin-popup {
        margin: 10px;
        padding: 25px;
    }

    .spin-wheel-container {
        width: 180px;
        height: 180px;
    }

    .sticky-cta {
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 15px;
        justify-content: center;
    }

    .sticky-cta span {
        display: none;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 6px 10px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }
}

/* ===================== AD SYSTEM STYLES ===================== */

/* Ad containers */
.hsv-ad-container {
    margin: 20px 0;
}

/* Banner ads */
.hsv-ad-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    padding: 24px 30px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hsv-ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hsv-ad-banner img {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.hsv-ad-content {
    flex: 1;
    display: block;
}

.hsv-ad-content strong {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 8px;
}

.hsv-ad-content span {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Sidebar ads */
.hsv-ad-sidebar {
    display: block;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hsv-ad-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hsv-ad-sidebar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hsv-ad-headline {
    font-weight: 600;
    padding: 12px 16px 4px;
    font-size: 0.95rem;
}

.hsv-ad-desc {
    padding: 0 16px;
    font-size: 0.8rem;
    color: #888;
}

.hsv-ad-cta {
    display: inline-block;
    margin: 12px 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* Native/inline ads */
.hsv-ad-native {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.hsv-ad-native .hsv-ad-link {
    display: flex;
    gap: 30px;
    text-decoration: none;
    color: #fff;
    align-items: center;
}

.hsv-ad-native img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hsv-ad-info {
    flex: 1;
}

.hsv-ad-info strong {
    display: inline;
    margin-right: 8px;
    font-size: 1.3rem;
}

.hsv-ad-info p {
    display: inline;
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

.hsv-ad-native .hsv-ad-cta {
    margin: 0;
    padding: 0;
    background: none;
    color: #ff6b35;
    font-size: 0.85rem;
}

/* Ad label */
.hsv-ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #888;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tool results ad placement */
.tool-results-ad {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #1a1a1a;
}

/* Responsive ads */
@media (max-width: 768px) {
    .hsv-ad-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .hsv-ad-banner img {
        width: 100%;
        height: 180px;
    }

    .hsv-slideshow {
        width: 100%;
        height: 180px;
    }

    .hsv-slideshow .hsv-slide {
        width: 100%;
        height: 180px;
    }

    .hsv-ad-content strong {
        font-size: 1.1rem;
    }

    .hsv-ad-content span {
        font-size: 0.9rem;
    }

    .hsv-ad-native .hsv-ad-link {
        flex-direction: column;
    }

    .hsv-ad-native img {
        width: 100%;
        height: 150px;
    }

    .hsv-ad-info strong {
        font-size: 1rem;
        display: block;
        margin-bottom: 8px;
    }

    .hsv-ad-info p {
        font-size: 0.9rem;
        display: block;
    }

    .hsv-ad-img {
        width: 100%;
        height: 180px;
    }

    .hsv-ad-content strong {
        display: block;
        margin-bottom: 8px;
    }

    .hsv-ad-content span {
        display: block;
    }
}

/* Ad Slideshow */
.hsv-slideshow {
    width: 280px;
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hsv-slideshow .hsv-slide {
    position: absolute;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hsv-slideshow .hsv-slide.active {
    position: relative;
    opacity: 1;
}

.hsv-ad-img {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* Ad Animations */
@keyframes hsv-slide-in {
    0% { transform: translateX(-100%); }
    10% { transform: translateX(0); }
    90% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@keyframes hsv-fade-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes hsv-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hsv-anim-slide {
    animation: hsv-slide-in 10s ease-in-out infinite;
}

.hsv-anim-fade {
    animation: hsv-fade-pulse 3s ease-in-out infinite;
}

.hsv-anim-bounce {
    animation: hsv-bounce 2s ease infinite;
}

/* Video in ads - same size as images */
.hsv-ad-banner video,
.hsv-ad-native video {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.hsv-ad-sidebar video {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.hsv-ad-banner iframe,
.hsv-ad-native iframe {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    flex-shrink: 0;
}

.hsv-ad-sidebar iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* Mobile video sizing */
@media (max-width: 768px) {
    .hsv-ad-banner video,
    .hsv-ad-native video,
    .hsv-ad-banner iframe,
    .hsv-ad-native iframe {
        width: 100%;
        height: 180px;
    }
}
