/* ─────────────────────────────────────────────────────────
   Software, LLC  –  Brand CSS
   Primary: Azure Blue #0078D4
   Dark:    Navy   #0D1B2A
   ───────────────────────────────────────────────────────── */

:root {
    --sllc-primary:        #0078D4;
    --sllc-primary-dark:   #005A9E;
    --sllc-primary-darker: #003D73;
    --sllc-navy:           #0D1B2A;
    --sllc-navy-mid:       #1A2F47;
    --sllc-light-blue:     #50ABF1;
    --sllc-lightest-blue:  #E8F4FD;
    --sllc-accent:         #00B4D8;
    --sllc-white:          #FFFFFF;
    --sllc-text:           #1A1A2E;
    --sllc-muted:          #6B7280;
    --sllc-border:         #DEE8F0;
    --sllc-card-bg:        #F8FBFF;
    --sllc-hero-bg:        linear-gradient(135deg, #0D1B2A 0%, #1A3558 50%, #0078D4 100%);
    --sllc-section-bg:     #F8FBFF;
    --sllc-process-bg:     #EBF5FF;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--sllc-text);
    background: var(--sllc-white);
}

h1:focus {
    outline: none;
}

/* ── Navbar / Header ─────────────────────────────────────── */
.sllc-header {
    background: var(--sllc-navy);
    border-bottom: 2px solid var(--sllc-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.sllc-header .navbar { padding: .75rem 0; }

.sllc-brand { text-decoration: none !important; gap: .5rem; }

.sllc-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.sllc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sllc-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sllc-white);
    letter-spacing: -.01em;
}

.sllc-brand-llc { color: var(--sllc-light-blue); }

.sllc-brand-tagline {
    font-size: .68rem;
    color: var(--sllc-light-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

.sllc-toggler {
    border-color: rgba(80,171,241,.4);
}

.sllc-nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem .9rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.sllc-nav-link:hover,
.sllc-nav-link.active {
    color: var(--sllc-white) !important;
    background: rgba(0,120,212,.25);
}

/* ── Main wrapper ───────────────────────────────────────── */
.sllc-main { min-height: 70vh; }

/* ── Hero Section ───────────────────────────────────────── */
.sllc-hero {
    background: var(--sllc-hero-bg);
    color: var(--sllc-white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.sllc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(0,120,212,0.08)' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.sllc-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.sllc-hero-accent { color: var(--sllc-light-blue); }

.sllc-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    max-width: 560px;
}

/* ── Hero Badge ─────────────────────────────────────────── */
.sllc-hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.sllc-badge-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0,120,212,.18);
    border: 3px solid var(--sllc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0,120,212,.3);
}

.sllc-badge-icon {
    font-size: 3.5rem;
    color: var(--sllc-light-blue);
}

.sllc-badge-stats {
    display: flex;
    gap: 1.5rem;
}

.sllc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: .75rem 1rem;
    min-width: 80px;
}

.sllc-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sllc-light-blue);
    line-height: 1;
}

.sllc-stat-label {
    font-size: .7rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .25rem;
    text-align: center;
}

/* ── Trust Bar ──────────────────────────────────────────── */
.sllc-trust-bar {
    background: var(--sllc-primary-darker);
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    font-weight: 500;
}

.sllc-trust-item { padding: .5rem .75rem; }
.sllc-trust-divider { color: rgba(255,255,255,.25); }

/* ── General Section ────────────────────────────────────── */
.sllc-section { background: var(--sllc-white); }

.sllc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sllc-navy);
    margin-bottom: .5rem;
}

.sllc-section-sub {
    font-size: 1.05rem;
    color: var(--sllc-muted);
}

/* ── Cards ──────────────────────────────────────────────── */
.sllc-card {
    background: var(--sllc-card-bg);
    border: 1px solid var(--sllc-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: box-shadow .25s, transform .25s;
}

.sllc-card:hover {
    box-shadow: 0 8px 32px rgba(0,120,212,.12);
    transform: translateY(-3px);
}

.sllc-card-icon {
    font-size: 2.2rem;
    color: var(--sllc-primary);
    margin-bottom: 1rem;
}

.sllc-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sllc-navy);
    margin-bottom: .75rem;
}

.sllc-card-text {
    font-size: .95rem;
    color: #444;
    line-height: 1.65;
}

/* ── CTA Section ────────────────────────────────────────── */
.sllc-cta-section {
    background: var(--sllc-lightest-blue);
    border-top: 1px solid var(--sllc-border);
    border-bottom: 1px solid var(--sllc-border);
}

.sllc-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sllc-navy);
    margin-bottom: .5rem;
}

.sllc-cta-text { color: #444; margin: 0; }

/* ── Banner ─────────────────────────────────────────────── */
.sllc-banner {
    background: var(--sllc-hero-bg);
    color: var(--sllc-white);
    text-align: center;
}

.sllc-banner-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.sllc-banner-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.sllc-page-hero {
    background: linear-gradient(135deg, var(--sllc-navy) 0%, var(--sllc-navy-mid) 100%);
    color: var(--sllc-white);
    border-bottom: 3px solid var(--sllc-primary);
}

.sllc-page-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .5rem;
}

.sllc-page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    max-width: 680px;
    line-height: 1.65;
}

/* ── Buttons ─────────────────────────────────────────────── */
.sllc-btn-primary {
    background: var(--sllc-primary);
    border: 2px solid var(--sllc-primary);
    color: var(--sllc-white) !important;
    font-weight: 600;
    border-radius: 8px;
    transition: background .2s, border-color .2s, box-shadow .2s;
}

.sllc-btn-primary:hover {
    background: var(--sllc-primary-dark);
    border-color: var(--sllc-primary-dark);
    box-shadow: 0 4px 16px rgba(0,120,212,.35);
}

.sllc-btn-outline {
    background: transparent;
    border: 2px solid var(--sllc-primary);
    color: var(--sllc-primary) !important;
    font-weight: 600;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.sllc-btn-outline:hover {
    background: var(--sllc-primary);
    color: var(--sllc-white) !important;
}

.sllc-hero .sllc-btn-outline {
    border-color: rgba(255,255,255,.6);
    color: var(--sllc-white) !important;
}

.sllc-hero .sllc-btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--sllc-white);
}

.sllc-banner .sllc-btn-primary,
.sllc-page-hero .sllc-btn-primary {
    background: var(--sllc-primary);
    border-color: var(--sllc-primary);
}

.sllc-btn-cta {
    background: var(--sllc-white);
    border: 2px solid var(--sllc-white);
    color: var(--sllc-navy) !important;
    font-weight: 700;
    border-radius: 8px;
    transition: background .2s, box-shadow .2s;
}

.sllc-btn-cta:hover {
    background: var(--sllc-lightest-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* ── Services Page ──────────────────────────────────────── */
.sllc-service-icon-lg {
    width: 90px;
    height: 90px;
    background: var(--sllc-lightest-blue);
    border: 2px solid var(--sllc-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--sllc-primary);
}

.sllc-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sllc-navy);
    margin-bottom: .5rem;
}

.sllc-service-divider {
    border-color: var(--sllc-border);
    margin: 2rem 0;
}

.sllc-tag {
    display: inline-block;
    background: var(--sllc-lightest-blue);
    color: var(--sllc-primary-dark);
    border: 1px solid rgba(0,120,212,.2);
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .82rem;
    font-weight: 500;
}

/* ── Process Section ────────────────────────────────────── */
.sllc-process-section { background: var(--sllc-process-bg); }

.sllc-process-step {
    background: var(--sllc-white);
    border: 1px solid var(--sllc-border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
}

.sllc-process-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sllc-primary);
    line-height: 1;
    margin-bottom: .5rem;
    opacity: .6;
}

.sllc-process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sllc-navy);
    margin-bottom: .5rem;
}

.sllc-process-text {
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── Products Page ──────────────────────────────────────── */
.sllc-product-card {
    background: var(--sllc-card-bg);
    border: 1px solid var(--sllc-border);
    border-top: 4px solid var(--sllc-primary);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,120,212,.08);
}

.sllc-product-logo-wrap {
    position: relative;
    display: inline-block;
}

.sllc-product-icon {
    font-size: 5rem;
    color: var(--sllc-primary);
    display: block;
    margin-bottom: .5rem;
}

.sllc-product-badge {
    display: inline-block;
    background: var(--sllc-primary);
    color: var(--sllc-white);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sllc-product-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sllc-navy);
}

.sllc-product-status {
    background: #d4edda;
    color: #155724;
    font-size: .78rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 20px;
}

.sllc-product-status .bi-circle-fill { font-size: .5rem; vertical-align: middle; }

.sllc-product-domain {
    color: var(--sllc-primary);
    font-weight: 500;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.sllc-product-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sllc-feature-item {
    font-size: .9rem;
    color: #444;
    line-height: 1.5;
    padding: .5rem 0;
    border-bottom: 1px solid var(--sllc-border);
}

.sllc-idea-box {
    background: var(--sllc-lightest-blue);
    border: 1px solid rgba(0,120,212,.2);
    border-radius: 12px;
    padding: 1.75rem;
}

.sllc-idea-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sllc-idea-list li {
    padding: .4rem 0;
    font-size: .95rem;
    color: var(--sllc-navy);
    border-bottom: 1px solid rgba(0,120,212,.1);
}

.sllc-idea-list li:last-child { border-bottom: none; }
.sllc-idea-list .bi { color: var(--sllc-primary); }

/* ── Contact Page ───────────────────────────────────────── */
.sllc-contact-card {
    border: 1px solid var(--sllc-border);
    border-radius: 10px;
    overflow: hidden;
}

.sllc-contact-card-header {
    background: var(--sllc-navy);
    color: var(--sllc-white);
    font-weight: 600;
    font-size: .9rem;
    padding: .6rem 1.25rem;
}

.sllc-contact-card-body {
    padding: 1rem 1.25rem;
    background: var(--sllc-card-bg);
    color: #444;
    font-size: .95rem;
    line-height: 1.6;
}

.sllc-contact-avatar {
    width: 44px;
    height: 44px;
    background: var(--sllc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sllc-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sllc-contact-email {
    color: var(--sllc-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color .2s;
}

.sllc-contact-email:hover { color: var(--sllc-primary-dark); text-decoration: underline; }

.sllc-contact-info-box {
    background: var(--sllc-card-bg);
    border: 1px solid var(--sllc-border);
    border-radius: 12px;
    padding: 2rem;
}

.sllc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sllc-contact-list li {
    padding: .5rem 0;
    font-size: .95rem;
    color: #444;
    border-bottom: 1px solid var(--sllc-border);
}

.sllc-contact-list li:last-child { border-bottom: none; }
.sllc-contact-list .bi { color: var(--sllc-primary); }

.sllc-response-promise {
    background: var(--sllc-lightest-blue);
    border-left: 4px solid var(--sllc-primary);
    padding: .75rem 1rem;
    border-radius: 0 8px 8px 0;
    font-size: .9rem;
    color: var(--sllc-navy);
}

.sllc-response-promise .bi { color: var(--sllc-primary); }

.sllc-contact-product-ref {
    background: var(--sllc-navy);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    color: rgba(255,255,255,.88);
}

.sllc-contact-product-ref h6 { color: var(--sllc-white); margin-bottom: .5rem; }

/* ── Footer ─────────────────────────────────────────────── */
.sllc-footer {
    background: var(--sllc-navy);
    color: rgba(255,255,255,.75);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--sllc-primary);
}

.sllc-footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.sllc-footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sllc-white);
}

.sllc-footer-tagline {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin: .4rem 0 .1rem;
}

.sllc-footer-sub {
    font-size: .78rem;
    color: var(--sllc-light-blue);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
}

.sllc-footer-heading {
    color: var(--sllc-white);
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}

.sllc-footer-links {
    line-height: 2;
}

.sllc-footer-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

.sllc-footer-links a:hover { color: var(--sllc-light-blue); }

.sllc-footer-address {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    line-height: 1.8;
}

.sllc-footer-address a {
    color: var(--sllc-light-blue);
    text-decoration: none;
}

.sllc-footer-address a:hover { text-decoration: underline; }

.sllc-footer-hr {
    border-color: rgba(255,255,255,.1);
    margin: 1.5rem 0 1rem;
}

.sllc-footer-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* ── Validation / Blazor errors (keep) ──────────────────── */

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}