/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/LandingPage.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.LandingPage_landingContainer__rJgC_ {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at top center, #f0fdf4 0%, #ffffff 60%, #f0f9ff 100%);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
.LandingPage_landingContainer__rJgC_::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#22c55e 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Navbar specific for LP */
.LandingPage_nav__NV7Br {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.LandingPage_logo__q5sve {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.LandingPage_navLinks___paFF {
    display: flex;
    gap: 1rem;
}

.LandingPage_loginBtn__EnAkZ {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.LandingPage_loginBtn__EnAkZ:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.LandingPage_ctaBtnSmall__27tUY {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.LandingPage_ctaBtnSmall__27tUY:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
}

/* Hero Section */
.LandingPage_hero__kVC1o {
    padding: 3rem 2rem 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes LandingPage_fadeInUp__sJbew {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes LandingPage_float__blMom {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

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

@keyframes LandingPage_pulse-glow__nlJI0 {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.LandingPage_animFadeIn__2H_Bs {
    animation: LandingPage_fadeInUp__sJbew 0.8s ease-out forwards;
    opacity: 0;
}

.LandingPage_delay1__3bgQg {
    animation-delay: 0.1s;
}

.LandingPage_delay2__Q6tfM {
    animation-delay: 0.2s;
}

.LandingPage_delay3__hNKt9 {
    animation-delay: 0.3s;
}

.LandingPage_heroTag__fPGt4 {
    background: rgba(220, 252, 231, 0.8);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.LandingPage_heroTitle__RdZYm {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.LandingPage_heroHighlight__RglvM {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.LandingPage_heroSubtitle__TYRsZ {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 650px;
    line-height: 1.6;
}

.LandingPage_heroButtons__V_IX5 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.LandingPage_ctaBtn___HkJp {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
    animation: LandingPage_pulse-glow__nlJI0 2s infinite;
}

.LandingPage_ctaBtn___HkJp::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: 0.5s;
}

.LandingPage_ctaBtn___HkJp:hover::before {
    left: 100%;
}

.LandingPage_ctaBtn___HkJp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.5);
}

.LandingPage_ctaBtnOutline___CI3R {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    color: var(--text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.LandingPage_ctaBtnOutline___CI3R:hover {
    border-color: var(--text);
    background: white;
    transform: translateY(-2px);
}

/* Video Section */
.LandingPage_videoWrapper__X2JkN {
    width: 100%;
    max-width: 800px;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.LandingPage_videoContainer__bOa56 {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.LandingPage_videoContainer__bOa56:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 60px 120px rgba(34, 197, 94, 0.15);
}

.LandingPage_videoIframe__OfXqt {
    width: 100%;
    height: 100%;
    border: none;
}


/* Floating Elements */
.LandingPage_floatingElement__U4Io0 {
    position: absolute;
    font-size: 3rem;
    animation: LandingPage_float__blMom 6s ease-in-out infinite;
    z-index: 0;
    opacity: 0.7;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.LandingPage_float1__oTzNE {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 4rem;
}

.LandingPage_float2__Y_X5_ {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 3.5rem;
}

.LandingPage_float3___V3c4 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    font-size: 2.5rem;
}

.LandingPage_float4__WbvW0 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1s;
    font-size: 3rem;
}

/* Features Grid */
.LandingPage_features__ZHQ9S {
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    position: relative;
}

.LandingPage_sectionTitle__vq2QD {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.LandingPage_sectionTitle__vq2QD::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
}

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

.LandingPage_card___idiZ {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.LandingPage_card___idiZ:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.LandingPage_cardIcon__iIIxH {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.LandingPage_cardTitle__EARjV {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.LandingPage_cardText__UcbBX {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Pricing */
.LandingPage_pricing__R8_Nh {
    padding: 3rem 2rem;
    background: radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    position: relative;
}

.LandingPage_pricingGrid__iqMR1 {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.LandingPage_pricingCard__5c32t {
    background: #ffffff;
    padding: 3rem;
    border-radius: 32px;
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.LandingPage_pricingCard__5c32t:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.LandingPage_pricingCard__5c32t.LandingPage_featured__iMF3m {
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.LandingPage_badge__ev0p0 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.LandingPage_price__NPcLx {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text);
    margin: 2rem 0 1rem;
    letter-spacing: -2px;
    line-height: 1;
}

.LandingPage_price__NPcLx span {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0;
    vertical-align: middle;
}

.LandingPage_featuresList__2lIPZ {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.LandingPage_featuresList__2lIPZ li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 1.05rem;
}

.LandingPage_check__RPChk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #059669;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.1);
}

/* Footer */
.LandingPage_footer__B26K6 {
    text-align: center;
    padding: 2rem 2rem;
    background: white;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .LandingPage_nav__NV7Br {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .LandingPage_navLinks___paFF {
        width: 100%;
        justify-content: center;
    }

    .LandingPage_hero__kVC1o {
        padding: 4rem 1.5rem 3rem;
    }

    .LandingPage_heroTitle__RdZYm {
        font-size: 2.2rem;
    }

    .LandingPage_heroSubtitle__TYRsZ {
        font-size: 1.1rem;
    }

    .LandingPage_heroButtons__V_IX5 {
        flex-direction: column;
        width: 100%;
    }

    .LandingPage_ctaBtn___HkJp,
    .LandingPage_ctaBtnOutline___CI3R {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .LandingPage_features__ZHQ9S {
        padding: 3rem 1.5rem;
    }

    .LandingPage_sectionTitle__vq2QD {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .LandingPage_pricing__R8_Nh {
        padding: 3rem 1.5rem;
    }

    .LandingPage_pricingCard__5c32t.LandingPage_featured__iMF3m {
        transform: scale(1);
        margin-top: 1rem;
    }

    .LandingPage_floatingElement__U4Io0 {
        opacity: 0.3;
        font-size: 2rem;
        /* Make them smaller but keep them */
    }

    .LandingPage_float1__oTzNE {
        top: 10%;
        left: 5%;
        font-size: 2.5rem;
    }

    .LandingPage_float2__Y_X5_ {
        right: 5%;
    }

    .LandingPage_float3___V3c4 {
        display: none;
    }

    /* Hide lower ones */
    .LandingPage_float4__WbvW0 {
        display: none;
    }
}

/* FAQ Section */
.LandingPage_faq__CF8Cb {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.LandingPage_faqList__epPO_ {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.LandingPage_faqItem__faDJw {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.LandingPage_faqItem__faDJw:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
}

.LandingPage_faqQuestion__6chu5 {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.LandingPage_faqItem__faDJw:hover .LandingPage_faqQuestion__6chu5 {
    color: var(--primary-dark);
}

.LandingPage_faqAnswer__b1XJD {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.4);
}

.LandingPage_faqItem__faDJw[data-active="true"] .LandingPage_faqAnswer__b1XJD {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.LandingPage_answerInner__UHD9I {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.LandingPage_faqIcon__bZfDb {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.LandingPage_faqItem__faDJw[data-active="true"] .LandingPage_faqIcon__bZfDb {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .LandingPage_faq__CF8Cb {
        padding: 4rem 1.5rem;
    }

    .LandingPage_faqQuestion__6chu5 {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .LandingPage_answerInner__UHD9I {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
}
