/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-vmgycq2gix] {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-top[b-vmgycq2gix] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-link[b-vmgycq2gix] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-brand-mark[b-vmgycq2gix] {
    font-size: 1.4rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline[b-vmgycq2gix] {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-contact[b-vmgycq2gix] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.footer-contact a[b-vmgycq2gix] {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-contact a:hover[b-vmgycq2gix] { color: var(--accent-cyan); }

.footer-social[b-vmgycq2gix] { display: flex; gap: 0.75rem; }

.footer-social a[b-vmgycq2gix] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover[b-vmgycq2gix] {
    color: var(--accent-violet);
    border-color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.08);
}

.footer-nav[b-vmgycq2gix] {
    display: flex;
    gap: 3rem;
}

.footer-nav-col[b-vmgycq2gix] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-heading[b-vmgycq2gix] {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.footer-nav-col a[b-vmgycq2gix] {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav-col a:hover[b-vmgycq2gix] { color: var(--text-primary); }

.footer-bottom[b-vmgycq2gix] {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-top[b-vmgycq2gix] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-nav[b-vmgycq2gix] {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-nav[b-vmgycq2gix] { flex-direction: column; gap: 1.5rem; }
}

/* ── Footer Trust Badges ────────────────────────────────────── */
.footer-trust[b-vmgycq2gix] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-trust-badge[b-vmgycq2gix] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-trust-badge:hover[b-vmgycq2gix] {
  color: var(--text-primary);
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.1);
}

/* ── Footer Language ────────────────────────────────────────── */
.footer-lang[b-vmgycq2gix] {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-lang-header[b-vmgycq2gix] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.footer-lang-label[b-vmgycq2gix] {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-lang-grid[b-vmgycq2gix] {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.footer-lang-btn[b-vmgycq2gix] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s;
  min-height: 40px;
}

.footer-lang-btn:hover[b-vmgycq2gix] {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
}

.footer-lang-flag[b-vmgycq2gix] {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-lang-name[b-vmgycq2gix] {
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-lang-btn:hover .footer-lang-name[b-vmgycq2gix] {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .footer-lang-grid[b-vmgycq2gix] { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .footer-lang-grid[b-vmgycq2gix] { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .footer-lang-grid[b-vmgycq2gix] { grid-template-columns: repeat(2, 1fr); }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-wrapper[b-t0dllegcaw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main[b-t0dllegcaw] {
    flex: 1;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav styles moved to app.css to avoid Blazor CSS isolation scope conflicts. */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kpo6w6lmu1],
.components-reconnect-repeated-attempt-visible[b-kpo6w6lmu1],
.components-reconnect-failed-visible[b-kpo6w6lmu1],
.components-pause-visible[b-kpo6w6lmu1],
.components-resume-failed-visible[b-kpo6w6lmu1],
.components-rejoining-animation[b-kpo6w6lmu1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-retrying[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-failed[b-kpo6w6lmu1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kpo6w6lmu1] {
    display: block;
}


#components-reconnect-modal[b-kpo6w6lmu1] {
    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-kpo6w6lmu1 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kpo6w6lmu1 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kpo6w6lmu1 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kpo6w6lmu1]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kpo6w6lmu1 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kpo6w6lmu1 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kpo6w6lmu1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kpo6w6lmu1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kpo6w6lmu1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kpo6w6lmu1] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kpo6w6lmu1] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kpo6w6lmu1] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kpo6w6lmu1] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-kpo6w6lmu1] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kpo6w6lmu1] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kpo6w6lmu1 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kpo6w6lmu1] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kpo6w6lmu1 {
    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/Layout/SaleBanner.razor.rz.scp.css */
/* =============================================================
   Sale Banner — Founding Offer
   Fixed below the navbar (top: 68px), 44px tall.
   ============================================================= */

.sale-banner[b-xe31gzn5sm] {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    height: 44px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    animation: sale-banner-enter-b-xe31gzn5sm 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform, opacity;
}

.sale-banner.is-dismissed[b-xe31gzn5sm] {
    animation: sale-banner-exit-b-xe31gzn5sm 0.22s ease-in forwards;
    pointer-events: none;
}

@keyframes sale-banner-enter-b-xe31gzn5sm {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);      opacity: 1; }
}

@keyframes sale-banner-exit-b-xe31gzn5sm {
    from { transform: translateY(0);      opacity: 1; }
    to   { transform: translateY(-100%);  opacity: 0; }
}

/* Subtle gradient shimmer behind the entire bar */
.sale-banner[b-xe31gzn5sm]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.04) 30%,
        rgba(34, 211, 238, 0.04) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: sale-bar-shimmer-b-xe31gzn5sm 4s linear infinite;
    pointer-events: none;
}

@keyframes sale-bar-shimmer-b-xe31gzn5sm {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Inner layout ──────────────────────────────────────────── */
.sale-banner-inner[b-xe31gzn5sm] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.sale-banner-content[b-xe31gzn5sm] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

/* ── Badge ─────────────────────────────────────────────────── */
.sale-badge[b-xe31gzn5sm] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.18rem 0.55rem;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on the badge */
.sale-badge[b-xe31gzn5sm]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: sale-badge-shimmer-b-xe31gzn5sm 2.4s ease-in-out infinite;
}

@keyframes sale-badge-shimmer-b-xe31gzn5sm {
    0%   { background-position: 200% center; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { background-position: -200% center; opacity: 0; }
}

/* ── Body text ─────────────────────────────────────────────── */
.sale-text[b-xe31gzn5sm] {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

/* ── CTA link ──────────────────────────────────────────────── */
.sale-cta[b-xe31gzn5sm] {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-violet) !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease, opacity 0.2s ease;
    text-decoration: none !important;
}

.sale-cta:hover[b-xe31gzn5sm] {
    color: var(--accent-cyan) !important;
    opacity: 0.9;
}

.sale-cta:focus-visible[b-xe31gzn5sm] {
    outline: 2px solid var(--accent-violet);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Close button ──────────────────────────────────────────── */
.sale-close[b-xe31gzn5sm] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    flex-shrink: 0;
    transition: color 0.15s ease, background 0.15s ease;
    touch-action: manipulation;
}

.sale-close:hover[b-xe31gzn5sm] {
    color: var(--text-primary);
    background: var(--border-subtle);
}

.sale-close:focus-visible[b-xe31gzn5sm] {
    outline: 2px solid var(--accent-violet);
    outline-offset: 2px;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .sale-text[b-xe31gzn5sm] {
        display: none;
    }

    .sale-banner-content[b-xe31gzn5sm] {
        gap: 0.5rem;
    }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .sale-banner[b-xe31gzn5sm],
    .sale-banner.is-dismissed[b-xe31gzn5sm] {
        animation: none;
        transition: opacity 0.2s ease;
    }

    .sale-banner.is-dismissed[b-xe31gzn5sm] {
        opacity: 0;
    }

    .sale-badge[b-xe31gzn5sm]::after,
    .sale-banner[b-xe31gzn5sm]::before {
        animation: none;
    }
}
/* /Components/Pages/Enquire.razor.rz.scp.css */
.enquire-layout[b-pgymy97hd5] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* ─── Form ───────────────────────────────────────────────────── */
.enquire-form-card[b-pgymy97hd5] {
    padding: 2.5rem;
}

.form-section-label[b-pgymy97hd5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-violet);
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-subtle);
}

.form-section-label svg[b-pgymy97hd5] {
    width: 14px;
    height: 14px;
    stroke: var(--accent-violet);
    flex-shrink: 0;
}

.form-row[b-pgymy97hd5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-field[b-pgymy97hd5] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

/* rows handle spacing for their children */
.form-row .form-field[b-pgymy97hd5] {
    margin-bottom: 0;
}

.form-field:last-of-type[b-pgymy97hd5] {
    margin-bottom: 0;
}

.form-field label[b-pgymy97hd5] {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

/* ─── Input wrapper (icon prefix) ────────────────────────────── */
.input-wrapper[b-pgymy97hd5] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-pgymy97hd5] {
    position: absolute;
    left: 0.875rem;
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
    transition: stroke 0.2s;
    z-index: 1;
}

.input-wrapper:focus-within .input-icon[b-pgymy97hd5] {
    stroke: var(--accent-violet);
}

/* ─── Select wrapper ─────────────────────────────────────────── */
.select-wrapper[b-pgymy97hd5] {
    position: relative;
}

.select-chevron[b-pgymy97hd5] {
    position: absolute;
    right: 0.875rem;
    width: 15px;
    height: 15px;
    stroke: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
    transition: stroke 0.2s, transform 0.2s;
}

.input-wrapper:focus-within .select-chevron[b-pgymy97hd5] {
    stroke: var(--accent-violet);
}

/* ─── Textarea footer ────────────────────────────────────────── */
.textarea-footer[b-pgymy97hd5] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.25rem;
}

.char-counter[b-pgymy97hd5] {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.char-counter--warn[b-pgymy97hd5] {
    color: #f59e0b;
    opacity: 1;
}

/* ─── Submit ─────────────────────────────────────────────────── */
.submit-btn[b-pgymy97hd5] {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* override the global translateY — doesn't suit full-width buttons */
    transform: none !important;
    transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.submit-btn[b-pgymy97hd5]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: skewX(-15deg);
    transition: left 0s;
    pointer-events: none;
}

.submit-btn:hover:not(:disabled)[b-pgymy97hd5] {
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.45);
    filter: brightness(1.08);
}

.submit-btn:hover:not(:disabled)[b-pgymy97hd5]::after {
    left: 160%;
    transition: left 0.55s ease;
}

.submit-btn svg[b-pgymy97hd5] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.submit-btn:disabled[b-pgymy97hd5] {
    opacity: 0.65;
    cursor: not-allowed;
}

@keyframes spin-b-pgymy97hd5 {
    to { transform: rotate(360deg); }
}

.spinner[b-pgymy97hd5] {
    animation: spin-b-pgymy97hd5 0.8s linear infinite;
}

/* ─── Success ─────────────────────────────────────────────────── */
.enquire-success[b-pgymy97hd5] {
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon[b-pgymy97hd5] {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon svg[b-pgymy97hd5] {
    width: 1.75rem;
    height: 1.75rem;
    stroke: #fff;
}

.enquire-success h3[b-pgymy97hd5] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.enquire-success p[b-pgymy97hd5] {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
}

/* ─── Contact Sidebar ─────────────────────────────────────────── */
.contact-info[b-pgymy97hd5] {
    padding: 2rem;
    position: sticky;
    top: 88px;
}

.contact-info h3[b-pgymy97hd5] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-sub[b-pgymy97hd5] {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.contact-items[b-pgymy97hd5] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}

.contact-item[b-pgymy97hd5] {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-item-icon[b-pgymy97hd5] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg[b-pgymy97hd5] {
    width: 15px;
    height: 15px;
    stroke: var(--accent-violet);
}

.contact-item-label[b-pgymy97hd5] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.contact-item a[b-pgymy97hd5] {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover[b-pgymy97hd5] { color: var(--accent-cyan); }

.contact-promise[b-pgymy97hd5] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.promise-icon[b-pgymy97hd5] {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon svg[b-pgymy97hd5] {
    width: 18px;
    height: 18px;
    stroke: var(--accent-violet);
}

.contact-promise p[b-pgymy97hd5] {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .enquire-layout[b-pgymy97hd5] {
        grid-template-columns: 1fr;
    }

    .contact-info[b-pgymy97hd5] {
        position: static;
    }
}

@media (max-width: 640px) {
    .form-row[b-pgymy97hd5] {
        grid-template-columns: 1fr;
    }

    .enquire-form-card[b-pgymy97hd5] {
        padding: 1.5rem;
    }

    .form-section-label[b-pgymy97hd5] {
        margin-top: 0.25rem;
    }
}
/* /Components/Pages/Features.razor.rz.scp.css */
/* ═══ Section nav ════════════════════════════════════════════ */
.feat-section-nav[b-17rii6e6ba] {
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.feat-section-nav-inner[b-17rii6e6ba] {
    display: flex;
    gap: 0;
}

.feat-section-tab[b-17rii6e6ba] {
    padding: 1.1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    outline: none;
}

.feat-section-tab:hover[b-17rii6e6ba] {
    color: var(--text-primary);
}

.feat-section-tab.active[b-17rii6e6ba] {
    color: var(--accent-violet);
    border-bottom-color: var(--accent-violet);
}

/* ═══ Tab panels ═════════════════════════════════════════════ */
.feat-tab-panel[b-17rii6e6ba] {
    display: none;
}

.feat-tab-panel.active[b-17rii6e6ba] {
    display: block;
    animation: tabFadeIn-b-17rii6e6ba 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feat-tab-panel.leaving[b-17rii6e6ba] {
    display: block;
    pointer-events: none;
    animation: tabFadeOut-b-17rii6e6ba 0.26s ease both;
}

@keyframes tabFadeIn-b-17rii6e6ba {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes tabFadeOut-b-17rii6e6ba {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-12px); }
}

/* ═══ Section dividers ═══════════════════════════════════════ */
.feat-section-header[b-17rii6e6ba] {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
    border-top: 2px solid rgba(124, 58, 237, 0.2);
}

.feat-section-header--std[b-17rii6e6ba] {
    border-top-color: rgba(34, 211, 238, 0.2);
}

/* ═══ Standards eyebrow (cyan) ═══════════════════════════════ */
.std-eyebrow[b-17rii6e6ba] {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 9999px;
    background: rgba(34, 211, 238, 0.06);
}

/* ═══ Feature category cards ══════════════════════════════════ */
.feat-cat[b-17rii6e6ba] {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 2.5rem;
    align-items: start;
}

.feat-cat-icon-wrap[b-17rii6e6ba] {
    width: 5rem;
    height: 5rem;
    border-radius: 18px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.feat-cat-icon-wrap--std[b-17rii6e6ba] {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.28);
}

.feat-cat-title[b-17rii6e6ba] {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0.25rem 0 1rem;
}

.feat-list[b-17rii6e6ba] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.feat-list li[b-17rii6e6ba] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feat-list li[b-17rii6e6ba]::before {
    content: '→';
    color: var(--accent-cyan);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}

.feat-list--std li[b-17rii6e6ba]::before {
    color: var(--accent-violet);
}

@media (max-width: 640px) {
    .feat-cat[b-17rii6e6ba] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feat-cat-icon-wrap[b-17rii6e6ba] {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }

    .feat-section-tab[b-17rii6e6ba] {
        padding: 0.9rem 1.25rem;
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ═══ Hero ═══════════════════════════════════════════════════ */
.hero[b-iwh962thuw] {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

#hero-particles[b-iwh962thuw] {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-grid[b-iwh962thuw] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.hero-orb[b-iwh962thuw] {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: float-orb-b-iwh962thuw ease-in-out infinite;
    z-index: 0;
}

.hero-orb-1[b-iwh962thuw] {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.14);
    top: -150px;
    left: -150px;
    animation-duration: 22s;
}

.hero-orb-2[b-iwh962thuw] {
    width: 450px;
    height: 450px;
    background: rgba(34, 211, 238, 0.09);
    bottom: -80px;
    right: -80px;
    animation-duration: 28s;
    animation-delay: -12s;
}

@keyframes float-orb-b-iwh962thuw {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(25px, -30px) scale(1.04); }
    66%       { transform: translate(-18px, 18px) scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb[b-iwh962thuw] { animation: none; }
}

.hero-bg-glow[b-iwh962thuw] {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 15% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 55%, rgba(34, 211, 238, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-content[b-iwh962thuw] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    max-width: 900px;
    width: 100%;
}

.hero-eyebrow[b-iwh962thuw] {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 1.25rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 9999px;
    background: rgba(124, 58, 237, 0.06);
}

.hero-title[b-iwh962thuw] {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    outline: none;
}

.hero-typed-wrap[b-iwh962thuw] {
    display: block;
    min-height: 1.2em;
}

.hero-sub[b-iwh962thuw] {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-cta[b-iwh962thuw] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-scroll-hint[b-iwh962thuw] {
    color: var(--text-muted);
    animation: bounce-b-iwh962thuw 2s ease-in-out infinite;
}

@keyframes bounce-b-iwh962thuw {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ═══ Stats ══════════════════════════════════════════════════ */
.stats-strip[b-iwh962thuw] {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.stats-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.stat-item[b-iwh962thuw] { padding: 1rem 0; }

.stat-number[b-iwh962thuw] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-plus[b-iwh962thuw] {
    font-size: 0.7em;
}

.stat-label[b-iwh962thuw] {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-divider[b-iwh962thuw] {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
    justify-self: center;
}

/* ═══ Services ═══════════════════════════════════════════════ */
.section-header[b-iwh962thuw] {
    margin-bottom: 3rem;
}

.services-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card[b-iwh962thuw] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-card[b-iwh962thuw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 16px 16px 0 0;
}

.service-card:hover[b-iwh962thuw]::before {
    transform: scaleX(1);
}

.service-card:hover[b-iwh962thuw] {
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.22);
}

.service-icon-box[b-iwh962thuw] {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon-box[b-iwh962thuw] {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

.service-card h3[b-iwh962thuw] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p[b-iwh962thuw] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card-arrow[b-iwh962thuw] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-violet);
    transition: transform 0.2s, color 0.2s;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
}

.service-card:hover .service-card-arrow[b-iwh962thuw] {
    transform: translateX(6px);
    color: var(--accent-cyan);
}

/* ═══ Why Stryk ══════════════════════════════════════════════ */
.why-layout[b-iwh962thuw] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.why-pillars[b-iwh962thuw] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-pillar[b-iwh962thuw] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.why-pillar[b-iwh962thuw]::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 3px;
    background: var(--gradient-main);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease, top 0.35s ease, bottom 0.35s ease;
}

.why-pillar:hover[b-iwh962thuw]::after {
    opacity: 1;
    top: 8%;
    bottom: 8%;
}

.why-pillar-num[b-iwh962thuw] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.why-pillar h3[b-iwh962thuw] {
    font-size: 1.1rem;
    font-weight: 700;
}

.why-pillar p[b-iwh962thuw] {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══ Features Teaser ════════════════════════════════════════ */
.features-teaser-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1rem;
}

.feature-badge[b-iwh962thuw] {
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.feature-badge:hover[b-iwh962thuw] {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.4);
}

.feature-badge--std .feature-badge-icon[b-iwh962thuw] {
    color: var(--accent-violet);
}

.feature-badge--std:hover[b-iwh962thuw] {
    box-shadow: 0 8px 28px rgba(34, 211, 238, 0.18);
    border-color: rgba(34, 211, 238, 0.4);
}

.feature-badge-icon[b-iwh962thuw] {
    flex-shrink: 0;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge-label[b-iwh962thuw] {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

/* ═══ Showcase Preview ═══════════════════════════════════════ */
.showcase-header[b-iwh962thuw] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.showcase-preview-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.showcase-card[b-iwh962thuw] {
    padding: 0;
    transition: transform 0.25s ease;
    overflow: hidden;
}

.showcase-card:hover[b-iwh962thuw] { transform: translateY(-5px); }

.showcase-card-visual[b-iwh962thuw] {
    height: 130px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-card-visual[b-iwh962thuw]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.showcase-card-visual-icon[b-iwh962thuw] {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.showcase-card-body[b-iwh962thuw] {
    padding: 1.75rem 2rem 2rem;
}

.showcase-card-type[b-iwh962thuw] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 0.6rem;
}

.showcase-card h3[b-iwh962thuw] {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.showcase-card p[b-iwh962thuw] {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* ═══ Responsive ═════════════════════════════════════════════ */
@media (max-width: 900px) {
    .why-layout[b-iwh962thuw] { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid[b-iwh962thuw] {
        grid-template-columns: 1fr;
    }
    .stat-divider[b-iwh962thuw] { width: 60px; height: 1px; }
}

@media (max-width: 640px) {
    .hero-cta[b-iwh962thuw] { flex-direction: column; align-items: center; }
    .showcase-header[b-iwh962thuw] { flex-direction: column; }
    .features-teaser-grid[b-iwh962thuw] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .features-teaser-grid[b-iwh962thuw] { grid-template-columns: 1fr; }
}

/* ═══ How It Works ═══════════════════════════════════════════ */
.steps-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
}

.step-card[b-iwh962thuw] {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover[b-iwh962thuw] {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.18);
}

.step-badge[b-iwh962thuw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.step-num[b-iwh962thuw] {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.step-icon-box[b-iwh962thuw] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-icon-box[b-iwh962thuw] {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

.step-title[b-iwh962thuw] {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 0;
}

.step-desc[b-iwh962thuw] {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.step-connector[b-iwh962thuw] {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0 0.5rem;
    padding-top: 0;
    position: relative;
    top: -1rem;
}

.step-connector[b-iwh962thuw]::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0.4;
    border-radius: 1px;
}

.step-connector[b-iwh962thuw]::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--accent-cyan);
    opacity: 0.5;
}

/* ═══ Trust Bar ══════════════════════════════════════════════ */
.trust-grid[b-iwh962thuw] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.trust-card[b-iwh962thuw] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trust-card:hover[b-iwh962thuw] {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.16);
}

.trust-icon[b-iwh962thuw] {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-violet);
    transition: background 0.2s, border-color 0.2s;
}

.trust-card:hover .trust-icon[b-iwh962thuw] {
    background: rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.4);
}

.trust-content[b-iwh962thuw] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-title[b-iwh962thuw] {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-desc[b-iwh962thuw] {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══ Responsive Updates ═════════════════════════════════════ */
@media (max-width: 1100px) {
    .steps-grid[b-iwh962thuw] {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.25rem;
    }
    .step-connector[b-iwh962thuw] { display: none; }
    .trust-grid[b-iwh962thuw] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .steps-grid[b-iwh962thuw] { grid-template-columns: 1fr; }
    .trust-grid[b-iwh962thuw] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Pricing.razor.rz.scp.css */
/* ═══ Pricing Build Layout ═══════════════════════════════════ */
.pricing-build-layout[b-bv2y6chw98] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: start;
}

.pricing-build-card[b-bv2y6chw98] {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.pricing-card-eyebrow[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-badge[b-bv2y6chw98] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.875rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.pricing-card-title[b-bv2y6chw98] {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.pricing-card-desc[b-bv2y6chw98] {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.pricing-price-block[b-bv2y6chw98] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-from[b-bv2y6chw98] {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.pricing-price[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
}

.pricing-per[b-bv2y6chw98] {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.pricing-divider[b-bv2y6chw98] {
    height: 1px;
    background: var(--border-subtle);
    margin: 0.5rem 0;
}

.pricing-includes-title[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.pricing-features-list[b-bv2y6chw98] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.pricing-features-list li[b-bv2y6chw98] {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-check[b-bv2y6chw98] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pricing-check[b-bv2y6chw98]::before {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 1.5px solid var(--accent-cyan);
    border-bottom: 1.5px solid var(--accent-cyan);
    transform: rotate(-45deg) translate(1px, -1px);
    display: block;
}

/* ── Bundles ── */
.pricing-bundles-col[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-bundles-header[b-bv2y6chw98] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-bundles-heading[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.375rem;
}

.bundles-table-wrap[b-bv2y6chw98] {
    overflow-x: auto;
    padding: 0;
}

.bundles-table[b-bv2y6chw98] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bundles-table thead tr[b-bv2y6chw98] {
    border-bottom: 1px solid var(--border-subtle);
}

.bundles-table th[b-bv2y6chw98] {
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.bundle-price-col[b-bv2y6chw98] { text-align: right; }

.bundles-table tbody tr[b-bv2y6chw98] {
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.15s;
}

.bundles-table tbody tr:last-child[b-bv2y6chw98] { border-bottom: none; }

.bundles-table tbody tr:hover[b-bv2y6chw98] { background: rgba(124, 58, 237, 0.04); }

.bundles-table td[b-bv2y6chw98] {
    padding: 0.875rem 1.25rem;
    vertical-align: middle;
}

.bundle-name[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.bundle-dot[b-bv2y6chw98] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.bundle-desc[b-bv2y6chw98] { color: var(--text-muted); line-height: 1.5; }

.bundle-price-cell[b-bv2y6chw98] {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.05rem;
}

.bundle-standard-was[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.65);
    color: rgba(239, 68, 68, 0.6);
    white-space: nowrap;
}

.bundle-founding-hero[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--accent-cyan);
    white-space: nowrap;
}

/* ── Example Callout ── */
.pricing-example-callout[b-bv2y6chw98] {
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.pricing-example-callout[b-bv2y6chw98]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 16px 16px 0 0;
}

.pricing-example-callout h3[b-bv2y6chw98] {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.5rem 0 1.5rem;
}

.example-rows[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.25rem;
}

.example-row[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.93rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.example-row:last-child[b-bv2y6chw98] { border-bottom: none; }

.example-row--total[b-bv2y6chw98] {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-subtle);
    border-bottom: none;
}

.example-price[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 700;
    white-space: nowrap;
}

.example-note[b-bv2y6chw98] {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border-subtle);
    margin: 0;
}

/* ── VAT Note ── */
.pricing-vat-note[b-bv2y6chw98] {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ── Founding Client Offer ── */
.founding-callout[b-bv2y6chw98] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.founding-callout[b-bv2y6chw98]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 16px 16px 0 0;
}

.founding-left[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founding-header[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.founding-spots-badge[b-bv2y6chw98] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-violet);
    border: 1px solid rgba(124, 58, 237, 0.35);
    animation: founding-pulse-b-bv2y6chw98 2.5s ease-in-out infinite;
}

@keyframes founding-pulse-b-bv2y6chw98 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    50% { box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12); }
}

.founding-title[b-bv2y6chw98] {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.founding-desc[b-bv2y6chw98] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.founding-list[b-bv2y6chw98] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.founding-list li[b-bv2y6chw98] {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.founding-list em[b-bv2y6chw98] {
    font-style: italic;
    color: var(--text-primary);
}

.founding-cta[b-bv2y6chw98] { align-self: flex-start; margin-top: 0.5rem; }

/* Right side */
.founding-right[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    padding: 2rem;
    align-self: center;
}

.founding-example-label[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.founding-example-rows[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.founding-example-row[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.founding-example-row:last-child[b-bv2y6chw98] { border-bottom: none; }

.founding-example-total[b-bv2y6chw98] {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    padding-top: 1rem;
}

.founding-original-price[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

.founding-discounted-price[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.founding-fine-print[b-bv2y6chw98] {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.75rem;
}

/* ── Founding right-side additions ── */
.founding-right-section[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.3rem;
}

.founding-total-row[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0 0;
    margin-top: 0.75rem;
    border-top: 2px solid var(--border-subtle);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.founding-total-price[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.bundles-upgrade-note[b-bv2y6chw98] {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    padding: 0.75rem 1rem;
    border-left: 3px solid rgba(34, 211, 238, 0.3);
    margin: 0;
}

/* ── Care Plan — Three Tiers ── */
.why-retainer[b-bv2y6chw98] {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.care-tiers-grid[b-bv2y6chw98] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.care-tier-card[b-bv2y6chw98] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.care-tier-card--featured[b-bv2y6chw98] {
    border: 1px solid rgba(124, 58, 237, 0.35);
}

.care-tier-card--featured[b-bv2y6chw98]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 16px 16px 0 0;
}

.care-popular-badge[b-bv2y6chw98] {
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
}

.care-tier-name[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.care-tier-tagline[b-bv2y6chw98] {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 0.625rem;
}


.care-tier-specs[b-bv2y6chw98] {
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.125rem 0;
    margin: 0.375rem 0 0.75rem;
}

.spec-row[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.875rem;
    font-size: 0.83rem;
    border-bottom: 1px solid var(--border-subtle);
}

.spec-row:last-child[b-bv2y6chw98] { border-bottom: none; }

.spec-row span:first-child[b-bv2y6chw98] { color: var(--text-muted); }

.spec-row span:last-child[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: right;
}

.care-founding-note[b-bv2y6chw98] {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(34, 211, 238, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
}

/* ── X icon for "not included" ── */
.pricing-x[b-bv2y6chw98] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    color: rgba(239, 68, 68, 0.55);
    line-height: 1;
}

/* ── Self-Hosted ── */
.self-hosted-callout[b-bv2y6chw98] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding: 2.5rem;
    align-items: center;
}

.self-hosted-title[b-bv2y6chw98] {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin: 0.375rem 0 0.75rem;
}

.self-hosted-desc[b-bv2y6chw98] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 580px;
}

.self-hosted-cols[b-bv2y6chw98] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.self-hosted-right[b-bv2y6chw98] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
    padding: 1.75rem;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    align-self: center;
}

.self-hosted-sub[b-bv2y6chw98] {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.self-hosted-cta[b-bv2y6chw98] { margin-top: 0.5rem; white-space: nowrap; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pricing-build-layout[b-bv2y6chw98] { grid-template-columns: 1fr; }
    .founding-callout[b-bv2y6chw98] { grid-template-columns: 1fr; gap: 2rem; }
    .self-hosted-callout[b-bv2y6chw98] { grid-template-columns: 1fr; }
    .self-hosted-right[b-bv2y6chw98] { align-self: flex-start; }
}

@media (max-width: 768px) {
    .care-tiers-grid[b-bv2y6chw98] { grid-template-columns: 1fr; }
    .self-hosted-cols[b-bv2y6chw98] { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 640px) {
    .pricing-build-card[b-bv2y6chw98],
    .pricing-example-callout[b-bv2y6chw98] { padding: 1.75rem 1.25rem; }
    .bundles-table th[b-bv2y6chw98],
    .bundles-table td[b-bv2y6chw98] { padding: 0.75rem 1rem; }
    .founding-callout[b-bv2y6chw98] { padding: 1.75rem 1.25rem; }
    .founding-right[b-bv2y6chw98] { padding: 1.5rem 1.25rem; }
    .care-tier-card[b-bv2y6chw98] { padding: 1.75rem 1.25rem; }
    .self-hosted-callout[b-bv2y6chw98] { padding: 1.75rem 1.25rem; }
}

/* ── Was / Strikethrough Pricing ── */
.pricing-price-was[b-bv2y6chw98] {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.7);
    color: rgba(239, 68, 68, 0.65);
}

.pricing-per-was[b-bv2y6chw98] {
    font-size: 0.88rem;
    font-family: var(--font-heading);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.6);
    color: rgba(239, 68, 68, 0.55);
}

.care-was-price[b-bv2y6chw98] {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem) !important;
}

.founding-hero-label[b-bv2y6chw98] {
    color: var(--accent-cyan);
    font-weight: 700;
}

.founding-price-hero-block[b-bv2y6chw98] {
    gap: 0.625rem;
    margin-top: 0.15rem;
}

.care-founding-pill[b-bv2y6chw98] {
    font-size: 0.62rem;
    padding: 0.1rem 0.4rem;
    align-self: center;
}

/* ── Founding Alert Strip ── */
.founding-alert-strip[b-bv2y6chw98] {
    background: rgba(124, 58, 237, 0.05);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    padding: 0.8rem 0;
}

.founding-alert-inner[b-bv2y6chw98] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
}

.founding-alert-badge[b-bv2y6chw98] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-violet);
    border: 1px solid rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}

.founding-alert-text[b-bv2y6chw98] {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.founding-alert-text strong[b-bv2y6chw98] {
    color: var(--text-primary);
    font-weight: 700;
}

.founding-alert-link[b-bv2y6chw98] {
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.375rem;
    white-space: nowrap;
}

.founding-alert-link:hover[b-bv2y6chw98] { text-decoration: underline; }

.founding-save-tag[b-bv2y6chw98] {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(34, 211, 238, 0.25);
}
/* /Components/Pages/Showcase.razor.rz.scp.css */
.showcase-filters[b-2usrjjn37i] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn[b-2usrjjn37i] {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.filter-btn:hover[b-2usrjjn37i] {
    border-color: var(--accent-violet);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.08);
}

.filter-btn.active[b-2usrjjn37i] {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
}

.showcase-full-grid[b-2usrjjn37i] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.showcase-full-grid.filtering .showcase-full-card[b-2usrjjn37i] {
    display: none;
}

.showcase-full-grid.filtering .showcase-full-card.match[b-2usrjjn37i] {
    display: flex;
}

.showcase-full-card[b-2usrjjn37i] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-full-card:hover[b-2usrjjn37i] {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}

.sfc-header[b-2usrjjn37i] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sfc-type[b-2usrjjn37i] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-violet);
}

.showcase-full-card h3[b-2usrjjn37i] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.showcase-full-card p[b-2usrjjn37i] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.sfc-footer[b-2usrjjn37i] {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.sfc-industry[b-2usrjjn37i] {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.showcase-nda[b-2usrjjn37i] {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .showcase-full-grid[b-2usrjjn37i] {
        grid-template-columns: 1fr;
    }
}
