/* ============================================
   SKs - AI Automation Website Styles
   Professional Dark Mode Design
   ============================================ */

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

:root {
    /* Dark Mode Colors (Default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-elevated: #252525;
    
    /* Primary Colors - Updated to match logo */
    --primary-blue: #4a9eff;
    --primary-dark-blue: #3b82f6;
    --primary-purple: #a78bfa;
    --primary-dark-purple: #8b5cf6;
    
    /* Accent Colors - Enhanced orange to match logo */
    --accent-orange: #ff6b35;
    --accent-coral: #ff8c5a;
    --accent-teal: #2dd4bf;
    --accent-green: #34d399;
    --accent-red: #f87171;
    
    /* Text Colors */
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Border Colors */
    --border-primary: #2a2a2a;
    --border-secondary: #333333;
    --border-accent: #4a9eff;
    
    /* Gradients - Updated to match logo colors */
    --gradient-primary: linear-gradient(135deg, #4a9eff 0%, #a78bfa 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    --gradient-teal: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Light Mode Colors */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-elevated: #f8fafc;
    
    /* Text Colors - High Contrast for Readability */
    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-tertiary: #475569;
    --text-muted: #64748b;
    
    /* Border Colors */
    --border-primary: #e2e8f0;
    --border-secondary: #cbd5e1;
    --border-accent: #3b82f6;
    
    /* Accent Colors - Slightly Darker for Better Visibility */
    --primary-blue: #2563eb;
    --primary-dark-blue: #1d4ed8;
    
    /* Shadows for light mode - More Visible */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

/* Light Mode Specific Adjustments for Better Visibility */
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

[data-theme="light"] .section {
    background: var(--bg-primary);
}

[data-theme="light"] .card,
[data-theme="light"] .feature-card,
[data-theme="light"] .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-primary);
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: var(--text-primary);
}

[data-theme="light"] p,
[data-theme="light"] li,
[data-theme="light"] span {
    color: var(--text-secondary);
}

[data-theme="light"] .badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-secondary);
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
    color: var(--text-muted);
}

/* Light Mode Button Styles */
[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

[data-theme="light"] .btn-secondary {
    background: var(--bg-elevated);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

[data-theme="light"] .btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--border-secondary);
}

[data-theme="light"] .btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-blue);
}

/* Light Mode Navigation Styles */
[data-theme="light"] .nav-menu a {
    color: var(--text-secondary);
}

[data-theme="light"] .nav-menu a:not(.btn):hover,
[data-theme="light"] .nav-menu a:not(.btn).active {
    color: var(--primary-blue);
}

[data-theme="light"] .nav-menu .btn {
    color: #ffffff !important;
}

/* Light Mode Stats and Metrics */
[data-theme="light"] .stat-value,
[data-theme="light"] .metric-value {
    color: var(--text-primary);
}

/* Light Mode Icons */
[data-theme="light"] .feature-card i,
[data-theme="light"] .service-card i {
    color: var(--primary-blue);
}

/* Light Mode Service Item */
[data-theme="light"] .service-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
}

/* Light Mode Testimonials */
[data-theme="light"] .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
}

[data-theme="light"] .testimonial-card .quote-icon {
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Light Mode Pricing Cards */
[data-theme="light"] .pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
}

[data-theme="light"] .pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

/* Light Mode FAQ */
[data-theme="light"] .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
}

/* Light Mode Container Content - Enhanced Visibility */
[data-theme="light"] .hero-text h1,
[data-theme="light"] .hero-text h2 {
    color: var(--text-primary);
    text-shadow: none;
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .hero-text p {
    color: var(--text-secondary);
}

[data-theme="light"] .pipeline-stage,
[data-theme="light"] .process-step,
[data-theme="light"] .feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .pipeline-stage h3,
[data-theme="light"] .process-step h3,
[data-theme="light"] .feature-box h3 {
    color: var(--text-primary);
}

[data-theme="light"] .pipeline-stage p,
[data-theme="light"] .process-step p,
[data-theme="light"] .feature-box p {
    color: var(--text-secondary);
}

[data-theme="light"] .stats-grid,
[data-theme="light"] .metrics-grid {
    background: transparent;
}

[data-theme="light"] .stat-card,
[data-theme="light"] .metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .stat-card h3,
[data-theme="light"] .metric-card h3,
[data-theme="light"] .stat-card .stat-value,
[data-theme="light"] .metric-card .metric-value {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="light"] .stat-card p,
[data-theme="light"] .metric-card p {
    color: var(--text-secondary);
}

/* Light Mode Service/Feature Containers */
[data-theme="light"] .service-hero,
[data-theme="light"] .about-hero,
[data-theme="light"] .contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

[data-theme="light"] .service-grid,
[data-theme="light"] .features-grid {
    background: transparent;
}

/* Light Mode List Items in Containers */
[data-theme="light"] .feature-list li,
[data-theme="light"] .service-list li,
[data-theme="light"] ul li,
[data-theme="light"] ol li {
    color: var(--text-secondary);
}

[data-theme="light"] .feature-list li strong,
[data-theme="light"] .service-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Light Mode CTA Sections */
[data-theme="light"] .cta-section {
    background: var(--bg-secondary);
    border: 2px solid var(--border-primary);
}

[data-theme="light"] .cta-section h2,
[data-theme="light"] .cta-section h3 {
    color: var(--text-primary);
}

[data-theme="light"] .cta-section p {
    color: var(--text-secondary);
}

/* Light Mode Info Boxes */
[data-theme="light"] .info-box,
[data-theme="light"] .note-box,
[data-theme="light"] .tip-box {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--primary-blue);
    color: var(--text-secondary);
}

[data-theme="light"] .info-box strong,
[data-theme="light"] .note-box strong,
[data-theme="light"] .tip-box strong {
    color: var(--text-primary);
}

/* Light Mode Timeline/Steps */
[data-theme="light"] .timeline-item,
[data-theme="light"] .step-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
}

[data-theme="light"] .timeline-item::before,
[data-theme="light"] .step-item::before {
    background: var(--primary-blue);
    border-color: var(--border-primary);
}

[data-theme="light"] .step-number,
[data-theme="light"] .timeline-number {
    background: var(--primary-blue);
    color: #ffffff;
    border: 2px solid var(--border-primary);
}

/* Light Mode Gradient Text */
[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light Mode Buttons - Enhanced Visibility */
[data-theme="light"] .btn {
    font-weight: 600;
    border-width: 2px;
}

[data-theme="light"] .btn-large {
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .btn-nav {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    border-color: transparent;
}

[data-theme="light"] .btn-nav:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Light Mode Icons - Better Contrast */
[data-theme="light"] i,
[data-theme="light"] .fas,
[data-theme="light"] .far,
[data-theme="light"] .fab {
    color: var(--text-secondary);
}

[data-theme="light"] .feature-card i,
[data-theme="light"] .service-card i,
[data-theme="light"] .pipeline-stage i,
[data-theme="light"] .process-step i {
    color: var(--primary-blue);
}

/* Light Mode Sections with Background */
[data-theme="light"] .section-dark,
[data-theme="light"] .section-alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

/* Light Mode Hover States */
[data-theme="light"] .card:hover,
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

/* Light Mode Form Elements */
[data-theme="light"] .form-group label {
    color: var(--text-primary);
    font-weight: 600;
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus,
[data-theme="light"] select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Light Mode Links */
[data-theme="light"] a:not(.btn) {
    color: var(--primary-blue);
}

[data-theme="light"] a:not(.btn):hover {
    color: var(--primary-dark-blue);
}

/* Light Mode Code Blocks */
[data-theme="light"] code,
[data-theme="light"] pre {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

/* Light Mode Tables */
[data-theme="light"] table {
    border-color: var(--border-primary);
}

[data-theme="light"] th {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="light"] td {
    border-color: var(--border-primary);
    color: var(--text-secondary);
}

[data-theme="light"] tr:hover {
    background: var(--bg-secondary);
}

/* Light Mode Alert/Notice Boxes */
[data-theme="light"] .alert,
[data-theme="light"] .notice {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    color: var(--text-secondary);
}

/* Light Mode Loading Spinner */
[data-theme="light"] .spinner {
    border-color: var(--border-primary);
    border-top-color: var(--primary-blue);
}

body {
    font-family: var(--font-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

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

/* ============================================
   3. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--border-secondary);
}

.btn-outline:hover {
    background: var(--bg-elevated);
    border-color: var(--primary-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
    transition: background var(--transition-base);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn).active {
    color: var(--primary-blue);
}

/* Keep button text visible and properly colored */
.nav-menu .btn {
    color: var(--text-primary) !important;
}

.nav-menu .btn.active,
.nav-menu .btn:active,
.nav-menu .btn:focus {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after {
    width: 100%;
}

/* Try Live AI special styling */
.nav-menu .live-ai-link {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
}

.nav-menu .live-ai-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    opacity: 0;
    animation: ripple 2s ease-in-out infinite;
    z-index: -1;
}

.nav-menu .live-ai-link::after {
    display: none;
}

.nav-menu .live-ai-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    animation: none;
}

.nav-menu .live-ai-link i {
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-elevated);
    border: 2px solid var(--border-primary);
    border-radius: var(--radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all var(--transition-base);
    position: absolute;
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--accent-orange);
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="light"] .theme-toggle {
    background: var(--bg-card);
    border-color: var(--border-secondary);
}

[data-theme="light"] .theme-toggle:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

/* Mobile controls wrapper */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* On desktop, theme toggle is fixed position (breaks out of wrapper) */
/* Mobile menu toggle is hidden on desktop */

@media (max-width: 768px) {
    /* On mobile, theme toggle stays in wrapper with relative position */
    .theme-toggle {
        position: relative;
        top: auto;
        right: auto;
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* ============================================
   5. HERO SECTIONS
   ============================================ */
.hero {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text {
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: var(--bg-elevated);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid var(--border-secondary);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.floating-card p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.trust-badges {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent-green);
}

.platform-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    font-size: 2rem;
    color: var(--text-muted);
}

.platform-icons i {
    transition: var(--transition-base);
}

.platform-icons i:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.service-hero {
    background: var(--bg-secondary);
}

/* ============================================
   6. SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ============================================
   7. FEATURES SECTION
   ============================================ */
.features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

/* ============================================
   8. BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

/* ============================================
   9. HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
}

/* LinkedIn Pipeline 3-Column Layout */
.pipeline-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .pipeline-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pipeline-grid-3col {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    position: relative;
    transition: var(--transition-base);
}

.step-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ============================================
   10. PRICING SECTION
   ============================================ */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin: var(--spacing-lg) 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-left: 0.25rem;
}

.pricing-features {
    margin: var(--spacing-lg) 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features i {
    font-size: 1rem;
}

.pricing-features .fa-check {
    color: var(--accent-green);
}

.pricing-features .fa-times {
    color: var(--text-muted);
}

/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   12. CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.cta-section h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn-primary {
    background: var(--text-primary);
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-guarantee i {
    font-size: 1.25rem;
}

/* ============================================
   13. PROBLEM/SOLUTION SECTIONS
   ============================================ */
.problem-section {
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.problem-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    color: var(--accent-red);
    margin-bottom: var(--spacing-sm);
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--primary-blue);
}

.solution-intro h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   14. RESULTS SECTION
   ============================================ */
.results-section {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.results-section .section-header h2 {
    color: var(--text-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.result-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.result-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================
   15. USE CASES SECTION
   ============================================ */
.use-cases {
    background: var(--bg-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.use-case-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.use-case-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.use-case-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   16. PLATFORMS SECTION
   ============================================ */
.platforms-section {
    background: var(--bg-secondary);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
}

.platform-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.platform-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.platform-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.platform-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* ============================================
   17. ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-section {
    background: var(--bg-primary);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.story-text {
    max-width: 700px;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    font-style: italic;
    color: var(--text-secondary);
}

blockquote i {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

blockquote p {
    font-size: 1.25rem;
}

.story-stats {
    display: grid;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-primary);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.mission-section {
    background: var(--bg-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.mission-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.why-choose {
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.why-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.why-icon i {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.expertise-section {
    background: var(--bg-secondary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.expertise-item {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.expertise-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.expertise-item h4 {
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.team-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-primary);
}

.team-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.team-avatar i {
    font-size: 3rem;
    color: var(--text-primary);
}

.recognition-section {
    background: var(--bg-secondary);
}

.recognition-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.badge-item {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-primary);
}

.badge-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: var(--spacing-md);
}

.badge-item p {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================
   18. CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form-container {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
}

.form-header {
    margin-bottom: var(--spacing-lg);
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-tertiary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

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

.checkbox-group {
    margin-top: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: var(--spacing-md);
}

.form-message {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
}

.form-message i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.form-message.success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid var(--accent-green);
}

.form-message.success i {
    color: var(--accent-green);
}

.form-message.success h3 {
    color: var(--accent-green);
}

.form-message.error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid var(--accent-red);
}

.form-message.error i {
    color: var(--accent-red);
}

.form-message.error h3 {
    color: var(--accent-red);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card,
.social-card,
.guarantee-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
}

.contact-info-card h3,
.social-card h3,
.guarantee-card h4 {
    margin-bottom: var(--spacing-md);
}

.contact-info-card > p,
.social-card > p {
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-primary);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-text a {
    color: var(--primary-blue);
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.info-text p {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}

.info-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--bg-elevated);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.guarantee-card {
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-align: center;
}

.guarantee-card i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.guarantee-card h4 {
    color: var(--text-primary);
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-elevated);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
}

/* ============================================
   19. FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-base);
    border: 1px solid var(--border-secondary);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-primary);
}

.footer-bottom p {
    color: var(--text-tertiary);
    margin: 0;
}

/* ============================================
   20. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content,
    .story-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        z-index: 999;
        border-right: 1px solid var(--border-primary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Center icons on mobile/tablet */
    .hero-stats,
    .platform-icons,
    .trust-badges {
        justify-content: center;
    }
    
    .benefit-icon,
    .feature-icon,
    .mission-icon,
    .why-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero */
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    /* Grids */
    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Center all card icons */
    .feature-card,
    .benefit-item,
    .use-case-card,
    .platform-card,
    .expertise-item,
    .team-card {
        text-align: center;
    }
    
    .feature-icon,
    .benefit-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .platform-icons {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .floating-card i {
        font-size: 1.25rem;
    }
}

/* ============================================
   21. UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Popup Container - Fast & Using Website Background */
#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

/* Popup Form Iframe - Fast Loading */
#popup-DWT2cQ1LSlbTsRQdugdv {
    width: 800px !important;
    max-width: 90vw;
    height: 700px;
    min-height: 615px;
    border: none !important;
    border-radius: 12px;
    background: var(--bg-card);
    box-shadow: var(--shadow-xl);
}

/* Close button for popup */
.popup-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-elevated);
    border: 2px solid var(--border-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    color: var(--text-primary);
    font-size: 22px;
    transition: var(--transition-base);
}

.popup-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

/* Mobile Popup Adjustments */
@media (max-width: 768px) {
    #popup-DWT2cQ1LSlbTsRQdugdv {
        width: 95% !important;
        max-width: 95%;
        min-height: 500px;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Get Started Page Styles */
.get-started-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.get-started-form-container {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
}

.inline-form-wrapper {
    min-height: 550px;
    margin-top: var(--spacing-md);
}

.inline-form-wrapper iframe {
    width: 100% !important;
    height: 550px !important;
    min-height: 550px;
    border: none !important;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 1024px) {
    .get-started-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   21. LEGAL PAGES (PRIVACY POLICY & TERMS)
   ============================================ */
.legal-page {
    background: var(--bg-primary);
    padding: var(--spacing-xxl) 0;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-secondary);
}

.last-updated,
.legal-intro {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.legal-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.legal-body {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-primary);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--primary-blue);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.legal-section p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-lg);
    list-style: disc;
    color: var(--text-secondary);
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-xs);
    line-height: 1.7;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--accent-coral);
}

/* Important/Highlighted Section */
.important-section {
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.important-section h2 {
    color: var(--accent-orange);
}

.highlight-text {
    background: rgba(255, 107, 53, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-left: 4px solid var(--accent-orange);
    border-radius: var(--radius-sm);
    display: block;
    margin: var(--spacing-md) 0;
    color: var(--text-primary);
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.contact-info-box p {
    margin-bottom: var(--spacing-xs);
}

.contact-info-box strong {
    color: var(--primary-blue);
}

.legal-footer-note {
    background: var(--bg-elevated);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
    margin-top: var(--spacing-lg);
    font-size: 0.95rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: var(--spacing-lg);
    }
    
    .legal-section {
        margin-bottom: var(--spacing-lg);
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: var(--spacing-md);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    #popup-DWT2cQ1LSlbTsRQdugdv {
        display: none;
    }
}

/* ============================================
   22. MULTI-STEP FORM STYLES
   ============================================ */
.popup-form-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    color: white;
    font-size: 20px;
    transition: var(--transition-base);
}

.popup-close-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.popup-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.popup-header p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    color: white;
}

.popup-form-wrapper {
    padding: 40px;
    background: white;
}

.popup-form-wrapper .progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.popup-form-wrapper .progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-bar-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: #667eea;
    z-index: 1;
    transition: width 0.3s ease;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.progress-step.active .progress-circle {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    background: #10b981;
    color: white;
}

.progress-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.form-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-section.active {
    display: block;
}

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

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

.popup-form-wrapper .form-group {
    margin-bottom: 25px;
}

.popup-form-wrapper label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #ef4444;
}

.popup-form-wrapper input[type="text"],
.popup-form-wrapper input[type="email"],
.popup-form-wrapper input[type="tel"],
.popup-form-wrapper input[type="url"],
.popup-form-wrapper select,
.popup-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #1f2937;
    background: white;
}

.popup-form-wrapper input:focus,
.popup-form-wrapper select:focus,
.popup-form-wrapper textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.popup-form-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-form-wrapper .checkbox-group,
.popup-form-wrapper .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: #667eea;
    background: #f9fafb;
}

.checkbox-item.selected,
.radio-item.selected {
    border-color: #667eea;
    background: #eef2ff;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.option-description {
    font-size: 13px;
    color: #6b7280;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.popup-form-wrapper .btn {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.popup-form-wrapper .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.popup-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.popup-form-wrapper .btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.popup-form-wrapper .btn-secondary:hover {
    background: #e5e7eb;
}

.popup-form-wrapper .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.success-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.help-text {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .popup-form-wrapper {
        padding: 30px 20px;
    }

    .popup-header h1 {
        font-size: 24px;
    }

    .progress-label {
        font-size: 10px;
    }

    .progress-circle {
        width: 35px;
        height: 35px;
    }

    .button-group {
        flex-direction: column-reverse;
    }
}

/* ============================================
   23. INLINE FORM STYLES (FOR GET-STARTED PAGE)
   ============================================ */
.inline-form-wrapper-new {
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.inline-form-wrapper-new .progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.inline-form-wrapper-new .progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.inline-form-wrapper-new .progress-bar-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: #667eea;
    z-index: 1;
    transition: width 0.3s ease;
}

.inline-form-wrapper-new .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.inline-form-wrapper-new .progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.inline-form-wrapper-new .progress-step.active .progress-circle {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.inline-form-wrapper-new .progress-step.completed .progress-circle {
    background: #10b981;
    color: white;
}

.inline-form-wrapper-new .progress-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.inline-form-wrapper-new .form-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.inline-form-wrapper-new .form-section.active {
    display: block;
}

.inline-form-wrapper-new .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.inline-form-wrapper-new .section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

.inline-form-wrapper-new .form-group {
    margin-bottom: 25px;
}

.inline-form-wrapper-new label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.inline-form-wrapper-new .required {
    color: #ef4444;
}

.inline-form-wrapper-new input[type="text"],
.inline-form-wrapper-new input[type="email"],
.inline-form-wrapper-new input[type="tel"],
.inline-form-wrapper-new input[type="url"],
.inline-form-wrapper-new select,
.inline-form-wrapper-new textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #1f2937;
    background: white;
}

.inline-form-wrapper-new input:focus,
.inline-form-wrapper-new select:focus,
.inline-form-wrapper-new textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.inline-form-wrapper-new textarea {
    resize: vertical;
    min-height: 100px;
}

.inline-form-wrapper-new .checkbox-group,
.inline-form-wrapper-new .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inline-form-wrapper-new .checkbox-item,
.inline-form-wrapper-new .radio-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inline-form-wrapper-new .checkbox-item:hover,
.inline-form-wrapper-new .radio-item:hover {
    border-color: #667eea;
    background: #f9fafb;
}

.inline-form-wrapper-new .checkbox-item.selected,
.inline-form-wrapper-new .radio-item.selected {
    border-color: #667eea;
    background: #eef2ff;
}

.inline-form-wrapper-new .checkbox-item input[type="checkbox"],
.inline-form-wrapper-new .radio-item input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.inline-form-wrapper-new .option-content {
    flex: 1;
}

.inline-form-wrapper-new .option-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.inline-form-wrapper-new .option-description {
    font-size: 13px;
    color: #6b7280;
}

.inline-form-wrapper-new .button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.inline-form-wrapper-new .btn {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.inline-form-wrapper-new .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.inline-form-wrapper-new .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.inline-form-wrapper-new .btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.inline-form-wrapper-new .btn-secondary:hover {
    background: #e5e7eb;
}

.inline-form-wrapper-new .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.inline-form-wrapper-new .success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.inline-form-wrapper-new .success-message.active {
    display: block;
}

.inline-form-wrapper-new .success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.inline-form-wrapper-new .success-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.inline-form-wrapper-new .success-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.inline-form-wrapper-new .help-text {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .inline-form-wrapper-new {
        padding: 20px;
    }

    .inline-form-wrapper-new .progress-label {
        font-size: 10px;
    }

    .inline-form-wrapper-new .progress-circle {
        width: 35px;
        height: 35px;
    }

    .inline-form-wrapper-new .button-group {
        flex-direction: column-reverse;
    }
}

/* ============================================
   24. LIVE DEMO PAGE STYLES
   ============================================ */
.demo-niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.demo-niche-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}

.demo-niche-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.niche-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.niche-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.demo-niche-card h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.niche-workflow {
    background: var(--bg-elevated);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-secondary);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.workflow-step i {
    color: var(--accent-orange);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.niche-description {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.demo-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
    width: 100%;
}

.demo-buttons .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 0;
}

.demo-buttons .btn i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Demo Panel */
.demo-panel-section {
    background: var(--bg-secondary);
    padding: var(--spacing-xxl) 0;
    margin-top: var(--spacing-xl);
}

.demo-panel {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-primary);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.demo-panel-header {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-panel-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.demo-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--text-primary);
}

.demo-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.demo-panel-body {
    padding: var(--spacing-xl);
    min-height: 500px;
    background: var(--bg-elevated);
}

.demo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    color: var(--text-tertiary);
}

.demo-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.demo-placeholder h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.demo-placeholder p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Responsive Demo Page */
@media (max-width: 768px) {
    .demo-niches-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-niche-card {
        padding: var(--spacing-md);
    }
    
    .demo-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .demo-buttons .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    .demo-panel-body {
        padding: var(--spacing-md);
        min-height: 400px;
    }
}