/* Trendmetrik homepage styles — externalized from templates/homepage.html inline <style> (perf/faz2). Static, no Jinja. */
        :root {
            --motiv-grey-50: #F5F4F6;
            --motiv-grey-100: #F5F5F5;
            --motiv-grey-200: #F3F5F8;
            --motiv-grey-300: #B1B5C3;
            --motiv-grey-400: #777E90;
            --motiv-grey-500: #7C7C8D;
            --motiv-grey-600: #72767C;
            --motiv-grey-700: #5F6165;
            --motiv-grey-800: #242731;
            --motiv-grey-900: #1F2128;
            
            /* Marka — theme-variables ile uyumlu */
            --baklava-primary: var(--color-primary);
            --baklava-primary-light: var(--color-secondary);
            --baklava-primary-dark: var(--color-primary-hover);
            --baklava-primary-50: var(--color-primary-soft);
            --baklava-primary-100: #d1e9ff;
            --baklava-primary-200: #a3d0fd;
            
            /* Legacy — artık marka mavisi */
            --motiv-blue-50: var(--color-primary-soft);
            --motiv-blue-300: var(--color-secondary);
            --motiv-blue-500: var(--color-primary);
            --motiv-blue-800: var(--color-primary-hover);
            
            --motiv-purple-50: var(--color-primary-soft);
            --motiv-purple-300: var(--color-secondary);
            --motiv-purple-500: var(--color-primary);
            
            --motiv-red-50: #F4E3E5;
            --motiv-red-300: #FF7E86;
            --motiv-red-500: #FF5E6F;
            
            --motiv-orange-50: var(--color-accent-soft);
            --motiv-orange-300: var(--color-accent-mid);
            --motiv-orange-500: var(--color-accent);
        }
        
        * {
            box-sizing: border-box;
        }
        
        html {
            width: 100%;
            overflow-x: hidden;
            max-width: 100vw;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--motiv-grey-50);
            color: var(--motiv-grey-800);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
        }

        body.has-promotion-banner {
            --promotion-banner-height: 0px;
        }

        body.has-promotion-banner #tm-home-v2 {
            padding-top: var(--promotion-banner-height);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Buttons - Baklava */
        .btn-custom-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap;          /* CTA metni 2 satıra kırılmasın (header bozulma fix) */
            background: linear-gradient(135deg, var(--baklava-primary) 0%, var(--baklava-primary-light) 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
        }
        
        .btn-custom-primary:hover {
            background: linear-gradient(135deg, var(--baklava-primary-dark) 0%, var(--baklava-primary) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
            color: white;
        }
        
        .btn-custom-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap;          /* CTA metni 2 satıra kırılmasın (header bozulma fix) */
            background: transparent;
            color: var(--motiv-grey-600);
            border: 2px solid var(--motiv-grey-300);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .btn-custom-secondary:hover {
            background: linear-gradient(135deg, var(--baklava-primary) 0%, var(--baklava-primary-light) 100%);
            color: white;
            border-color: var(--baklava-primary);
            transform: translateY(-2px);
        }
        
        .btn-custom-lg {
            padding: 16px 32px;
            font-size: 16px;
            border-radius: 12px;
        }
        
        /* Hero Section - Baklava */
        .hero-section {
            background: linear-gradient(135deg, var(--baklava-primary) 0%, var(--baklava-primary-light) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            width: 100%;
            max-width: 100vw;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.9) 0%, rgba(var(--color-secondary-rgb), 0.85) 100%);
            z-index: 1;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 40%,
                rgba(255, 255, 255, 0.3) 70%,
                rgba(255, 255, 255, 0.5) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .hero-title {
            font-size: clamp(32px, 8vw, 64px);
            margin-bottom: 24px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: clamp(16px, 4vw, 20px);
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-stats {
            margin-top: 60px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
        }
        
        .stat-number {
            font-size: clamp(32px, 6vw, 48px);
            font-weight: 700;
            color: white;
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: clamp(14px, 3vw, 16px);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }
        
        /* Best Value Section */
        .best-value-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }
        
        .best-value-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, 
                rgba(40, 132, 255, 0.05) 0%,
                rgba(248, 249, 250, 0.2) 50%,
                transparent 100%);
            z-index: 0;
            pointer-events: none;
        }
        
        .value-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(40, 132, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(161, 98, 247, 0.08) 0%, transparent 50%);
            z-index: 0;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
            z-index: 1;
        }
        
        .floating-shape.shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-light));
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }
        
        .floating-shape.shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--baklava-primary-light), var(--baklava-primary));
            bottom: 15%;
            right: -3%;
            animation-delay: -5s;
        }
        
        .floating-shape.shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-dark));
            top: 50%;
            right: 10%;
            animation-delay: -10s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }
        
        .best-value-section .container {
            position: relative;
            z-index: 2;
        }
        
        .value-content {
            position: relative;
            z-index: 2;
        }
        
        .value-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-light));
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 32px rgba(var(--color-primary-rgb), 0.4);
            }
        }
        
        .value-title {
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--motiv-grey-800);
        }
        
        .highlight-text {
            color: var(--baklava-primary);
            font-size: clamp(24px, 4vw, 36px);
            display: block;
            margin-bottom: 8px;
        }
        
        .gradient-text-animated {
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-light), var(--baklava-primary-dark));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
        }
        
        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
        }
        
        .value-description {
            font-size: clamp(16px, 3vw, 18px);
            color: var(--motiv-grey-600);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        
        .value-description strong {
            color: var(--baklava-primary);
            font-weight: 700;
        }
        
        .value-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-value-primary {
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-light));
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(40, 132, 255, 0.3);
            border: none;
        }
        
        .btn-value-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(40, 132, 255, 0.4);
            color: white;
        }
        
        .btn-value-secondary {
            background: white;
            color: var(--motiv-blue-500);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--motiv-blue-500);
        }
        
        .btn-value-secondary:hover {
            background: var(--motiv-blue-500);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(40, 132, 255, 0.3);
        }
        
        .value-features-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .value-feature-card {
            background: white;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .value-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--motiv-blue-500), var(--motiv-purple-500));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .value-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--motiv-blue-500);
        }
        
        .value-feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .value-feature-card.highlight-card {
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            grid-column: span 2;
        }
        
        .value-feature-card.highlight-card h4,
        .value-feature-card.highlight-card p {
            color: white;
        }
        
        .feature-icon-wrapper {
            position: relative;
            width: 64px;
            height: 64px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .feature-icon-wrapper svg,
        .feature-icon-wrapper i {
            position: relative;
            z-index: 2;
        }
        
        .feature-icon-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            opacity: 1;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .value-feature-card:hover .feature-icon-bg {
            transform: scale(1.1);
        }
        
        .icon-1 {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }
        
        .value-feature-card.feature-1 .feature-icon-wrapper svg,
        .value-feature-card.feature-1 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .icon-2 {
            background: linear-gradient(135deg, var(--motiv-blue-500), #1e40af);
        }
        
        .value-feature-card.feature-2 .feature-icon-wrapper svg,
        .value-feature-card.feature-2 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .icon-3 {
            background: linear-gradient(135deg, var(--motiv-purple-500), #7c3aed);
        }
        
        .value-feature-card.feature-3 .feature-icon-wrapper svg,
        .value-feature-card.feature-3 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .icon-4 {
            background: linear-gradient(135deg, var(--motiv-orange-500), #ea580c);
        }
        
        .value-feature-card.feature-4 .feature-icon-wrapper svg,
        .value-feature-card.feature-4 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .icon-5 {
            background: linear-gradient(135deg, #ec4899, #be185d);
        }
        
        .value-feature-card.feature-5 .feature-icon-wrapper svg,
        .value-feature-card.feature-5 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .icon-6 {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .value-feature-card.feature-6 .feature-icon-wrapper svg,
        .value-feature-card.feature-6 .feature-icon-wrapper i {
            color: white !important;
        }
        
        .value-feature-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--motiv-grey-800);
        }
        
        .value-feature-card p {
            font-size: 14px;
            color: var(--motiv-grey-600);
            line-height: 1.6;
            margin: 0;
        }
        
        .product-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.3);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            margin-top: 12px;
            backdrop-filter: blur(10px);
        }
        
        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-left {
            animation: slide-in-left 0.8s ease-out;
        }
        
        .slide-in-right {
            animation: slide-in-right 0.8s ease-out;
        }
        
        @media (max-width: 991px) {
            .value-features-grid {
                grid-template-columns: 1fr;
                margin-top: 40px;
            }
            
            .value-feature-card.highlight-card {
                grid-column: span 1;
            }
        }
        
        @media (max-width: 768px) {
            .best-value-section {
                margin-top: -80px;
                padding-top: 180px;
                padding-bottom: 80px;
            }
            
            .value-cta {
                flex-direction: column;
            }
            
            .btn-value-primary,
            .btn-value-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .floating-shape {
                display: none;
            }
        }
        
        /* Section Styles */
        .section-custom {
            padding: 100px 0;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            padding-left: 15px;
            padding-right: 15px;
            margin: 0 auto;
        }
        
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }
        
        @media (max-width: 768px) {
            html, body {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .section-custom {
                padding: 60px 0;
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
                width: 100%;
            }
            
            .hero-section {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .navbar-custom {
                width: 100%;
                max-width: 100vw;
            }
            
            .row {
                margin-left: 0;
                margin-right: 0;
            }
            
            [class*="col-"] {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-title-custom {
            font-size: clamp(28px, 6vw, 40px);
            color: var(--motiv-grey-800);
            margin-bottom: 16px;
        }
        
        .section-description-custom {
            font-size: clamp(16px, 4vw, 18px);
            color: var(--motiv-grey-600);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Feature Cards */
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(36, 39, 49, 0.08);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--motiv-blue-500);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(36, 39, 49, 0.15);
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .feature-icon.blue {
            background: var(--motiv-blue-50);
            color: var(--motiv-blue-500);
        }
        
        .feature-icon.purple {
            background: rgba(161, 98, 247, 0.1);
            color: var(--motiv-purple-500);
        }
        
        .feature-icon.orange {
            background: rgba(255, 118, 76, 0.1);
            color: var(--motiv-orange-500);
        }
        
        .feature-icon.red {
            background: var(--motiv-red-50);
            color: var(--motiv-red-500);
        }
        
        .feature-icon.green {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        .feature-title {
            font-size: clamp(18px, 4vw, 22px);
            color: var(--motiv-grey-800);
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .feature-description {
            font-size: clamp(14px, 3vw, 16px);
            color: var(--motiv-grey-600);
            line-height: 1.6;
        }
        
        /* Product Store Section */
        .product-store-section {
            background: linear-gradient(135deg, var(--motiv-purple-500) 0%, var(--motiv-blue-500) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .product-store-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(161, 98, 247, 0.9) 0%, rgba(40, 132, 255, 0.8) 100%);
            z-index: 1;
        }
        
        .product-store-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .store-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .store-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* Pricing Cards */
        /* === Pricing kartları — premium SaaS redesign (2026-05-13) === */
        .pricing-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid var(--motiv-grey-200);
            transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s, border-color 0.25s;
            position: relative;
            text-align: center;
            height: 100%;
            display: flex !important;
            flex-direction: column !important;
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
        }

        .pricing-card-toggle {
            display: flex !important;
            flex-direction: column !important;
            height: 100%;
        }

        /* Yüksek özgüllüğe sahip grid-fix override'lar — sayfanın eski
           visibility hack'leri konsolide */
        #pricing .pricing-card,
        #pricing .pricing-card-toggle,
        section#pricing .pricing-card,
        section#pricing .pricing-card-toggle {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Hover — abartısız lift, scale yok (4 kolonda taşmaz) */
        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10);
            border-color: var(--motiv-grey-300);
        }

        /* Featured (en çok tercih edilen) — solid kenar + soft gradient zemin
           NO scale transform → 4 kolonda dengeli kalır */
        .pricing-card.featured {
            border: 2px solid var(--motiv-blue-500);
            background: linear-gradient(180deg, rgba(1,117,228,0.05) 0%, #fff 38%);
            box-shadow: 0 14px 40px rgba(1, 117, 228, 0.16), 0 1px 3px rgba(15,23,42,0.05);
            margin-top: 14px; /* ribbon için yer */
        }
        .pricing-card.featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 48px rgba(1, 117, 228, 0.24), 0 1px 3px rgba(15,23,42,0.05);
        }

        /* Featured ribbon: in-card .badge-custom artık üst kenarda asılı pill */
        .pricing-card.featured .badge-custom {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--motiv-blue-500) 0%, var(--motiv-purple-500) 100%) !important;
            color: #fff !important;
            font-size: 0.6875rem !important;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 7px 16px !important;
            border-radius: 999px !important;
            box-shadow: 0 6px 16px rgba(1, 117, 228, 0.34);
            white-space: nowrap;
            margin: 0 !important;
            z-index: 2;
        }

        /* Kurumsal — nötr/seyrek varyant */
        .pricing-card.enterprise,
        .pricing-card.border-secondary {
            background: linear-gradient(180deg, var(--motiv-grey-50) 0%, #fff 55%);
            border: 1px solid var(--motiv-grey-300) !important;
        }

        .price {
            font-size: clamp(34px, 5vw, 44px);
            font-weight: 800;
            color: var(--motiv-grey-800);
            margin: 10px 0 4px;
            line-height: 1.05;
            letter-spacing: -0.025em;
        }
        .pricing-card.featured .price { color: var(--motiv-blue-500); }
        .pricing-card.enterprise .price,
        .pricing-card.border-secondary .price {
            font-size: clamp(24px, 4vw, 32px);
            color: var(--motiv-grey-700);
        }

        .price-period {
            font-size: 0.8125rem;
            color: var(--motiv-grey-600);
            font-weight: 500;
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .pricing-card { padding: 24px 20px; border-radius: 18px; }
            .pricing-card:hover,
            .pricing-card.featured:hover { transform: none; }
            .pricing-card.featured .badge-custom { font-size: 0.625rem !important; padding: 6px 12px !important; top: -12px; }
        }

        /* === Ücretsiz Deneme — yatay CTA banner (eski merkezi dik kart yerine) === */
        .trial-banner {
            display: flex;
            gap: 22px;
            align-items: center;
            background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(99,102,241,0.05) 45%, #ffffff 100%);
            border: 1px solid rgba(139,92,246,0.22);
            border-radius: 20px;
            padding: 22px 24px;
            box-shadow: 0 6px 24px rgba(139, 92, 246, 0.08);
        }
        .trial-banner__icon {
            width: 60px; height: 60px;
            border-radius: 16px;
            display: inline-flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
            color: #fff;
            flex: none;
            box-shadow: 0 10px 24px rgba(139,92,246,0.32);
            font-size: 24px;
        }
        .trial-banner__body { flex: 1 1 auto; min-width: 0; text-align: left; }
        .trial-banner__heading {
            display: flex; align-items: center; gap: 10px;
            flex-wrap: wrap; margin-bottom: 4px;
        }
        .trial-banner__badge {
            font-size: 0.6875rem; font-weight: 800;
            letter-spacing: 0.08em; text-transform: uppercase;
            padding: 4px 11px; border-radius: 999px;
            background: rgba(139,92,246,0.14); color: #8B5CF6;
            border: 1px solid rgba(139,92,246,0.28);
            line-height: 1;
        }
        .trial-banner__title {
            margin: 0;
            font-size: clamp(20px, 4vw, 24px); font-weight: 800;
            color: var(--motiv-grey-800);
            letter-spacing: -0.02em;
        }
        .trial-banner__price {
            margin-left: auto;
            font-size: clamp(18px, 3.2vw, 22px);
            font-weight: 800;
            color: #8B5CF6;
            letter-spacing: -0.015em;
            white-space: nowrap;
        }
        .trial-banner__desc {
            margin: 6px 0 10px;
            color: var(--motiv-grey-600);
            font-size: 0.9375rem;
            line-height: 1.55;
        }
        .trial-banner__features {
            display: flex; flex-wrap: wrap; gap: 6px 18px;
            font-size: 0.8125rem; color: var(--motiv-grey-700);
        }
        .trial-banner__features span { display: inline-flex; align-items: center; gap: 6px; }
        .trial-banner__features i { color: #8B5CF6; font-size: 12px; }
        .trial-banner__cta {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 700; font-size: 0.9375rem;
            background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
            color: #fff !important;
            text-decoration: none;
            box-shadow: 0 10px 26px rgba(139,92,246,0.40);
            white-space: nowrap; flex: none;
            transition: opacity 0.18s, box-shadow 0.18s, transform 0.08s;
            border: none;
        }
        .trial-banner__cta:hover {
            opacity: 0.96;
            transform: translateY(-1px);
            color: #fff !important;
            box-shadow: 0 14px 32px rgba(139,92,246,0.50);
        }
        @media (max-width: 768px) {
            .trial-banner {
                flex-direction: column; align-items: flex-start;
                padding: 20px; gap: 16px;
            }
            .trial-banner__price { margin-left: 0; }
            .trial-banner__cta { width: 100%; justify-content: center; padding: 13px 18px; }
        }
        
        /* Toggle Styles for Homepage */
        .plan-toggle-wrapper {
            margin: 1.5rem 0;
        }
        
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }
        
        .toggle-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--motiv-grey-600);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .toggle-label.active {
            color: var(--motiv-blue-500);
            font-weight: 700;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
            cursor: pointer;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e1;
            transition: 0.4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .toggle-switch input:checked + .toggle-slider {
            background: linear-gradient(135deg, var(--motiv-blue-500) 0%, var(--motiv-purple-500) 100%);
        }
        
        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(28px);
        }
        
        .discount-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.5rem;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }
        
        .discount-badge.hidden {
            display: none !important;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 16px rgba(16, 185, 129, 0.6);
            }
        }
        
        .monthly-price-display,
        .yearly-price-display {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Extra Discount Banner - Top of Card */
        .extra-discount-banner {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #F27A1A 0%, #FF8C3D 50%, #FFA366 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(242, 122, 26, 0.5);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: discountBannerPulse 2s ease-in-out infinite;
            white-space: nowrap;
        }
        
        .extra-discount-banner i {
            font-size: 0.9rem;
            animation: sparkleRotate 2s linear infinite;
        }
        
        @keyframes discountBannerPulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 6px 20px rgba(242, 122, 26, 0.5);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
                box-shadow: 0 8px 25px rgba(242, 122, 26, 0.7);
            }
        }
        
        @keyframes sparkleRotate {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.2);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }
        
        /* Pricing Card with Extra Discount */
        .pricing-card.has-extra-discount {
            border: 3px solid #F27A1A;
            background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
            box-shadow: 0 8px 30px rgba(242, 122, 26, 0.25);
            position: relative;
        }
        
        .pricing-card.has-extra-discount::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F27A1A 0%, #FF8C3D 50%, #F27A1A 100%);
            background-size: 200% 100%;
            animation: gradientShift 3s linear infinite;
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 200% 50%;
            }
        }
        
        .pricing-card.has-extra-discount:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 20px 50px rgba(242, 122, 26, 0.4);
            border-color: #FF8C3D;
        }
        
        /* Extra Discount Badge - Large and Eye-catching */
        .extra-discount-badge-large {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 16px;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
            position: relative;
            overflow: hidden;
            animation: discountBadgeGlow 2s ease-in-out infinite;
        }
        
        .extra-discount-badge-large::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }
        
        @keyframes discountBadgeGlow {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 12px 35px rgba(34, 197, 94, 0.6);
                transform: scale(1.05);
            }
        }
        
        .extra-discount-badge-large .discount-icon-wrapper {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            animation: iconBounce 2s ease-in-out infinite;
        }
        
        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .extra-discount-badge-large .discount-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }
        
        .extra-discount-badge-large .discount-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            font-weight: 600;
        }
        
        .extra-discount-badge-large .discount-value-large {
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        
        .extra-discount-badge-large .discount-text-small {
            font-size: 0.75rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        .extra-discount-badge-large .discount-sparkle {
            font-size: 1.2rem;
            animation: sparkleRotate 2s linear infinite;
            opacity: 0.9;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .extra-discount-banner {
                font-size: 0.75rem;
                padding: 6px 16px;
                gap: 6px;
            }
            
            .extra-discount-badge-large {
                padding: 10px 16px;
                gap: 10px;
            }
            
            .extra-discount-badge-large .discount-value-large {
                font-size: 1.2rem;
            }
            
            .extra-discount-badge-large .discount-icon-wrapper {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
        }
        
        /* Features list — kompakt check rows, ayraç çizgisi ile temiz okuma */
        .features-list {
            list-style: none;
            margin: 16px 0 0;
            padding: 0;
            text-align: left;
            flex-grow: 1;
        }
        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 0;
            padding: 8px 0;
            color: var(--motiv-grey-700);
            font-size: 0.875rem;
            line-height: 1.5;
            border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        }
        .features-list li:last-child { border-bottom: none; }
        .features-list li::before { content: none; } /* legacy ✓ kaldır — Lucide/FA ikon kullanılır */
        .features-list li i {
            flex: none;
            width: 16px;
            height: 16px;
            margin-top: 3px;
            font-size: 14px;
        }
        .features-list li.feature-available { color: var(--motiv-grey-700); }
        .features-list li.feature-available i { color: #22c55e; }
        .features-list li.feature-unavailable { color: var(--motiv-grey-400); }
        .features-list li.feature-unavailable i { color: var(--motiv-grey-400); }

        /* CTA button — featured filled gradient, others outlined */
        .pricing-card .btn,
        .pricing-card .plan-toggle-link {
            margin-top: 20px;
            font-weight: 700;
            padding: 12px 18px;
            border-radius: 12px;
            transition: opacity 0.18s, box-shadow 0.18s, transform 0.08s, background 0.18s;
            font-size: 0.9375rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .pricing-card.featured .plan-toggle-link,
        .pricing-card.featured .btn-custom-primary {
            background: linear-gradient(135deg, var(--motiv-blue-500) 0%, var(--motiv-purple-500) 100%);
            color: #fff !important;
            box-shadow: 0 8px 22px rgba(1, 117, 228, 0.34);
            border: none;
        }
        .pricing-card.featured .plan-toggle-link:hover,
        .pricing-card.featured .btn-custom-primary:hover {
            opacity: 0.96;
            box-shadow: 0 10px 28px rgba(1, 117, 228, 0.42);
            color: #fff !important;
        }
        .pricing-card:not(.featured):not(.enterprise):not(.border-secondary) .plan-toggle-link {
            background: #fff;
            color: var(--motiv-blue-500) !important;
            border: 1.5px solid var(--motiv-blue-500);
        }
        .pricing-card:not(.featured):not(.enterprise):not(.border-secondary) .plan-toggle-link:hover {
            background: var(--motiv-blue-50);
            color: var(--motiv-blue-500) !important;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--motiv-blue-500) 0%, var(--motiv-purple-500) 100%);
            color: white;
        }
        
        /* Footer */
        .footer-custom {
            background: var(--motiv-grey-900);
            color: var(--motiv-grey-300);
            padding: 60px 0 32px;
        }
        
        .footer-custom h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-custom ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-custom ul li {
            margin-bottom: 12px;
        }
        
        .footer-custom ul li a {
            color: var(--motiv-grey-400);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }
        
        .footer-custom ul li a:hover {
            color: var(--motiv-blue-500);
        }
        
        /* Advanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(40, 132, 255, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(40, 132, 255, 0.6);
            }
        }
        
        .slide-up {
            animation: slideUp 0.8s ease;
        }
        
        .zoom-in {
            animation: zoomIn 0.6s ease;
        }
        
        .glow-animation {
            animation: glow 2s ease-in-out infinite;
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease;
        }
        
        .slide-in-left {
            animation: slideInLeft 0.8s ease;
        }
        
        .slide-in-right {
            animation: slideInRight 0.8s ease;
        }
        
        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .bounce-animation {
            animation: bounce 2s ease-in-out infinite;
        }
        
        .scale-in {
            animation: scaleIn 0.6s ease;
        }
        
        /* Visual Elements */
        .visual-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(36, 39, 49, 0.1);
            border: 1px solid var(--motiv-grey-200);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .visual-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(40, 132, 255, 0.05), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .visual-card:hover::before {
            top: -100%;
            left: -100%;
        }
        
        .visual-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(36, 39, 49, 0.15);
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .visual-card:hover .icon-wrapper::after {
            opacity: 1;
        }
        
        .visual-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Stats Animation */
        .stat-counter {
            font-size: clamp(32px, 6vw, 48px);
            font-weight: 700;
            color: var(--motiv-blue-500);
            display: block;
        }
        
        /* Process Steps - Fixed */
        .process-step {
            position: relative;
            padding: 40px 30px;
            text-align: center;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(36, 39, 49, 0.08);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            overflow: visible;
        }
        
        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(36, 39, 49, 0.15);
        }
        
        .process-step::before {
            display: none;
        }
        
        .process-step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 24px;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 20px rgba(40, 132, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: scaleIn 0.6s ease backwards;
        }
        
        .process-step:nth-child(1) .process-step-number {
            animation-delay: 0.1s;
        }
        
        .process-step:nth-child(2) .process-step-number {
            animation-delay: 0.3s;
        }
        
        .process-step:nth-child(3) .process-step-number {
            animation-delay: 0.5s;
        }
        
        .process-step:hover .process-step-number {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 12px 30px rgba(40, 132, 255, 0.5);
        }
        
        .process-step .icon-wrapper {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .process-step:hover .icon-wrapper {
            transform: scale(1.1) translateY(-5px);
        }
        
        /* Connecting Line Between Steps */
        .process-steps-container {
            position: relative;
        }
        
        /* Demo Section */
        .demo-section {
            background: linear-gradient(135deg, var(--motiv-grey-100) 0%, white 100%);
            position: relative;
            overflow: hidden;
        }
        
        .demo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(40, 132, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        .demo-card {
            background: white;
            border-radius: 24px;
            padding: 0;
            box-shadow: 0 20px 60px rgba(36, 39, 49, 0.15);
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .demo-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 80px rgba(36, 39, 49, 0.2);
        }
        
        .demo-placeholder {
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            padding: 60px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            animation: gradientShift 8s ease infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .demo-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: floatPattern 20s linear infinite;
            opacity: 0.3;
        }
        
        @keyframes floatPattern {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(50px, 50px) rotate(360deg);
            }
        }
        
        .demo-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }
        
        .demo-icon-container {
            animation: iconPulse 2s ease-in-out infinite;
        }
        
        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }
        }
        
        .demo-icon-container:hover {
            animation: iconRotate 0.6s ease;
        }
        
        @keyframes iconRotate {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.1);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }
        
        .demo-stat-card {
            animation: statFadeIn 0.8s ease-out;
            transition: all 0.3s ease;
        }
        
        .demo-stat-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .demo-stat-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        @keyframes statFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .demo-stat-card:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.3) !important;
        }
        
        .demo-stat-number {
            animation: numberCount 2s ease-out;
        }
        
        @keyframes numberCount {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .demo-title {
            animation: titleSlideIn 0.8s ease-out;
        }
        
        @keyframes titleSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .demo-description {
            animation: descriptionFadeIn 1s ease-out 0.3s both;
        }
        
        @keyframes descriptionFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Floating Icons */
        .floating-icon {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-icon svg {
            width: 60px;
            height: 60px;
            color: var(--motiv-blue-500);
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Badge Animation */
        .badge-animated {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--baklava-primary), var(--baklava-primary-light));
            color: white;
            font-weight: 600;
            font-size: 14px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 8px 30px rgba(36, 39, 49, 0.1);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 24px;
            font-size: 80px;
            color: var(--motiv-blue-500);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 50px rgba(36, 39, 49, 0.15);
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        /* Platform Cards */
        .platform-card {
            background: white;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(36, 39, 49, 0.08);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .platform-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(36, 39, 49, 0.15);
            border-color: var(--baklava-primary);
        }
        
        .platform-logo-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.05), rgba(var(--color-secondary-rgb), 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            transition: all 0.3s ease;
            border: 2px solid var(--motiv-grey-200);
        }
        
        .platform-card:hover .platform-logo-wrapper {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
            border-color: var(--baklava-primary);
            box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.2);
        }
        
        .platform-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .platform-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--motiv-grey-800);
            margin-bottom: 12px;
            font-family: 'DM Sans', sans-serif;
        }
        
        .platform-description {
            font-size: 14px;
            color: var(--motiv-grey-600);
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
        }
        
        @media (max-width: 768px) {
            .platform-logo-wrapper {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }
            
            .platform-name {
                font-size: 18px;
            }
            
            .platform-description {
                font-size: 13px;
            }
        }
        
        /* Technology Stack */
        .tech-stack-item {
            background: white;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(36, 39, 49, 0.08);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.3s ease;
        }
        
        .tech-stack-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(36, 39, 49, 0.15);
        }
        
        .tech-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, rgba(40, 132, 255, 0.1), rgba(161, 98, 247, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .tech-stack-item:hover .tech-icon {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
        }
        
        .tech-stack-item:hover .tech-icon i {
            color: white;
        }
        
        /* Benefits Section */
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(36, 39, 49, 0.08);
            border: 1px solid var(--motiv-grey-200);
            transition: all 0.3s ease;
            margin-bottom: 16px;
        }
        
        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(36, 39, 49, 0.12);
        }
        
        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover .benefit-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }
        
        .floating-element:nth-child(2) { animation-delay: -2s; }
        .floating-element:nth-child(3) { animation-delay: -4s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(2deg); }
            50% { transform: translateY(-8px) rotate(-2deg); }
            75% { transform: translateY(-20px) rotate(1deg); }
        }
        
        /* Badge Styles */
        .badge-custom {
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .btn-custom-primary,
            .btn-custom-secondary {
                width: 100%;
                padding: 14px 24px;
                font-size: 16px;
            }
            
            .feature-card {
                padding: 32px 24px;
            }
            
            .pricing-card {
                padding: 32px 24px;
            }
            
            .pricing-card-toggle {
                display: block !important;
                visibility: visible !important;
            }
        }
        
        /* FAQ Section Styles */
        .accordion-flush .accordion-item {
            background: white;
            border: 1px solid var(--motiv-grey-200);
            border-radius: 12px !important;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .accordion-flush .accordion-item:hover {
            box-shadow: 0 4px 12px rgba(36, 39, 49, 0.1);
            transform: translateY(-2px);
        }
        
        .accordion-flush .accordion-button {
            background: white;
            color: var(--motiv-grey-800);
            font-size: 16px;
            padding: 20px 24px;
            border: none;
            box-shadow: none;
            border-radius: 12px !important;
        }
        
        .accordion-flush .accordion-button:not(.collapsed) {
            background: rgba(40, 132, 255, 0.05);
            color: var(--motiv-blue-500);
            box-shadow: none;
        }
        
        .accordion-flush .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(40, 132, 255, 0.1);
            border-color: transparent;
        }
        
        .accordion-flush .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23242831'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s ease;
        }
        
        .accordion-flush .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232884FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(180deg);
        }
        
        .accordion-flush .accordion-body {
            padding: 0 24px 24px 24px;
            background: white;
            border-radius: 0 0 12px 12px;
        }
        
        @media (max-width: 768px) {
            .accordion-flush .accordion-button {
                padding: 16px 20px;
                font-size: 15px;
            }
            
            .accordion-flush .accordion-body {
                padding: 0 20px 20px 20px;
            }
        }
        
        /* Comparison Table Styles */
        .comparison-table-wrapper {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(36, 39, 49, 0.1);
            overflow: hidden;
        }
        
        .comparison-table {
            margin: 0;
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
        }
        
        .comparison-table thead th {
            padding: 1.5rem 1rem;
            font-weight: 700;
            font-size: 18px;
            border: none;
            vertical-align: middle;
        }
        
        .comparison-table thead th:first-child {
            border-radius: 12px 0 0 0;
            background: var(--motiv-grey-100);
            color: var(--motiv-grey-800);
            text-align: left;
        }
        
        .comparison-table thead th:last-child {
            border-radius: 0 12px 0 0;
            background: var(--motiv-grey-200);
            color: var(--motiv-grey-700);
        }
        
        .comparison-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .badge-best {
            display: inline-block;
            background: rgba(255, 255, 255, 0.3);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .comparison-table tbody tr {
            transition: background-color 0.2s ease;
        }
        
        .comparison-table tbody tr:hover {
            background-color: var(--motiv-grey-50);
        }
        
        .comparison-table tbody td {
            padding: 1.25rem 1rem;
            border-top: 1px solid var(--motiv-grey-200);
            vertical-align: middle;
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .feature-name {
            font-size: 15px;
            color: var(--motiv-grey-800);
            display: flex;
            align-items: center;
        }
        
        .trendasist-cell {
            background: linear-gradient(135deg, rgba(40, 132, 255, 0.05), rgba(161, 98, 247, 0.05));
            text-align: center;
        }
        
        .competitor-cell {
            background: var(--motiv-grey-50);
            text-align: center;
        }
        
        .comparison-value {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--motiv-grey-700);
        }
        
        .trendasist-cell .comparison-value {
            color: var(--motiv-grey-800);
        }
        
        @media (max-width: 768px) {
            .comparison-table-wrapper {
                padding: 1rem;
                border-radius: 16px;
            }
            
            .comparison-table thead th {
                padding: 1rem 0.5rem;
                font-size: 14px;
            }
            
            .comparison-table tbody td {
                padding: 1rem 0.5rem;
                font-size: 14px;
            }
            
            .comparison-brand {
                font-size: 14px;
            }
            
            .badge-best {
                font-size: 10px;
                padding: 3px 8px;
            }
            
            .feature-name,
            .comparison-value {
                font-size: 13px;
            }
            
            .feature-name i,
            .comparison-value i {
                width: 16px !important;
                height: 16px !important;
            }
        }
        
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 100px;
            right: 20px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: pulse-whatsapp 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }
        
        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            color: white;
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 56px;
                height: 56px;
                bottom: 90px;
                right: 15px;
            }
        }
        
        /* Chat Bot Widget */
        .chatbot-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1001;
            font-family: 'Inter', sans-serif;
        }
        
        .chatbot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(40, 132, 255, 0.4);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(40, 132, 255, 0.6);
        }
        
        .chatbot-toggle .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            border: 2px solid white;
        }
        
        .chatbot-container {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 600px;
            max-height: 80vh;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideUp 0.3s ease;
            max-width: calc(100vw - 20px);
        }
        
        .chatbot-container.active {
            display: flex;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 20px 20px 0 0;
        }
        
        .chatbot-header-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .chatbot-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chatbot-header-text h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }
        
        .chatbot-header-text p {
            margin: 0;
            font-size: 12px;
            opacity: 0.9;
        }
        
        .chatbot-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }
        
        .chatbot-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .chatbot-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8f9fa;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .chatbot-message {
            display: flex;
            gap: 8px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .chatbot-message.bot {
            align-self: flex-start;
        }
        
        .chatbot-message.user {
            align-self: flex-end;
            flex-direction: row-reverse;
        }
        
        .message-bubble {
            max-width: 75%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .chatbot-message.bot .message-bubble {
            background: white;
            color: var(--motiv-grey-800);
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .chatbot-message.user .message-bubble {
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            border-bottom-right-radius: 4px;
        }
        
        .chatbot-input-container {
            padding: 16px;
            background: white;
            border-top: 1px solid var(--motiv-grey-200);
            display: flex;
            gap: 8px;
        }
        
        .chatbot-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid var(--motiv-grey-200);
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }
        
        .chatbot-input:focus {
            border-color: var(--motiv-blue-500);
        }
        
        .chatbot-send {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--motiv-blue-500), var(--motiv-purple-500));
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }
        
        .chatbot-send:hover {
            transform: scale(1.1);
        }
        
        .quick-questions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }
        
        .quick-question-btn {
            background: white;
            border: 1px solid var(--motiv-grey-200);
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 12px;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }
        
        .quick-question-btn:hover {
            background: var(--motiv-blue-50);
            border-color: var(--motiv-blue-500);
            color: var(--motiv-blue-500);
        }
        
        .typing-dots {
            display: inline-flex;
            gap: 4px;
        }
        
        .typing-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--motiv-grey-400);
            animation: typing 1.4s infinite;
        }
        
        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.7;
            }
            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }
        
        @media (max-width: 768px) {
            .chatbot-widget {
                right: 10px;
                bottom: 10px;
            }
            
            .chatbot-container {
                position: fixed;
                bottom: 80px;
                right: 10px;
                left: 10px;
                width: auto;
                max-width: calc(100vw - 20px);
                height: calc(100vh - 100px);
                max-height: 80vh;
                border-radius: 16px;
            }
            
            .chatbot-toggle {
                width: 56px;
                height: 56px;
                right: 10px;
                bottom: 10px;
            }
            
            .whatsapp-float {
                bottom: 80px;
                right: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .chatbot-container {
                right: 5px;
                left: 5px;
                max-width: calc(100vw - 10px);
                bottom: 70px;
            }
            
            .chatbot-toggle {
                width: 50px;
                height: 50px;
                right: 5px;
                bottom: 5px;
            }
            
            .whatsapp-float {
                bottom: 70px;
                right: 5px;
                width: 50px;
                height: 50px;
            }
        }
        
        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
