        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
            padding-top: 50px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: visible;
            position: relative;
            z-index: 1;
        }

        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

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

        header {
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            border-bottom: none;
            transition: all 0.3s ease;
            overflow: visible;
            min-height: 70px;
        }

        header.scrolled {
            padding: 10px 0;
        }

        header.scrolled .header-container {
            padding: 8px 20px;
        }

        header.scrolled .logo-icon {
            width: 32px;
            height: 32px;
        }

        header.scrolled .logo-text {
            font-size: 22px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(147, 51, 234, 0.2);
            border-radius: 25px;
            padding: 12px 24px;
            box-shadow: 0 8px 32px rgba(147, 51, 234, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible;
        }

        .header-container:hover {
            border-color: rgba(147, 51, 234, 0.3);
            box-shadow: 0 12px 48px rgba(147, 51, 234, 0.15);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
    width: 36px;
    height: 36px;
    background-image: url('https://i.ibb.co.com/bjNYD5FR/file-0000000012d8720693067fed497e7d82.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #9333ea, #c084fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-item.register {
            background: linear-gradient(135deg, #9333ea, #c084fc);
            color: white;
            border: 2px solid transparent;
        }

        .nav-item.login {
            background: transparent;
            color: #9333ea;
            border: 2px solid #9333ea;
        }

        .nav-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
        }

        .nav-item.login:hover {
            background: #9333ea;
            color: white;
        }

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

        .nav-item:hover::before {
            left: 100%;
        }

        .nav-icon {
            width: 18px;
            height: 18px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(147, 51, 234, 0.1);
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 3px;
            background: #9333ea;
            margin: 2px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hero {
            text-align: center;
            padding: 180px 0 60px;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideUp 1s ease-out 0.2s both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-section {
            padding: 60px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(147, 51, 234, 0.1);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #9333ea, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #9333ea;
            box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }

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

        .popular-badge {
            position: absolute;
            top: -1px;
            right: 30px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            color: white;
            padding: 8px 20px;
            border-radius: 0 0 10px 10px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #9333ea;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 5px;
            color: #1e293b;
        }

        .plan-period {
            color: #64748b;
            margin-bottom: 30px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .plan-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #64748b;
        }

        .plan-features li::before {
            content: '✓';
            color: #9333ea;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(147, 51, 234, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .cta-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .secondary-button {
            background: transparent;
            border: 2px solid #9333ea;
            color: #9333ea;
        }

        .secondary-button:hover {
            background: #9333ea;
            color: white;
        }

        .features-section {
            padding: 80px 0;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            padding: 35px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(147, 51, 234, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(147, 51, 234, 0.05);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #9333ea, transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(147, 51, 234, 0.3);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 40px rgba(147, 51, 234, 0.15);
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: iconShine 4s infinite;
        }

        @keyframes iconShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            25% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .feature-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
            z-index: 1;
            position: relative;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        footer {
            padding: 40px 0;
            text-align: center;
            color: #64748b;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: calc(100% - 10px);
                left: 10px;
                right: 10px;
                background: rgba(255, 255, 255, 0.98);
                border: 2px solid rgba(147, 51, 234, 0.2);
                border-top: 1px solid rgba(147, 51, 234, 0.1);
                border-radius: 20px;
                padding: 20px;
                flex-direction: column;
                gap: 12px;
                box-shadow: 0 8px 32px rgba(147, 51, 234, 0.15);
                transform: translateY(-10px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
                z-index: 998;
                margin-top: 0;
                overflow: visible;
            }
            
            .nav-menu.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            .mobile-menu-btn {
                display: flex;
                z-index: 1001;
                position: relative;
            }
            
            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .header-container {
                position: relative;
                overflow: visible;
                margin: 0 10px;
                padding: 10px 20px;
                z-index: 999;
            }
            
            .container {
                overflow: visible;
                position: relative;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card {
                padding: 30px;
            }

            body {
                overflow-x: visible;
            }
        }

        .glow {
            position: relative;
        }

        .glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, #9333ea, #c084fc);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover.glow::after {
            opacity: 0;
        }

.feedback-section {
    padding: 60px 0;
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feedback-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}
.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.3);
}
.feedback-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.feedback-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.feedback-name {
    font-weight: bold;
    color: #000;
    font-size: 1.05rem;
}
.feedback-role {
    font-size: 0.85rem;
    color: #808080;
}
.feedback-text {
    font-style: italic;
    color: #808080;
    margin: 10px 0;
    font-size: 0.95rem;
}
.feedback-stars {
    color: orange;
    font-size: 0.85rem;
}

.trusted-section {
    padding: 5px 0;
    text-align: center;
}

.trusted-box {
    display: inline-block;
    padding: 25px 50px;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    color: #9333ea;
    border-radius: 20px;
    border: 2px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trusted-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.trusted-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.3);
}

.trusted-box:hover::before {
    left: 100%;
}

#trusted-count {
    background: linear-gradient(135deg, #9333ea, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-start-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 14px 24px;
    background: linear-gradient(135deg, #9333ea, #c084fc);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
}

.cta-start-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.rocket-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#render-time {
    margin-left: 10px;
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.clock-icon {
    margin-right: 5px;
}

.loading {
    --uib-size: 35px;
    --uib-color: #9333ea;
    --uib-speed: .9s;
    --uib-stroke: 3.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--uib-size);
    width: var(--uib-size);
}

.line {
    position: absolute;
    top: calc(50% - var(--uib-stroke) / 2);
    left: 0;
    height: var(--uib-stroke);
    width: 100%;
    border-radius: calc(var(--uib-stroke) / 2);
    background-color: var(--uib-color);
    animation: rotate var(--uib-speed) ease-in-out infinite alternate;
    transition: background-color 0.3s ease;
}

.line:nth-child(1) {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.line:nth-child(2) {
    animation-delay: calc(var(--uib-speed) * -0.375);
    opacity: 0.8;
}

.line:nth-child(3) {
    animation-delay: calc(var(--uib-speed) * -0.3);
    opacity: 0.6;
}

.line:nth-child(4) {
    animation-delay: calc(var(--uib-speed) * -0.225);
    opacity: 0.4;
}

.line:nth-child(5) {
    animation-delay: calc(var(--uib-speed) * -0.15);
    opacity: 0.2;
}

.line:nth-child(6) {
    animation-delay: calc(var(--uib-speed) * -0.075);
    opacity: 0.1;
}

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

.faq-section {
  padding: 80px 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(147, 51, 234, 0.2);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #9333ea;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #64748b;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.support-section {
    padding: 80px 20px;
    background: white;
}

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

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.support-icon {
    color: #667eea;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.support-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.support-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.authenticated .mobile-menu-btn {
        display: none !important;
    }
    
    body.authenticated .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: all;
        margin-top: 0;
    }
    
    body.authenticated .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    body.authenticated .user-menu {
        display: inline-block;
        margin-left: auto;
    }
    
    body.authenticated .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    body.authenticated .dropdown-menu {
        right: 0;
        left: auto;
    }
}