/* =====================================================
   FreeWebToApk - Main Stylesheet
   Convert Website to Android APK in 2 Seconds
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #00D4FF;
    --primary-dark: #00B4DB;
    --secondary: #E94560;
    --accent: #8B5CF6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Background */
    --bg-dark: #0A0F1C;
    --bg-card: #0F1A2E;
    --bg-card-hover: #1A2744;
    --bg-input: #1E293B;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    /* Borders */
    --border-color: #1E3A5F;
    --border-light: #334155;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(180deg, #0A0F1C 0%, #0F1A2E 100%);
    --gradient-card: linear-gradient(145deg, rgba(15,26,46,0.9) 0%, rgba(10,15,28,0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(0,212,255,0.15);
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 60px;
    --card-radius: 16px;
    --btn-radius: 12px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,212,255,0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-block {
    width: 100%;
}

/* ===== Top Promotional Banner ===== */
.fireadmin-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: linear-gradient(135deg, #FF6D00 0%, #FF3D00 100%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(255, 109, 0, 0.3);
}

.fireadmin-banner .promo-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.fireadmin-banner .promo-badge {
    background: #fff;
    color: #FF3D00;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fireadmin-banner .promo-icon {
    font-size: 20px;
}

.fireadmin-banner .promo-text {
    color: #fff;
}

.fireadmin-banner .promo-text strong {
    color: #fff;
}

.fireadmin-banner .promo-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.fireadmin-banner .promo-banner-content:hover .promo-cta {
    background: #fff;
    color: #FF3D00;
}

.fireadmin-banner .promo-close {
    position: absolute;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
}

.fireadmin-banner .promo-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Adjust navbar when promo banner is shown */
.has-promo-banner .navbar {
    top: 44px;
}

/* Mobile adjustments for top banner */
@media (max-width: 768px) {
    .fireadmin-banner {
        padding: 8px 40px 8px 12px;
    }
    
    .fireadmin-banner .promo-banner-content {
        font-size: 11px;
        gap: 6px;
    }
    
    .fireadmin-banner .promo-badge {
        display: none;
    }
    
    .fireadmin-banner .promo-icon {
        font-size: 14px;
    }
    
    .fireadmin-banner .promo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
    }
    
    .fireadmin-banner .promo-cta {
        padding: 3px 8px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .fireadmin-banner .promo-close {
        right: 8px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .has-promo-banner .navbar {
        top: 36px;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10,15,28,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links > a,
.nav-links > .nav-dropdown > a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
    color: var(--primary);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(0,212,255,0.1);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: auto;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 50%),
                var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0,212,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 50px 50px;
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Top Row - Generator + Comparison side by side */
.hero-top-row {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.quick-generator {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quick-generator .generator-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quick-generator .generator-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quick-generator .btn-generate {
    margin-top: 8px;
}

.generator-badge-row {
    margin-top: auto;
    text-align: center;
    padding-top: 12px;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Compact Hero Text (below generator) */
.hero-text-compact {
    text-align: left;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.hero-trust {
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust::before {
    content: "🚀";
}

/* Quick Generator */
.quick-generator {
    margin-bottom: 0;
}

/* Hero Info Row - Video Left, Info Right */
.hero-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}

.video-tutorial-section {
    width: 100%;
}

.video-title {
    color: #F1F5F9;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-caption {
    color: #94A3B8;
    font-size: 12px;
    margin-top: 10px;
}

.hero-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
}

.hero-badge-row {
    margin-top: 4px;
}

.hero-support-note {
    color: #94A3B8;
    font-size: 14px;
    margin: 0;
}

.generator-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.generator-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.generator-icon {
    font-size: 20px;
}

.generator-title {
    font-weight: 600;
    font-size: 16px;
}

.generator-badge {
    margin-left: auto;
    padding: 3px 10px;
    background: var(--success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
}

.generator-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.input-hint {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-generate {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
}

.generator-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.generator-note a {
    color: var(--primary);
}

.generator-note a:hover {
    text-decoration: underline;
}

.generator-features {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 12px 24px;
    margin-top: 24px;
    justify-content: start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px 32px;
    justify-content: start;
    margin-bottom: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.trust-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

/* Hero Visual - Comparison Widget */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.hero-visual .hero-comparison {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hide floating stats in top row for cleaner parallel layout */
.hero-top-row .floating-stats {
    display: none;
}

/* Hero Comparison Widget */
.hero-comparison {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    display: flex;
    flex-direction: column;
}

.comparison-header {
    text-align: center;
    margin-bottom: 16px;
}

.comparison-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0,212,255,0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 6px;
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    flex: 1;
    justify-content: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--bg-input);
    border-radius: 10px;
    font-size: 13px;
}

.comparison-row .label {
    color: var(--text-secondary);
    font-weight: 500;
}

.comparison-row .ours {
    color: var(--success);
    font-weight: 600;
    text-align: center;
}

.comparison-row .theirs {
    color: var(--text-muted);
    text-align: center;
    text-decoration: line-through;
    opacity: 0.7;
}

.comparison-link {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    background: rgba(0,212,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comparison-link:hover {
    background: rgba(0,212,255,0.1);
}

/* Legacy phone mockup - keeping for about page */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--primary);
    color: white;
}

.preview-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.preview-title {
    font-weight: 600;
}

.preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.preview-loader {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.stat-card.stat-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.stat-card.stat-2 {
    bottom: 30%;
    left: -40px;
    animation-delay: 1s;
}

.stat-card.stat-3 {
    bottom: 10%;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Features Preview ===== */
.features-preview {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* ===== Tools Section ===== */
.tools-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.tool-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.tool-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}

.tool-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,212,255,0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(0,212,255,0.3);
}

.tools-cta {
    text-align: center;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

.step-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: auto;
}

.input-preview {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.input-preview .label {
    color: var(--text-muted);
}

.input-preview .value {
    color: var(--primary);
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.color-picker-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.color-picker-row input[type="color"] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    overflow: hidden;
}

.color-picker-row input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker-row input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
}

.color-picker-row input[type="color"]::-moz-color-swatch {
    border: none;
    border-radius: 50%;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3);
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.download-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 24px;
}

.file-name {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.file-size {
    color: var(--text-muted);
    font-size: 13px;
}

.step-connector {
    display: flex;
    align-items: center;
    margin-top: 30px;
    width: 80px;
    align-self: flex-start;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.how-cta {
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Pricing Preview ===== */
.pricing-preview {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-input);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-badge.premium {
    background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(139,92,246,0.2));
    color: var(--primary);
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    color: var(--text-muted);
    font-size: 16px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}

.pricing-features .x {
    color: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== App Promo ===== */
.app-promo {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--success);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.promo-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.promo-text p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.promo-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.playstore-btn img {
    transition: transform 0.3s ease;
}

.playstore-btn:hover img {
    transform: scale(1.05);
}

.promo-image {
    display: flex;
    justify-content: center;
}

.promo-image img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===== Final CTA ===== */
.final-cta {
    background: radial-gradient(ellipse at center, rgba(0,212,255,0.1) 0%, transparent 70%),
                var(--bg-dark);
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Contributor CTA ===== */
.contributor-cta {
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.1) 100%),
                radial-gradient(ellipse at top, rgba(139,92,246,0.15) 0%, transparent 60%),
                var(--bg-card);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.contributor-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contributor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}

.contributor-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contributor-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contributor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.benefit-item {
    background: rgba(139,92,246,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139,92,246,0.4);
    background: rgba(139,92,246,0.08);
    box-shadow: 0 8px 24px rgba(139,92,246,0.15);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-text strong {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-text span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contributor-action {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.contributor-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.step {
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(139,92,246,0.3);
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step strong {
    color: var(--primary);
    font-weight: 600;
}

.btn-contributor {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(139,92,246,0.4);
    margin-bottom: 24px;
}

.btn-contributor:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139,92,246,0.5);
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
}

.contributor-note {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contributor-note strong {
    color: var(--text-secondary);
}

/* ===== New Free Model Components ===== */

/* Generator Feature Badges */
.features-included {
    background: rgba(16,185,129,0.05);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--card-radius);
    padding: 20px;
    margin-bottom: 24px;
}

.features-included h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success);
    margin-bottom: 12px;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: #10B981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Pricing Showcase */
.pricing-showcase {
    text-align: center;
    padding: 40px 0;
}

.showcase-header {
    margin-bottom: 48px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.price-strike {
    font-size: 48px;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.price-free {
    font-size: 72px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-tagline {
    font-size: 18px;
    color: var(--text-secondary);
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.showcase-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.showcase-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.showcase-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.showcase-cta {
    margin-top: 32px;
}

.showcase-cta .cta-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Trust Numbers */
.trust-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

/* Index Free Features Strip */
.free-features-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 40px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.strip-item:hover {
    border-color: var(--primary);
}

.strip-icon {
    font-size: 18px;
}

.pricing-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-divider {
    color: var(--text-muted);
    font-size: 14px;
}

/* Features Highlight Grid */
.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.highlight-card h4 {
    font-size: 13px;
    font-weight: 600;
}

/* Responsive for new components */
@media (max-width: 992px) {
    .feature-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-highlight-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .price-strike {
        font-size: 32px;
    }
    
    .price-free {
        font-size: 48px;
    }
    
    .features-highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .free-features-strip {
        gap: 10px;
    }
    
    .strip-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .pricing-cta-row {
        flex-direction: column;
    }
    
    .cta-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .feature-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .showcase-card {
        padding: 16px 12px;
    }
    
    .features-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-input);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Footer SEO Links */
.footer-seo-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-seo-links h4 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 24px;
    justify-items: center;
}

@media (max-width: 992px) {
    .seo-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-links-grid {
        grid-template-columns: 1fr;
    }
}

.seo-links-grid a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.seo-links-grid a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Footer Keyword Tags */
.footer-keyword-tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-keyword-tags p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Landing Pages ===== */
.landing-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.landing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.landing-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.landing-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.landing-hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.landing-cta {
    margin-bottom: 40px;
}

.landing-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-cta .cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.landing-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.landing-stats .stat {
    text-align: center;
}

.landing-stats .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.landing-stats .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.landing-features {
    padding: 80px 0;
    background: var(--bg-dark);
}

.landing-features h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 48px;
}

.landing-steps {
    padding: 80px 0;
    background: var(--bg-card);
}

.landing-steps h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.steps-cta {
    text-align: center;
}

.landing-faq {
    padding: 80px 0;
    background: var(--bg-dark);
}

.landing-faq h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.landing-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.landing-final-cta h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
}

.landing-final-cta p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ===== Promo Banners Section ===== */
.promo-banners-section {
    padding: 24px 0;
    background: var(--bg-primary);
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Backlinks Banner - Orange/Red theme */
.promo-backlinks {
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
    border: 2px solid rgba(255, 107, 53, 0.5);
    animation: pulse-border-orange 2s infinite;
}

/* Video Banner - Purple/Blue theme */
.promo-video {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    animation: pulse-border-purple 2s infinite;
}

@keyframes pulse-border-orange {
    0%, 100% { 
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% { 
        border-color: rgba(247, 37, 133, 0.8);
        box-shadow: 0 0 30px rgba(247, 37, 133, 0.5);
    }
}

@keyframes pulse-border-purple {
    0%, 100% { 
        border-color: rgba(139, 92, 246, 0.5);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% { 
        border-color: rgba(6, 182, 212, 0.8);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    }
}

/* Glowing background effect */
.promo-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sparkles animation */
.promo-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.promo-sparkles .sparkle {
    position: absolute;
    font-size: 16px;
    animation: sparkle-float 2s ease-in-out infinite;
    opacity: 0;
}

.promo-sparkles .sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.promo-sparkles .sparkle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 0.5s;
}

.promo-sparkles .sparkle:nth-child(3) {
    top: 30%;
    left: 85%;
    animation-delay: 1s;
}

@keyframes sparkle-float {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(-10px) scale(1.2);
    }
}

/* Promo content */
.promo-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.promo-badge-hot, .promo-badge-new {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    animation: badge-pulse 1.5s ease-in-out infinite;
}

.promo-badge-hot {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.promo-badge-new {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.promo-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.4;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.promo-banner:hover .promo-cta {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(4px);
}

/* Promo icon */
.promo-icon {
    position: relative;
    z-index: 2;
    font-size: 48px;
    opacity: 0.9;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(-5deg); }
    75% { transform: translateY(-6px) rotate(5deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .promo-banners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .promo-banner {
        padding: 20px 22px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .promo-desc {
        font-size: 13px;
    }
    
    .promo-icon {
        font-size: 40px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promo-features {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Homepage Comparison Table ===== */
.comparison-home {
    padding: var(--section-padding) 0;
    background: var(--bg-input);
}

.comparison-table-home {
    overflow-x: auto;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    margin-top: 48px;
}

.comparison-table-home table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table-home th,
.comparison-table-home td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table-home th {
    background: var(--bg-input);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.comparison-table-home th:first-child,
.comparison-table-home td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table-home th.highlight {
    background: rgba(0,212,255,0.15);
    color: var(--primary);
}

.comparison-table-home td.highlight {
    background: rgba(0,212,255,0.05);
    color: var(--primary);
}

.comparison-table-home .check {
    color: var(--success);
    font-weight: bold;
}

.comparison-table-home tbody tr:hover {
    background: rgba(0,212,255,0.03);
}

.comparison-table-home tbody tr:last-child td {
    border-bottom: none;
}

.comparison-cta {
    text-align: center;
    margin-top: 32px;
}

/* Stats & FAQ Combined Section */
.stats-faq-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.stats-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stats-column h3,
.faq-column h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.stat-text {
    color: var(--text-secondary);
}

.faq-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-row strong {
    color: var(--text-primary);
    font-size: 15px;
}

.faq-row span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Features Overview Section */
.features-overview {
    padding: 40px 0;
    background: rgba(0,212,255,0.02);
    border-bottom: 1px solid var(--border-color);
}

/* Advanced Section Toggle (Generator) */
.advanced-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    margin-bottom: 24px;
}

.advanced-toggle {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
    list-style: none;
}

.advanced-toggle::-webkit-details-marker {
    display: none;
}

.advanced-toggle:hover {
    color: var(--primary);
}

.advanced-content {
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .stats-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .generator-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: 60px;
        padding: 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* ===== Live Stats Banner ===== */
.live-stats-banner {
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(139,92,246,0.05) 100%);
    border-top: 1px solid rgba(0,212,255,0.1);
    border-bottom: 1px solid rgba(0,212,255,0.1);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}

.live-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out;
}

.stat-item.today {
    animation-delay: 0.1s;
}

.stat-item.total {
    animation-delay: 0.2s;
}

.stat-item.live {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(0,212,255,0.3), transparent);
}

.stat-pulse {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.stat-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #10B981;
    border-radius: 50%;
    animation: pulsering 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulsering {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Responsive Stats Banner */
@media (max-width: 900px) {
    .stats-container {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-divider {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .live-stats-banner {
        padding: 24px 0;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 24px);
        min-width: 200px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

/* ============================================================================
   Tawk.to Live Chat Widget Customization
   ============================================================================ */

/* Force Tawk widget to be visible and properly positioned */
#tawk-bubble-container,
.tawk-min-container,
.tawk-button-circle {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Force iframe visibility */
#tawk-bubble-container iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Style the chat bubble with gradient to match site theme */
.tawk-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

.tawk-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
}

/* Chat window customization */
#tawkchat-container iframe {
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #tawk-bubble-container {
        bottom: 80px !important; /* Adjust for mobile navigation */
    }
}

/* ============================================================================
   Real-time Activity Feed
   ============================================================================ */

.activity-feed {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 999998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    pointer-events: none;
}

.activity-notification {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    cursor: default;
}

.activity-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.activity-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: activityPulse 2s ease-in-out infinite;
}

@keyframes activityPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-app {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.4;
}

.activity-close {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.activity-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hover effect on notification */
.activity-notification:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(102, 126, 234, 0.3);
    transform: translateX(-4px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .activity-feed {
        left: 10px;
        right: 10px;
        bottom: 80px;
        max-width: calc(100% - 20px);
    }
    
    .activity-notification {
        padding: 10px 12px;
    }
    
    .activity-icon {
        font-size: 20px;
    }
    
    .activity-app {
        font-size: 13px;
    }
    
    .activity-location {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .activity-feed {
        bottom: 70px;
    }
}