/* Landing Page - Clean & Modern Design */

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.02);
    --primary-blue: #00d4ff;
    --primary-green: #00ff88;
    --accent-purple: #b794f6;
    --accent-pink: #ff6b9d;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    --border-glow: rgba(0, 212, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    position: relative;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(183, 148, 246, 0.04) 0%, transparent 60%);
    animation: backgroundPulse 20s ease-in-out infinite;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(183, 148, 246, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -15s;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

/* Mockup Section Mobile & Desktop */
.mockup-section-mobile {
    padding: 60px 20px;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    min-height: auto;
}

/* Mockup Explanation */
.mockup-explanation {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.explanation-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.explanation-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.explanation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.explanation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.explanation-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: block;
}

.explanation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.explanation-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.explanation-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.explanation-hint {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-style: italic;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.explanation-card:hover .explanation-hint {
    opacity: 1;
}

.hero-mockup-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Slider Container */
.mockup-slider-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: visible;
}

.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
    padding-top: 20px;
}

.mockup-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Slider Controls */
.mockup-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 20px;
    z-index: 10;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00d4ff;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.mockup-wrapper-mobile {
    position: relative;
    max-width: 320px;
    width: 100%;
    pointer-events: none;
    animation: mockupFloatMobile 6s ease-in-out infinite;
    transform-origin: center center;
    margin: 0 auto;
}

@keyframes mockupFloatMobile {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(1deg);
    }
}

.mockup-wrapper-mobile * {
    pointer-events: auto;
}

.mockup-phone-mobile {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
    pointer-events: none;
    max-width: 320px;
}

.mockup-screen-mobile {
    position: absolute;
    top: 4.5%;
    left: 5.8%;
    width: 88.5%;
    height: 91%;
    border-radius: 25px;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #0a0a0f 0%, #0a1a2e 100%);
    z-index: 1;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.mockup-terminal-mobile {
    width: 100%;
    min-height: 100%;
    background: transparent;
    border-radius: 25px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    pointer-events: auto;
}

.mockup-capsule-container-mobile {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 30%, #2d1b4e 60%, #1a0f2e 100%);
    padding: 12px 10px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    position: relative;
}

.mockup-capsule-container-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mockup-capsule-container-mobile > * {
    position: relative;
    z-index: 1;
}

/* Desktop styles for mockup */
@media (min-width: 768px) {
    .mockup-section-mobile {
        padding: 80px 40px;
        min-height: auto;
    }
    
    .mockup-explanation {
        margin-bottom: 80px;
    }
    
    .explanation-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .explanation-cards {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .explanation-card {
        padding: 40px 32px;
    }
    
    .explanation-icon {
        font-size: 4rem;
    }
    
    .explanation-card h3 {
        font-size: 1.75rem;
    }
    
    .explanation-card p {
        font-size: 1.1rem;
    }
    
    .hero-mockup-mobile {
        max-width: 500px;
    }
    
    .mockup-wrapper-mobile {
        max-width: 400px;
    }
    
    .mockup-phone-mobile {
        max-width: 400px;
    }
}

/* Capsule Photos */
.capsule-photos-mobile {
    width: 100%;
    height: 100px;
    position: relative;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.capsule-photo-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.capsule-photo-mobile.active {
    opacity: 1;
}

.photo-indicators-mobile {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.photo-indicator-mobile {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.photo-indicator-mobile.active {
    background: var(--primary-blue);
    width: 20px;
    border-radius: 3px;
}

/* Capsule Header */
.capsule-header-mobile {
    text-align: center;
    margin-bottom: 12px;
    padding: 14px 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 255, 136, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.15),
        0 0 30px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.capsule-header-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.capsule-icon-mobile {
    font-size: 32px;
    margin-bottom: 6px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.capsule-to-mobile {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.capsule-title-mobile {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    letter-spacing: 0.5px;
}

.capsule-date-mobile,
.capsule-open-date-mobile {
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Capsule Timer */
.capsule-timer-mobile {
    margin-bottom: 12px;
    padding: 14px 10px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.15),
        0 0 30px rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.timer-label-mobile {
    font-size: 9px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 6px;
}

.timer-values-mobile {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.timer-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number-mobile {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 255, 136, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    animation: pulseNumber 2s ease-in-out infinite;
}

@keyframes pulseNumber {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.timer-unit-mobile {
    font-size: 7px;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-unit-mobile {
    font-size: 8px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Capsule Audio */
.capsule-audio-mobile {
    margin-bottom: 10px;
    padding: 10px 8px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(5px);
}

.audio-player-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audio-play-btn-mobile {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.audio-play-btn-mobile:active {
    transform: scale(0.95);
}

.audio-info-mobile {
    flex: 1;
}

.audio-title-mobile {
    font-size: 10px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.audio-duration-mobile {
    font-size: 8px;
    color: var(--text-muted);
}

/* Capsule Content */
.capsule-content-mobile {
    flex: 1;
    padding: 14px 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(0, 212, 255, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.capsule-greeting-mobile {
    font-size: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    letter-spacing: 0.5px;
}

.capsule-text-mobile {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 10px;
    min-height: 80px;
    text-align: justify;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.capsule-text-typing-mobile {
    display: inline;
}

.capsule-text-cursor-mobile {
    display: inline-block;
    width: 3px;
    height: 12px;
    background: #00d4ff;
    margin-left: 3px;
    animation: blinkCursor 0.8s infinite;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.8);
    vertical-align: middle;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.capsule-signature-mobile {
    margin-top: 8px;
    text-align: right;
}

.capsule-love-mobile {
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.capsule-name-mobile {
    font-size: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    letter-spacing: 1px;
}

.capsule-heart-mobile {
    font-size: 18px;
    margin-top: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.8));
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Capsule Status */
.capsule-status-mobile {
    padding: 6px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.status-item-mobile {
    font-size: 9px;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: slideInLeft 0.5s ease-out;
}

.status-item-mobile:last-child {
    margin-bottom: 0;
}

.status-check-mobile {
    color: var(--primary-green);
    font-weight: 700;
}

.status-blue-mobile {
    color: var(--primary-blue);
    font-weight: 600;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero-mobile {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 100px;
    position: relative;
    text-align: center;
}

.hero-content-mobile {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    animation: iconEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-icon-pulse {
    font-size: 5.5rem;
    animation: iconFloat 6s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
    position: relative;
    z-index: 2;
    cursor: default;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out 1s infinite;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out 2s infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 255, 136, 0.4));
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hero-title-mobile {
    font-size: clamp(2.75rem, 9vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    animation: titleLineIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes titleLineIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    animation: underlineExpand 1s ease-out 1s forwards;
    transform-origin: left;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle-mobile {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 28px;
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.3),
        0 0 0 0 rgba(0, 212, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

.cta-primary::before,
.cta-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    width: 500px;
    height: 500px;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 212, 255, 0.5),
        0 0 0 8px rgba(0, 212, 255, 0.1);
}

.cta-primary:active,
.cta-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-primary svg,
.cta-secondary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg,
.cta-secondary:hover svg {
    transform: translateX(6px);
}

.pulse-button {
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0, 212, 255, 0.3),
            0 0 0 0 rgba(0, 212, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(0, 212, 255, 0.5),
            0 0 0 12px rgba(0, 212, 255, 0.15);
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 1s ease-out 1.3s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInOut 4s ease-in-out infinite;
    cursor: pointer;
}

.scroll-arrow-animated {
    width: 2px;
    height: 32px;
    background: var(--gradient-primary);
    margin: 12px auto 0;
    position: relative;
    animation: scrollDown 2.5s ease-in-out infinite;
    border-radius: 2px;
}

.scroll-arrow-animated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    transform: rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(12px);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Sections */
section {
    padding: 80px 24px;
    position: relative;
}

.section-title-mobile {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle-mobile {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features-mobile {
    background: var(--bg-darker);
    padding: 100px 24px;
}

.features-list-mobile {
    margin-bottom: 48px;
}

.feature-item-mobile {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.feature-item-mobile.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item-mobile:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(12px) translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.feature-icon-mobile {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    animation: iconWiggle 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-item-mobile:hover .feature-icon-mobile {
    transform: scale(1.1) rotate(5deg);
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.feature-content-mobile h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.feature-content-mobile p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    max-width: 300px;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

/* Testimonials */
.testimonials-mobile {
    background: var(--bg-dark);
    padding: 100px 24px;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 32px;
    min-height: 320px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    }
}

.testimonial-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.testimonial-card.active .testimonial-content {
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Use Cases */
.usecases-mobile {
    background: var(--bg-darker);
    padding: 100px 24px;
}

.usecases-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.usecase-card-mobile {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

.usecase-card-mobile.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.usecase-card-mobile:active {
    transform: scale(0.96);
}

.usecase-card-mobile:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 212, 255, 0.2);
}

.usecase-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    animation: emojiFloat 4s ease-in-out infinite;
    display: inline-block;
}

.usecase-card-mobile:nth-child(2) .usecase-emoji {
    animation-delay: -1s;
}

.usecase-card-mobile:nth-child(3) .usecase-emoji {
    animation-delay: -2s;
}

.usecase-card-mobile:nth-child(4) .usecase-emoji {
    animation-delay: -3s;
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.usecase-card-mobile h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.usecase-card-mobile p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust */
.trust-mobile {
    background: var(--bg-dark);
    padding: 100px 24px;
}

.trust-card-mobile {
    background: var(--bg-card);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.15);
    transition: all 0.5s ease;
    max-width: 600px;
    margin: 0 auto;
}

.trust-card-mobile:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.25);
    transform: translateY(-8px);
}

.trust-icon {
    font-size: 5rem;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    animation: trustIconPulse 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes trustIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
    }
}

.trust-title-mobile {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text-mobile {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    display: inline-block;
    padding: 14px 20px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(4px);
}

/* CTA Final */
.cta-final-mobile {
    background: var(--bg-darker);
    padding: 120px 24px;
    text-align: center;
}

.cta-final-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 6rem;
    margin-bottom: 32px;
    animation: iconFloat 6s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
    display: inline-block;
}

.cta-title-mobile {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.cta-subtitle-mobile {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta-mega {
    padding: 24px 48px;
    font-size: 1.375rem;
    max-width: 100%;
    margin-bottom: 40px;
}

.pulse-button-mega {
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-features-mini {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-features-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cta-features-mini span:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* Notifications Container */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.notification-item {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.notification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-item.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-item.show::before {
    opacity: 1;
}

.notification-item.hide {
    transform: translateX(400px);
    opacity: 0;
}

.notification-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
    }
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.notification-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.notification-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
    
    .notification-item {
        padding: 14px;
    }
    
    .notification-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-item {
        padding: 12px;
        gap: 10px;
    }
    
    .notification-icon {
        font-size: 1.25rem;
    }
    
    .notification-text {
        font-size: 0.75rem;
    }
    
    .notification-time {
        font-size: 0.6875rem;
    }
}

/* Footer */
.footer-mobile {
    padding: 60px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-darker);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section-mobile {
    padding: 80px 20px;
    background: var(--bg-darker);
}

.faq-container-mobile {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-mobile {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item-mobile:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.faq-question {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Animations */
.fade-in-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-text.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-text.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-text.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-text.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-text.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.bounce-in:nth-child(1) { transition-delay: 0.1s; }
.bounce-in:nth-child(2) { transition-delay: 0.2s; }
.bounce-in:nth-child(3) { transition-delay: 0.3s; }
.bounce-in:nth-child(4) { transition-delay: 0.4s; }

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intersection Observer Classes */
.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Prevent horizontal scroll */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Smooth scrolling for iOS */
@supports (-webkit-touch-callout: none) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mobile {
        padding: 40px 20px 80px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .features-mobile,
    .testimonials-mobile,
    .usecases-mobile,
    .trust-mobile,
    .cta-final-mobile {
        padding: 60px 20px;
    }
    
    .usecases-grid-mobile {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}

/* Email Terminal Styles */
.mockup-email-container-mobile {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 30%, #2d1b4e 60%, #1a0f2e 100%);
    padding: 12px 10px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Courier New', 'Monaco', monospace;
    color: #00d4ff;
    position: relative;
}

.email-terminal-header {
    padding: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-size: 9px;
}

.terminal-prompt {
    color: #00ff88;
    margin-bottom: 4px;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.terminal-command {
    color: #00d4ff;
    animation: blinkCursor 1s infinite;
}

.email-content-mobile {
    flex: 1;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.email-header-mobile {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 8px;
}

.email-from, .email-to, .email-date, .email-subject {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.email-from span, .email-to span, .email-date span, .email-subject span {
    color: #00d4ff;
    font-weight: 600;
}

.email-body-mobile {
    margin-top: 12px;
}

.email-greeting {
    font-size: 11px;
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.email-text {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: justify;
}

.email-text-cursor {
    display: inline-block;
    width: 3px;
    height: 12px;
    background: #00d4ff;
    margin-left: 3px;
    animation: blinkCursor 0.8s infinite;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.8);
    vertical-align: middle;
}

.email-status-mobile {
    margin-top: 12px;
    padding: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 9px;
}

.status-sending {
    color: #00d4ff;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.status-sent {
    color: #00ff88;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 480px) {
    .hero-icon-pulse {
        font-size: 4.5rem;
    }
    
    .pulse-ring {
        width: 140px;
        height: 140px;
    }
    
    .feature-item-mobile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .trust-card-mobile {
        padding: 32px 24px;
    }
    
    .mockup-slider-container {
        height: 450px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
