/* Custom Properties */
:root {
    /* Colors - Modern Unified Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --secondary-light: #c4b5fd;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --success: #10b981;
    --info: #06b6d4;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients - Cohesive & Professional */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-success: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 60%, #ec4899 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Reset & Base */
* {
    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;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.z-3 {
    z-index: 3 !important;
}

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

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Custom Bootstrap Overrides */
.btn {
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0.025em;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-light {
    border: 2px solid var(--primary);
    color: var(--primary);
    backdrop-filter: blur(10px);
    background: rgba(99, 102, 241, 0.1);
}

.btn-outline-light:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark);
}

.btn-light:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1.5px solid rgba(99,102,241,0.08);
    transition: all 0.3s ease;
    box-shadow: none;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.16);
    border-bottom: 1.5px solid rgba(99,102,241,0.18);
}

.navbar .navbar-brand, .navbar .nav-link, .navbar .btn-gradient, .navbar .btn {
    color: #23213a !important;
}

.navbar .navbar-brand, .navbar .nav-link {
    text-shadow: 0 1px 8px rgba(255,255,255,0.12);
}

.navbar .btn-gradient {
    color: #fff !important;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--gray-800) !important;
    transition: var(--transition);
}

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

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.1);
}

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gray-50);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.floating-element:nth-child(odd) {
    animation-duration: 8s;
}

.floating-element:nth-child(1) { top: 10%; left: 10%; }
.floating-element:nth-child(2) { top: 20%; right: 20%; }
.floating-element:nth-child(3) { bottom: 30%; left: 15%; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; }
.floating-element:nth-child(5) { top: 50%; left: 50%; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.typing-text {
    position: relative;
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    animation: typing 3s steps(20) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
    position: relative;
}

.phone-mockup:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.main-phone {
    z-index: 2;
}

.secondary-phone {
    position: absolute;
    top: 50px;
    right: -100px;
    width: 250px;
    height: 500px;
    transform: rotate(15deg);
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.status-bar {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-icons i {
    margin-left: 0.3rem;
    opacity: 0.8;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.notification-badge {
    position: relative;
    color: white;
    font-size: 1.2rem;
}

.notification-badge .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.action-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.activity-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-success);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-warm);
}

.message {
    max-width: 80%;
    margin-bottom: 0.5rem;
}

.message.received {
    align-self: flex-start;
}

.message.received .message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem 1rem 1rem 0.3rem;
    color: white;
    font-size: 0.85rem;
}

.message.sent {
    align-self: flex-end;
}

.message.sent .message-content {
    background: var(--gradient-primary);
    padding: 0.5rem 1rem;
    border-radius: 1rem 1rem 0.3rem 1rem;
    color: white;
    font-size: 0.85rem;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    color: white;
}

.floating-feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatCard 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-feature-card:nth-child(1) {
    top: 20%;
    left: -20%;
}

.floating-feature-card:nth-child(2) {
    top: 60%;
    right: -25%;
}

.floating-feature-card:nth-child(3) {
    bottom: 25%;
    left: -15%;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    color: var(--gray-800);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-2xl);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card:hover .feature-icon::before {
    transform: scale(1);
}

.feature-stats {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius-full);
    display: inline-block;
}

.feature-card h4 {
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
}

/* How It Works */
.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    color: var(--gray-800);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
}

.step-item.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.step-item::after {
    content: '';
    position: absolute;
    left: 45px;
    bottom: -3rem;
    width: 2px;
    height: 3rem;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.feature-highlight {
    border-left: 4px solid var(--primary);
}

.step-item h4 {
    color: var(--gray-900);
}

.step-item p {
    color: var(--gray-600);
}

.visual-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.match-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
}

.progress-visual {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.progress-step {
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
}

.progress-step.completed,
.progress-step.active {
    opacity: 1;
}

.progress-step i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.progress-step span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    color: var(--gray-800);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-cool);
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

/* Download Section */
.download-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: downloadBackground 15s ease-in-out infinite;
}

@keyframes downloadBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.download-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
}

.phone-primary {
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-secondary {
    position: absolute;
    top: 50px;
    right: -80px;
    transform: rotate(10deg);
    z-index: 1;
    animation: phoneFloat 6s ease-in-out infinite reverse;
}

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

.download-preview,
.match-preview {
    height: 100%;
    color: white;
}

.online-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

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

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.match-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.match-photo {
    height: 200px;
    background: var(--gradient-warm);
}

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

.btn-pass {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.btn-super {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.btn-like {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-800);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-item h5 {
    color: var(--gray-900);
}

.contact-item p {
    color: var(--gray-600);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
}

.form-control,
.form-select {
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Counter Animation */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .secondary-phone {
        right: -60px;
    }
    
    .floating-feature-card:nth-child(1) {
        left: -10%;
    }
    
    .floating-feature-card:nth-child(2) {
        right: -15%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .secondary-phone {
        display: none;
    }
    
    .floating-feature-card {
        position: relative;
        margin: 1rem 0;
        display: inline-flex;
    }
    
    .floating-feature-card:nth-child(1),
    .floating-feature-card:nth-child(2),
    .floating-feature-card:nth-child(3) {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .steps-container {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .step-item::after {
        display: none;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .py-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 15px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
        padding: 12px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .feature-card,
    .testimonial-card,
    .contact-item,
    .contact-form,
    .visual-card,
    .step-item {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .text-muted {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .form-control,
    .form-select {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .form-control:focus,
    .form-select:focus {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .floating-elements,
    .hero-background,
    .download-background,
    .scroll-top-btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-outline-light {
        border-width: 3px;
    }
    
    .feature-card,
    .testimonial-card {
        border-width: 2px;
    }
} 

/* Light background cards text colors */
.feature-card h4,
.step-item h4,
.visual-card h6,
.testimonial-card .fw-semibold {
    color: var(--gray-900) !important;
}

.feature-card p,
.step-item p,
.visual-card .text-muted,
.contact-item .text-muted {
    color: var(--gray-600) !important;
}

/* Phone mockup içindeki beyaz metinler için */
.app-header .fw-semibold,
.app-header .text-muted,
.activity-item .fw-medium,
.activity-item .text-muted,
.chat-header .fw-semibold {
    color: white !important;
}

/* Hero section text fixes */
.hero-section .lead {
    color: var(--gray-800) !important;
}

/* Stats section text colors */
.stat-item .text-muted {
    color: var(--gray-800) !important;
}

/* Badge text fixes */
.badge.bg-primary.bg-opacity-20 {
    color: white !important;
    background: var(--primary) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.badge.bg-success.bg-opacity-20 {
    color: white !important;
    background: var(--success) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.badge.bg-warning.bg-opacity-20 {
    color: white !important;
    background: var(--warning) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.badge.bg-info.bg-opacity-20 {
    color: white !important;
    background: var(--info) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Features section descriptions */
#features .lead {
    color: var(--gray-800) !important;
}

/* How it works section descriptions */
#how-it-works .lead {
    color: var(--gray-800) !important;
}

/* Step item list items */
.step-item .list-unstyled li small {
    color: var(--gray-700) !important;
}

/* Visual card names */
.visual-card .fw-semibold {
    color: var(--gray-900) !important;
}

/* Progress visual styling */
.progress-visual {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

/* Checkbox label fix */
.form-check-label {
    color: var(--gray-800) !important;
} 

#app-showcase {
  background: linear-gradient(135deg, #232946 0%, #6366f1 100%);
}
#app-showcase .carousel-inner {
  max-height: 600px;
}
#app-showcase .showcase-img {
  object-fit: contain;
  max-height: 400px;
  background: #181823;
}
#app-showcase .carousel-caption {
  background: rgba(0,0,0,0.55);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  #app-showcase .carousel-inner {
    max-height: 350px;
  }
  #app-showcase .showcase-img {
    max-height: 200px;
  }
  #app-showcase .carousel-caption {
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
} 

#app-showcase .row.mb-6 {
  margin-bottom: 4rem !important;
}
#app-showcase .mockup-phone {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  #app-showcase .row.mb-6,
  #app-showcase .row {
    flex-direction: column !important;
  }
  #app-showcase .text-lg-end,
  #app-showcase .text-lg-start {
    text-align: center !important;
  }
  #app-showcase .order-lg-first {
    order: initial !important;
  }
} 

.mockup-phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(135deg, #232946 0%, #6366f1 100%);
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 2px 8px rgba(99,102,241,0.10);
  padding: 18px 12px 28px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 4px solid #fff;
}
.mockup-phone::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  opacity: 0.7;
}
.mockup-phone::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #e5e7eb;
  border-radius: 50%;
  opacity: 0.5;
}
.mockup-screen {
  width: 100%;
  height: 100%;
  background: #181823;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #181823;
  border-radius: 28px;
}
@media (max-width: 768px) {
  .mockup-phone {
    width: 220px;
    height: 420px;
    padding: 10px 6px 18px 6px;
    border-radius: 24px;
  }
  .mockup-screen {
    border-radius: 18px;
  }
  .mockup-screen img {
    border-radius: 14px;
  }
} 

.feature-section {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(99,102,241,0.08), 0 1.5px 8px rgba(0,0,0,0.04);
  margin-bottom: 3rem;
  padding: 3rem 0;
  transition: box-shadow 0.3s;
}
.feature-section.bg-light {
  background: #f8fafc;
}
@media (max-width: 992px) {
  .feature-section {
    border-radius: 1rem;
    padding: 2rem 0;
  }
} 

/* Feature Section Gradient Backgrounds */
.feature-gradient-1 {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.feature-gradient-2 {
  background: linear-gradient(135deg, #f8fafc 0%, #e0c3fc 100%);
}
.feature-gradient-3 {
  background: linear-gradient(135deg, #f5f7fa 0%, #a1c4fd 100%);
}
.feature-gradient-4 {
  background: linear-gradient(135deg, #f8fafc 0%, #fbc2eb 100%);
}
.feature-gradient-5 {
  background: linear-gradient(135deg, #f5f7fa 0%, #f9d423 100%);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Feature Icon */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 4px 24px rgba(99,102,241,0.15);
  margin-bottom: 1rem;
  transition: transform 0.2s;
}
.feature-icon i {
  font-size: 2rem;
}
.feature-icon:hover {
  transform: scale(1.08) rotate(-6deg);
}

/* Mockup Glow */
.mockup-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, rgba(236,72,153,0.10) 60%, transparent 100%);
  filter: blur(32px);
  opacity: 0.85;
  pointer-events: none;
}

/* Açıklama metni */
.feature-desc {
  color: #374151;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(255,255,255,0.12);
}

@media (max-width: 992px) {
  .mockup-glow {
    width: 200px;
    height: 200px;
    filter: blur(18px);
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
} 

/* İletişim formu input ve select kutuları için okunaklı border ve metin renkleri */
#contact .form-control,
#contact .form-select {
  border: 1.5px solid #d1d5db !important;
  background: #fff !important;
  color: #222 !important;
}
#contact .form-control:focus,
#contact .form-select:focus {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.10);
  background: #fff !important;
  color: #222 !important;
}
#contact .form-select option {
  color: #111 !important;
  background: #fff !important;
}
#contact .form-control::placeholder {
  color: #888 !important;
  opacity: 1;
} 

.hero-mockup {
  width: 270px;
  height: 540px;
  background: linear-gradient(135deg, #fff 60%, #e0e7ff 100%);
  border-radius: 36px;
  box-shadow: 0 10px 40px rgba(99,102,241,0.18), 0 2px 8px rgba(99,102,241,0.10);
  padding: 16px 10px 24px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #a5b4fc;
  margin-bottom: 1rem;
  z-index: 1;
  transition: box-shadow 0.3s, border 0.3s;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 6px;
  background: #e0e7ff;
  border-radius: 3px;
  opacity: 0.7;
  z-index: 2;
}
.hero-mockup::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #e0e7ff;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
}
.hero-mockup .mockup-screen {
  width: 100%;
  height: 100%;
  background: #181823;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(99,102,241,0.10);
}
.hero-mockup .mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #181823;
  border-radius: 24px;
}
@media (max-width: 992px) {
  .hero-mockup {
    width: 180px;
    height: 360px;
    padding: 8px 4px 12px 4px;
    border-radius: 18px;
  }
  .hero-mockup .mockup-screen {
    border-radius: 12px;
  }
  .hero-mockup .mockup-screen img {
    border-radius: 8px;
  }
  .hero-visual .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  .hero-visual .row {
    flex-direction: column !important;
  }
} 

.css-mockup-phone {
  width: 270px;
  height: 540px;
  background: linear-gradient(135deg, #fff 60%, #e0e7ff 100%);
  border-radius: 36px;
  box-shadow: 0 10px 40px rgba(99,102,241,0.18), 0 2px 8px rgba(99,102,241,0.10);
  padding: 16px 10px 24px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 3px solid #a5b4fc;
  margin-bottom: 1rem;
  z-index: 1;
  transition: box-shadow 0.3s, border 0.3s;
  overflow: hidden;
}
.css-mockup-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 6px;
  background: #e0e7ff;
  border-radius: 3px;
  opacity: 0.7;
  z-index: 2;
}
.css-mockup-phone::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #e0e7ff;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
}
.css-mockup-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 6px;
}
.css-mockup-statusbar span {
  color: #fff;
}
.css-mockup-icons i {
  margin-left: 0.3rem;
  opacity: 0.8;
  font-size: 1.1rem;
}
.css-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0 6px;
}
.css-mockup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  border: 2px solid #fff;
}
.css-mockup-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.css-mockup-category {
  background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.css-mockup-category:hover {
  background: linear-gradient(90deg, #7c3aed 0%, #f472b6 100%);
  box-shadow: 0 4px 16px rgba(99,102,241,0.18);
}
.css-mockup-category i {
  font-size: 1.2rem;
}
.css-mockup-ilan-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 12px;
  margin-top: 8px;
}
.css-mockup-ev-icon {
  background: #fff;
  color: #6366f1;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.css-mockup-ilan-content {
  background: #232946;
  color: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(99,102,241,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.css-mockup-ilan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  padding: 2px 0;
}
.css-mockup-ilan-row span {
  color: #a5b4fc;
  font-weight: 500;
}
@media (max-width: 992px) {
  .css-mockup-phone {
    width: 180px;
    height: 360px;
    padding: 8px 4px 12px 4px;
    border-radius: 18px;
  }
  .css-mockup-header {
    gap: 6px;
  }
  .css-mockup-avatar {
    width: 28px;
    height: 28px;
  }
  .css-mockup-category {
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .css-mockup-ilan-header {
    font-size: 0.95rem;
    padding: 7px 10px;
    border-radius: 8px;
  }
  .css-mockup-ilan-content {
    font-size: 0.95rem;
    padding: 8px 6px;
    border-radius: 8px;
  }
  .css-mockup-ev-icon {
    width: 22px;
    height: 22px;
    font-size: 1rem;
  }
  .hero-visual .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  .hero-visual .row {
    flex-direction: column !important;
  }
} 

.advanced-mockup {
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
  border: 3px solid #a5b4fc;
  box-shadow: 0 12px 48px rgba(99,102,241,0.18), 0 2px 8px rgba(99,102,241,0.10);
  position: relative;
}
.css-mockup-notification {
  margin-left: auto;
  position: relative;
  color: #6366f1;
  font-size: 1.3rem;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99,102,241,0.10);
}
.notif-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 6px #ef4444;
}
.css-mockup-badge {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 14px;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.10);
  letter-spacing: 0.02em;
}
.css-mockup-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 18px 18px 28px 28px;
  box-shadow: 0 2px 12px rgba(99,102,241,0.08);
  padding: 8px 10px 6px 10px;
  margin-top: auto;
  margin-bottom: 0;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  z-index: 3;
}
.nav-btn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  padding: 6px;
  cursor: pointer;
  position: relative;
}
.nav-btn.active {
  background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.10);
}
.nav-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #f472b6 100%);
  color: #fff;
}
@media (max-width: 992px) {
  .advanced-mockup {
    border-radius: 18px;
    border-width: 2px;
  }
  .css-mockup-navbar {
    border-radius: 10px 10px 18px 18px;
    padding: 4px 4px 4px 4px;
    left: 4px;
    right: 4px;
    bottom: 6px;
  }
  .nav-btn {
    font-size: 1.1rem;
    padding: 3px;
  }
  .css-mockup-notification {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
} 

.advanced-gradient-bg {
  background: radial-gradient(ellipse at 70% 40%, #3b3663 0%, #23213a 80%);
  min-height: 600px;
  position: relative;
}
.mockup-app-stack {
  position: relative;
  width: 340px;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mockup-app-card.notification-card {
  position: absolute;
  left: 0;
  top: 40px;
  width: 220px;
  background: #23213a;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(44,40,80,0.25);
  color: #fff;
  z-index: 1;
  padding: 22px 20px 18px 20px;
  font-size: 1rem;
  animation: notifCardIn 1.2s cubic-bezier(.6,-0.28,.74,.05) 0.2s both;
}
@keyframes notifCardIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.notif-header {
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notif-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  margin-left: 6px;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}
.notif-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}
.notif-blue { background: #2563eb; color: #fff; }
.notif-green { background: #10b981; color: #fff; }
.notif-yellow { background: #fbbf24; color: #fff; }

.mockup-app-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 480px;
  background: #23213a;
  border-radius: 36px;
  box-shadow: 0 16px 48px rgba(44,40,80,0.32), 0 2px 8px rgba(99,102,241,0.10);
  border: 3px solid #39345a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  animation: phoneIn 1.2s cubic-bezier(.6,-0.28,.74,.05) 0.4s both;
}
@keyframes phoneIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.92); }
  100% { opacity: 1; transform: none; }
}
.mockup-app-screen {
  width: 92%;
  height: 92%;
  background: #18162b;
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0 2px 12px rgba(99,102,241,0.10);
  overflow: visible;
}
.swipe-card.gradient-card {
  width: 92%;
  height: 62%;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffb86c 0%, #ff5e62 50%, #845ec2 100%);
  box-shadow: 0 8px 32px rgba(236,72,153,0.10), 0 2px 8px rgba(99,102,241,0.10);
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: cardIn 1.2s cubic-bezier(.6,-0.28,.74,.05) 0.7s both;
}
@keyframes cardIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(-40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.swipe-card-top {
  flex: 1 1 0;
  border-radius: 24px 24px 0 0;
}
.swipe-card-bottom {
  background: rgba(24,22,43,0.92);
  border-radius: 0 0 24px 24px;
  padding: 18px 18px 12px 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(44,40,80,0.10);
}
.swipe-card-info b {
  font-size: 1.15rem;
  color: #fff;
}
.swipe-card-info span {
  color: #c3cfe2;
  font-size: 0.98rem;
}
.swipe-badge {
  display: inline-block;
  background: #10b981;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 3px 12px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.10);
}
.swipe-actions {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60%;
  margin-bottom: 18px;
  z-index: 3;
}
.swipe-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #23213a;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,40,80,0.10);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  margin: 0 6px;
}
.swipe-btn:active, .swipe-btn:focus {
  transform: scale(0.96);
}
.swipe-x { background: #23213a; color: #ef4444; }
.swipe-star { background: #23213a; color: #fbbf24; }
.swipe-heart { background: #23213a; color: #10b981; }
.swipe-btn:hover {
  background: #39345a;
  color: #fff;
}
@media (max-width: 600px) {
  .mockup-app-stack {
    width: 98vw;
    height: 340px;
    min-width: 0;
  }
  .mockup-app-card.notification-card {
    width: 60vw;
    min-width: 180px;
    font-size: 0.92rem;
    padding: 12px 8px 10px 12px;
    border-radius: 16px;
    top: 12px;
  }
  .mockup-app-phone {
    width: 48vw;
    min-width: 160px;
    height: 260px;
    border-radius: 18px;
    border-width: 2px;
  }
  .mockup-app-screen {
    border-radius: 12px;
  }
  .swipe-card.gradient-card {
    border-radius: 10px;
    top: 8px;
    height: 60%;
  }
  .swipe-card-bottom {
    border-radius: 0 0 10px 10px;
    padding: 8px 8px 6px 8px;
    font-size: 0.95rem;
  }
  .swipe-actions {
    margin-top: 62%;
    margin-bottom: 8px;
  }
  .swipe-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin: 0 2px;
  }
} 

.custom-mockup-container {
  background: radial-gradient(ellipse at 70% 40%, #3b3663 0%, #23213a 80%);
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-mockup-phone {
  width: 290px;
  height: 560px;
  background: #23213a;
  border-radius: 38px;
  box-shadow: 0 16px 48px rgba(44,40,80,0.32), 0 2px 8px rgba(99,102,241,0.10);
  border: 3px solid #39345a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 0 0 18px 0;
}
.custom-mockup-statusbar {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(24,22,43,0.92);
  border-radius: 0 0 18px 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}
.status-time {
  margin-left: 8px;
  margin-right: auto;
  font-size: 1.05rem;
  font-weight: 500;
}
.status-icons i {
  margin-left: 0.3rem;
  opacity: 0.8;
  font-size: 1.1rem;
}
.custom-mockup-screen {
  width: 92%;
  height: 90%;
  background: #18162b;
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0 2px 12px rgba(99,102,241,0.10);
  overflow: visible;
  margin-top: 8px;
}
.custom-swipe-card {
  width: 92%;
  height: 62%;
  border-radius: 24px;
  background: #23213a;
  box-shadow: 0 8px 32px rgba(236,72,153,0.10), 0 2px 8px rgba(99,102,241,0.10);
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: cardIn 1.2s cubic-bezier(.6,-0.28,.74,.05) 0.7s both;
  overflow: hidden;
}
@keyframes cardIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(-40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.custom-card-gradient {
  flex: 1 1 0;
  min-height: 120px;
  background: linear-gradient(135deg, #ffb86c 0%, #ff5e62 50%, #845ec2 100%);
  border-radius: 24px 24px 0 0;
}
.custom-card-info {
  background: rgba(24,22,43,0.92);
  border-radius: 0 0 24px 24px;
  padding: 18px 18px 12px 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(44,40,80,0.10);
}
.custom-card-title {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}
.custom-card-sub {
  color: #c3cfe2;
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.custom-card-badge {
  display: inline-block;
  background: #10b981;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 3px 12px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.10);
}
.custom-swipe-actions {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 62%;
  margin-bottom: 18px;
  z-index: 3;
}
.custom-swipe-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #23213a;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,40,80,0.10);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  margin: 0 6px;
}
.custom-swipe-btn:active, .custom-swipe-btn:focus {
  transform: scale(0.96);
}
.btn-x { background: #23213a; color: #ef4444; }
.btn-star { background: #23213a; color: #fbbf24; }
.btn-heart { background: #23213a; color: #10b981; }
.custom-swipe-btn:hover {
  background: #39345a;
  color: #fff;
}
@media (max-width: 600px) {
  .custom-mockup-container {
    min-height: 340px;
    padding: 0;
  }
  .custom-mockup-phone {
    width: 90vw;
    min-width: 160px;
    height: 320px;
    border-radius: 18px;
    border-width: 2px;
  }
  .custom-mockup-statusbar {
    font-size: 0.95rem;
    padding: 0 8px;
    border-radius: 0 0 10px 10px;
    height: 24px;
  }
  .custom-mockup-screen {
    border-radius: 12px;
    margin-top: 4px;
  }
  .custom-swipe-card {
    border-radius: 10px;
    top: 8px;
    height: 60%;
  }
  .custom-card-gradient {
    border-radius: 10px 10px 0 0;
    min-height: 60px;
  }
  .custom-card-info {
    border-radius: 0 0 10px 10px;
    padding: 8px 8px 6px 8px;
    font-size: 0.95rem;
  }
  .custom-swipe-actions {
    margin-top: 62%;
    margin-bottom: 8px;
  }
  .custom-swipe-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin: 0 2px;
  }
}

.custom-mockup-container, .advanced-gradient-bg {
  background: none !important;
  min-height: unset !important;
  padding: 0 !important;
}
.custom-mockup-phone {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .custom-mockup-phone {
    margin: 32px auto 0 auto;
    display: block;
  }
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-mockup-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-mockup-col {
    justify-content: center;
    margin-top: 32px;
  }
  .custom-mockup-phone {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .custom-mockup-phone {
    margin-right: 0;
    margin-left: auto;
  }
}