/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-dj7gepodqc] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-dj7gepodqc] {
    flex: 1;
    width: 100%;
}

.content[b-dj7gepodqc] {
    padding: 0;
    width: 100%;
}

/* Footer Styles */
.site-footer[b-dj7gepodqc] {
    background-color: var(--gray-800);
    color: var(--gray-200);
    margin-top: auto;
}

.footer-logo[b-dj7gepodqc] {
    max-width: 120px;
    height: auto;
    display: block;
}

.footer-heading[b-dj7gepodqc] {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-heading-small[b-dj7gepodqc] {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text[b-dj7gepodqc] {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-text a[b-dj7gepodqc] {
    color: var(--forest-green-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-text a:hover[b-dj7gepodqc] {
    color: var(--primary-green-light);
    text-decoration: underline;
}

.footer-links[b-dj7gepodqc] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-dj7gepodqc] {
    margin-bottom: 0.5rem;
}

.footer-links a[b-dj7gepodqc] {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover[b-dj7gepodqc] {
    color: var(--forest-green-light);
}

.footer-bottom[b-dj7gepodqc] {
    border-top: 1px solid var(--gray-700);
    color: var(--gray-600);
    font-size: 0.85rem;
}

#blazor-error-ui[b-dj7gepodqc] {
    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-dj7gepodqc] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Sticky Top Navigation */
.site-nav[b-czmq4eq6ju] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-inner[b-czmq4eq6ju] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

/* Brand / Logo */
.nav-brand[b-czmq4eq6ju] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.nav-brand:hover[b-czmq4eq6ju] {
    color: var(--primary-green);
}

.nav-logo[b-czmq4eq6ju] {
    height: 36px;
    width: auto;
}

.nav-brand-text[b-czmq4eq6ju] {
    color: inherit;
}

/* Desktop Nav Links */
.nav-links[b-czmq4eq6ju] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Nav link styles are in app.css (global) because NavLink
   renders child <a> elements that scoped CSS cannot target */

/* Mobile Toggle (hidden on desktop) */
.nav-toggle[b-czmq4eq6ju] {
    display: none;
}

.nav-toggle-label[b-czmq4eq6ju] {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color var(--transition-fast);
}

.nav-toggle-label:hover[b-czmq4eq6ju] {
    background-color: var(--gray-50);
}

.nav-toggle-icon[b-czmq4eq6ju],
.nav-toggle-icon[b-czmq4eq6ju]::before,
.nav-toggle-icon[b-czmq4eq6ju]::after {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--gray-700);
    border-radius: 1px;
    transition: all var(--transition-base);
    position: relative;
}

.nav-toggle-icon[b-czmq4eq6ju]::before,
.nav-toggle-icon[b-czmq4eq6ju]::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
}

.nav-toggle-icon[b-czmq4eq6ju]::before {
    top: -7px;
}

.nav-toggle-icon[b-czmq4eq6ju]::after {
    top: 7px;
}

/* Hamburger to X animation */
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon[b-czmq4eq6ju] {
    background-color: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon[b-czmq4eq6ju]::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon[b-czmq4eq6ju]::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle-label[b-czmq4eq6ju] {
        display: flex;
    }

    .nav-brand-text[b-czmq4eq6ju] {
        display: none;
    }

    .nav-links[b-czmq4eq6ju] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        padding: 0.5rem 1rem 1rem;
        gap: 0;
    }

    .nav-toggle:checked ~ .nav-links[b-czmq4eq6ju] {
        display: flex;
    }

}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section - Dark Theme */
.hero-section[b-1j2fpsh906] {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a12 0%, #0d2818 40%, #0a1a12 100%);
}

/* Subtle dot grid pattern behind map */
.hero-grid-pattern[b-1j2fpsh906] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 212, 170, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.australia-map-container[b-1j2fpsh906] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.australia-map-svg[b-1j2fpsh906] {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    max-height: 800px;
}

.australia-outline[b-1j2fpsh906] {
    fill: var(--forest-green);
    fill-opacity: 0.08;
    stroke: var(--forest-green);
    stroke-width: 1.5;
    stroke-opacity: 0.35;
}

/* Network nodes - base style */
.network-node[b-1j2fpsh906] {
    fill: var(--accent-cyan);
    animation: node-pulse-b-1j2fpsh906 3s ease-in-out infinite;
}

.node-major[b-1j2fpsh906] {
    fill: #00e5ff;
}

.node-minor[b-1j2fpsh906] {
    fill: var(--accent-cyan);
}

/* Outer ring for major city nodes */
.node-ring[b-1j2fpsh906] {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 1.5;
    stroke-opacity: 0.3;
    animation: ring-pulse-b-1j2fpsh906 3s ease-in-out infinite;
}

@keyframes node-pulse-b-1j2fpsh906 {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

@keyframes ring-pulse-b-1j2fpsh906 {
    0%, 100% {
        stroke-opacity: 0.15;
        r: 18;
    }
    50% {
        stroke-opacity: 0.4;
        r: 22;
    }
}

/* Connection lines with gradient stroke */
.connection-line[b-1j2fpsh906] {
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    animation: dash-b-1j2fpsh906 4s linear infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(0, 212, 170, 0.4));
}

.connection-secondary[b-1j2fpsh906] {
    stroke-width: 1;
    stroke-dasharray: 4, 6;
    opacity: 0.4;
    filter: none;
}

@keyframes dash-b-1j2fpsh906 {
    to {
        stroke-dashoffset: -12;
    }
}

.hero-content[b-1j2fpsh906] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title[b-1j2fpsh906] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle[b-1j2fpsh906] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.hero-subtitle[b-1j2fpsh906]::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-ai);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.hero-cta-group[b-1j2fpsh906] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-cta[b-1j2fpsh906] {
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.hero-cta:hover[b-1j2fpsh906] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.35);
}

/* Section Titles */
.section-title[b-1j2fpsh906] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    display: inline-block;
}

.section-title[b-1j2fpsh906]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--forest-green);
}

.text-center .section-title[b-1j2fpsh906]::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services-section[b-1j2fpsh906] {
    background-color: white;
}

.service-card[b-1j2fpsh906] {
    padding: 2rem;
    border-radius: 16px;
    background-color: white;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card[b-1j2fpsh906]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ai);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.service-card:hover[b-1j2fpsh906]::before {
    transform: scaleX(1);
}

.service-card:hover[b-1j2fpsh906] {
    border-color: var(--primary-green-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon[b-1j2fpsh906] {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.25);
    transition: all var(--transition-base);
}

.service-icon i[b-1j2fpsh906] {
    font-size: 2.5rem;
    color: white;
}

.service-card:hover .service-icon[b-1j2fpsh906] {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.service-card h3[b-1j2fpsh906] {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p[b-1j2fpsh906] {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section[b-1j2fpsh906] {
    background-color: var(--gray-50);
}

.feature-item[b-1j2fpsh906] {
    padding: 2rem 1rem;
    transition: all var(--transition-base);
}

.feature-item:hover[b-1j2fpsh906] {
    transform: translateY(-5px);
}

.feature-number[b-1j2fpsh906] {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-item h4[b-1j2fpsh906] {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-item p[b-1j2fpsh906] {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-section[b-1j2fpsh906] {
    background-color: var(--gray-50);
}

.about-section .section-title[b-1j2fpsh906] {
    text-align: left;
}

.about-section .section-title[b-1j2fpsh906]::after {
    left: 0;
    transform: none;
}

.about-section .lead[b-1j2fpsh906] {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.about-section p[b-1j2fpsh906] {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section[b-1j2fpsh906] {
    background-color: white;
}

.contact-form[b-1j2fpsh906] {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-label[b-1j2fpsh906] {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control[b-1j2fpsh906] {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-fast);
}

.contact-form .form-control:focus[b-1j2fpsh906] {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.contact-form .btn-primary[b-1j2fpsh906] {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Technology Stack Teaser Section */
.tech-preview-section[b-1j2fpsh906] {
    background-color: white;
}

.tech-preview-section .lead[b-1j2fpsh906] {
    color: var(--text-secondary);
}

.tech-logo-card[b-1j2fpsh906] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all var(--transition-base);
    height: 100%;
    min-height: 150px;
}

.tech-logo-card:hover[b-1j2fpsh906] {
    border-color: var(--forest-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.15);
}

.tech-logo-card i[b-1j2fpsh906] {
    font-size: 3rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.tech-logo-card span[b-1j2fpsh906] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
}

.tech-stack-btn[b-1j2fpsh906] {
    border-color: var(--forest-green);
    color: var(--forest-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.tech-stack-btn:hover[b-1j2fpsh906] {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-1j2fpsh906] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-1j2fpsh906] {
        font-size: 1rem;
    }

    .hero-cta-group[b-1j2fpsh906] {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta[b-1j2fpsh906] {
        width: 80%;
    }

    .section-title[b-1j2fpsh906] {
        font-size: 2rem;
    }

    .australia-map-svg[b-1j2fpsh906] {
        max-width: 600px;
    }

    .network-node[b-1j2fpsh906] {
        r: 6;
    }

    .connection-line[b-1j2fpsh906] {
        stroke-width: 1.5;
    }

    .tech-logo-card[b-1j2fpsh906] {
        min-height: 120px;
        padding: 1.5rem 0.5rem;
    }

    .tech-logo-card i[b-1j2fpsh906] {
        font-size: 2.5rem;
    }

    .tech-logo-card span[b-1j2fpsh906] {
        font-size: 0.95rem;
    }

    .feature-number[b-1j2fpsh906] {
        font-size: 2.5rem;
    }
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
/* Legal Page Hero */
.legal-hero[b-xec1g2mwy8] {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 4rem 0 3rem;
}

.legal-hero h1[b-xec1g2mwy8] {
    color: var(--gray-900);
    font-weight: 800;
}

.legal-hero .lead[b-xec1g2mwy8] {
    color: var(--text-secondary);
}

/* Legal Page Content */
.legal-updated[b-xec1g2mwy8] {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-section[b-xec1g2mwy8] {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child[b-xec1g2mwy8] {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-heading[b-xec1g2mwy8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.legal-heading[b-xec1g2mwy8]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
    border-radius: 2px;
}

.legal-section h3[b-xec1g2mwy8] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.legal-section p[b-xec1g2mwy8] {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul[b-xec1g2mwy8] {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.legal-section ul li[b-xec1g2mwy8] {
    margin-bottom: 0.5rem;
}

.legal-section ul li[b-xec1g2mwy8]::marker {
    color: var(--primary-green);
}

.contact-block[b-xec1g2mwy8] {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .legal-hero[b-xec1g2mwy8] {
        padding: 3rem 0 2rem;
    }

    .legal-heading[b-xec1g2mwy8] {
        font-size: 1.3rem;
    }
}
/* /Components/Pages/TechStack.razor.rz.scp.css */
/* Tech Stack Hero */
.tech-stack-hero[b-jn933r31vt] {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 4rem 0 3rem;
}

.tech-stack-hero h1[b-jn933r31vt] {
    color: var(--gray-900);
    font-weight: 800;
}

.tech-stack-hero .lead[b-jn933r31vt] {
    color: var(--text-secondary);
}

/* Tech Cards */
.tech-card[b-jn933r31vt] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tech-card[b-jn933r31vt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ai);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.tech-card:hover[b-jn933r31vt]::before {
    transform: scaleX(1);
}

.tech-card:hover[b-jn933r31vt] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.tech-card .tech-icon[b-jn933r31vt] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.tech-card:hover .tech-icon[b-jn933r31vt] {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.tech-card .tech-icon i[b-jn933r31vt] {
    font-size: 2.5rem;
    color: white;
}

.tech-card h3[b-jn933r31vt] {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.tech-category[b-jn933r31vt] {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tech-card p[b-jn933r31vt] {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-features[b-jn933r31vt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-features .badge[b-jn933r31vt] {
    background: var(--primary-green) !important;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Integration Flow */
.integration-flow[b-jn933r31vt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
}

.flow-step[b-jn933r31vt] {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.flow-step:hover[b-jn933r31vt] {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.flow-icon[b-jn933r31vt] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
}

.flow-step:hover .flow-icon[b-jn933r31vt] {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(34, 139, 34, 0.3);
}

.flow-icon i[b-jn933r31vt] {
    font-size: 2rem;
    color: white;
}

.flow-step h4[b-jn933r31vt] {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.flow-step p[b-jn933r31vt] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow[b-jn933r31vt] {
    color: var(--primary-green);
    font-size: 2rem;
    opacity: 0.5;
}

/* Use Case Cards */
.use-case-card[b-jn933r31vt] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all var(--transition-base);
}

.use-case-card:hover[b-jn933r31vt] {
    border-color: var(--primary-green-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.use-case-card h4[b-jn933r31vt] {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.use-case-card h4 i[b-jn933r31vt] {
    font-size: 1.5rem;
}

.use-case-card p[b-jn933r31vt] {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integration-flow[b-jn933r31vt] {
        flex-direction: column;
    }

    .flow-arrow[b-jn933r31vt] {
        transform: rotate(90deg);
    }

    .flow-step[b-jn933r31vt] {
        width: 100%;
    }

    .tech-card[b-jn933r31vt] {
        padding: 1.5rem;
    }

    .tech-icon[b-jn933r31vt] {
        font-size: 2.5rem;
    }

    .use-case-card[b-jn933r31vt] {
        padding: 1.5rem;
    }
}
/* /Components/Pages/Terms.razor.rz.scp.css */
/* Legal Page Hero */
.legal-hero[b-6b4drd88is] {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 4rem 0 3rem;
}

.legal-hero h1[b-6b4drd88is] {
    color: var(--gray-900);
    font-weight: 800;
}

.legal-hero .lead[b-6b4drd88is] {
    color: var(--text-secondary);
}

/* Legal Page Content */
.legal-updated[b-6b4drd88is] {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-section[b-6b4drd88is] {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child[b-6b4drd88is] {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-heading[b-6b4drd88is] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.legal-heading[b-6b4drd88is]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
    border-radius: 2px;
}

.legal-section h3[b-6b4drd88is] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.legal-section p[b-6b4drd88is] {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul[b-6b4drd88is] {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.legal-section ul li[b-6b4drd88is] {
    margin-bottom: 0.5rem;
}

.legal-section ul li[b-6b4drd88is]::marker {
    color: var(--primary-green);
}

.contact-block[b-6b4drd88is] {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-acknowledgement[b-6b4drd88is] {
    color: var(--text-secondary);
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .legal-hero[b-6b4drd88is] {
        padding: 3rem 0 2rem;
    }

    .legal-heading[b-6b4drd88is] {
        font-size: 1.3rem;
    }
}
