/* /Components/Atoms/CtaButton.razor.rz.scp.css */
.cta-button[b-cqwqhmn36h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--font-size-base);
    line-height: 1;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.cta-button:hover[b-cqwqhmn36h] {
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button:active[b-cqwqhmn36h] {
    transform: translateY(0);
}

.cta-button--primary[b-cqwqhmn36h] {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.cta-button--primary:hover[b-cqwqhmn36h] {
    background-color: #20BD5A;
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.cta-button--hero[b-cqwqhmn36h] {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    font-size: var(--font-size-lg);
    padding: var(--space-5) var(--space-10);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.cta-button--hero:hover[b-cqwqhmn36h] {
    background-color: #20BD5A;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.cta-button--nav[b-cqwqhmn36h] {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-5);
    background-color: var(--whatsapp-green);
    color: #ffffff;
}

.cta-button--nav:hover[b-cqwqhmn36h] {
    background-color: #20BD5A;
    color: #ffffff;
}

.cta-button__icon[b-cqwqhmn36h] {
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .cta-button--hero[b-cqwqhmn36h] {
        font-size: var(--font-size-base);
        padding: var(--space-4) var(--space-6);
        width: 100%;
    }
}
/* /Components/Atoms/SectionBadge.razor.rz.scp.css */
.section-badge[b-6y7bbf0p1b] {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    background-color: rgba(27, 94, 32, 0.1);
    color: var(--green-dark);
}

.section-badge--light[b-6y7bbf0p1b] {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
/* /Components/Molecules/BenefitCard.razor.rz.scp.css */
.benefit-card[b-la5o9r8ryr] {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition);
}

.benefit-card:hover[b-la5o9r8ryr] {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--green-medium);
}

.benefit-card__icon[b-la5o9r8ryr] {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 94, 32, 0.08);
    border-radius: var(--radius-xl);
}

.benefit-card__icon :deep(svg)[b-la5o9r8ryr] {
    width: 24px;
    height: 24px;
    stroke: var(--green-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card__title[b-la5o9r8ryr] {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-1);
}

.benefit-card__text[b-la5o9r8ryr] {
    font-size: var(--font-size-sm);
    color: var(--foreground-muted);
    line-height: 1.5;
}
/* /Components/Molecules/FaqItem.razor.rz.scp.css */
.faq-item[b-vvjhgdyswf] {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover[b-vvjhgdyswf] {
    border-color: var(--green-medium);
}

.faq-item--open[b-vvjhgdyswf] {
    border-color: var(--green-medium);
    box-shadow: var(--shadow-sm);
}

.faq-item__question[b-vvjhgdyswf] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    transition: color var(--transition);
}

.faq-item__question:hover[b-vvjhgdyswf] {
    color: var(--green-dark);
}

.faq-item__chevron[b-vvjhgdyswf] {
    flex-shrink: 0;
    transition: transform var(--transition-slow);
    color: var(--foreground-muted);
}

.faq-item--open .faq-item__chevron[b-vvjhgdyswf] {
    transform: rotate(180deg);
    color: var(--green-dark);
}

.faq-item__answer[b-vvjhgdyswf] {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
    padding: 0 var(--space-6);
}

.faq-item--open .faq-item__answer[b-vvjhgdyswf] {
    max-height: 300px;
    padding: 0 var(--space-6) var(--space-5);
}

.faq-item__answer p[b-vvjhgdyswf] {
    font-size: var(--font-size-sm);
    color: var(--foreground-muted);
    line-height: 1.7;
}
/* /Components/Molecules/ProblemCard.razor.rz.scp.css */
.problem-card[b-l292s37xcu] {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition);
}

.problem-card:hover[b-l292s37xcu] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-medium);
}

.problem-card__icon[b-l292s37xcu] {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 94, 32, 0.08);
    border-radius: var(--radius-xl);
}

.problem-card__icon :deep(svg)[b-l292s37xcu] {
    width: 28px;
    height: 28px;
    stroke: var(--green-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card__title[b-l292s37xcu] {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-2);
}

.problem-card__text[b-l292s37xcu] {
    font-size: var(--font-size-sm);
    color: var(--foreground-muted);
    line-height: 1.6;
}
/* /Components/Molecules/SolutionCard.razor.rz.scp.css */
.solution-card[b-t3biij455q] {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition);
}

.solution-card:hover[b-t3biij455q] {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.solution-card__icon[b-t3biij455q] {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
}

.solution-card__icon :deep(svg)[b-t3biij455q] {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card__title[b-t3biij455q] {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-2);
}

.solution-card__text[b-t3biij455q] {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
/* /Components/Molecules/StepCard.razor.rz.scp.css */
.step-card[b-156iolyva6] {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.step-card__number[b-156iolyva6] {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--yellow);
    color: var(--green-dark);
    font-weight: 800;
    font-size: var(--font-size-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.step-card__icon[b-156iolyva6] {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}

.step-card__icon :deep(svg)[b-156iolyva6] {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card__title[b-156iolyva6] {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-2);
}

.step-card__text[b-156iolyva6] {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
/* /Components/Molecules/TestimonialCard.razor.rz.scp.css */
.testimonial-card[b-81pdcxd6n7] {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all var(--transition);
}

.testimonial-card:hover[b-81pdcxd6n7] {
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars[b-81pdcxd6n7] {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card__text[b-81pdcxd6n7] {
    font-size: var(--font-size-base);
    color: var(--foreground);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-6);
}

.testimonial-card__author[b-81pdcxd6n7] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-card__avatar[b-81pdcxd6n7] {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--green-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.testimonial-card__name[b-81pdcxd6n7] {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-card__role[b-81pdcxd6n7] {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--foreground-muted);
}
/* /Components/Molecules/WhatsAppChat.razor.rz.scp.css */
.wa-chat[b-usazb55aob] {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 360px;
    margin: 0 auto;
}

.wa-chat__header[b-usazb55aob] {
    background-color: var(--whatsapp-header);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.wa-chat__avatar[b-usazb55aob] {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: #ffffff;
    object-fit: contain;
}

.wa-chat__name[b-usazb55aob] {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.wa-chat__status[b-usazb55aob] {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
}

.wa-chat__body[b-usazb55aob] {
    background-color: var(--whatsapp-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9c9c9' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    min-height: 200px;
}

.wa-bubble[b-usazb55aob] {
    max-width: 85%;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    position: relative;
}

.wa-bubble p[b-usazb55aob] {
    margin: 0;
}

.wa-bubble--user[b-usazb55aob] {
    background-color: var(--whatsapp-light);
    align-self: flex-end;
    border-bottom-right-radius: var(--radius-sm);
}

.wa-bubble--bot[b-usazb55aob] {
    background-color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: var(--radius-sm);
}

.wa-bubble__time[b-usazb55aob] {
    display: block;
    text-align: right;
    font-size: 10px;
    color: var(--gray-light);
    margin-top: 2px;
}
/* /Components/Organisms/Navbar.razor.rz.scp.css */
.navbar[b-vz7tq3zlqr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    height: var(--navbar-height);
}

.navbar--scrolled[b-vz7tq3zlqr] {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar__inner[b-vz7tq3zlqr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-6);
}

.navbar__logo img[b-vz7tq3zlqr] {
    height: 38px;
    width: auto;
}

.navbar__links[b-vz7tq3zlqr] {
    display: none;
    align-items: center;
    gap: var(--space-6);
}

.navbar__links a[b-vz7tq3zlqr] {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--foreground-muted);
    transition: color var(--transition);
    white-space: nowrap;
}

.navbar__links a:hover[b-vz7tq3zlqr] {
    color: var(--green-dark);
}

[b-vz7tq3zlqr] .navbar__cta {
    display: none;
}

.navbar__hamburger[b-vz7tq3zlqr] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.navbar__hamburger span[b-vz7tq3zlqr] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all var(--transition);
    border-radius: 2px;
}

.navbar__hamburger--open span:nth-child(1)[b-vz7tq3zlqr] {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger--open span:nth-child(2)[b-vz7tq3zlqr] {
    opacity: 0;
}

.navbar__hamburger--open span:nth-child(3)[b-vz7tq3zlqr] {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__mobile[b-vz7tq3zlqr] {
    background-color: #ffffff;
    border-top: 1px solid var(--border);
    padding: var(--space-6) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
}

.navbar__mobile-links[b-vz7tq3zlqr] {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.navbar__mobile-links a[b-vz7tq3zlqr] {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius);
    transition: background-color var(--transition);
}

.navbar__mobile-links a:hover[b-vz7tq3zlqr] {
    background-color: var(--surface);
}

@media (min-width: 1024px) {
    .navbar__links[b-vz7tq3zlqr] {
        display: flex;
    }

    [b-vz7tq3zlqr] .navbar__cta {
        display: inline-flex;
    }

    .navbar__hamburger[b-vz7tq3zlqr] {
        display: none;
    }
}
/* /Components/Organisms/WhatsAppFab.razor.rz.scp.css */
.whatsapp-fab[b-0snor7o759] {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--transition);
}

.whatsapp-fab:hover[b-0snor7o759] {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 639px) {
    .whatsapp-fab[b-0snor7o759] {
        bottom: var(--space-4);
        right: var(--space-4);
        width: 54px;
        height: 54px;
    }
}
/* /Components/Pages/Landing/Home.razor.rz.scp.css */
/* ========== HERO ========== */
.hero[b-p963q14vus] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--navbar-height);
    overflow: hidden;
}

.hero__bg[b-p963q14vus] {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img[b-p963q14vus] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay[b-p963q14vus] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.92) 0%, rgba(27, 94, 32, 0.75) 50%, rgba(93, 64, 55, 0.6) 100%);
}

.hero__content[b-p963q14vus] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
    padding: var(--space-10) 0;
    text-align: center;
}

.hero__title[b-p963q14vus] {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    max-width: 700px;
}

.hero__highlight[b-p963q14vus] {
    display: block;
    color: var(--yellow);
    margin-top: var(--space-2);
}

.hero__subtitle[b-p963q14vus] {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.hero__phone[b-p963q14vus] {
    width: 100%;
    max-width: 280px;
}

.phone-mockup[b-p963q14vus] {
    background: #1a1a1a;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-mockup__screen[b-p963q14vus] {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

@media (min-width: 1024px) {
    .hero__content[b-p963q14vus] {
        flex-direction: row;
        text-align: left;
        padding: var(--space-16) 0;
    }

    .hero__text[b-p963q14vus] {
        flex: 1;
    }

    .hero__title[b-p963q14vus] {
        font-size: var(--font-size-5xl);
    }

    .hero__phone[b-p963q14vus] {
        max-width: 300px;
        flex-shrink: 0;
    }
}

/* ========== SECTION BASE ========== */
.section[b-p963q14vus] {
    padding: var(--space-16) 0;
}

.section--light[b-p963q14vus] {
    background-color: var(--background);
}

.section--green[b-p963q14vus] {
    background: linear-gradient(135deg, var(--green-dark) 0%, #2E7D32 100%);
}

.section--warm[b-p963q14vus] {
    background-color: var(--surface);
}

.section__header[b-p963q14vus] {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section__title[b-p963q14vus] {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-top: var(--space-3);
    margin-bottom: var(--space-3);
}

.section__title--light[b-p963q14vus] {
    color: #ffffff;
}

.section__subtitle[b-p963q14vus] {
    font-size: var(--font-size-lg);
    color: var(--foreground-muted);
    line-height: 1.6;
}

.section__subtitle--light[b-p963q14vus] {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .section[b-p963q14vus] {
        padding: var(--space-24) 0;
    }

    .section__title[b-p963q14vus] {
        font-size: var(--font-size-4xl);
    }
}

/* ========== PROBLEMS GRID ========== */
.problems-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .problems-grid[b-p963q14vus] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problems-grid[b-p963q14vus] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== SOLUTIONS GRID ========== */
.solutions-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .solutions-grid[b-p963q14vus] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solutions-grid[b-p963q14vus] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== DEMO GRID ========== */
.demo-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .demo-grid[b-p963q14vus] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== BENEFITS GRID ========== */
.benefits-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .benefits-grid[b-p963q14vus] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid[b-p963q14vus] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== TESTIMONIALS GRID ========== */
.testimonials-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .testimonials-grid[b-p963q14vus] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== STEPS GRID ========== */
.steps-grid[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-grid__arrow[b-p963q14vus] {
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
}

@media (min-width: 1024px) {
    .steps-grid[b-p963q14vus] {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }

    .steps-grid__arrow[b-p963q14vus] {
        display: flex;
    }
}

/* ========== CTA FINAL ========== */
.cta-final[b-p963q14vus] {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.cta-final__bg[b-p963q14vus] {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-final__bg img[b-p963q14vus] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-final__overlay[b-p963q14vus] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(93, 64, 55, 0.85) 100%);
}

.cta-final__content[b-p963q14vus] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-final__title[b-p963q14vus] {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--space-4);
}

.cta-final__subtitle[b-p963q14vus] {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .cta-final__title[b-p963q14vus] {
        font-size: var(--font-size-4xl);
    }
}

/* ========== FAQ LIST ========== */
.faq-list[b-p963q14vus] {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 720px;
    margin: 0 auto;
}

/* ========== VIDEO PLACEHOLDER ========== */
.video-placeholder[b-p963q14vus] {
    max-width: 720px;
    margin: 0 auto;
}

.video-placeholder__inner[b-p963q14vus] {
    aspect-ratio: 16 / 9;
    background-color: var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--foreground-muted);
}

.video-placeholder__inner svg[b-p963q14vus] {
    opacity: 0.5;
}

.video-placeholder__inner p[b-p963q14vus] {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer[b-p963q14vus] {
    background-color: var(--green-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: var(--space-16);
}

.footer__inner[b-p963q14vus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
}

.footer__brand img[b-p963q14vus] {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-3);
}

.footer__tagline[b-p963q14vus] {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer__col h4[b-p963q14vus] {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.footer__col ul[b-p963q14vus] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__col a[b-p963q14vus] {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__col a:hover[b-p963q14vus] {
    color: #ffffff;
}

.footer__bottom[b-p963q14vus] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-5) 0;
}

.footer__bottom p[b-p963q14vus] {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner[b-p963q14vus] {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
/* /Components/Templates/LandingLayout.razor.rz.scp.css */
.landing-layout[b-6tl3i2ij3o] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
