/* AI FAQ GEN - Modern Compact Premium Design 2025 */
/* $100,000 Worth Landing Page - Glassmorphism, Dark Hero, Compact Spacing */

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

/* CSS Variables - Modern Design System */
:root {
    /* Primary Colors */
    --primary-purple: #7C3AED;
    --primary-cyan: #06B6D4;
    --primary-gradient: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    
    /* Dark Theme */
    --dark-bg: #0F172A;
    --dark-secondary: #1E293B;
    --dark-tertiary: #334155;
    
    /* Light Theme */
    --light-bg: #FFFFFF;
    --light-secondary: #F8FAFC;
    --light-tertiary: #F1F5F9;
    
    /* Text Colors */
    --text-dark: #0F172A;
    --text-light: #F8FAFC;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    
    /* Compact Spacing (40-50% reduced) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-backdrop: blur(20px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background: #F8FAFC;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

input::placeholder {
    color: #ffffff; /* ili bilo koja boja */
    opacity: 1; /* obavezno na nekim browserima */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Modern Header - Glassmorphism & Sticky */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

/* Site Header - Alternative Header Style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.site-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--space-xl);
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    transition: all 0.3s;
}

.site-header .logo:hover {
    transform: translateY(-2px);
}

.site-header .logo-icon {
    width: 28px;
    height: 28px;
    color: #7C3AED;
}

.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-menu li {
    margin: 0;
}

.site-header .nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    position: relative;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu a.active {
    color: #7C3AED;
}

.site-header .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    transition: width 0.3s;
}

.site-header .nav-menu a:hover::after,
.site-header .nav-menu a.active::after {
    width: 100%;
}

.site-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header .user-menu {
    position: relative;
}

.site-header .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.site-header .spin-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
}

.site-header .btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.site-header .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #E2E8F0;
}

.site-header .btn-outline:hover {
    border-color: #7C3AED;
    color: #7C3AED;
    transform: translateY(-2px);
}

.site-header .btn-primary {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
}

.site-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.site-header .btn-secondary {
    background: #F1F5F9;
    color: var(--text-dark);
}

.site-header .btn-secondary:hover {
    background: #E2E8F0;
    transform: translateY(-2px);
}

.site-header .btn svg {
    width: 18px;
    height: 18px;
}

.navbar-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--space-xl);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
}

.logo-icon-box {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
}

.logo-icon-box svg {
    color: white;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-compact {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-menu-compact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-menu-compact a:hover {
    color: var(--primary-purple);
}

.btn-signup {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Hero Section - Dark Theme */
.hero-dark {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 120px 0 var(--space-2xl) 0;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.code-bracket {
    color: var(--primary-cyan);
    font-family: 'Courier New', monospace;
}

.gradient-cyan-purple {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-tertiary);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-hero {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.5);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-hero:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Compact Wheel Container */
.wheel-container-compact {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(124, 58, 237, 0.3));
}

.spin-btn-compact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: 3px solid white;
    color: white;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    z-index: 10;
}

.spin-btn-compact:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.1);
}

.spin-btn-compact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wheel-hint {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* FAQ Generator Section - Glassmorphism */
.generator-section-modern {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

.section-header-compact {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header-compact h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-header-compact p {
    font-size: 16px;
    color: var(--text-secondary);
}

.generator-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

/* Glassmorphic Form Card */
.generator-form-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.form-section {
    margin-bottom: var(--space-lg);
}

.form-label-compact {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.input-group-compact {
    position: relative;
    margin-bottom: var(--space-md);
}

.input-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.input-compact {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) 40px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.input-compact:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.btn-generate {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

/* Preview Glass Card */
.preview-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.preview-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

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

/* 92% SEO Score Ring */
.seo-score-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto var(--space-lg);
}

.seo-score-ring svg {
    width: 100%;
    height: 100%;
}

.score-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: var(--space-xs);
    line-height: 1.3;
}

/* Statistics Section - Compact Horizontal */
.stats-section-compact {
    padding: var(--space-2xl) 0;
    background: white;
}

.stats-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card-compact {
    text-align: center;
    padding: var(--space-xl);
    background: var(--light-secondary);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.stat-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number-gradient {
    font-size: 40px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat-label-compact {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Features Section - Compact 3-Column Grid */
.features-section-compact {
    padding: var(--space-2xl) 0;
    background: var(--light-secondary);
}

.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card-compact {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.feature-icon-compact {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon-compact svg {
    color: var(--primary-purple);
}

.feature-card-compact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.feature-card-compact p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section - Compact Cards */
.pricing-section-compact {
    padding: var(--space-2xl) 0;
    background: white;
}

.pricing-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pricing-card-compact {
    background: var(--light-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-compact.featured-plan {
    background: white;
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.pricing-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--text-tertiary);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.pricing-badge.popular-badge {
    background: var(--primary-gradient);
}

.pricing-card-compact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.pricing-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: var(--space-md);
    background: white;
    border: 2px solid var(--text-tertiary);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--light-secondary);
}

.btn-pricing-primary {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Testimonials Section - Compact 2-Column */
.testimonials-section-compact {
    padding: var(--space-2xl) 0;
    background: var(--light-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.testimonial-card-compact {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.author-avatar-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* FAQ Accordion - Compact */
.faq-section-compact {
    padding: var(--space-2xl) 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-compact {
    margin-bottom: var(--space-sm);
}

.faq-question-compact {
    width: 100%;
    padding: var(--space-lg);
    background: var(--light-secondary);
    border: none;
    border-radius: var(--radius-sm);
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question-compact:hover {
    background: #E5E7EB;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-purple);
}

.faq-answer-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-compact p {
    padding: var(--space-lg);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Footer CTA - Compact */
.footer-cta-compact {
    padding: var(--space-2xl) 0;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.footer-cta-compact h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.footer-cta-compact p {
    font-size: 16px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
}

.cta-buttons-footer {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.5);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer-modern {
    padding: var(--space-xl) 0;
    background: var(--dark-secondary);
    color: var(--text-tertiary);
    text-align: center;
    font-size: 14px;
}

/* Modern FAQ Generator Form Styles */
.modern-faq-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-section-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
}

.form-section-block:last-of-type {
    border-bottom: none;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.input-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: #FFFFFF;
}

.input-modern:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.input-modern::placeholder {
    color: #94A3B8;
}

textarea.input-modern {
    resize: vertical;
    min-height: 80px;
}

select.input-modern {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    appearance: none;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.radio-card input[type="radio"]:checked + span,
.radio-card:has(input[type="radio"]:checked) {
    border-color: #7C3AED;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    font-weight: 600;
    color: #7C3AED;
}

.checkbox-tag {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    gap: 8px;
}

.checkbox-tag input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7C3AED;
    cursor: pointer;
}

.checkbox-tag:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.checkbox-tag:has(input[type="checkbox"]:checked) {
    border-color: #7C3AED;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
}

.range-modern {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #7C3AED, #06B6D4);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.range-modern::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7C3AED;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.range-modern::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7C3AED;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-generate-main {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    margin-top: 32px;
}

.btn-generate-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.4);
}

.btn-generate-main:active {
    transform: translateY(0);
}

/* Generator Layout - Form + Wheel Side by Side */
.generator-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: start;
}

.accordion-form-container {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

/* Accordion Items */
.accordion-item {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item.active {
    border-color: #7C3AED;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.accordion-item.premium-locked:not(.active) .accordion-header {
    opacity: 0.6;
    cursor: not-allowed;
}

.accordion-header {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.accordion-header:hover {
    background: #F8FAFC;
}

.accordion-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
}

.required-badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.optional-badge {
    padding: 3px 10px;
    background: #E2E8F0;
    color: #64748B;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.premium-badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.accordion-arrow {
    transition: transform 0.3s;
    color: #64748B;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 16px;
    border-top: 1px solid #E2E8F0;
}

/* Compact Form Inputs */
.form-group-compact {
    margin-bottom: 14px;
}

.form-group-compact label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.input-compact {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.input-compact:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

select.input-compact {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

textarea.input-compact {
    resize: vertical;
    min-height: 60px;
}

.range-compact {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #7C3AED, #06B6D4);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.range-compact::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7C3AED;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.range-compact::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7C3AED;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Mini Radio/Checkbox */
.radio-mini, .checkbox-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.radio-mini:hover, .checkbox-mini:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.radio-mini input, .checkbox-mini input {
    width: 16px;
    height: 16px;
    accent-color: #7C3AED;
}

.radio-mini:has(input:checked), .checkbox-mini:has(input:checked) {
    border-color: #7C3AED;
    background: rgba(124, 58, 237, 0.05);
}

/* Premium Upsell */
.premium-upsell {
    padding: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 10px;
    text-align: center;
}

.premium-upsell p {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.premium-upsell ul {
    text-align: left;
    margin: 12px 0;
    padding-left: 20px;
    color: #64748B;
    font-size: 13px;
}

.premium-upsell li {
    margin-bottom: 4px;
}

.btn-upgrade-mini {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-upgrade-mini:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Spin Counter Box */
.spin-counter-box {
    margin: 16px 0;
    padding: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border: 2px solid #E2E8F0;
    border-radius: 10px;
}

.spin-counter-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.spin-counter-content svg {
    color: #7C3AED;
    flex-shrink: 0;
}

.spin-counter-label {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.spin-counter-value {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spin-upgrade-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #7C3AED;
    font-weight: 600;
    text-decoration: none;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
    margin-top: 8px;
}

.spin-upgrade-link:hover {
    color: #06B6D4;
}

/* Spin Wheel Button */
.btn-spin-wheel {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
    margin-top: 16px;
}

.btn-spin-wheel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-spin-wheel:active {
    transform: translateY(0);
}

/* Lucky Wheel Container */
.lucky-wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

#luckyWheel {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #EF4444;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 10;
}

.wheel-center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
}

.wheel-center-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
}

.wheel-center-text {
    font-size: 24px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
}

.wheel-center-subtext {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .generator-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .lucky-wheel-container {
        order: -1;
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .hero-split,
    .generator-grid-compact,
    .features-grid-3col,
    .pricing-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu-compact {
        display: none;
    }
    
    #luckyWheel {
        width: 100%;
    }
    
    .lucky-wheel-container {
        min-height: auto;
    }
}

/* Loading Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-spin-wheel:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .wheel-container-compact {
        width: 300px;
        height: 300px;
    }
    
    .section-header-compact h2 {
        font-size: 28px;
    }
    
    .stats-grid-horizontal {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        display: none;
    }
    
    .log-menu > span {
        display: none;
    }
    
    .navbar-compact {
        justify-content: start;
    }
    
    .upgrade-premium-sec {
        display: block!important;
    }
    
    .upgrade-button {
        margin-top: 20px;
    }
    
    h1 {
        font-size: 24px!important;
    }
    
    h2 {
        font-size: 22px!important;
    }
    
    h3, h4, h5 {
        font-size: 20px!important;
    }
    
    p {
        font-size: 16px!important;
    }
    
    .hero-dark {
        padding: 100px 0 var(--space-2xl) 0;
        margin-top: 0;
    }
    
    .stat-number-gradient {
        font-size: 20px;
    }
}
