/* ============================================
   ZANGA - AI Dating App Website Styles
   Based on Actual Mobile App Design
   ============================================ */

/* CSS Variables - Matching Mobile App Theme */
:root {
    /* Primary - Coral/Salmon Red (from app) */
    --primary: #FF5A5F;
    --primary-light: #FF8A8D;
    --primary-dark: #D64550;
    --primary-glow: rgba(255, 90, 95, 0.4);
    
    /* Match Gradient */
    --gradient-match: linear-gradient(135deg, #FF5A5F 0%, #FF8A5B 100%);
    --gradient-header: linear-gradient(135deg, #D64550 0%, #FF6B6B 100%);
    
    /* Action Colors */
    --like-green: #10B981;
    --dislike-red: #EF4444;
    --superlike-blue: #60A5FA;
    --success: #4CAF50;
    --warning: #FFC107;
    
    /* Dark Theme (from app) */
    --bg-dark: #0F0F14;
    --bg-card: #1A1A24;
    --bg-elevated: #252533;
    --bg-modal: #17171A;
    --border: #2D2D3A;
    --border-light: rgba(45, 45, 58, 0.5);
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Tag/Chip Colors */
    --tag-bg: #252533;
    --tag-border: #374151;
    
    /* Shadows */
    --shadow-glow: 0 0 60px rgba(255, 90, 95, 0.25);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Animated Background - More subtle, app-like */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255, 90, 95, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 138, 91, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    z-index: -2;
}

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION - Clean, App-like
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 15, 20, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(255, 90, 95, 0.5));
}

.logo-text {
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.3);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 95, 0.1);
    border: 1px solid rgba(255, 90, 95, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-title span {
    display: block;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 90, 95, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 90, 95, 0.5);
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

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

/* ============================================
   PHONE MOCKUP - App-like design
   ============================================ */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.phone-mockup {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone-frame {
    width: 300px;
    height: 620px;
    background: var(--bg-card);
    border-radius: 44px;
    padding: 12px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 90, 95, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: var(--bg-dark);
    border-radius: 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 32px;
    overflow: hidden;
    padding: 48px 14px 14px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
}

.app-logo {
    font-weight: 800;
    font-size: 1rem;
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--like-green);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}

.profile-image {
    height: 260px;
    background: var(--gradient-match);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-placeholder {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.ai-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info {
    padding: 16px;
}

.profile-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.traits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.traits span {
    background: var(--tag-bg);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 16px;
}

.action-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.dislike {
    background: rgba(239, 68, 68, 0.15);
    color: var(--dislike-red);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.action-btn.superlike {
    background: rgba(96, 165, 250, 0.15);
    color: var(--superlike-blue);
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.action-btn.like {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 90, 95, 0.4);
}

/* ============================================
   NEW PHONE MOCKUP - Matching Mobile App
   ============================================ */
.app-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.header-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
}

.header-btn.filter-btn {
    background: rgba(139, 92, 246, 0.15);
}

.header-btn.ai-btn {
    background: rgba(139, 92, 246, 0.2);
    font-size: 1rem;
}

.app-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.profile-card-new {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    animation: cardFloat 5s ease-in-out infinite;
    position: relative;
    height: calc(100% - 130px);
    display: flex;
    flex-direction: column;
}

.card-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.tap-photos {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    color: var(--text-primary);
    font-weight: 500;
}

.photo-count {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-primary);
    font-weight: 600;
}

.profile-image-area {
    flex: 1;
    background: linear-gradient(180deg, #1a1a24 0%, #252533 100%);
    position: relative;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.profile-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(26, 26, 36, 0.95));
    pointer-events: none;
}

.profile-info-new {
    padding: 16px 18px 20px;
    background: var(--bg-card);
}

.profile-info-new h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.traits-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.location-tags {
    display: flex;
    gap: 10px;
}

.location-tag,
.distance-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* App Bottom Navigation */
.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 8px 8px;
    background: rgba(26, 26, 36, 0.95);
    border-radius: 20px;
    margin-top: 8px;
    border: 1px solid var(--border-light);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.nav-item.active {
    color: var(--primary);
}

.nav-item:not(.active) {
    color: var(--text-muted);
}

.nav-icon {
    font-size: 1rem;
}

.nav-label {
    font-size: 0.55rem;
    font-weight: 600;
}

.action-btn:hover {
    transform: scale(1.12);
}

.glow-effect {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 90, 95, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

/* ============================================
   SECTIONS - Common Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 95, 0.1);
    border: 1px solid rgba(255, 90, 95, 0.25);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 90, 95, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(255, 90, 95, 0.08) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 90, 95, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-visual {
    margin-top: 24px;
}

.ai-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.ai-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--width);
    background: var(--gradient-match);
    opacity: 0.2;
    border-radius: var(--radius-full);
}

.ai-bar span {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-bar span:last-child {
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 90, 95, 0.02) 50%, transparent 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.step:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 90, 95, 0.25);
    transform: translateX(8px);
}

.step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-match);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    min-width: 100px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.step-visual {
    width: 72px;
    height: 72px;
    background: var(--gradient-match);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 90, 95, 0.3);
}

.step-icon {
    font-size: 2rem;
}

/* ============================================
   AI SECTION
   ============================================ */
.ai-section {
    padding: var(--section-padding) 0;
}

.ai-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.ai-text {
    flex: 1;
}

.ai-features {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ai-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.check-icon {
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--like-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ai-brain {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-center {
    width: 100px;
    height: 100px;
    background: var(--gradient-match);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 0 50px rgba(255, 90, 95, 0.4);
    z-index: 2;
}

.brain-orbit {
    position: absolute;
    border: 2px dashed rgba(255, 90, 95, 0.2);
    border-radius: 50%;
    animation: orbit 12s linear infinite;
}

.orbit-1 {
    width: 180px;
    height: 180px;
    animation-duration: 10s;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    animation-duration: 14s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 320px;
    height: 320px;
    animation-duration: 18s;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-item {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 90, 95, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: orbitItemRotate 12s linear infinite reverse;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.orbit-1 .orbit-item { animation-duration: 10s; }
.orbit-2 .orbit-item { animation-duration: 14s; animation-direction: normal; }
.orbit-3 .orbit-item { animation-duration: 18s; }

@keyframes orbitItemRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.brain-pulse {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--gradient-match);
    border-radius: 50%;
    opacity: 0.25;
    animation: brainPulse 2.5s ease-out infinite;
}

@keyframes brainPulse {
    0% { transform: scale(1); opacity: 0.25; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.02) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(255, 90, 95, 0.3);
    transform: translateY(-6px);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-content {
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 90, 95, 0.1) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 90, 95, 0.25);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 90, 95, 0.08) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8%, 8%); }
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    position: relative;
    margin-bottom: 36px;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.store-badge {
    height: 48px;
    opacity: 0.9;
    transition: var(--transition-normal);
    border-radius: 8px;
}

.store-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

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

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 20, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-menu-content a:hover {
    color: var(--primary);
}

.mobile-lang-selector {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
    }
    
    .ai-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-features {
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions .language-selector {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-frame {
        width: 260px;
        height: 530px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }
    
    .step-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-content {
        padding: 48px 20px;
    }
    
    .app-stores {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-frame {
        width: 240px;
        height: 490px;
    }
}

/* ============================================
   NEW PAGE STYLES (About, Contact, Safety)
   ============================================ */

/* Page Hero */
.page-hero {
    padding: calc(100px + var(--section-padding)) 24px var(--section-padding);
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 24px 0 20px;
    background: var(--gradient-match);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Content Sections */
.content-section {
    padding: var(--section-padding) 24px;
}

.content-section.alt-bg {
    background: var(--bg-card);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.content-section.alt-bg .about-card {
    background: var(--bg-elevated);
}

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

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Story Section */
.story-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient-match);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.story-stat {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
}

.story-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.story-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 48px auto 0;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.tech-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.tech-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Careers */
.careers-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.careers-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Contact Main - Single Email Style */
.contact-main {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card-large {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact-icon-large {
    font-size: 4rem;
    margin-bottom: 24px;
}

.contact-card-large h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card-large p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-link-large {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    padding: 16px 32px;
    background: rgba(255, 90, 95, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 90, 95, 0.3);
    margin-bottom: 32px;
}

.contact-link-large:hover {
    color: var(--text-primary);
    background: var(--primary);
    border-color: var(--primary);
}

.contact-topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.topic-tag {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* Legacy Contact Grid (for reference) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 16px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: var(--bg-elevated);
}

.social-icon {
    font-size: 2.5rem;
}

.social-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.social-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Response Info */
.response-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.response-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.response-info p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 48px auto 0;
}

.safety-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition-normal);
}

.safety-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.safety-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.safety-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Tips List */
.tips-list {
    max-width: 900px;
    margin: 48px auto 0;
}

.tip-item {
    display: flex;
    gap: 28px;
    padding: 32px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.tip-item:hover {
    border-color: var(--primary);
}

.tip-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 60px;
}

.tip-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tip-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Report Section */
.report-content {
    max-width: 900px;
    margin: 48px auto 0;
}

.report-content > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.report-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.report-method {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}

.report-method h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.report-method p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.report-method a {
    color: var(--primary);
    text-decoration: none;
}

.report-method a:hover {
    text-decoration: underline;
}

/* Flags Grid */
.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: var(--container-width);
    margin: 48px auto 0;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.flag-icon {
    font-size: 1.5rem;
    min-width: 32px;
}

.flag-item span:last-child {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 48px auto 0;
}

.resource-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.resource-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: var(--bg-elevated);
}

.resource-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        order: -1;
    }
    
    .tip-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .tip-number {
        min-width: auto;
    }
    
    .page-hero {
        padding-top: 120px;
    }
    
    .contact-card-large {
        padding: 40px 24px;
    }
    
    .contact-link-large {
        font-size: 1.2rem;
        padding: 14px 24px;
    }
    
    .topic-tag {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

/* Print Styles */
@media print {
    .bg-gradient,
    .bg-particles,
    .navbar,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
