/* Backstop for the <meta name="format-detection"> tag in App.razor - iOS Safari's data detectors
   auto-link plain text that looks like an email/phone/address into a tappable, blue+underlined
   <a x-apple-data-detectors> element even though no anchor exists in our markup. The meta tag is
   the primary fix; this neutralizes the detector's own styling/tap behavior in case a given iOS
   version still applies it. */
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: inherit !important;
    pointer-events: none !important;
}

/*STRIPE THEME - BOOTSTRAP VARIABLE OVERRIDES***********************************************************/
/* Bootstrap 5.3 reads these root custom properties directly (body, links, .card, .dropdown-menu,
   .text-primary/.bg-primary/.border-primary, .text-secondary/.text-muted utilities), so overriding
   them here reskins those components everywhere they're used without touching any other file. */
:root {
    --bs-font-sans-serif: "Inter", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-color: #425466;
    --bs-body-color-rgb: 66, 84, 102;
    --bs-body-bg: #ffffff;
    --bs-heading-color: #0a2540;
    --bs-emphasis-color: #0a2540;
    --bs-secondary-color: #6c7c93;
    --bs-secondary-color-rgb: 108, 124, 147;
    --bs-secondary-bg: #f6f9fc;
    --bs-tertiary-bg: #f6f9fc;
    --bs-primary: #635bff;
    --bs-primary-rgb: 99, 91, 255;
    --bs-primary-text-emphasis: #4f46e5;
    --bs-success: #0a8a5f;
    --bs-success-rgb: 10, 138, 95;
    --bs-danger: #df1b41;
    --bs-danger-rgb: 223, 27, 65;
    --bs-warning: #ffb700;
    --bs-warning-rgb: 255, 183, 0;
    --bs-link-color: #635bff;
    --bs-link-color-rgb: 99, 91, 255;
    --bs-link-hover-color: #4f46e5;
    --bs-link-hover-color-rgb: 79, 70, 229;
    --bs-border-color: #e3e8ee;
    --bs-border-color-translucent: rgba(10, 37, 64, 0.08);
    --bs-border-radius: 0.5rem;
    --bs-border-radius-lg: 0.75rem;
    --bs-border-radius-sm: 0.375rem;
}

html, body {
    font-family: var(--bs-font-sans-serif);
}

html {
    /*  font-size: 0.875rem;*/
    font-size: 0.92rem;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/*end of STRIPE THEME - BOOTSTRAP VARIABLE OVERRIDES***********************************************************/


/*PROGRAMMATIC-FOCUS OUTLINE SUPPRESSION (Components/Routes.razor)***********************************************************/
/* <FocusOnNavigate Selector="h1"> (Routes.razor) focuses each page's <h1> after every navigation, purely
   so screen readers announce it - it marks the target with tabindex="-1" to do this without adding it to
   the Tab order. Browsers still draw a default focus ring for that, which reads as a stray border around
   the heading on page load. [tabindex="-1"] is never used on real interactive controls (links/buttons/
   inputs keep their natural tabindex), so scoping the fix to it kills only this a11y-only side effect
   app-wide, without touching focus-visible indicators on anything a keyboard user actually tabs to. */
[tabindex="-1"]:focus {
    outline: none;
}

/*end of PROGRAMMATIC-FOCUS OUTLINE SUPPRESSION***********************************************************/


/*AXIONIQUE MARKETING PAGES - VIOLET ACCENT PALETTE (Components/Layout/Header.razor, Footer.razor, Components/Pages/Home.razor)***********************************************************/
/* Defined globally (not in a .razor.css) because Blazor's CSS isolation rewrites a scoped ":root"
   selector into ":root[b-xxxx]", which never matches - custom properties meant to be shared across
   several components' scoped stylesheets have to live in the unscoped stylesheet. */
:root {
    --axq-violet-50: #f5f3ff;
    --axq-violet-100: #ede9fe;
    --axq-violet-200: #ddd6fe;
    --axq-violet-300: #c4b5fd;
    --axq-violet-400: #a78bfa;
    --axq-violet-500: #8b5cf6;
    --axq-violet-600: #7c3aed;
    --axq-violet-700: #6d28d9;
    --axq-violet-900: #4c1d95;
    --axq-violet-950: #2e1065;
}

/*end of AXIONIQUE MARKETING PAGES - VIOLET ACCENT PALETTE***********************************************************/


/*HEADER (Components/Layout/Header.razor)***********************************************************/
.axq-header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(76, 29, 149, 0.3);
}

.axq-header-inner {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.axq-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.axq-header-brand-icon {
    height: 1.75rem;
    width: 1.75rem;
}

.axq-header-brand-text {
    height: 1.75rem;
    width: auto;
}

@media (min-width: 768px) {
    .axq-header-brand-icon {
        height: 35px;
        width: 35px;
    }

    .axq-header-brand-text {
        height: 35px;
    }
}

/* One shared nav + actions, no separate mobile copy: .axq-header-menu is the panel wrapper that's
   either an absolutely-positioned dropdown (below md, toggled by .axq-header-toggle:checked) or an
   inline flex row participating in .axq-header-inner's layout (md+, forced via !important regardless
   of checked state so a checkbox left checked from a mobile-width visit can't leave the dropdown
   showing after resizing up). .axq-header-nav/.axq-header-actions only restyle for column vs. row -
   the markup itself never changes between breakpoints. */
.axq-header-menu {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(76, 29, 149, 0.3);
    padding: 1rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
}

.axq-header-toggle:checked ~ .axq-header-inner .axq-header-menu {
    display: flex;
}

.axq-header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.axq-header-nav .nav-link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    color: #d1d5db;
    border-radius: 0.5rem;
}

.axq-header-nav .nav-link:hover,
.axq-header-nav .nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.axq-header-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.axq-header-actions .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .axq-header-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }

    .axq-header-nav {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .axq-header-nav .nav-link {
        padding: 0;
        font-size: 0.875rem;
        color: #d1d5db;
        border-radius: 0;
        transition: color 0.15s ease;
    }

    .axq-header-nav .nav-link:hover,
    .axq-header-nav .nav-link.active {
        color: #fff;
        background-color: transparent;
    }

    .axq-header-actions {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .axq-header-actions .btn {
        width: auto;
    }
}

.axq-btn-login {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}

.axq-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.axq-btn-signup {
    background-color: var(--axq-violet-500);
    border: 1px solid var(--axq-violet-500);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.2);
}

.axq-btn-signup:hover {
    background-color: var(--axq-violet-400);
    border-color: var(--axq-violet-400);
    color: #fff;
}

.axq-btn-login:active,
.axq-btn-signup:active {
    transform: scale(0.95);
}

/* Mobile nav toggle - a checkbox styled as a plain icon, same "checkbox hack" as the standard Blazor
   template's NavMenu.razor.navbar-toggler: appearance:none plus a swapped background-image gives the
   hamburger/X look, and the :checked ~ .axq-header-inner .axq-header-menu sibling selector shows the
   panel - all pure CSS, no JS. The checkbox has to precede .axq-header-inner in the markup for that
   selector to reach into it, so (being position:absolute anyway) it's placed first and positioned
   over the header row instead of sitting in the flex layout. top uses a fixed rem value rather than
   top:50% - .axq-header itself grows taller once the menu opens (the menu is a normal-flow sibling
   below the header row), and a percentage would then be recalculated against that larger height and
   drift the icon out of the header row entirely. */
.axq-header-toggle {
    appearance: none;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.axq-header-toggle:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

/*end of HEADER***********************************************************/


/*FOOTER (Components/Layout/Footer.razor)***********************************************************/
.axq-footer {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 3rem;
    border-top: 1px solid #f3f4f6;
}

.axq-footer-columns {
    margin-bottom: 5rem;
}

.axq-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.axq-footer-brand-icon {
    height: 2.75rem;
    width: 2.75rem;
}

.axq-footer-brand-text {
    height: 1.75rem;
    width: auto;
}

@media (min-width: 768px) {
    .axq-footer-brand-text {
        height: 2rem;
    }
}

.axq-footer-blurb {
    color: #1f2937;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.axq-footer-heading {
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.axq-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.axq-footer-links a {
    color: #1f2937;
    text-decoration: none;
}

.axq-footer-links a:hover {
    color: #000;
    text-decoration: none;
}

.axq-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.axq-footer-copyright {
    color: #1f2937;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 768px) {
    .axq-footer-bottom {
        flex-direction: row;
    }
}

/*end of FOOTER***********************************************************/


/*LEGAL PAGES (Components/Layout/LegalPageLayout.razor, Components/Pages/PrivacyPolicy.razor, TermsOfService.razor)***********************************************************/
.axq-legal {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0.5rem;
    margin-top: 6rem;
}

@media (min-width: 768px) {
    .axq-legal {
        margin-top: 7rem;
    }
}

.axq-legal-card {
    width: 100%;
    max-width: 48rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    color: #1f2937;
}

.axq-legal-card h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.axq-legal-card .axq-legal-updated {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.axq-legal-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.axq-legal-card .axq-legal-italic {
    font-style: italic;
}

.axq-legal-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.axq-legal-card ul {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

.axq-legal-card li + li {
    margin-top: 0.5rem;
}

.axq-legal-card strong {
    font-weight: 700;
}

.axq-legal-card section {
    margin-bottom: 1.5rem;
}

.axq-legal-card section:last-child {
    margin-bottom: 0;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.axq-legal-card section:last-child p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #4b5563;
}

/*end of LEGAL PAGES***********************************************************/


/*HOME PAGE (Components/Pages/Home.razor)***********************************************************/
.axq-home {
    min-height: 100vh;
    background-color: #fff;
}

.axq-home ::selection {
    background-color: var(--axq-violet-500);
    color: #fff;
}

#home, #comparison, #valueprops, #services, #process, #contact {
    scroll-margin-top: 5rem;
}

/*HERO***********************************************************/
.axq-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 5rem;
    overflow: hidden;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.axq-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.axq-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axq-hero-mockup {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .axq-hero-mockup {
        transform: scale(1);
    }
}

.axq-hero-mockup-panel {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 16rem;
    border: 1px solid rgba(76, 29, 149, 0.3);
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.axq-hero-mockup-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.axq-hero-mockup-bar {
    background-color: rgba(76, 29, 149, 0.4);
    border-radius: 0.25rem;
}

.axq-hero-mockup-bar-title {
    height: 1rem;
    width: 8rem;
}

.axq-hero-mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.axq-hero-mockup-bar-dot {
    height: 1rem;
    width: 2rem;
}

.axq-hero-mockup-chart {
    height: calc(100% - 2.5rem);
    border-radius: 0.5rem;
}

.axq-hero-mockup-stats {
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: calc(2rem + 16rem + 2rem);
    height: 8rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.axq-hero-mockup-stat {
    border: 1px solid rgba(76, 29, 149, 0.3);
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.axq-hero-mockup-bar-label {
    height: 0.5rem;
    width: 50%;
    margin-bottom: 0.5rem;
}

.axq-hero-mockup-bar-value {
    height: 1.5rem;
    width: 75%;
}

.axq-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.1));
}

.axq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 64rem;
    margin: 3rem auto 0;
    padding: 0 1rem;
    text-align: center;
}

.axq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    padding: 0.25rem 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.axq-hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--axq-violet-500);
    animation: axq-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes axq-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.axq-hero-badge-text {
    color: var(--axq-violet-300);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.axq-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
}

.axq-hero-title-sub {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--axq-violet-300);
}

@media (min-width: 768px) {
    .axq-hero-title {
        font-size: 4.5rem;
    }

    .axq-hero-title-sub {
        font-size: 3rem;
    }
}

.axq-hero-tagline {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

@media (min-width: 768px) {
    .axq-hero-tagline {
        font-size: 1.25rem;
    }
}

.axq-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 576px) {
    .axq-hero-cta {
        flex-direction: row;
    }
}

.axq-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
}

/*end of HERO***********************************************************/


/*SHARED PRIMARY BUTTON (hero / valueprops CTA / process CTA)***********************************************************/
.axq-btn-primary {
    background-color: var(--axq-violet-500);
    border: 1px solid var(--axq-violet-500);
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.3);
}

.axq-btn-primary:hover {
    background-color: var(--axq-violet-400);
    border-color: var(--axq-violet-400);
    color: #fff;
}

.axq-btn-primary:active {
    transform: scale(0.95);
}

.axq-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.axq-btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.15s ease;
}

.axq-btn-primary:hover .axq-btn-arrow {
    transform: translateX(0.25rem);
}

/*end of SHARED PRIMARY BUTTON***********************************************************/


/*SHARED SECTION / HEADING HELPERS***********************************************************/
.axq-section {
    padding: 6rem 0;
}

.axq-section-gray {
    background-color: #f9fafb;
}

.axq-section-white {
    background-color: #fff;
}

.axq-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.axq-h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.axq-h2-center {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
}

.axq-h2-white {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .axq-h2, .axq-h2-center, .axq-h2-white {
        font-size: 3rem;
    }
}

.axq-lead {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.axq-subtext {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/*end of SHARED SECTION / HEADING HELPERS***********************************************************/


/*COMPARISON***********************************************************/
.axq-comparison-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .axq-comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.axq-pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.axq-pain-item {
    background-color: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.15s ease;
}

.axq-pain-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.axq-pain-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: #f1f5f9;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.axq-pain-text {
    color: #111827;
    font-weight: 500;
}

/*end of COMPARISON***********************************************************/


/*VALUE PROPS***********************************************************/
.axq-valueprops-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .axq-valueprops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .axq-valueprops-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.axq-value-card {
    background-color: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.axq-value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.axq-value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: var(--axq-violet-50);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.axq-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.axq-value-desc {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.axq-value-cta-card {
    background-color: var(--axq-violet-50);
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.axq-value-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/*end of VALUE PROPS***********************************************************/


/*SERVICES (dark)***********************************************************/
.axq-services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000, var(--axq-violet-950), #000);
}

.axq-services-header {
    margin-bottom: 4rem;
}

.axq-services-subtext {
    color: rgba(237, 233, 254, 0.7);
    max-width: 36rem;
    margin: 0;
}

.axq-solutions-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .axq-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .axq-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.axq-solution-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: border-color 0.2s ease;
}

.axq-solution-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.axq-solution-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: background-color 0.2s ease;
}

.axq-solution-card:hover .axq-solution-icon {
    background-color: rgba(139, 92, 246, 0.3);
}

.axq-solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.axq-solution-desc {
    color: rgba(229, 231, 235, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.axq-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--axq-violet-200);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    text-decoration: none;
}

.axq-solution-link:hover {
    color: #fff;
    text-decoration: none;
}

/*end of SERVICES***********************************************************/


/*PROCESS***********************************************************/
.axq-process {
    overflow: hidden;
}

.axq-process-track {
    position: relative;
    display: flex;
    flex-direction: column;
}

.axq-process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f3f4f6;
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .axq-process-line {
        display: block;
    }
}

.axq-process-step {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
}

.axq-process-step-right {
    justify-content: flex-end;
}

.axq-process-step-content {
    width: 100%;
    text-align: right;
}

.axq-process-step-right .axq-process-step-content {
    text-align: left;
}

@media (min-width: 768px) {
    .axq-process-step-content {
        width: 45%;
    }
}

.axq-process-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--axq-violet-600);
    margin-bottom: 0.5rem;
}

.axq-process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.axq-process-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 768px) {
    .axq-process-desc {
        font-size: 1rem;
    }
}

.axq-process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--axq-violet-500);
    border: 4px solid #fff;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .axq-process-dot {
        display: block;
    }
}

.axq-process-cta {
    text-align: center;
    margin-top: 3rem;
}

/*end of PROCESS***********************************************************/


/*CONTACT***********************************************************/
.axq-contact {
    padding: 6rem 0;
    background-color: var(--axq-violet-50);
}

.axq-contact-header {
    margin-bottom: 2.5rem;
}

.axq-contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
}

.axq-contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: var(--axq-violet-50);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.axq-contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.axq-contact-email {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/*end of CONTACT***********************************************************/

/*end of HOME PAGE***********************************************************/


/*STRIPE THEME - BUTTONS***********************************************************/
.btn {
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-font-weight: 600;
    --bs-btn-box-shadow: 0 1px 1px rgba(10, 37, 64, 0.08);
    --bs-btn-focus-box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.25);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease, border-color 0.1s ease;
}

    /* Anchor tags styled as .btn shouldn't pick up the global a:hover underline. */
    .btn:hover,
    .btn:focus,
    .btn:active {
        text-decoration: none;
    }

/*end of STRIPE THEME - BUTTONS***********************************************************/


/*GLOBAL NAV-LINK RESET***********************************************************/
/* Bootstrap's own .nav-link defaults to display:block; this keeps any .nav-link (Header.razor's
   desktop/mobile nav today) laid out as a flex row instead, without needing every caller to repeat it. */
.nav-link {
    display: flex;
    align-items: center;
}

/*end of GLOBAL NAV-LINK RESET***********************************************************/


/*MAIN LAYOUT (Components/Layout/MainLayout.razor)***********************************************************/
.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

#blazor-error-ui {
    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 {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*end of MAIN LAYOUT***********************************************************/


/*RECONNECT MODAL (Components/Layout/ReconnectModal.razor)***********************************************************/
.components-reconnect-first-attempt-visible,
.components-reconnect-repeated-attempt-visible,
.components-reconnect-failed-visible,
.components-pause-visible,
.components-resume-failed-visible,
.components-rejoining-animation {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible,
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-paused .components-pause-visible,
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible,
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible {
    display: block;
}


#components-reconnect-modal {
    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 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }
}

    #components-reconnect-modal::backdrop {
        background-color: rgba(0, 0, 0, 0.4);
        animation: components-reconnect-modal-fadeInOpacity 0.5s ease-in-out;
        opacity: 1;
    }

@keyframes components-reconnect-modal-slideUp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button {
    border: 0;
    background-color: #635bff;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover {
        background-color: #4f46e5;
    }

    #components-reconnect-modal button:active {
        background-color: #635bff;
    }

.components-rejoining-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div {
        position: absolute;
        border: 3px solid #635bff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation {
    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;
    }
}

/*end of RECONNECT MODAL***********************************************************/
