/* ========================================
           GLOBAL STYLES & RESET
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dozi-turquoise: #40E0D0;
            --dozi-pink: #FF6B9D;
            --dozi-coral: #FF8B94;
            --dozi-blue: #4A90E2;
            --dozi-light-blue: #E8F4F8;
            --dozi-dark: #0A1628;
            --dozi-gray: #64748B;
            --dozi-purple: #8B7FFF;
            --dozi-yellow: #FFD93D;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dozi-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: #fff;
        }

        /* ========================================
           ANIMATED BACKGROUND
           ======================================== */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float-blob 20s ease-in-out infinite;
        }

        .blob1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--dozi-turquoise), var(--dozi-blue));
            top: -200px;
            left: -100px;
            animation-delay: 0s;
        }

        .blob2 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--dozi-pink), var(--dozi-coral));
            top: 50%;
            right: -150px;
            animation-delay: 2s;
        }

        .blob3 {
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, var(--dozi-purple), var(--dozi-blue));
            bottom: -100px;
            left: 30%;
            animation-delay: 4s;
        }

        .blob4 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--dozi-yellow), var(--dozi-coral));
            top: 70%;
            right: 20%;
            animation-delay: 6s;
        }

        @keyframes float-blob {

            0%,
            100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            25% {
                transform: translate(50px, -50px) scale(1.1) rotate(90deg);
            }

            50% {
                transform: translate(0, -100px) scale(0.9) rotate(180deg);
            }

            75% {
                transform: translate(-50px, -50px) scale(1.05) rotate(270deg);
            }
        }

        /* ========================================
           NAVIGATION BAR
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(64, 224, 208, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 40px rgba(64, 224, 208, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 80px;
            transition: height 0.3s ease;
        }

        .navbar.scrolled .logo img {
            height: 60px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--dozi-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--dozi-turquoise), var(--dozi-pink));
            transition: all 0.3s;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--dozi-turquoise);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 50%, var(--dozi-purple) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 8s ease infinite;
        }

        @keyframes gradient-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            color: var(--dozi-gray);
            margin-bottom: 1rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--dozi-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(64, 224, 208, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--dozi-dark);
            font-weight: 500;
            border: 1px solid rgba(64, 224, 208, 0.2);
            transition: all 0.3s;
        }

        .hero-badge:hover {
            background: rgba(64, 224, 208, 0.15);
            transform: translateY(-2px);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-blue) 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(64, 224, 208, 0.4);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(64, 224, 208, 0.6);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: var(--dozi-turquoise);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            border: 2px solid var(--dozi-turquoise);
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(64, 224, 208, 0.2);
        }

        .btn-secondary:hover {
            background: var(--dozi-turquoise);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(64, 224, 208, 0.4);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mascot-container {
            position: relative;
            animation: float-mascot 6s ease-in-out infinite;
        }

        @keyframes float-mascot {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .mascot-container img {
            width: 100%;
            max-width: 450px;
            height: auto;
            filter: drop-shadow(0 25px 50px rgba(64, 224, 208, 0.4));
            transition: filter 0.3s;
        }

        .mascot-container:hover img {
            filter: drop-shadow(0 30px 60px rgba(64, 224, 208, 0.5));
        }

        .mascot-container::before,
        .mascot-container::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            z-index: -1;
        }

        .mascot-container::before {
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(64, 224, 208, 0.1) 0%, transparent 70%);
            animation: pulse-circle 4s ease-in-out infinite;
        }

        .mascot-container::after {
            width: 140%;
            height: 140%;
            background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
            animation: pulse-circle 4s ease-in-out infinite 2s;
        }

        @keyframes pulse-circle {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        /* ========================================
           SCROLL ANIMATIONS
           ======================================== */
        .fade-in-section {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           FEATURES SECTION
           ======================================== */
        .features {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 244, 248, 0.6) 100%);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--dozi-gray);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 0.08;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(64, 224, 208, 0.3);
            border-color: var(--dozi-turquoise);
        }

        .feature-card>* {
            position: relative;
            z-index: 1;
        }

        .feature-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            transition: transform 0.4s;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .feature-card:hover .feature-image {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dozi-dark);
        }

        .feature-card p {
            color: var(--dozi-gray);
            line-height: 1.8;
        }

        /* ========================================
           STATS SECTION
           ======================================== */
        .stats {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--dozi-dark) 0%, #1a2744 100%);
            color: white;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
        }

        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* ========================================
           TESTIMONIALS SECTION
           ======================================== */
        .testimonials {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, rgba(232, 244, 248, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
        }

        .testimonial-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(64, 224, 208, 0.2);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .testimonial-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: var(--dozi-gray);
            font-size: 0.9rem;
        }

        .stars {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--dozi-gray);
            line-height: 1.8;
            font-style: italic;
        }

        /* ========================================
           DOWNLOAD SECTION
           ======================================== */
        .download {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--dozi-dark) 0%, #1a2744 100%);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .download::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(64, 224, 208, 0.15) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            animation: pulse 5s ease-in-out infinite;
        }

        .download-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .download h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .download p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .store-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: white;
            color: var(--dozi-dark);
            padding: 1rem 2rem;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .store-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .store-icon {
            font-size: 2.5rem;
        }

        /* ========================================
           FOOTER
           ======================================== */
        footer {
            background: linear-gradient(135deg, var(--dozi-dark) 0%, #0f1f3d 100%);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--dozi-turquoise);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo img {
            height: 60px;
        }

        .footer-section p {
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--dozi-turquoise);
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* ========================================
           SCREENSHOT CAROUSEL
           ======================================== */
        .screenshots {
            padding: 6rem 2rem;
            background: white;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .carousel-track {
            position: relative;
            width: 100%;
            height: 600px;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            text-align: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .screenshot-caption {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dozi-dark);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
            z-index: 10;
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(64, 224, 208, 0.5);
        }

        .carousel-btn.prev {
            left: -60px;
        }

        .carousel-btn.next {
            right: -60px;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 2rem;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--dozi-turquoise);
            width: 30px;
            border-radius: 6px;
        }

        /* ========================================
           FAQ SECTION
           ======================================== */
        .faq {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 244, 248, 0.6) 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(64, 224, 208, 0.15);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: var(--dozi-light-blue);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dozi-dark);
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--dozi-turquoise);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--dozi-gray);
            line-height: 1.8;
            margin: 0;
        }

        .faq-answer a {
            color: var(--dozi-turquoise);
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* ========================================
           STICKY CTA BUTTON
           ======================================== */
        .sticky-cta {
            position: fixed;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            transition: bottom 0.4s ease-out;
        }

        .sticky-cta.show {
            bottom: 30px;
        }

        .sticky-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            box-shadow: 0 10px 40px rgba(64, 224, 208, 0.5);
            transition: all 0.3s;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .sticky-cta-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 50px rgba(64, 224, 208, 0.7);
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 10px 40px rgba(64, 224, 208, 0.5);
            }

            50% {
                box-shadow: 0 10px 40px rgba(255, 107, 157, 0.5);
            }
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subtitle {
                font-size: 1.1rem;
            }

            .hero-badges {
                justify-content: center;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .mascot-container img {
                max-width: 300px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .stat-item h3 {
                font-size: 3rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .blob1,
            .blob2,
            .blob3,
            .blob4 {
                width: 300px;
                height: 300px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }

            .carousel-track {
                height: 500px;
            }

            .sticky-cta-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-icon {
    font-size: 3rem;
}

.cookie-text h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: var(--dozi-dark);
}

.cookie-text p {
    margin: 0;
    color: var(--dozi-gray);
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--dozi-turquoise);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-blue) 100%);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4);
}

.cookie-reject {
    background: #e9ecef;
    color: var(--dozi-dark);
}

.cookie-reject:hover {
    background: #dee2e6;
}

.cookie-customize {
    background: white;
    color: var(--dozi-turquoise);
    border: 2px solid var(--dozi-turquoise);
}

.cookie-customize:hover {
    background: var(--dozi-turquoise);
    color: white;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dozi-gray);
    transition: color 0.3s;
}

.cookie-modal-close:hover {
    color: var(--dozi-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dozi-light-blue);
    border-radius: 15px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dozi-gray);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--dozi-turquoise);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-policy-link {
    color: var(--dozi-turquoise);
    text-decoration: none;
    font-weight: 500;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 244, 248, 0.6) 100%);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.comparison-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.comparison-card.featured {
    border: 3px solid var(--dozi-turquoise);
    transform: scale(1.05);
}

.comparison-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dozi-dark);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: var(--dozi-gray);
}

.plan-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dozi-gray);
}

.check {
    color: var(--dozi-turquoise);
    font-size: 1.2rem;
    font-weight: 700;
}

.cross {
    color: #dee2e6;
    font-size: 1.2rem;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--dozi-turquoise);
    color: var(--dozi-turquoise);
    background: white;
}

.plan-btn:hover {
    background: var(--dozi-turquoise);
    color: white;
    transform: translateY(-2px);
}

.plan-btn.premium {
    background: linear-gradient(135deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
    color: white;
    border: none;
}

.plan-btn.premium:hover {
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.4);
}

/* ========================================
   ROADMAP
   ======================================== */
.roadmap {
    padding: 6rem 2rem;
    background: white;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--dozi-turquoise) 0%, var(--dozi-pink) 100%);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    z-index: 1;
}

.roadmap-content {
    flex: 1;
    background: var(--dozi-light-blue);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.roadmap-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.15);
}

.roadmap-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: var(--dozi-dark);
}

.roadmap-content p {
    margin: 0 0 1rem;
    color: var(--dozi-gray);
}

.roadmap-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.completed-status {
    background: #d4edda;
    color: #155724;
}

.progress-status {
    background: #fff3cd;
    color: #856404;
}

.planned-status {
    background: #d1ecf1;
    color: #0c5460;
}

@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-card.featured {
        transform: scale(1);
    }

    .comparison-card.featured:hover {
        transform: translateY(-10px);
    }

    .roadmap-container::before {
        left: 20px;
    }

    .roadmap-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .roadmap-item {
        gap: 1rem;
    }
}


/* ========================================
   LOADING ANIMATION
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-mascot img {
    width: 120px;
    margin-bottom: 20px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dozi-dark);
    margin-bottom: 15px;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: var(--dozi-light-blue);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--dozi-turquoise), var(--dozi-blue));
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(64, 224, 208, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dozi-gray);
    font-size: 0.9rem;
    padding: 2px 5px;
    transition: all 0.3s;
}

.lang-btn.active {
    color: var(--dozi-turquoise);
}

.lang-divider {
    color: #cbd5e1;
    font-size: 0.8rem;
}

.lang-btn:hover {
    color: var(--dozi-dark);
}

