.mobile-menu>ul>li:nth-child(4) {
    border-radius: 50%;
    margin-top: -30px;
    box-shadow: 0 10px 2px black;
    z-index: 9999;
    background-color: var(--accent1);
    transition: all .2s ease-in-out;
}

.mobile-menu>ul>li:hover {
    border-radius: 0;
    margin-top: 0;
}

.mobile-menu>ul>li:nth-child(4)>a {
    color: var(--white-s);
}




/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Content Sections */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px 70px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.5s forwards;
    text-shadow: 0 3px 10px rgba(92, 46, 145, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
    line-height: 1.6;
}

/* Animated Cards */
.service-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 70px 60px;
    margin-bottom: 60px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(92, 46, 145, 0.25);
}

.service-card h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-align: center;
}

.service-card h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Redesign Stats */
.redesign-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    background: linear-gradient(145deg, rgba(92, 46, 145, 0.1), rgba(92, 46, 145, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(92, 46, 145, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(92, 46, 145, 0.3), transparent 30%);
    animation: rotate 6s linear infinite;
}

.stat-item>* {
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(92, 46, 145, 0.2);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(92, 46, 145, 0.3));
}

/* Warning Signs */
.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.warning {
    background: linear-gradient(135deg, rgba(255, 76, 48, 0.1), rgba(255, 76, 48, 0.05));
    padding: 30px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 76, 48, 0.3);
    transition: all 0.4s ease;
}

.warning:hover {
    transform: translateY(-8px);
    border-color: #ff4c30;
    box-shadow: 0 10px 20px rgba(255, 76, 48, 0.15);
}

.warning h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff4c30;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.before-after {
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.before {
    background: linear-gradient(135deg, rgba(255, 76, 48, 0.1), rgba(255, 76, 48, 0.05));
    border: 1px solid rgba(255, 76, 48, 0.3);
}

.after {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.before-after:hover {
    transform: translateY(-10px);
}

.before h3 {
    color: #ff4c30;
    margin-bottom: 25px;
}

.after h3 {
    color: #22c55e;
    margin-bottom: 25px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateX(15px);
    border-color: rgba(92, 46, 145, 0.3);
    box-shadow: 0 10px 20px rgba(92, 46, 145, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    color: var(--white-s);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    padding: 40px 35px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(92, 46, 145, 0.15);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    padding: 100px 60px;
    text-align: center;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(92, 46, 145, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z" fill="white"/></svg>') repeat;
    animation: float 25s linear infinite;
}

.cta-section h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* FAQ Section */
.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    padding: 40px 35px;
    margin-bottom: 25px;
    border-right: 4px solid rgba(92, 46, 145);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(92, 46, 145, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.faq-item:hover::before {
    transform: translateX(100%);
}

.faq-item:hover {
    transform: translateX(15px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item h4::before {
    content: '🔥';
    font-size: 1.4rem;
}

/* Buttons */
.btn-glow {
    background: var(--gradient);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(92, 46, 145, 0.3);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 20px rgba(92, 46, 145, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .service-card {
        padding: 60px 50px;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .redesign-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .warning-signs {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 50px 40px;
    }

    .cta-section {
        padding: 60px 30px;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .redesign-stats {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 30px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}