body {
            background-color: #f9fafb;
        }
        .carousel-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            padding: 1rem;
            height: 500px; /* Fixed height to prevent CLS */
        }
        
        /* Enhanced carousel animations with multiple effects */
        .carousel-image {
            opacity: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.1);
            max-width: calc(100% - 2rem);
            max-height: calc(100% - 2rem);
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: blur(2px);
        }
        
        .carousel-image.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            filter: blur(0px);
            z-index: 2;
            animation: kenBurns 3s ease-in-out;
        }
        
        .carousel-image.prev {
            opacity: 0;
            transform: translate(-150%, -50%) scale(0.8);
            filter: blur(1px);
            z-index: 1;
        }
        
        .carousel-image.next {
            opacity: 0;
            transform: translate(50%, -50%) scale(0.8);
            filter: blur(1px);
            z-index: 1;
        }
        
        @keyframes kenBurns {
            0% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-52%, -48%) scale(1.05);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translate(50%, -50%) scale(0.9);
                filter: blur(3px);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
                filter: blur(0px);
            }
        }
        
        @keyframes slideOutLeft {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
                filter: blur(0px);
            }
            100% {
                opacity: 0;
                transform: translate(-150%, -50%) scale(0.9);
                filter: blur(3px);
            }
        }
        
        .carousel-image.slide-in {
            animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .carousel-image.slide-out {
            animation: slideOutLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .app-store-btn {
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            border-radius: 25px;
            padding: 12px 24px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        
        .app-store-btn:hover {
            transform: translateY(-2px);
        }
        
        .google-play-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-radius: 25px;
            padding: 12px 24px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        
        .google-play-btn:hover {
            transform: translateY(-2px);
        }
        .contact-container {
            isolation: isolate;
        }
        
        .contact-form-animation {
            animation: slideInUp 0.6s ease-out;
        }
        
        .contact-input-focus {
            transition: all 0.3s ease;
        }
        
        .contact-input-focus:focus {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
        }
        
        .contact-button-hover {
            transition: all 0.3s ease;
        }
        
        .contact-button-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
        }
        
        .contact-success-animation {
            animation: successPulse 0.6s ease-out;
        }
        
        .contact-error-animation {
            animation: errorShake 0.5s ease-out;
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes successPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes errorShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .contact-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #22c55e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .motives-gradient-title {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .benefits-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .benefits-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .reasons-icon {
            transition: all 0.3s ease;
        }
        
        .benefits-card:hover .reasons-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .motives-container {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .benefits-text {
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .motives-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .motives-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (min-width: 1025px) {
            .motives-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 2rem;
            }
        }
        .audience-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }
        
        .audience-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .audience-icon {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .audience-card:hover .audience-icon {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .audience-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, opacity 0.3s ease;
            opacity: 0;
        }
        
        .audience-card:hover .audience-content {
            max-height: 200px;
            opacity: 1;
        }
        
        .audience-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .audience-section-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .audience-interactive-bg {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .audience-interactive-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline-line {
            position: absolute;
            top: 30px;
            left: 60px;
            right: 60px;
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            z-index: 1;
        }
        
        .timeline-progress {
            height: 100%;
            background: linear-gradient(90deg, #374151 0%, #1f2937 100%);
            border-radius: 2px;
            width: 0%;
            transition: width 0.6s ease;
        }
        
        .timeline-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
            padding: 0 60px;
        }
        
        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e5e7eb;
            border: 4px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: #6b7280;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-step:hover .step-circle {
            transform: scale(1.1);
            background: #374151;
            color: white;
        }
        
        .timeline-step.active .step-circle {
            background: #1f2937;
            color: white;
            transform: scale(1.15);
        }
        
        .step-label {
            margin-top: 12px;
            font-size: 12px;
            font-weight: 600;
            color: #6b7280;
            text-align: center;
            max-width: 80px;
            line-height: 1.3;
        }
        
        .timeline-step.active .step-label {
            color: #1f2937;
        }
        
        .content-panel {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            min-height: 200px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .content-panel.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .timeline-steps {
                flex-wrap: wrap;
                gap: 20px;
                padding: 0 20px;
            }
            
            .timeline-line {
                display: none;
            }
            
            .step-circle {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
            
            .content-panel {
                padding: 24px;
                margin-top: 30px;
            }
        }
        .pricing-card {
            transition: all 0.3s ease;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .popular-badge {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            animation: pulse 2s infinite;
        }
        .feature-item {
            transition: all 0.2s ease;
        }
        .feature-item:hover {
            transform: translateX(4px);
        }
        .pricing-button {
            transition: all 0.3s ease;
        }
        .pricing-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }