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

:root {
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --secondary-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f0f9ff;
    --bg-tertiary: #e0f2fe;
    --bg-glass: rgba(59, 130, 246, 0.1);
    --bg-glass-hover: rgba(59, 130, 246, 0.2);
    
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-strong: #e2e8f0;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    --transition-fast: 150ms ease-out;
    --transition-normal: 300ms ease-out;
    --transition-slow: 500ms ease-out;
}

body {
    font-family: 'Zalando Sans Expanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
    cursor: auto;
}

/* Loading screen removed - no more issues! */

/* Custom cursor removed - clean and simple! */

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    display: none;
}

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

/* Modern Navigation */
.navbar {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: var(--spacing-lg) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Hamburger menu removed - navigation always visible */

/* Modern Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--text-inverse);
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.hero-badge:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    color: var(--text-inverse);
}

.hero-trust {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Floating elements removed - cleaner hero section! */

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--warning-gradient);
    border-radius: var(--radius-sm);
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary, .btn-secondary {
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--text-inverse);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left var(--transition-slow);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    animation: none !important;
    transition: none !important;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: none !important;
    transition: none !important;
}

.chat-interface {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    background: white;
    justify-content: flex-start;
    animation: none !important;
    transition: none !important;
}

.chat-message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 10px;
    line-height: 1.3;
    word-wrap: break-word;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.chat-message.user {
    background: #ec4899;
    color: white;
    align-self: flex-end;
    font-weight: 500;
}

.chat-message.mia {
    background: #f3f4f6;
    color: #1f2937;
    align-self: flex-start;
}

.chat-message.mia.greeting {
    background: #f3f4f6;
    color: #6b7280;
}

.sop-citation {
    font-size: 9px;
    color: #9ca3af;
    font-style: italic;
}

.chat-message strong {
    font-weight: 600;
}

/* Chat Input Bar */
.chat-input-bar {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.chat-input-box {
    background: #f3f4f6;
    border-radius: 24px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}

.input-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gemini-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 10px;
}

.chat-input-box i {
    color: #9ca3af;
    font-size: 14px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Phone Mockup Mobile Section */
.phone-mockup-mobile {
    display: none;
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.phone-mockup-mobile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern What MIA Does Section */
.what-mia-does {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.what-mia-does::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--bg-primary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-strong);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 1rem;
}

.feature-examples {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-lg);
}

.feature-examples li {
    background: var(--bg-tertiary);
    padding: var(--spacing-md);
    margin: var(--spacing-sm) 0;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 3px solid var(--primary-gradient);
    transition: all var(--transition-fast);
}

.feature-examples li:hover {
    background: var(--bg-secondary);
    transform: translateX(4px);
}

.safety-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.safety-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warning-gradient);
    opacity: 0.1;
}

.safety-highlight p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Key Features Section */
.key-features {
    padding: 80px 0;
    background: white;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: #e2e8f0;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    color: white;
    font-size: 1rem;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.feature-text p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #f8fafc;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.audience-card p {
    color: #6b7280;
}

.scale-note {
    text-align: center;
    background: #dbeafe;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.scale-note p {
    font-size: 1.1rem;
    color: #1e40af;
    margin: 0;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: #e2e8f0;
    transform: translateY(-3px);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-item h3 {
    font-weight: 600;
    color: #1f2937;
}

.transformation-note {
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.transformation-note p {
    font-size: 1.2rem;
    margin: 0;
}

/* Industries Section */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

.industries-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.industries-note {
    text-align: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.industries-note p:first-child {
    font-size: 1.1rem;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
}

.industries-note p:last-child {
    font-size: 1rem;
    color: #1e40af;
    margin: 0;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.company-logos {
    text-align: center;
    margin-top: 3rem;
}

.company-logos h3 {
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Enhanced Results Section */
.results {
    padding: 80px 0;
    background: white;
}

.result-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Modern Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.08) 0%, transparent 50%);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.pricing-single .pricing-card {
    max-width: 500px;
    width: 100%;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-strong);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pricing-card:hover::before {
    opacity: 0.02;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                var(--primary-gradient) border-box;
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--text-inverse);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.period {
    color: #6b7280;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
    margin: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.pricing-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-guarantee {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: none;
    opacity: 1;
}

.faq-item.active .faq-question {
    background: #e2e8f0;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-taglines {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-taglines p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
    text-align: left;
}

.disclaimer strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Advanced Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: 40px 0 40px;
        min-height: auto;
        text-align: center;
        display: block;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin-top: 20px;
    }
    
    .hero-content {
        order: 1;
        padding: 0;
        width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    .phone-mockup-mobile {
        display: block;
    }
    
    .phone-mockup-mobile .phone-mockup {
        width: 100%;
        max-width: 320px;
        height: 500px;
    }
    
    .phone-mockup-mobile .chat-message {
        font-size: 10px;
        padding: 8px 12px;
        line-height: 1.3;
    }
    
    .phone-mockup-mobile .chat-interface {
        padding: 12px;
        gap: 8px;
    }
    
    .phone-mockup-mobile .sop-citation {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 700;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
        opacity: 0.9;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 0.75rem;
        border-radius: 0.75rem;
        backdrop-filter: blur(10px);
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: #f59e0b;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-cta {
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        margin: 0;
        display: block;
        border-radius: 0.75rem;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 1.125rem 1.5rem;
        font-size: 1.1rem;
        margin: 0;
        display: block;
        border-radius: 0.75rem;
    }
    
    .hero-cta,
    .pricing-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-secondary.large {
        padding: 1.125rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Content Sections Mobile Optimization */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    .pricing-single {
        margin: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        flex: 1;
        margin-right: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .disclaimer {
        margin-top: 1.5rem;
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .disclaimer p {
        line-height: 1.5;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        justify-content: center;
        padding: 0.5rem 1rem;
    }
    
    .nav-logo h2 {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 500px;
    }
    
    .chat-message {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .faq-question {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .nav-menu a {
        min-height: 44px;
        padding: 12px 24px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .feature-card, .audience-card, .result-item, .testimonial-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    /* Optimize scrolling */
    .hero {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve touch targets */
    .hamburger {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better text rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Optimize images and backgrounds */
    .hero::before {
        background-attachment: scroll;
    }
    
    /* Improve button accessibility */
    .btn-primary, .btn-secondary {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-taglines {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hide cursor on mobile */
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
}

/* Animations removed for static design */
.feature-card, .audience-card, .result-item {
    opacity: 1;
    transform: none;
}

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

/* Chat messages static */
.chat-message {
    opacity: 1;
    transform: none;
}
