/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-lxf8pecxht] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-lxf8pecxht] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ez3f6601a8],
.components-reconnect-repeated-attempt-visible[b-ez3f6601a8],
.components-reconnect-failed-visible[b-ez3f6601a8],
.components-pause-visible[b-ez3f6601a8],
.components-resume-failed-visible[b-ez3f6601a8],
.components-rejoining-animation[b-ez3f6601a8] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-retrying[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-failed[b-ez3f6601a8],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ez3f6601a8] {
    display: block;
}


#components-reconnect-modal[b-ez3f6601a8] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ez3f6601a8 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ez3f6601a8 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ez3f6601a8 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ez3f6601a8]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ez3f6601a8 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ez3f6601a8 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ez3f6601a8 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ez3f6601a8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ez3f6601a8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ez3f6601a8] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ez3f6601a8] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ez3f6601a8] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ez3f6601a8] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ez3f6601a8] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ez3f6601a8] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ez3f6601a8 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ez3f6601a8] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ez3f6601a8 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-page[b-wmi1fks5yo] {
    min-height: 100vh;
    background: var(--fc-beige);
    padding: 4rem 2rem;
}

.privacy-container[b-wmi1fks5yo] {
    max-width: 720px;
    margin: 0 auto;
}

.back-link[b-wmi1fks5yo] {
    display: inline-block;
    color: var(--fc-green);
    font-size: 0.88rem;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

.back-link:hover[b-wmi1fks5yo] { opacity: 0.7; }

h1[b-wmi1fks5yo] {
    font-size: 2.25rem;
    color: var(--fc-text);
    margin-bottom: 0.5rem;
}

.last-updated[b-wmi1fks5yo] {
    color: var(--fc-text-muted);
    font-size: 0.88rem;
    margin-bottom: 3rem;
}

section[b-wmi1fks5yo] { margin-bottom: 2.5rem; }

h2[b-wmi1fks5yo] {
    font-size: 1.15rem;
    color: var(--fc-text);
    margin-bottom: 0.75rem;
}

p[b-wmi1fks5yo] {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--fc-text);
    margin-bottom: 0.75rem;
}

ul[b-wmi1fks5yo] { padding-left: 1.5rem; margin-bottom: 1rem; }

ul li[b-wmi1fks5yo] {
    list-style: disc;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--fc-text);
}

a[b-wmi1fks5yo] { color: var(--fc-green); }
a:hover[b-wmi1fks5yo] { text-decoration: underline; }

address[b-wmi1fks5yo] { font-style: normal; line-height: 1.8; margin-top: 0.5rem; }
/* /Components/Sections/About.razor.rz.scp.css */
.about-grid[b-o6kmzts1ew] {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-metric-card[b-o6kmzts1ew] {
    background: var(--fc-green-dark);
    border-radius: var(--fc-radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.metric-number[b-o6kmzts1ew] {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fc-green-light), #6fcfb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label[b-o6kmzts1ew] {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.75rem;
}

.about-badge[b-o6kmzts1ew] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    font-size: 0.85rem;
    color: var(--fc-text-light);
}

.badge-icon[b-o6kmzts1ew] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(1, 103, 81, 0.08);
    color: var(--fc-green);
    flex-shrink: 0;
}

.about-text[b-o6kmzts1ew] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--fc-text);
    margin-bottom: 1rem;
}

.about-highlights[b-o6kmzts1ew] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item[b-o6kmzts1ew] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.highlight-marker[b-o6kmzts1ew] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fc-green);
    flex-shrink: 0;
    margin-top: 8px;
}

.highlight-item strong[b-o6kmzts1ew] {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.highlight-item span[b-o6kmzts1ew] {
    font-size: 0.85rem;
    color: var(--fc-text-light);
}

@media (max-width: 768px) {
    .about-grid[b-o6kmzts1ew] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .metric-number[b-o6kmzts1ew] { font-size: 3.5rem; }
}
/* /Components/Sections/Contact.razor.rz.scp.css */
.contact-grid[b-vuv1zpuhlk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-intro[b-vuv1zpuhlk] {
    font-size: 1.05rem;
    color: var(--fc-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details[b-vuv1zpuhlk] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-style: normal;
    margin-bottom: 2rem;
}

.contact-item[b-vuv1zpuhlk] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-item svg[b-vuv1zpuhlk] {
    flex-shrink: 0;
    color: var(--fc-green);
    margin-top: 2px;
}

.contact-item div[b-vuv1zpuhlk] {
    display: flex;
    flex-direction: column;
}

.contact-item span[b-vuv1zpuhlk],
.contact-item a[b-vuv1zpuhlk] {
    font-size: 0.9rem;
    color: var(--fc-text);
    line-height: 1.5;
}

.contact-item a:hover[b-vuv1zpuhlk] {
    color: var(--fc-green);
}

.contact-legal[b-vuv1zpuhlk] {
    font-size: 0.8rem;
    color: var(--fc-text-muted);
    margin-bottom: 0.25rem;
}

.contact-response[b-vuv1zpuhlk] {
    font-size: 0.8rem;
    color: var(--fc-green);
    font-weight: 500;
}

.contact-form-card[b-vuv1zpuhlk] {
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .contact-grid[b-vuv1zpuhlk] {
        grid-template-columns: 1fr;
    }

    .contact-form-card[b-vuv1zpuhlk] {
        padding: 2rem;
    }
}
/* /Components/Sections/CookieConsent.razor.rz.scp.css */
.cookie-bar[b-zgz9wfmva0] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(10, 40, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-text[b-zgz9wfmva0] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    max-width: 520px;
    line-height: 1.5;
}

.cookie-btn[b-zgz9wfmva0] {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cookie-bar[b-zgz9wfmva0] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
        text-align: center;
    }
}
/* /Components/Sections/Footer.razor.rz.scp.css */
.footer[b-8c04inbwqi] {
    background: var(--fc-green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-top[b-8c04inbwqi] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo[b-8c04inbwqi] {
    font-family: var(--fc-font-brand);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-tagline[b-8c04inbwqi] {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

.footer-heading[b-8c04inbwqi] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.footer-links-col ul[b-8c04inbwqi] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-col li[b-8c04inbwqi],
.footer-links-col a[b-8c04inbwqi] {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-links-col a:hover[b-8c04inbwqi] {
    color: var(--fc-green-light);
}

.footer-address[b-8c04inbwqi] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address a[b-8c04inbwqi] {
    color: rgba(255, 255, 255, 0.5);
}

.footer-address a:hover[b-8c04inbwqi] {
    color: var(--fc-green-light);
}

.footer-bottom[b-8c04inbwqi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-vat[b-8c04inbwqi] {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-top[b-8c04inbwqi] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom[b-8c04inbwqi] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-top[b-8c04inbwqi] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/Hero.razor.rz.scp.css */
.hero[b-x498yjdyoi] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fc-green-dark);
    overflow: hidden;
}

.hero-canvas[b-x498yjdyoi] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay[b-x498yjdyoi] {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, transparent 0%, var(--fc-green-deep) 75%);
    z-index: 1;
    pointer-events: none;
}

.hero-content[b-x498yjdyoi] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0 4rem;
    max-width: 760px;
}

.hero-brand[b-x498yjdyoi] {
    font-family: var(--fc-font-brand);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--fc-green-light);
    display: block;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp-b-x498yjdyoi 0.6s 0.2s var(--fc-ease) forwards;
}

.hero-headline[b-x498yjdyoi] {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    opacity: 1; /* visible by default for crawlers; JS animates words */
}

.hero-headline .text-gradient[b-x498yjdyoi] {
    background: linear-gradient(135deg, #4a9e8e, #6fcfb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc[b-x498yjdyoi] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero-actions[b-x498yjdyoi] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Fade-in for sub-elements */
.hero-fade[b-x498yjdyoi] {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp-b-x498yjdyoi 0.7s var(--fc-ease) forwards;
}

@keyframes fadeUp-b-x498yjdyoi {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero-scroll[b-x498yjdyoi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-text[b-x498yjdyoi] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
}

.scroll-line[b-x498yjdyoi] {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(74, 158, 142, 0.6), transparent);
    animation: scrollPulse-b-x498yjdyoi 2s ease-in-out infinite;
}

@keyframes scrollPulse-b-x498yjdyoi {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
    .hero-content[b-x498yjdyoi] { padding: 5rem 0 3rem; }
    .hero-desc[b-x498yjdyoi] { font-size: 1rem; }
    .hero-actions[b-x498yjdyoi] { flex-direction: column; align-items: center; }
}
/* /Components/Sections/Navbar.razor.rz.scp.css */
.navbar[b-7x0rxupbl3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.nav-visible[b-7x0rxupbl3] {
    transform: translateY(0);
    pointer-events: auto;
    background: rgba(224, 220, 211, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar-inner[b-7x0rxupbl3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand-text[b-7x0rxupbl3] {
    font-family: var(--fc-font-brand);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fc-green);
}

.nav-links[b-7x0rxupbl3] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link[b-7x0rxupbl3] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fc-text);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-link:hover[b-7x0rxupbl3] {
    color: var(--fc-green);
}

.nav-cta[b-7x0rxupbl3] {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger[b-7x0rxupbl3] {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span[b-7x0rxupbl3] {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fc-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1)[b-7x0rxupbl3] {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2)[b-7x0rxupbl3] {
    opacity: 0;
}

.hamburger.active span:nth-child(3)[b-7x0rxupbl3] {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu[b-7x0rxupbl3] {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    background: var(--fc-beige);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu.open[b-7x0rxupbl3] {
    display: flex;
}

.mobile-link[b-7x0rxupbl3] {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--fc-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-cta[b-7x0rxupbl3] {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-links[b-7x0rxupbl3] { display: none; }
    .hamburger[b-7x0rxupbl3] { display: flex; }
}
/* /Components/Sections/Services.razor.rz.scp.css */
.services-header[b-9lyqss0dpt] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header .section-desc[b-9lyqss0dpt] {
    margin: 0 auto;
}

.services-grid[b-9lyqss0dpt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card[b-9lyqss0dpt] {
    position: relative;
    overflow: hidden;
}

.service-accent[b-9lyqss0dpt] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-green), var(--fc-green-light));
    border-radius: 3px 3px 0 0;
}

.service-icon[b-9lyqss0dpt] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(1, 103, 81, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--fc-green);
}

.service-title[b-9lyqss0dpt] {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--fc-text);
}

.service-desc[b-9lyqss0dpt] {
    font-size: 0.92rem;
    color: var(--fc-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tags[b-9lyqss0dpt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag[b-9lyqss0dpt] {
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(1, 103, 81, 0.06);
    border: 1px solid rgba(1, 103, 81, 0.12);
    font-size: 0.72rem;
    color: var(--fc-green);
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .services-grid[b-9lyqss0dpt] {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}
/* /Components/Sections/Showcase.razor.rz.scp.css */
.approach-header[b-tslhshr0h6] {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header .section-desc[b-tslhshr0h6] {
    margin: 0 auto;
}

.process-steps[b-tslhshr0h6] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step[b-tslhshr0h6] {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-number[b-tslhshr0h6] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fc-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(1, 103, 81, 0.2);
}

.step-connector[b-tslhshr0h6] {
    position: absolute;
    top: 28px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--fc-green), var(--fc-green-light));
    opacity: 0.3;
    z-index: 1;
}

.process-step:last-child .step-connector[b-tslhshr0h6] {
    display: none;
}

.step-title[b-tslhshr0h6] {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--fc-text);
}

.step-desc[b-tslhshr0h6] {
    font-size: 0.88rem;
    color: var(--fc-text-light);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .process-steps[b-tslhshr0h6] {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 360px;
        margin: 0 auto;
    }

    .step-connector[b-tslhshr0h6] {
        display: none;
    }

    .process-step[b-tslhshr0h6] {
        text-align: left;
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        gap: 0 1.25rem;
        padding: 0;
    }

    .step-number[b-tslhshr0h6] {
        grid-row: 1 / 3;
        margin: 0;
    }

    .step-title[b-tslhshr0h6] {
        align-self: end;
        margin-bottom: 0.2rem;
    }

    .step-desc[b-tslhshr0h6] {
        align-self: start;
    }
}
/* /Components/Sections/WhyChoose.razor.rz.scp.css */
.why-header[b-nqrc11d7tb] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-header .section-desc[b-nqrc11d7tb] {
    margin: 0 auto;
}

.why-grid[b-nqrc11d7tb] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.why-item[b-nqrc11d7tb] {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--fc-shadow);
    transition: transform 0.3s var(--fc-ease);
    width: calc(33.333% - 1rem);
}

.why-item:hover[b-nqrc11d7tb] {
    transform: translateY(-3px);
}

.why-number[b-nqrc11d7tb] {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fc-green), var(--fc-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-title[b-nqrc11d7tb] {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--fc-text);
}

.why-desc[b-nqrc11d7tb] {
    font-size: 0.88rem;
    color: var(--fc-text-light);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .why-item[b-nqrc11d7tb] {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .why-item[b-nqrc11d7tb] {
        width: 100%;
    }
}
