/* ======================================================================= */
/* GLOBAL STYLES                                                           */
/* ======================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #1E1E1E;
    background: #FFFFFF;
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
    transition: .2s ease;
}

/* ======================================================================= */
/* HERO                                                                    */
/* ======================================================================= */

.hero-content h1:focus {
    outline: none !important;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #fff;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* CTAs */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cta-btn {
    background: #3A7DFF;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    transition: .2s ease;

    
}

    .cta-btn:hover {
        background: #2F6AE6;
    }

.demo-cta {
    margin-top: 20px;
}


.secondary-btn {
    padding: 13px 30px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(6px);
}

    .secondary-btn:hover {
        background: rgba(255,255,255,0.2);
    }

.trusted-by {
    margin-top: 20px;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* MOBILE HERO */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 20px 90px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }
}


/* ======================================================================= */
/* FEATURES                                                                */
/* ======================================================================= */

.features-section {
    padding: 120px 20px;
    text-align: center;
}

    .features-section h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #121A26;
        margin-bottom: 12px;
    }

.features-sub {
    color: #576273;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #FAFCFF;
    border: 1px solid #E6ECF5;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: left;
    transition: .2s ease;
}

    .feature-card:hover {
        border-color: #3A7DFF;
        background: white;
    }

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #3A7DFF;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4E5968;
    line-height: 1.55;
}

/* MOBILE FEATURES */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 16px;
    }
}




/* =========================== */
/* VIDEO DEMO SECTION          */
/* =========================== */

.video-demo-section {
    padding: 140px 20px;
    background: #ffffff;
    text-align: center;
}

.video-demo-inner {
    max-width: 900px;
    margin: 0 auto;
}

.video-demo-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #121A26;
    margin-bottom: 12px;
}

.video-demo-sub {
    font-size: 1.15rem;
    color: #4E5968;
    margin-bottom: 50px;
}

/* Responsive YouTube container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}


.cta-urgency {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ffcc66;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    animation: pulseGlow 2.2s infinite;
}

.urgency-icon {
    font-size: 1.1rem;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.urgency-sub {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Subtle pulse — not annoying */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.35);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}



    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-demo-caption {
    margin-top: 18px;
    font-size: 0.95rem;
    color: #6B7280;
}



/* ============================== */
/* ONBOARDING / SIGNUP STEPS      */
/* ============================== */

.onboarding-section {
    padding: 100px 20px;
    background: #f8fafc;
    color: #121A26;
}

.onboarding-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.onboarding-section h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.onboarding-sub {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #4a5568;
}

/* Steps Grid */
.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Individual Step */
.onboarding-step {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .onboarding-step:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 26px rgba(0,0,0,0.12);
    }

/* Step number badge */
.step-number {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #258CFB, #1c72d6);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(37, 140, 251, 0.3);
}

.onboarding-step h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #121A26;
}

.onboarding-step p {
    font-size: 1rem;
    color: #49525d;
    line-height: 1.5;
}


/* ====================================================== */
/* SCREENSHOTS SECTION                                    */
/* ====================================================== */

.screens-sub {
    color: #4E5968;
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.screens-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.screen-card {
    text-align: center;
}

.screen-frame {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border: 1px solid #E6ECF5;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .screen-frame img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

.screen-card:hover .screen-frame {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.14);
}

.screen-card h4 {
    margin-top: 18px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #121A26;
}

.screen-card p {
    margin-top: 6px;
    font-size: 1.05rem;
    color: #4E5968;
    line-height: 1.55;
}

/* MOBILE */
@media (max-width: 900px) {
    .screens-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}



/* ======================================================================= */
/* SCREENS / OVERVIEW SECTION                                              */
/* ======================================================================= */

.screens-section {
    padding: 140px 20px;
    background: #F7F9FC;
    text-align: center;
}

.screens-inner {
    max-width: 900px;
    margin: 0 auto;
}

    .screens-inner h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 14px;
        color: #121A26;
    }

    .screens-inner p {
        color: #4E5968;
        font-size: 1.15rem;
        margin-bottom: 26px;
    }

.screens-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 25px;
}

    .screens-list li {
        margin-bottom: 12px;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #1e2a38;
    }

    .screens-list span {
        color: #3A7DFF;
    }


/* ======================================================================= */
/* COMPARISON TABLE                                                        */
/* ======================================================================= */

/* =============================== */
/* Modern Comparison Cards Section */
/* =============================== */

.comparison-wrapper {
    padding: 140px 20px;
    background: #F7F9FC;
    text-align: center;
}

.comparison-cards {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.compare-item {
    background: white;
    padding: 32px 26px;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.06);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .compare-item:hover {
        transform: translateY(-6px);
        box-shadow: 0px 16px 38px rgba(0,0,0,0.10);
    }

.compare-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.compare-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .compare-icon svg {
        width: 22px;
        height: 22px;
    }

    .compare-icon.success {
        background: rgba(39,196,107,0.15);
        color: #27C46B;
    }

.compare-item h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #1E2A38;
    font-weight: 600;
}

.compare-text {
    color: #546070;
    font-size: 1.05rem;
    line-height: 1.55;
}


/* MOBILE COMPARISON */
@media (max-width: 768px) {

    .comparison-table {
        grid-template-columns: 1fr 1fr;
    }

    /* Hide extra columns */
    .comp-col:nth-child(n+3),
    .comp-label:nth-child(n+3),
    .comp-yes:nth-child(n+3),
    .comp-no:nth-child(n+3) {
        display: none;
    }
}


/* ======================================================================= */
/* TESTIMONIALS                                                            */
/* ======================================================================= */

.testimonial-section {
    padding: 130px 20px;
    background: #F7F9FC;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

    .testimonial-content h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        color: #121A26;
    }

.test-sub {
    color: #5C6773;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.testimonial-card-new {
    width: 300px;
    background: white;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #E7ECF4;
}

.t-avatar {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    margin-bottom: 14px;
}

.t-text {
    color: #384150;
    line-height: 1.55;
    margin-bottom: 12px;
}

.t-author {
    font-weight: 600;
    color: #3A7DFF;
}


/* ====================================================== */
/* Modern Premium FAQ                                     */
/* ====================================================== */

.faq {
    padding: 120px 20px;
    background: #FFFFFF;
}

    .faq h2 {
        text-align: center;
        font-size: 2.4rem;
        margin-bottom: 40px;
        color: #121A26;
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid #E1E6EF;
    background: #FAFCFF;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}

    .faq-item.open {
        border-color: #3A7DFF;
        box-shadow: 0px 8px 22px rgba(58, 125, 255, 0.15);
    }

.faq-question {
    width: 100%;
    padding: 22px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E2A38;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.4rem;
    color: #3A7DFF;
    transition: transform .25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height .3s ease, padding .2s ease;
}

.faq-item.open .faq-answer {
    padding: 0 22px 22px; /* restore padding when open */
}


.faq-answer p {
    margin: 0;
    color: #4E5968;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Open state - expanded height is animated via JS */



.pricing-extras {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
}

/* BENEFITS */
.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 60px;
}

.benefit {
    background: #FAFCFF;
    border: 1px solid #E6ECF5;
    padding: 28px;
    border-radius: 14px;
    width: 260px;
    transition: 0.25s ease;
}

    .benefit:hover {
        transform: translateY(-5px);
        border-color: #3A7DFF;
    }

.benefit-icon {
    width: 55px;
    height: 55px;
    background: #3A7DFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin: 0 auto 14px;
}

.benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

/* GUARANTEE BOX */
.guarantee-box {
    margin: 50px auto;
    padding: 20px 30px;
    background: #EFF4FF;
    border: 1px solid #C8D6FF;
    border-radius: 12px;
    font-size: 1.1rem;
    max-width: 700px;
    color: #1A2B44;
}

.g-icon {
    font-size: 1.4rem;
    margin-right: 8px;
}

/* WHO IS THIS FOR */
.who-for {
    margin-top: 70px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

    .who-for h3 {
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 18px;
        color: #1A2B44;
    }

    .who-for ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #4E5968;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .who-for li {
        text-align: center;
    }

/* FINAL CTA */
.pricing-cta {
    margin-top: 80px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A2B44;
}



.pricing-section {
    background: #F7F9FC;
}

    .pricing-section h2 {
        color: #121A26;
    }




/* ======================================================================= */
/* FOOTER                                                                  */
/* ======================================================================= */

.footer {
    padding: 60px 20px 40px;
    background: #1E1E1E;
    color: #BFD1E0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #CBD5E1;
}

    .footer-col a:hover {
        color: #3A7DFF;
    }

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: .9rem;
    opacity: .65;
}



/* ====================================================== */
/* BEAUTIFUL 404 PAGE                                      */
/* ====================================================== */

.notfound-container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.notfound-content {
    text-align: center;
    max-width: 500px;
    padding: 60px 40px;
    border-radius: 18px;
    background: #FAFCFF;
    border: 1px solid #E6ECF5;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.05);
}

    .notfound-content h1 {
        font-size: 5rem;
        margin: 0;
        font-weight: 800;
        color: #3A7DFF;
    }

    .notfound-content h2 {
        font-size: 1.9rem;
        margin-top: 10px;
        margin-bottom: 10px;
        color: #121A26;
        font-weight: 700;
    }

    .notfound-content p {
        font-size: 1.05rem;
        color: #546070;
        margin-bottom: 30px;
    }

.notfound-btn {
    display: inline-block;
    background: #3A7DFF;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.2s ease;
}

    .notfound-btn:hover {
        background: #2F6AE6;
    }




#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.local-service-area {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
}

.local-badge {
    display: inline-block;
    background: rgba(58, 125, 255, 0.15);
    color: #3A7DFF;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.local-service-area p {
    max-width: 700px;
    margin: 0 auto;
    color: #4E5968;
    font-size: 1.15rem;
    line-height: 1.6;
}



/* SCROLL ANIMATIONS – LEFT / RIGHT STAGGER */
.animate-left, .animate-right, .animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.animate-visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

/* SECTION OFFSET BACKGROUNDS */
.section-alt {
    background: #F5F8FF;
    border-top: 1px solid #E8EEF6;
    border-bottom: 1px solid #E8EEF6;
}

/* CONTENT CONTAINER WITH SOFT SHADOW */
.content-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* SPACING UTILITIES */
.section-offset {
    padding: 140px 20px;
}


/* ========================= */
/* IMAGE LIGHTBOX            */
/* ========================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

    .lightbox img {
        max-width: 92%;
        max-height: 92%;
        border-radius: 10px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: 300;
}

