:root {
            --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
            --dark-bg: #0a0f14;
            --card-bg: rgba(0, 212, 255, 0.03);
            --text-light: #e8f4f8;
            --accent-cyan: #00d4ff;
            --accent-teal: #00a8cc;
            --light-cyan: #a0e7f1;
            --dark-cyan: #006b8a;
            --white-bg: #ffffff;
            --gray-light: #f8fafb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        
        /* Hero Section mit AI-Bild */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
            overflow: hidden;
        }
        
        /* AI Head Visualization */
        .ai-head-container {
            position: absolute;
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            opacity: 0.9;
            animation: float-head 6s ease-in-out infinite;
        }
        
        @keyframes float-head {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-20px); }
        }
        
        .ai-head-image {
            width: 100%;
            height: 100%;
            position: relative;
            filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.3));
        }
        
        .ai-head-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300d4ff;stop-opacity:0.5" /><stop offset="100%" style="stop-color:%2300a8cc;stop-opacity:0.5" /></linearGradient></defs><circle cx="300" cy="300" r="250" fill="none" stroke="url(%23grad)" stroke-width="1" opacity="0.5"><animate attributeName="r" values="250;280;250" dur="3s" repeatCount="indefinite"/></circle></svg>');
            animation: pulse-ring 3s ease-in-out infinite;
        }
        
        @keyframes pulse-ring {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }
        
        /* Circuit Lines Background */
        .circuit-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                linear-gradient(90deg, transparent 48%, #00d4ff 48%, #00d4ff 52%, transparent 52%),
                linear-gradient(0deg, transparent 48%, #00d4ff 48%, #00d4ff 52%, transparent 52%);
            background-size: 50px 50px;
            animation: circuit-flow 20s linear infinite;
        }
        
        @keyframes circuit-flow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Data Particles */
        .data-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #00d4ff;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
            animation: particle-flow 10s linear infinite;
        }
        
        @keyframes particle-flow {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
        
        .neural-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
            animation: glow-pulse 4s ease-in-out infinite;
        }
        
        @keyframes glow-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-family: 'DM Serif Text', monospace;
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 900;
            margin-bottom: 21rem;
            animation: slideInDown 1s ease-out;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
            color: #0a0f14;
        }
        
        .hero-title .title-main {
            background: linear-gradient(45deg, #00d4ff, #00a8cc, #00d4ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
            display: block;
            text-shadow: 0 0 80px rgba(0, 212, 255, 0.6);
        }
        
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero-title::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            font-family: 'DM Serif Text', monospace;
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #00d4ff, #00a8cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: blur(3px);
            opacity: 0.9;
            z-index: -1;
            animation: glitch 2s infinite;
        }
        
        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }
        
        @keyframes slideInDown {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #006b8a;
            margin-bottom: 3rem;
            animation: fadeIn 1.5s ease-out;
            text-transform: uppercase;
            letter-spacing: 5px;
            position: relative;
        }
        
        .hero-subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary-gradient);
            animation: expand 2s ease-out;
        }
        
        @keyframes expand {
            0% { width: 0; }
            100% { width: 100px; }
        }
        
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 1rem 2.5rem;
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
            animation: slideInUp 1.5s ease-out;
        }
        
        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
            color: white;
        }
        
        /* Schlagkräftige Argumente */
        .arguments-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .argument-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 168, 204, 0.1);
        }
        
        .argument-card:hover {
            transform: translateY(-10px);
            border-color: #00d4ff;
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }
        
        .argument-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .argument-icon .bi {
            font-size: 40px;
            color: white;
        }
        
        .argument-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0a0f14;
        }
        
        .argument-text {
            color: #006b8a;
            line-height: 1.8;
        }
        
        /* Vorteile Section */
        .benefits-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 4rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .benefit-item {
            display: flex;
            align-items: start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.1);
            box-shadow: 0 5px 20px rgba(0, 168, 204, 0.05);
        }
        
        .benefit-item:hover {
            border-color: #00d4ff;
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
        }
        
        .benefit-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-icon .bi {
            color: #00d4ff;
            font-size: 30px;
        }
        
        .benefit-content h3 {
            color: #0a0f14;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .benefit-content p {
            color: #006b8a;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Carousel Section */
        .carousel-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }
        
        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .use-cases-carousel {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
        }
        
        .carousel-inner {
            border-radius: 30px;
        }
        
        .carousel-item {
            min-height: 500px;
            padding: 60px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(0, 168, 204, 0.02));
        }
        
        .use-case-content {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .use-case-icon {
            flex-shrink: 0;
            width: 200px;
            height: 200px;
            background: var(--primary-gradient);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: float-icon 3s ease-in-out infinite;
        }
        
        @keyframes float-icon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .use-case-icon .bi {
            font-size: 80px;
            color: white;
        }
        
        .use-case-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 30px;
            filter: blur(20px);
            opacity: 0.4;
            z-index: -1;
        }
        
        .use-case-text {
            flex: 1;
        }
        
        .use-case-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            color: #00a8cc;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .use-case-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0a0f14;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .use-case-description {
            font-size: 1.1rem;
            color: #006b8a;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .use-case-stats {
            display: flex;
            gap: 40px;
        }
        
        .stat-box {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #006b8a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev {
            left: -30px;
        }
        
        .carousel-control-next {
            right: -30px;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 212, 255, 0.3);
            border: none;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators .active {
            background: var(--primary-gradient);
            width: 40px;
            border-radius: 20px;
        }
        
        .carousel-section .section-title {
            margin-bottom: 3rem;
        }
        
        @media (max-width: 768px) {
            .use-case-content {
                flex-direction: column;
                text-align: center;
            }
            
            .use-case-icon {
                width: 150px;
                height: 150px;
            }
            
            .use-case-title {
                font-size: 1.8rem;
            }
            
            .carousel-item {
                padding: 40px 20px;
            }
            
            .use-case-stats {
                justify-content: center;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }
        
        /* Album/Gallery Section */
        .album-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
        }
        
        .album-card {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 168, 204, 0.05);
        }
        
        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
            border-color: var(--accent-cyan);
        }
        
        .album-img-wrapper {
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .album-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .album-placeholder {
            font-size: 60px;
            color: var(--accent-cyan);
            opacity: 0.5;
        }
        
        .album-card-body {
            padding: 1.5rem;
        }
        
        .album-card-title {
            color: #0a0f14;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .album-card-text {
            color: #006b8a;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .album-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
        }
        
        .album-badge {
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-cyan);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .album-link {
            color: var(--accent-cyan);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .album-link:hover {
            color: var(--accent-teal);
            transform: translateX(5px);
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.98);
            border: 2px solid rgba(0, 212, 255, 0.1);
            border-radius: 30px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 168, 204, 0.08);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
            box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
        }
        
        .pricing-card.featured {
            border-color: var(--accent-cyan);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--primary-gradient);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .pricing-header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        }
        
        .pricing-title {
            color: var(--accent-cyan);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pricing-subtitle {
            color: #006b8a;
            font-size: 0.95rem;
        }
        
        .pricing-price {
            text-align: center;
            padding: 2rem 0;
        }
        
        .price-amount {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .price-currency {
            font-size: 1.5rem;
            vertical-align: super;
        }
        
        .price-period {
            color: #006b8a;
            font-size: 1rem;
            display: block;
            margin-top: 0.5rem;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .pricing-features li {
            padding: 0.75rem 0;
            color: #0a0f14;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pricing-features li:not(:last-child) {
            border-bottom: 1px solid rgba(0, 212, 255, 0.05);
        }
        
        .pricing-features .bi {
            color: var(--accent-cyan);
            font-size: 1.2rem;
        }
        
        .pricing-features .bi-x-circle {
            color: rgba(0, 212, 255, 0.3);
        }
        
        .pricing-cta {
            text-align: center;
            margin-top: 2rem;
        }
        
        .btn-pricing {
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-cyan);
            border: 2px solid var(--accent-cyan);
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-pricing:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }
        
        .pricing-card.featured .btn-pricing {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
        }
        
        .pricing-card.featured .btn-pricing:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        }
        
        /* Features Grid */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: scale(1.05);
        }
        
        .feature-box .bi {
            font-size: 60px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .feature-box h4 {
            color: #0a0f14;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-box p {
            color: #006b8a;
            font-size: 0.95rem;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: rgba(0, 212, 255, 0.05);
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            color: #006b8a;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
            text-align: center;
        }
        
        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem;
            background: var(--primary-gradient);
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
        }
        
        .cta-box h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .cta-box p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn-white {
            background: white;
            color: #00a8cc;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            color: #00d4ff;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .argument-card {
                margin-bottom: 2rem;
            }
            
            .ai-head-container {
                width: 90%;
                height: 400px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
                margin-top: 2rem;
            }
            
            .pricing-badge {
                right: 20px;
            }
            
            .album-card {
                margin-bottom: 1rem;
            }
            
            .use-case-content {
                flex-direction: column;
                text-align: center;
            }
            
            .use-case-icon {
                width: 150px;
                height: 150px;
            }
            
            .use-case-title {
                font-size: 1.8rem;
            }
            
            .carousel-item {
                padding: 40px 20px;
            }
            
            .use-case-stats {
                justify-content: center;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }