/* =============================================
   HOOKY - Professional Landing Page CSS
   Modern, Clean, Conversion-Focused Design
   ============================================= */

/* --- CSS Variables --- */
:root {
    /* Primary Colors */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    
    /* Secondary Colors */
    --secondary: #06b6d4;
    --secondary-dark: #0891b2;
    
    /* Accent Colors */
    --accent: #f97316;
    --accent-light: #fb923c;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Neutral Colors */
    --dark-bg: #0a0f1a;
    --dark-bg-secondary: #0f172a;
    --card-bg: #1e293b;
    --card-bg-hover: #334155;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, #0d1620 0%, #111a2a 50%, #0a0f1a 100%);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(59, 130, 246, 0.4);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.text-danger {
    color: var(--danger);
}

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

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--text-white);
}

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

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

.nav-login {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-login:hover {
    color: var(--text-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.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(5px, -5px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-white {
    background: white;
    color: var(--dark-bg);
}

.btn-white:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

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

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

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

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual / Mockup */
.hero-visual {
    margin-top: 80px;
    width: 100%;
    max-width: 1100px;
    perspective: 1000px;
}

/* Devices Showcase Container */
.devices-showcase {
    position: relative;
    width: 100%;
}

.mockup-wrapper {
    position: relative;
}

.mockup-desktop {
    position: relative;
    z-index: 1;
}

/* iPad Mockup Styles - Landscape Mode */
.mockup-ipad {
    position: absolute;
    right: -100px;
    bottom: -60px;
    width: 740px;
    z-index: 10;
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.mockup-ipad:hover {
    transform: rotate(0deg) scale(1.02);
}

.ipad-glow {
    position: absolute;
    inset: -30px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
    filter: blur(50px);
    opacity: 0.6;
    border-radius: 40px;
    z-index: -1;
}

.ipad-frame {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 28px;
    padding: 16px;
    padding-right: 32px; /* Extra space for home button */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ipad-bezel {
    position: relative;
    flex: 1;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.ipad-camera {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 1px solid #333;
    z-index: 10;
}

.ipad-screen {
    width: 100%;
    background: linear-gradient(135deg, #0d1620 0%, #1e293b 100%);
    overflow: hidden;
}

.ipad-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home button on the right side for landscape */
.ipad-home-button {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Volume buttons on top */
.ipad-button {
    position: absolute;
    top: -3px;
    left: 70px;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 2px 2px 0 0;
}

.ipad-button::after {
    content: '';
    position: absolute;
    left: 45px;
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 2px 2px 0 0;
}

/* Responsive iPad positioning */
@media (max-width: 1200px) {
    .mockup-ipad {
        width: 400px;
        right: -40px;
        bottom: -60px;
    }
}

@media (max-width: 1024px) {
    .mockup-ipad {
        width: 340px;
        right: -20px;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .devices-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .mockup-ipad {
        position: relative;
        right: auto;
        bottom: auto;
        width: 360px;
        transform: rotate(0deg);
    }
    
    .mockup-ipad:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .mockup-ipad {
        width: 300px;
    }
}

.mockup-glow {
    position: absolute;
    inset: -40px;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.5;
    border-radius: var(--radius-xl);
}

.mockup-frame {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-screen {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0d1620 0%, #1e293b 100%);
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.screenshot-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

.screenshot-placeholder p {
    font-size: 0.9rem;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
    padding: 60px 24px;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.6;
    transition: var(--transition-normal);
}

.trust-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* =============================================
   PROBLEM / SOLUTION SECTION
   ============================================= */
.problem-section {
    padding: var(--section-padding) 24px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.section-label-primary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
}

.problem-content h2,
.solution-content h2 {
    margin-bottom: 32px;
}

.problem-list,
.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.problem-list i {
    color: var(--danger);
    font-size: 1.2rem;
    margin-top: 2px;
}

.solution-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}

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

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card-large .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 0;
}

.feature-icon-cyan { background: rgba(6, 182, 212, 0.1); color: var(--secondary); }
.feature-icon-orange { background: rgba(249, 115, 22, 0.1); color: var(--accent); }
.feature-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feature-icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.feature-icon-pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.feature-icon-yellow { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--success);
}

.feature-visual {
    width: 200px;
    height: 150px;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.visual-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.visual-placeholder-large {
    width: 100%;
    height: 242px;
}

.visual-placeholder-large img {
    border-radius: var(--radius-md);
}

.visual-placeholder-large i {
    font-size: 4rem;
}

.features-cta {
    text-align: center;
    margin-top: 60px;
}

/* =============================================
   USE CASES SECTION
   ============================================= */
.usecases-section {
    padding: var(--section-padding) 24px;
}

.usecases-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.usecase-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.usecase-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.usecase-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.usecases-content {
    position: relative;
}

.usecase-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--card-bg);
    padding: 60px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.usecase-panel.active {
    display: grid;
}

.usecase-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.usecase-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.usecase-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.usecase-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-light);
}

.usecase-benefits i {
    color: var(--success);
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.howitworks-section {
    padding: var(--section-padding) 24px;
    background: rgba(15, 23, 42, 0.5);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 32px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-connector {
    width: 80px;
    margin-top: 100px;
    color: rgba(255, 255, 255, 0.2);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: var(--section-padding) 24px;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-white);
}

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

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-preview-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.toggle-label.active {
    color: var(--text-white);
    font-weight: 600;
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    padding: 4px;
    transition: var(--transition-normal);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.toggle-switch.active .toggle-slider {
    left: 32px;
}

.toggle-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-left: 8px;
}

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

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-glow-strong);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.plan-features i {
    font-size: 0.9rem;
}

.plan-features .fa-check {
    color: var(--success);
}

.plan-features .fa-times {
    color: var(--text-dark);
}

.plan-features li.disabled {
    color: var(--text-dark);
}

.pricing-footer {
    text-align: center;
    margin-top: 48px;
}

.pricing-footer p {
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 500;
}

.link-arrow:hover {
    color: var(--primary);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

.link-arrow i {
    transition: var(--transition-normal);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: var(--section-padding) 24px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.faq-question i {
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 1rem;
    line-height: 1.8;
}

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

.cta-content {
    position: relative;
    background: var(--gradient-primary);
    padding: 80px 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #020617;
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-links-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-group a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links-group a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

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

.footer-legal a:hover {
    color: var(--text-white);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-location i {
    color: var(--primary);
}

/* =============================================
   PAGE SPECIFIC STYLES
   ============================================= */

/* Pricing Page */
.pricing-page-hero {
    padding: 160px 24px 80px;
    text-align: center;
}

.pricing-comparison {
    padding: var(--section-padding) 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--text-white);
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table .highlight-col {
    background: rgba(59, 130, 246, 0.05);
}

/* Features Page */
.features-page-hero {
    padding: 160px 24px 80px;
    text-align: center;
}

.feature-detail {
    padding: var(--section-padding) 24px;
}

.feature-detail:nth-child(even) {
    background: rgba(15, 23, 42, 0.5);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-detail:nth-child(even) .feature-detail-grid {
    direction: rtl;
}

.feature-detail:nth-child(even) .feature-detail-content {
    direction: ltr;
}

/* About Page */
.about-hero {
    padding: 160px 24px 80px;
    text-align: center;
}

.about-mission {
    padding: var(--section-padding) 24px;
}

.team-section {
    padding: var(--section-padding) 24px;
    background: rgba(15, 23, 42, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-role {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card-large {
        grid-column: span 2;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-4px);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .usecase-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
    
    .feature-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-detail:nth-child(even) .feature-detail-grid {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 60px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .trust-logos {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card-large .feature-icon {
        margin: 0 auto 20px;
    }
    
    .feature-visual {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
        width: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .cta-content {
        padding: 60px 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .usecases-tabs {
        flex-direction: column;
    }
    
    .usecase-tab {
        width: 100%;
        justify-content: center;
    }
    
    .usecase-panel {
        padding: 30px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

/* =============================================
   MOBILE NAVIGATION MENU
   ============================================= */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-links.is-open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-links.is-open + .nav-actions {
        display: none;
    }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   ABOUT PAGE - EXTENDED STYLES
   ============================================= */

/* Story Section */
.about-story {
    padding: var(--section-padding) 24px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-stat {
    text-align: center;
}

.story-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.story-visual {
    position: relative;
}

/* Values Section */
.about-values {
    padding: var(--section-padding) 24px;
    background: rgba(15, 23, 42, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.value-icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary);
}

.value-icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.value-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

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

/* Team Section Extended */
.about-team {
    padding: var(--section-padding) 24px;
}

.team-photo {
    margin-bottom: 24px;
}

.visual-placeholder-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Timeline Section */
.about-timeline {
    padding: var(--section-padding) 24px;
    background: rgba(15, 23, 42, 0.5);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.timeline-content {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-date {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
}

/* Press Section */
.about-press {
    padding: var(--section-padding) 24px;
}

.press-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.press-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.about-contact {
    padding: var(--section-padding) 24px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.contact-options {
    display: flex;
    gap: 24px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-option:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
}

.contact-option i {
    font-size: 1.25rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =============================================
   FEATURES PAGE - EXTENDED STYLES
   ============================================= */

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Feature Icon Colors */
.feature-icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary);
}

.feature-icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
}

.feature-icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.feature-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.feature-icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.feature-icon-yellow {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

/* =============================================
   RESPONSIVE - ABOUT & FEATURES PAGES
   ============================================= */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .contact-content p {
        max-width: none;
    }
    
    .contact-options {
        justify-content: center;
    }
    
    .contact-actions {
        width: 100%;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .story-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -36px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .press-logos {
        gap: 20px;
    }
    
    .press-logo {
        width: 120px;
        height: 60px;
    }
    
    .contact-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 28px;
    }
    
    .contact-card {
        padding: 28px;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
}

/* =============================================
   LIGHTBOX Component
   ============================================= */

/* Lightbox trigger (images cliquables) */
.lightbox-trigger {
    cursor: pointer;
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.lightbox-trigger:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Indicateur de zoom au survol */
.zoom-indicator {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    pointer-events: none;
    z-index: 10;
}

.zoom-indicator i {
    font-size: 1rem;
    color: var(--primary-light);
}

.visual-placeholder:hover .zoom-indicator,
.mockup-screen:hover .zoom-indicator,
.usecase-visual:hover .zoom-indicator,
.story-visual:hover .zoom-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-normal), transform var(--transition-normal);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
    }
    
    .lightbox-close {
        top: -45px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .lightbox-close:hover {
        transform: translateX(50%) rotate(90deg);
    }
    
    .zoom-indicator {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .zoom-indicator span {
        display: none;
    }
}

