/* =====================================================
   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%;
}

/* ===== 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: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.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: center;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-trust {
    font-size: 14px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust::before {
    content: "🚀";
}

/* Quick Generator */
.quick-generator {
    margin-bottom: 32px;
}

.generator-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.generator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.generator-icon {
    font-size: 24px;
}

.generator-title {
    font-weight: 600;
    font-size: 18px;
}

.generator-badge {
    margin-left: auto;
    padding: 4px 12px;
    background: var(--success);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.generator-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    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: 12px;
    color: var(--text-muted);
}

.btn-generate {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
}

.generator-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.generator-note a {
    color: var(--primary);
}

.generator-note a:hover {
    text-decoration: underline;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-icon {
    color: var(--success);
    font-weight: bold;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Comparison Widget */
.hero-comparison {
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.comparison-header {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,212,255,0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 8px;
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.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;
}

/* ===== 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;
}

.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;
}

/* ===== 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-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .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;
    }
}
