:root {
    --sp-ink: #0f172a;
    --sp-muted: #475569;
    --sp-card: rgba(255, 255, 255, 0.82);
    --sp-border: rgba(15, 23, 42, 0.08);
    --sp-primary: #0ea5c6;
    --sp-primary-deep: #0a5aa8;
    --sp-secondary: #14c7c7;
    --sp-footer: #0d2342;
    --sp-hero-shadow: rgba(4, 30, 66, 0.28);
}

html, body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 198, 0.1), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
    color: var(--sp-ink);
}

h1, h2, h3, h4, h5, h6,
.mud-typography-h1, .mud-typography-h2, .mud-typography-h3,
.mud-typography-h4, .mud-typography-h5, .mud-typography-h6 {
    font-family: "Outfit", sans-serif;
}

.sp-appbar {
    background: rgba(247, 251, 255, 0.82) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--sp-ink) !important;
    padding-inline: 1rem;
    transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.sp-appbar .mud-toolbar-appbar {
    height: 4rem !important;
    min-height: 4rem !important;
    padding-inline: 0 !important;
}

.sp-appbar.sp-scrolled {
    background: rgba(247, 251, 255, 0.96) !important;
    box-shadow: 0 2px 24px rgba(15, 23, 42, 0.08) !important;
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

.sp-brand-link,
.sp-brand-link:hover {
    color: var(--sp-ink);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.sp-logo-mark {
    width: 2.95rem;
    height: 2.95rem;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
}

.sp-logo-wordmark {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
}

.sp-logo-wordmark-smart {
    color: var(--sp-primary-deep);
}

.sp-logo-wordmark-platform {
    color: #425466;
}

.sp-nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.sp-desktop-only {
    display: flex;
}

.sp-mobile-only {
    display: none;
}

.sp-header-actions {
    align-items: center;
    gap: 1.1rem;
}

.sp-nav-link,
.sp-nav-link:hover,
a.sp-nav-link,
a.sp-nav-link:hover,
.mud-link.sp-nav-link,
.mud-link.sp-nav-link:hover {
    color: #374151 !important;
    font-weight: 400;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    font-size: 0.84rem !important;
    line-height: 1;
    padding: 0.25rem 0 !important;
}

.sp-nav-link {
    position: relative;
}

.sp-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sp-primary), var(--sp-secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.sp-nav-link:hover::after,
.sp-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.sp-shell-controls {
    margin-right: 2rem;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.sp-language-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sp-language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    background: transparent;
    color: #374151;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 500;
    border: none;
    outline: none;
    transition: background 140ms ease;
    user-select: none;
    white-space: nowrap;
}

.sp-language-trigger:hover,
.sp-language-picker.open .sp-language-trigger {
    background: rgba(15, 23, 42, 0.06);
}

.sp-language-chevron {
    opacity: 0.5;
    transition: transform 160ms ease;
}

.sp-language-chevron.open {
    transform: rotate(180deg);
}

.sp-language-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 10rem;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    z-index: 9999;
    padding: 0.35rem;
}

.sp-language-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: none;
    background: transparent;
    color: #374151;
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
    transition: background 120ms ease;
}

.sp-language-option:hover {
    background: rgba(15, 23, 42, 0.05);
}

.sp-language-option.active {
    background: rgba(14, 165, 198, 0.1);
    color: var(--sp-primary-deep);
    font-weight: 600;
}

.sp-language-trigger-flag,
.sp-language-option-flag {
    --flag-width: 0.78rem;
    --flag-height: 0.54rem;
    border-radius: 0.12rem;
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: none;
}

.sp-language-trigger-code {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.sp-language-chevron {
    opacity: 0.5;
    margin-left: -0.1rem;
}

.sp-language-item,
.sp-language-item-active {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.sp-language-item-active {
    background: rgba(14, 165, 198, 0.1) !important;
    color: var(--sp-primary-deep) !important;
    font-weight: 600;
}

.sp-header-cta-link,
.sp-header-cta-link:hover,
a.sp-header-cta-link,
a.sp-header-cta-link:hover {
    color: #4b5563 !important;
    font-weight: 400;
    font-size: 0.84rem !important;
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: color 160ms ease;
}

.sp-header-cta-link:hover,
a.sp-header-cta-link:hover {
    color: var(--sp-ink) !important;
}

.sp-header-demo-button {
    color: white !important;
    background: linear-gradient(135deg, #0b7daf, #0aa5b5) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 18px rgba(14, 106, 178, 0.16);
    padding-inline: 1.15rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.sp-drawer {
    background: #ffffff;
}

.sp-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.sp-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.75rem;
    gap: 0.15rem;
    flex: 1;
}

.sp-drawer-link {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 140ms ease, color 140ms ease;
}

.sp-drawer-link:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--sp-ink);
}

.sp-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.sp-drawer-lang {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.25rem;
}

.sp-drawer-acquire {
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-color: rgba(71, 85, 105, 0.3) !important;
    color: #374151 !important;
    border-radius: 12px !important;
}

.sp-shell {
    min-height: 100vh;
    padding-top: 0;
}

.sp-home {
    padding: 0 0 4rem;
}

.sp-section {
    padding-block: 5rem;
}

.sp-section-title {
    margin-bottom: 0.75rem;
}

.sp-section-copy {
    color: var(--sp-muted);
    max-width: 62ch;
}

.sp-eyebrow {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--sp-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sp-hero-title {
    width: fit-content;
    max-width: none;
    line-height: 0.95;
    margin-bottom: 1rem;
    margin-inline: auto;
}

.sp-hero-copy {
    max-width: 58ch;
    color: var(--sp-muted);
    line-height: 1.7;
}

.sp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sp-hero-card,
.sp-feature-card,
.sp-contact-panel {
    border: 1px solid var(--sp-border);
    background: var(--sp-card);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 1.5rem;
}

.sp-hero-card {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.sp-feature-card {
    height: 100%;
}

.sp-contact-panel {
    padding: 2rem;
}

.sp-feature-label {
    color: var(--sp-secondary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.sp-hero {
    position: relative;
    overflow: hidden;
    padding: 6.4rem 1.25rem 3rem;
    min-height: 100vh;
}

.sp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 88, 166, 0.86), rgba(12, 88, 166, 0.68)),
        url("assets/hero-bg.jpg");
    background-position: center;
    background-size: cover;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.86), transparent 33%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(247, 251, 255, 0.98) 100%);
}

.sp-hero-container {
    position: relative;
    z-index: 1;
}

.sp-hero-inner {
    max-width: 64rem;
    margin: 0 auto;
    min-height: 44rem;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.sp-hero-inner > * {
    opacity: 0;
    transform: translateY(18px);
    animation: sp-hero-enter 720ms ease forwards;
}

.sp-hero-inner > *:nth-child(1) { animation-delay: 80ms; }
.sp-hero-inner > *:nth-child(2) { animation-delay: 180ms; }
.sp-hero-inner > *:nth-child(3) { animation-delay: 280ms; }
.sp-hero-inner > *:nth-child(4) { animation-delay: 380ms; }
.sp-hero-inner > *:nth-child(5) { animation-delay: 500ms; }

@keyframes sp-hero-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    font-size: 0.92rem !important;
}

.sp-hero-badge-dot {
    font-size: 0.7rem;
    color: var(--sp-secondary);
    animation: sp-badge-pulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(20, 199, 199, 0.5));
}

@keyframes sp-badge-pulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.sp-hero-title {
    width: fit-content;
    max-width: none;
    color: white;
    font-size: clamp(3.8rem, 8.2vw, 6.5rem) !important;
    line-height: 0.95 !important;
    margin-bottom: 1.2rem;
    font-weight: 800 !important;
    user-select: text;
    text-align: center;
}

.sp-hero-title:focus,
.sp-hero-title:focus-visible,
.sp-hero-title-line:focus,
.sp-hero-title-line:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.sp-hero-title-line {
    display: block;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
}

.sp-hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #a5f3fc 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.sp-hero-copy {
    max-width: 46rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
    line-height: 1.45;
}

.sp-hero-primary {
    color: white !important;
    background: linear-gradient(135deg, #10b6c8, #14c7c7) !important;
    border-radius: 16px !important;
    min-width: 13rem;
    box-shadow: 0 16px 30px rgba(20, 199, 199, 0.28);
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.sp-hero-secondary {
    color: white !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 16px !important;
    min-width: 13rem;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.sp-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.sp-hero-stats {
    width: min(56rem, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.sp-stat-card {
    height: 100%;
    border-radius: 20px;
    padding: 1.3rem 1rem;
    background: rgba(25, 47, 77, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px var(--sp-hero-shadow);
}

.sp-stat-value {
    color: white;
    font-weight: 800;
}

.sp-stat-label {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.35;
}

.sp-trust-strip {
    padding: 1.7rem 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.92);
}

.sp-trust-title {
    color: var(--sp-muted);
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.sp-trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    justify-content: center;
}

.sp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sp-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.sp-grid-center {
    align-items: center;
}

.sp-section-heading {
    max-width: 52rem;
    text-align: center;
    margin: 0 auto 2rem;
}

.sp-section-badge {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sp-section-badge-danger {
    color: #b91c1c;
    background: rgba(220, 38, 38, 0.1);
}

.sp-section-badge-accent {
    color: var(--sp-secondary);
    background: rgba(249, 115, 22, 0.12);
}

.sp-section-badge-industry {
    color: var(--sp-primary-deep);
    background: rgba(14, 165, 198, 0.12);
}

.sp-section-badge-modules {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
}

.sp-section-badge-results {
    color: var(--sp-primary-deep);
    background: rgba(14, 165, 198, 0.12);
}

.sp-section-title-wide {
    max-width: 28ch;
    margin-inline: auto;
}

.sp-problem-section .sp-section-title-wide {
    max-width: 36ch;
}

.sp-industry-card-rich .sp-section-title-wide,
.sp-section#industries .sp-section-title-wide {
    max-width: 34ch;
}

.sp-modules-section .sp-section-title-wide {
    max-width: 24ch;
}

.sp-section-copy-centered {
    margin-inline: auto;
}

.sp-gradient-text {
    background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sp-problem-section {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 30%),
        rgba(255, 255, 255, 0.45);
}

.sp-problem-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.5rem;
    border-radius: 26px;
    border: 1px solid rgba(220, 38, 38, 0.12);
    background: rgba(255, 255, 255, 0.82);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sp-problem-index {
    position: absolute;
    top: -0.5rem;
    right: 0.75rem;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: rgba(220, 38, 38, 0.14);
    pointer-events: none;
    user-select: none;
}

.sp-problem-icon {
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.18) !important;
    color: rgba(185, 28, 28, 0.92) !important;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.sp-problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.28);
    box-shadow: 0 22px 40px rgba(148, 24, 24, 0.08);
}

.sp-problem-card:hover .sp-problem-icon {
    background: rgba(220, 38, 38, 0.24) !important;
    transform: scale(1.03);
}

.sp-problem-card:hover .sp-problem-index {
    color: rgba(220, 38, 38, 0.24);
}

.sp-problem-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.sp-problem-copy {
    position: relative;
    z-index: 1;
    color: var(--sp-muted);
    line-height: 1.7;
}

.sp-solution-section {
    background:
        linear-gradient(180deg, rgba(15, 118, 110, 0.04), transparent 28%),
        transparent;
}

.sp-capability-list {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sp-capability-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--sp-ink);
    font-size: 0.97rem;
    line-height: 1.4;
}

.sp-capability-check {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, rgba(10, 90, 168, 0.12), rgba(20, 199, 199, 0.16));
    color: var(--sp-primary-deep);
    flex: 0 0 auto;
}

.sp-solution-subtitle {
    margin-top: -0.2rem;
    margin-bottom: 1rem;
    color: var(--sp-ink);
}

.sp-solution-visual {
    position: relative;
    min-height: 25rem;
    overflow: hidden;
    border-radius: 32px;
    background: transparent;
    border: 0;
}

.sp-solution-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.sp-solution-orbit-large {
    inset: 2.5rem;
}

.sp-solution-orbit-small {
    inset: 5.5rem;
}

.sp-solution-core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: min(18rem, 72%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.sp-feature-icon {
    margin-bottom: 1rem;
}

.sp-feature-icon-square {
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(135deg, #0a5aa8, #14c7c7) !important;
    box-shadow: 0 16px 34px rgba(10, 90, 168, 0.2);
}

.sp-feature-title {
    margin-bottom: 0.65rem;
}

.sp-feature-copy {
    color: var(--sp-muted);
    line-height: 1.7;
}

.sp-feature-card {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sp-industry-card,
.sp-case-card,
.sp-demo-form-card,
.sp-demo-feature {
    border: 1px solid var(--sp-border);
    background: var(--sp-card);
    backdrop-filter: blur(14px);
    border-radius: 28px;
}

.sp-industry-card,
.sp-case-card {
    height: 100%;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.sp-industry-bar {
    height: 0.35rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.sp-industry-icon {
    margin-bottom: 1rem;
    color: white !important;
}

.sp-industry-title {
    margin-bottom: 0.3rem;
}

.sp-industry-subtitle,
.sp-case-industry {
    color: var(--sp-muted);
    margin-bottom: 0.75rem;
}

.sp-industry-copy,
.sp-case-copy {
    color: var(--sp-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sp-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sp-modules-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(20, 199, 199, 0.22), transparent 20%),
        radial-gradient(circle at 84% 30%, rgba(14, 165, 198, 0.2), transparent 22%),
        linear-gradient(135deg, #071e38 0%, #0a355f 48%, #0f172a 100%);
    color: white;
}

.sp-on-dark {
    color: rgba(255, 255, 255, 0.72);
}

.sp-module-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.sp-module-swipe-hint {
    display: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 0.9rem;
}

.sp-module-tab {
    appearance: none;
    padding: 0.85rem 1rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: white !important;
    gap: 0.75rem;
    min-width: 13rem;
    justify-content: flex-start;
    text-align: left;
    cursor: pointer;
}

.sp-module-tab.active {
    border-color: rgba(251, 146, 60, 0.7) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 1px rgba(20, 199, 199, 0.22), 0 0 34px rgba(20, 199, 199, 0.16);
}

.sp-module-short {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: white;
    font-weight: 700;
}

.sp-module-objective {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.sp-module-feature-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.sp-module-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-feature-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
}

.sp-module-applies {
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 0.6rem;
}

.sp-module-chip {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

.sp-module-visual {
    padding: 0;
    border-radius: 32px;
    background: transparent;
    border: 0;
}

.sp-module-screen {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
}

.sp-module-screen-bar {
    display: flex;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    background: rgba(15, 23, 42, 0.7);
}

.sp-module-screen-bar span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
}

.sp-module-screen-body {
    padding: 1.2rem;
}

.sp-module-graph {
    height: 10rem;
    border-radius: 22px;
    margin-bottom: 1rem;
}

.sp-module-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sp-module-metric,
.sp-module-panel {
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
}

.sp-module-metric {
    height: 4rem;
}

.sp-module-metric.short {
    height: 3rem;
}

.sp-module-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.75rem;
}

.sp-module-panel {
    height: 8rem;
}

.sp-module-panel.tall {
    height: 10rem;
}

.sp-case-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.sp-case-place {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.sp-case-place-copy {
    display: grid;
    gap: 0.1rem;
}

.sp-case-client-type {
    color: var(--sp-muted);
}

.sp-case-flag {
    flex-shrink: 0;
}

.sp-case-industry-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 165, 198, 0.08);
    color: var(--sp-primary-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sp-case-title {
    margin-bottom: 0.35rem;
}

.sp-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sp-case-divider {
    height: 1px;
    margin: 1rem 0 0.85rem;
    background: rgba(15, 23, 42, 0.08);
}

.sp-case-stat {
    border-radius: 14px;
    padding: 0.6rem 0.6rem;
    text-align: center;
    background: rgba(15, 118, 110, 0.07);
    display: grid;
    align-content: center;
}

.sp-case-stat-value {
    color: var(--sp-secondary);
    font-weight: 700;
}

.sp-case-stat-label {
    color: var(--sp-muted);
    font-size: 0.8rem;
}

.sp-case-module-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.sp-case-module-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 2.3rem;
    padding: 0.52rem 0.8rem;
    border-radius: 999px;
    background: rgba(10, 90, 168, 0.08);
    color: var(--sp-primary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.sp-case-module-icon {
    width: 1rem;
    height: 1rem;
    display: block;
}

.sp-demo-page {
    padding-top: 7rem;
}

.sp-demo-feature-stack {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.sp-demo-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
}

.sp-demo-form-card {
    padding: 1.5rem;
}

.sp-funnel-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sp-funnel-card-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.sp-funnel-card-icon,
.sp-funnel-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.sp-funnel-card-icon {
    background: rgba(249, 115, 22, 0.12);
    color: var(--sp-secondary);
}

.sp-funnel-feature-icon {
    background: rgba(249, 115, 22, 0.12);
    color: var(--sp-secondary);
}

.sp-benefits-section {
    background: rgba(255, 255, 255, 0.46);
}

.sp-benefit-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    height: 100%;
    padding: 1rem 0.35rem;
}

.sp-benefit-icon {
    flex-shrink: 0;
    width: 3.5rem !important;
    height: 3.5rem !important;
    display: grid;
    place-items: center;
    border-radius: 1rem !important;
    background: linear-gradient(135deg, var(--sp-primary), #0f9d8f) !important;
    color: white !important;
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.2);
}

.sp-benefit-title {
    margin-bottom: 0.45rem;
    font-weight: 800 !important;
}

.sp-testimonials-section {
    background: rgba(255, 255, 255, 0.35);
}

.sp-testimonial-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(18rem, 24rem);
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
}

.sp-testimonial-strip::-webkit-scrollbar {
    height: 0.55rem;
}

.sp-testimonial-strip::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.16);
    border-radius: 999px;
}

.sp-testimonial-card {
    scroll-snap-align: start;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--sp-border);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.sp-testimonial-media {
    position: relative;
    height: 11rem;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
}

.sp-testimonial-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.sp-testimonial-icon {
    font-size: 1.75rem !important;
}

.sp-testimonial-flag {
    flex-shrink: 0;
}

.sp-flag-badge {
    --flag-width: 2.35rem;
    --flag-height: 1.58rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--flag-width);
    height: var(--flag-height);
    overflow: hidden;
    border-radius: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: white;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    line-height: 1;
}

.sp-flag-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-flag-americas .sp-flag-image {
    object-fit: cover;
}

.sp-case-flag.sp-flag-badge {
    --flag-width: 2rem;
    --flag-height: 1.34rem;
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.sp-testimonial-flag.sp-flag-badge {
    --flag-width: 2rem;
    --flag-height: 1.34rem;
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

.sp-flag-shape {
    position: absolute;
    inset: 0;
}

.sp-flag-world-icon {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0ea5c6, #0f766e);
}

.sp-flag-world-icon::before {
    content: "";
    position: absolute;
    inset: 18% 23%;
    border: 0.08rem solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
}

.sp-flag-world-icon::after {
    content: "";
    position: absolute;
    inset: 18% 23%;
    border-left: 0.08rem solid rgba(255, 255, 255, 0.88);
    border-right: 0.08rem solid rgba(255, 255, 255, 0.88);
}

.sp-flag-fallback {
    color: var(--sp-primary-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sp-disabled-action-wrap {
    display: inline-flex;
    flex: 1 1 0;
}

.sp-disabled-action {
    opacity: 0.58;
    cursor: not-allowed !important;
}

.sp-flag-uy .sp-flag-shape {
    background: repeating-linear-gradient(
        to bottom,
        #ffffff 0,
        #ffffff 11.111%,
        #3f8edb 11.111%,
        #3f8edb 22.222%
    );
}

.sp-flag-uy .sp-flag-shape::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 55.6%;
    background: #ffffff;
}

.sp-flag-uy .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 14%;
    left: 10%;
    width: 20%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: #f5c542;
    box-shadow: 0 0 0 0.08rem rgba(245, 197, 66, 0.9);
}

.sp-flag-mx .sp-flag-shape {
    background: linear-gradient(to right, #006847 0 33.333%, #ffffff 33.333% 66.666%, #ce1126 66.666% 100%);
}

.sp-flag-mx .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #a67c2d;
    box-shadow: 0 0 0 0.05rem rgba(0, 104, 71, 0.45);
}

.sp-flag-cl .sp-flag-shape {
    background: linear-gradient(to bottom, #ffffff 0 50%, #d52b1e 50% 100%);
}

.sp-flag-cl .sp-flag-shape::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 50%;
    background: #0039a6;
}

.sp-flag-cl .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 13%;
    left: 15%;
    width: 11%;
    aspect-ratio: 1;
    background: #ffffff;
    clip-path: polygon(50% 0, 61% 36%, 100% 36%, 68% 57%, 80% 100%, 50% 72%, 20% 100%, 32% 57%, 0 36%, 39% 36%);
}

.sp-flag-ar .sp-flag-shape {
    background: linear-gradient(to bottom, #74acdf 0 33.333%, #ffffff 33.333% 66.666%, #74acdf 66.666% 100%);
}

.sp-flag-ar .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #f6b40e;
}

.sp-flag-br .sp-flag-shape {
    background: #009b3a;
}

.sp-flag-br .sp-flag-shape::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55%;
    height: 55%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #ffdf00;
}

.sp-flag-br .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #002776;
}

.sp-flag-pe .sp-flag-shape {
    background: linear-gradient(to right, #d91023 0 33.333%, #ffffff 33.333% 66.666%, #d91023 66.666% 100%);
}

.sp-flag-us .sp-flag-shape {
    background: repeating-linear-gradient(
        to bottom,
        #b22234 0,
        #b22234 7.692%,
        #ffffff 7.692%,
        #ffffff 15.384%
    );
}

.sp-flag-us .sp-flag-shape::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 53.8%;
    background: #3c3b6e;
}

.sp-flag-world .sp-flag-shape {
    background: linear-gradient(135deg, #0ea5c6, #0f766e);
}

.sp-flag-world .sp-flag-shape::before {
    content: "";
    position: absolute;
    inset: 18% 23%;
    border: 0.08rem solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
}

.sp-flag-world .sp-flag-shape::after {
    content: "";
    position: absolute;
    inset: 18% 23%;
    border-left: 0.08rem solid rgba(255, 255, 255, 0.88);
    border-right: 0.08rem solid rgba(255, 255, 255, 0.88);
}

.sp-flag-co .sp-flag-shape,
.sp-flag-ec .sp-flag-shape {
    background: linear-gradient(to bottom, #fcd116 0 50%, #003893 50% 75%, #ce1126 75% 100%);
}

.sp-flag-pa .sp-flag-shape {
    background:
        linear-gradient(#ffffff 0 0) top left / 50% 50% no-repeat,
        linear-gradient(#d21034 0 0) top right / 50% 50% no-repeat,
        linear-gradient(#005293 0 0) bottom left / 50% 50% no-repeat,
        linear-gradient(#ffffff 0 0) bottom right / 50% 50% no-repeat;
}

.sp-flag-ve .sp-flag-shape {
    background: linear-gradient(to bottom, #fcd116 0 33.333%, #003893 33.333% 66.666%, #ce1126 66.666% 100%);
}

.sp-flag-bo .sp-flag-shape {
    background: linear-gradient(to bottom, #d52b1e 0 33.333%, #f9e300 33.333% 66.666%, #007934 66.666% 100%);
}

.sp-flag-py .sp-flag-shape {
    background: linear-gradient(to bottom, #d52b1e 0 33.333%, #ffffff 33.333% 66.666%, #0038a8 66.666% 100%);
}

.sp-flag-cr .sp-flag-shape {
    background: linear-gradient(to bottom, #002b7f 0 16.666%, #ffffff 16.666% 33.333%, #ce1126 33.333% 66.666%, #ffffff 66.666% 83.333%, #002b7f 83.333% 100%);
}

.sp-flag-cu .sp-flag-shape,
.sp-flag-pr .sp-flag-shape {
    background: repeating-linear-gradient(to bottom, #0050a4 0 20%, #ffffff 20% 40%);
}

.sp-flag-cu .sp-flag-shape::before,
.sp-flag-pr .sp-flag-shape::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 46%;
    height: 100%;
    background: #d21034;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.sp-flag-pr .sp-flag-shape {
    background: repeating-linear-gradient(to bottom, #d21034 0 20%, #ffffff 20% 40%);
}

.sp-flag-pr .sp-flag-shape::before {
    background: #0050a4;
}

.sp-flag-gt .sp-flag-shape {
    background: linear-gradient(to right, #4997d0 0 33.333%, #ffffff 33.333% 66.666%, #4997d0 66.666% 100%);
}

.sp-flag-hn .sp-flag-shape,
.sp-flag-ni .sp-flag-shape,
.sp-flag-sv .sp-flag-shape {
    background: linear-gradient(to bottom, #0073cf 0 33.333%, #ffffff 33.333% 66.666%, #0073cf 66.666% 100%);
}

.sp-flag-do .sp-flag-shape {
    background:
        linear-gradient(#002d62 0 0) top left / 42% 42% no-repeat,
        linear-gradient(#ce1126 0 0) top right / 42% 42% no-repeat,
        linear-gradient(#ce1126 0 0) bottom left / 42% 42% no-repeat,
        linear-gradient(#002d62 0 0) bottom right / 42% 42% no-repeat,
        #ffffff;
}

.sp-flag-ht .sp-flag-shape {
    background: linear-gradient(to bottom, #00209f 0 50%, #d21034 50% 100%);
}

.sp-flag-ca .sp-flag-shape {
    background: linear-gradient(to right, #d52b1e 0 25%, #ffffff 25% 75%, #d52b1e 75% 100%);
}

.sp-flag-ca .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 31%;
    left: 45%;
    width: 10%;
    height: 38%;
    background: #d52b1e;
    clip-path: polygon(50% 0, 70% 30%, 100% 20%, 76% 48%, 92% 78%, 62% 68%, 50% 100%, 38% 68%, 8% 78%, 24% 48%, 0 20%, 30% 30%);
}

.sp-flag-bz .sp-flag-shape {
    background: linear-gradient(to bottom, #ce1126 0 14%, #003f87 14% 86%, #ce1126 86% 100%);
}

.sp-flag-bs .sp-flag-shape {
    background: linear-gradient(to bottom, #00abc9 0 33.333%, #fae042 33.333% 66.666%, #00abc9 66.666% 100%);
}

.sp-flag-bs .sp-flag-shape::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    background: #000000;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.sp-flag-bb .sp-flag-shape {
    background: linear-gradient(to right, #00267f 0 33.333%, #ffc726 33.333% 66.666%, #00267f 66.666% 100%);
}

.sp-flag-jm .sp-flag-shape {
    background: #009b3a;
}

.sp-flag-jm .sp-flag-shape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fed100;
    clip-path: polygon(0 0, 12% 0, 50% 42%, 88% 0, 100% 0, 58% 50%, 100% 100%, 88% 100%, 50% 58%, 12% 100%, 0 100%, 42% 50%);
}

.sp-flag-tt .sp-flag-shape {
    background: linear-gradient(35deg, #ce1126 0 38%, #ffffff 38% 43%, #000000 43% 57%, #ffffff 57% 62%, #ce1126 62% 100%);
}

.sp-flag-gd .sp-flag-shape {
    background: radial-gradient(circle at 50% 50%, #fcd116 0 16%, transparent 17%), linear-gradient(to bottom, #ce1126 0 18%, #009739 18% 82%, #ce1126 82% 100%);
}

.sp-flag-ag .sp-flag-shape {
    background: linear-gradient(to bottom, #000000 0 36%, #0072ce 36% 52%, #ffffff 52% 68%, #ce1126 68% 100%);
}

.sp-flag-dm .sp-flag-shape {
    background: linear-gradient(to right, transparent 0 44%, #fcd116 44% 48%, #000000 48% 52%, #ffffff 52% 56%, transparent 56% 100%), linear-gradient(to bottom, #007a5e 0 44%, #fcd116 44% 48%, #000000 48% 52%, #ffffff 52% 56%, #007a5e 56% 100%);
}

.sp-flag-kn .sp-flag-shape {
    background: linear-gradient(135deg, #009739 0 40%, #fcd116 40% 45%, #000000 45% 55%, #fcd116 55% 60%, #ce1126 60% 100%);
}

.sp-flag-lc .sp-flag-shape {
    background: #66ccff;
}

.sp-flag-lc .sp-flag-shape::after {
    content: "";
    position: absolute;
    left: 32%;
    top: 18%;
    width: 36%;
    height: 64%;
    background: linear-gradient(to right, #000000 0 50%, #fcd116 50% 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.sp-flag-vc .sp-flag-shape {
    background: linear-gradient(to right, #002674 0 25%, #fcd116 25% 75%, #009739 75% 100%);
}

.sp-flag-guy .sp-flag-shape,
.sp-flag-gy .sp-flag-shape {
    background: #009e49;
}

.sp-flag-guy .sp-flag-shape::before,
.sp-flag-gy .sp-flag-shape::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 72%;
    background: #fcd116;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.sp-flag-sr .sp-flag-shape {
    background: linear-gradient(to bottom, #377e3f 0 20%, #ffffff 20% 30%, #b40a2d 30% 70%, #ffffff 70% 80%, #377e3f 80% 100%);
}

.sp-flag-sr .sp-flag-shape::after {
    content: "";
    position: absolute;
    top: 39%;
    left: 46%;
    width: 8%;
    aspect-ratio: 1;
    background: #ecc81d;
    clip-path: polygon(50% 0, 61% 36%, 100% 36%, 68% 57%, 80% 100%, 50% 72%, 20% 100%, 32% 57%, 0 36%, 39% 36%);
}

.sp-testimonial-industry {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.72rem;
    line-height: 1.3;
}

.sp-testimonial-body {
    padding: 1.35rem;
}

.sp-testimonial-quote-icon {
    color: rgba(15, 118, 110, 0.24);
    font-size: 1.65rem !important;
    margin-bottom: 0.4rem;
}

.sp-testimonial-quote {
    color: var(--sp-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.sp-testimonial-meta {
    padding-top: 0.9rem;
    border-top: 1px solid var(--sp-border);
}

.sp-testimonial-meta .mud-typography-subtitle2 {
    color: var(--sp-ink);
    font-weight: 700;
}

.sp-cta-section {
    position: relative;
    overflow: hidden;
    color: white;
}

.sp-cta-bg {
    position: absolute;
    inset: 0;
}

.sp-cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
}

.sp-cta-title {
    color: white;
    margin-bottom: 1rem;
}

.sp-cta-copy {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.sp-cta-orbs {
    position: absolute;
    inset: auto 0 2rem 0;
    pointer-events: none;
}

.sp-cta-orbs span {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.sp-cta-orbs span:nth-child(1) {
    width: 9rem;
    height: 9rem;
    left: 8%;
    bottom: -2rem;
}

.sp-cta-orbs span:nth-child(2) {
    width: 13rem;
    height: 13rem;
    right: 10%;
    bottom: -4rem;
}

.sp-cta-orbs span:nth-child(3) {
    width: 4.75rem;
    height: 4.75rem;
    right: 22%;
    top: 2rem;
}

.sp-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -12px 26px rgba(15, 23, 42, 0.08);
}

.sp-demo-success {
    min-height: 28rem;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
}

.sp-quote-modules {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.sp-quote-module-card {
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px solid var(--sp-border);
    background: rgba(255,255,255,0.72);
}

.sp-quote-module-top,
.sp-quote-estimate-row,
.sp-quote-total-row,
.sp-quote-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.sp-quote-estimate-row,
.sp-quote-total-row {
    margin-top: 0.75rem;
}

.sp-subscription-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(14, 165, 198, 0.18);
    border-radius: 14px;
    background: rgba(14, 165, 198, 0.08);
    color: var(--sp-primary-deep);
}

.sp-subscription-note .mud-icon-root {
    font-size: 1.25rem !important;
}

.sp-quote-summary-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.sp-quote-summary-item {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--sp-border);
}

.sp-sandbox-banner {
    position: sticky;
    top: 4.5rem;
    z-index: 20;
    text-align: center;
    padding: 0.7rem 1rem;
    background: #facc15;
    color: #713f12;
    font-size: 0.9rem;
    font-weight: 700;
}

.sp-card-host {
    min-height: 3rem;
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    border: 1px solid var(--sp-border);
    background: white;
}

.sp-card-label {
    display: block;
    margin-bottom: 0.45rem;
}

.sp-payment-protection {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    margin-bottom: 0.5rem;
}

.sp-payment-title {
    display: block;
    color: var(--sp-ink);
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.sp-payment-progress-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(14, 165, 198, 0.2);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(14, 165, 198, 0.1), rgba(15, 118, 110, 0.06)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.sp-payment-progress-orbit {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(14, 165, 198, 0.14);
}

.sp-payment-progress-title {
    color: var(--sp-ink) !important;
    font-weight: 800 !important;
    margin-bottom: 0.15rem;
}

.sp-payment-progress-copy {
    color: var(--sp-muted) !important;
    margin-bottom: 0.65rem !important;
}

.sp-payment-progress-bar {
    height: 0.42rem !important;
    border-radius: 999px;
    overflow: hidden;
}

.sp-loading-state {
    display: grid;
    place-items: center;
    gap: 1rem;
    min-height: 18rem;
}

.sp-center-actions {
    justify-content: center;
}

.sp-contact-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sp-fab-button {
    width: 3.5rem !important;
    height: 3.5rem !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    background: linear-gradient(135deg, #0b78b5, #10b6c8) !important;
    color: white !important;
}

.sp-rich-text {
    color: var(--sp-muted);
    line-height: 1.8;
}

.sp-rich-text h3 {
    color: var(--sp-ink);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
}

.sp-rich-text ul {
    padding-left: 1.25rem;
}

.sp-rich-text a {
    color: var(--sp-secondary);
}

.sp-doc-grid {
    display: grid;
    gap: 1rem;
}

.sp-doc-module-grid {
    align-items: stretch;
}

.sp-doc-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid var(--sp-border);
    background: rgba(255,255,255,0.8);
}

.sp-doc-copy {
    min-width: 0;
}

.sp-resource-page {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 198, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32));
}

.sp-resource-layout {
    align-items: start;
}

.sp-resource-panel {
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.sp-resource-title {
    margin-bottom: 0.85rem;
}

.sp-resource-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.sp-resource-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    color: var(--sp-muted);
}

.sp-resource-section {
    margin-bottom: 2rem;
}

.sp-resource-section:last-child {
    margin-bottom: 0;
}

.sp-resource-section-title {
    margin-bottom: 1rem;
    font-family: "Outfit", sans-serif;
    font-weight: 700 !important;
    color: var(--sp-ink);
}

.sp-resource-card {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sp-resource-card-icon-wrap {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(10, 90, 168, 0.12), rgba(20, 199, 199, 0.18));
}

.sp-resource-card-icon {
    width: 2rem;
    height: 2rem;
}

.sp-resource-overline {
    color: var(--sp-primary-deep);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.sp-resource-card-title {
    margin-block: 0.15rem 0.4rem;
}

.sp-resource-button {
    white-space: nowrap;
}

.sp-newsletter-intro {
    margin-bottom: 2rem;
}

.sp-newsletter-grid {
    align-items: stretch;
}

.sp-newsletter-card {
    display: flex;
    flex-direction: column;
    min-height: 18rem;
}

.sp-newsletter-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.sp-newsletter-card-title {
    margin-bottom: 0.25rem;
}

.sp-newsletter-date {
    color: var(--sp-primary-deep);
}

.sp-newsletter-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.sp-resource-button-text {
    padding-inline: 0 !important;
}

.sp-newsletter-upcoming {
    color: var(--sp-muted);
    font-weight: 600;
}

.sp-newsletter-cta {
    margin-top: 1rem;
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.sp-newsletter-contact {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    border-radius: 32px;
    border: 1px solid rgba(10, 90, 168, 0.18);
    background: #eef3f8;
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.sp-newsletter-contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.1rem;
    display: grid;
    place-items: center;
    color: var(--sp-primary-deep);
}

.sp-newsletter-contact-icon .mud-icon-root {
    font-size: 2.2rem;
}

.sp-newsletter-contact-title {
    margin: 0;
}

.sp-newsletter-contact-button {
    min-width: 11.5rem;
}

.sp-brand-button.mud-button-root {
    background: linear-gradient(135deg, var(--sp-primary), #0f9d8f) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.2);
    border-radius: 16px !important;
    font-weight: 700;
    padding-inline: 1.25rem;
}

.sp-brand-button.mud-button-root:hover {
    filter: brightness(0.97);
}

.sp-doc-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.sp-doc-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sp-doc-icon-small {
    width: 2rem;
    height: 2rem;
}

.sp-construction-card {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 32px;
    border: 2px solid rgba(245, 158, 11, 0.24);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(249, 115, 22, 0.08));
}

.sp-training-banner {
    padding: 3rem 2rem;
    border-radius: 32px;
    border: 1px solid rgba(245, 158, 11, 0.25);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(249, 115, 22, 0.08));
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
    margin-bottom: 2rem;
}

.sp-training-banner-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.4rem;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.55);
    color: #d97706;
}

.sp-training-banner-icon .mud-icon-root {
    font-size: 2.6rem;
}

.sp-training-banner-title {
    margin: 0;
}

.sp-training-banner-chip {
    margin-top: 0.35rem;
}

.sp-training-card {
    height: 100%;
    display: grid;
    gap: 1rem;
}

.sp-training-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.sp-training-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--sp-muted);
    font-size: 0.92rem;
}

.sp-training-card-bottom {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--sp-primary-deep);
    font-weight: 600;
}

.sp-training-contact {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    display: grid;
    gap: 1rem;
}

.sp-training-contact-button {
    justify-self: center;
}

.sp-support-side {
    display: grid;
    gap: 1.5rem;
}

.sp-support-panel,
.sp-support-status {
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.sp-support-section-head {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sp-support-faq-group + .sp-support-faq-group {
    margin-top: 1.5rem;
}

.sp-support-accordion {
    margin-top: 0.6rem;
}

.sp-support-status-list {
    display: grid;
    gap: 0.85rem;
}

.sp-support-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.sp-support-status-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sp-support-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
}

.sp-support-form .mud-input-control,
.sp-careers-form .mud-input-control {
    margin-top: 0.1rem;
}

.sp-support-form .mud-input-outlined .mud-input-outlined-border,
.sp-careers-form .mud-input-outlined .mud-input-outlined-border {
    border-color: rgba(14, 165, 198, 0.2);
}

.sp-support-form .mud-input-outlined,
.sp-careers-form .mud-input-outlined {
    background: rgba(248, 251, 253, 0.92);
    border-radius: 14px;
}

.sp-careers-panel {
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.sp-careers-benefit-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.sp-careers-benefit-icon {
    width: 3.4rem !important;
    height: 3.4rem !important;
    margin-bottom: 1rem;
    border-radius: 1rem !important;
    background: rgba(20, 199, 199, 0.12) !important;
    color: var(--sp-secondary) !important;
}

.sp-careers-form-panel {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 2rem 2rem 1.75rem;
}

.sp-careers-form-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.sp-careers-form-title {
    margin-bottom: 0.45rem;
    font-weight: 800 !important;
}

.sp-careers-form-subtitle {
    margin-bottom: 0;
}

.sp-careers-benefits {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.sp-careers-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}


.sp-page-enter {
    animation: sp-page-enter 520ms ease both;
}

@keyframes sp-page-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sp-stats-row div {
    text-align: center;
}

.sp-stats-row strong {
    display: block;
    font-size: 2rem;
    color: var(--sp-primary);
}

.sp-stats-row span {
    color: var(--sp-muted);
    font-size: 0.9rem;
}

.sp-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.sp-partner-card {
    display: grid;
    gap: 0.75rem;
    justify-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--sp-border);
    background: rgba(255,255,255,0.78);
}

.sp-partner-badge {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    font-weight: 700;
}

.sp-compare-breadcrumb {
    margin-bottom: 2rem;
}

.sp-compare-breadcrumb,
.sp-compare-breadcrumb span {
    color: #7c8aa0;
}

.sp-compare-breadcrumb-link,
.sp-compare-breadcrumb-link:hover {
    color: var(--sp-primary-deep) !important;
    font-weight: 500;
}

.sp-compare-breadcrumb-current {
    color: #ffffff;
}

.sp-compare-breadcrumb-current-dark {
    color: #64748b;
}

.sp-compare-section,
.sp-compare-gallery-section {
    margin-top: 4.5rem;
}

.sp-compare-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sp-compare-module-hero-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sp-compare-module-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
    border-color: rgba(14, 165, 198, 0.18);
}

.sp-compare-module-top {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.sp-compare-module-icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
}

.sp-compare-module-kicker {
    color: var(--sp-primary-deep);
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sp-compare-category {
    margin-bottom: 2.5rem;
}

.sp-compare-category-title {
    color: var(--sp-primary-deep);
    margin-bottom: 1rem;
    font-weight: 700 !important;
}

.sp-compare-table-shell {
    display: grid;
    gap: 0.75rem;
}

.sp-compare-header-grid,
.sp-compare-row {
    display: grid;
    grid-template-columns: minmax(240px, 2.1fr) repeat(4, minmax(110px, 1fr));
    gap: 0.75rem;
}

.sp-compare-module-card {
    min-height: 5.5rem;
    text-align: center;
    padding: 1rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    display: grid;
    gap: 0.3rem;
    place-items: center;
}

.sp-compare-table {
    display: grid;
    gap: 0.55rem;
}

.sp-compare-row {
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.sp-compare-feature {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}

.sp-compare-feature-header {
    color: var(--sp-primary-deep);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    display: flex;
    align-items: center;
}

.sp-compare-cell {
    display: grid;
    place-items: center;
}

.sp-compare-state {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.sp-compare-state-on {
    color: #0f9d8f;
    background: rgba(20, 199, 199, 0.12);
}

.sp-compare-state-off {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.14);
}

.sp-compare-gallery-grid {
    display: grid;
    grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.sp-compare-gallery-thumbs {
    display: grid;
    gap: 0.8rem;
}

.sp-compare-thumb {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    transition: all 180ms ease;
}

.sp-compare-thumb img {
    width: 100%;
    height: 5.5rem;
    object-fit: cover;
    display: block;
}

.sp-compare-thumb.active {
    border-color: rgba(14, 165, 198, 0.4);
    box-shadow: 0 14px 30px rgba(14, 165, 198, 0.12);
}

.sp-compare-gallery-main {
    display: grid;
    gap: 1rem;
}

.sp-compare-laptop-shell {
    background: linear-gradient(180deg, #18283d 0%, #0f172a 100%);
    border-radius: 22px 22px 14px 14px;
    padding: 0.8rem 0.8rem 0;
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.16);
}

.sp-compare-laptop-topbar {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}

.sp-compare-laptop-topbar span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.sp-compare-laptop-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    max-height: 34rem;
    object-fit: cover;
}

.sp-compare-laptop-base {
    height: 1.2rem;
    margin: 0 auto;
    width: 88%;
    background: linear-gradient(180deg, #7c8aa0 0%, #bac5d4 100%);
    border-radius: 0 0 18px 18px;
}

.sp-compare-gallery-copy {
    text-align: center;
}

.sp-compare-usecase-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-compare-usecase-need {
    font-weight: 600;
    line-height: 1.55;
}

.sp-compare-usecase-module {
    color: var(--sp-primary-deep);
}

.sp-compare-cta {
    margin-top: 4.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 28px;
    color: white;
    background: linear-gradient(135deg, #082038 0%, #0a3b64 45%, #0ea5c6 100%);
    box-shadow: 0 26px 50px rgba(8, 20, 36, 0.22);
}

.sp-compare-distributor-card {
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 14rem;
    padding: 1.4rem 1rem;
}

.sp-compare-distributor-flag {
    --flag-width: 3rem;
    --flag-height: 2rem;
    margin-bottom: 0.9rem;
}

.sp-compare-distributor-world {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 198, 0.24);
    border-radius: 1.35rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 25%),
        linear-gradient(135deg, #0f7184 0%, #0ea5c6 48%, #16a34a 100%);
    box-shadow: 0 18px 38px rgba(14, 165, 198, 0.24);
}

.sp-compare-distributor-world .mud-icon-root {
    position: relative;
    z-index: 2;
    font-size: 2.25rem !important;
    filter: drop-shadow(0 4px 8px rgba(15, 47, 63, 0.22));
}

.sp-compare-world-orbit {
    position: absolute;
    z-index: 1;
    width: 5rem;
    height: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
}

.sp-compare-world-orbit-one {
    transform: rotate(24deg);
}

.sp-compare-world-orbit-two {
    transform: rotate(-26deg);
    opacity: 0.58;
}

.sp-compare-distributor-grid {
    justify-content: center;
}

.sp-compare-distributor-country {
    color: var(--sp-muted);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.sp-compare-country-pin {
    font-size: 1rem !important;
    color: var(--sp-primary-deep);
}

.sp-compare-distributor-region {
    color: var(--sp-primary-deep);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.sp-integrations-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.sp-integrations-stats div {
    text-align: center;
}

.sp-integrations-stats strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--sp-primary-deep);
    font-family: "Outfit", sans-serif;
}

.sp-integrations-stats span {
    color: var(--sp-muted);
    font-size: 0.95rem;
}

.sp-integrations-stack {
    display: grid;
    gap: 1.75rem;
}

.sp-integrations-card {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.06);
}

.sp-integrations-media {
    min-height: 13rem;
    border-radius: 22px;
    overflow: hidden;
    align-self: center;
}

.sp-integrations-placeholder {
    display: grid;
    place-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, rgba(235, 245, 255, 0.92), rgba(248, 250, 252, 0.96));
    color: var(--sp-primary-deep);
    border: 1px dashed rgba(14, 165, 198, 0.28);
    text-align: center;
    padding: 1.25rem;
}

.sp-integrations-placeholder .mud-icon-root {
    font-size: 2rem !important;
}

.sp-integrations-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-integrations-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-integrations-partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.sp-integrations-partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(247, 251, 255, 0.96);
    color: #334155;
}

.sp-integrations-partner-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary));
    flex: 0 0 auto;
}

.sp-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.sp-screenshot-card {
    padding: 0.9rem;
    border-radius: 24px;
    border: 1px solid var(--sp-border);
    background: rgba(255,255,255,0.8);
}

.sp-screenshot-image {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.sp-notfound-shell {
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 253, 0.94));
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.08);
}

.sp-notfound-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: center;
    gap: 2rem;
}

.sp-notfound-copy {
    text-align: left;
}

.sp-notfound-route {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.sp-notfound-visual {
    position: relative;
    min-height: 22rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 198, 0.2), transparent 35%),
        radial-gradient(circle at bottom right, rgba(20, 199, 199, 0.2), transparent 35%),
        linear-gradient(180deg, rgba(8, 32, 56, 0.96), rgba(12, 50, 86, 0.92));
}

.sp-notfound-logo {
    width: min(10rem, 38vw);
    position: relative;
    z-index: 1;
}

.sp-notfound-code {
    font-size: clamp(4.5rem, 11vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--sp-primary-deep), var(--sp-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sp-notfound-orbit {
    position: absolute;
    inset: 0;
}

.sp-notfound-orbit span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.sp-notfound-orbit span:nth-child(1) {
    width: 11rem;
    height: 11rem;
    top: 1.5rem;
    right: 2rem;
}

.sp-notfound-orbit span:nth-child(2) {
    width: 16rem;
    height: 16rem;
    bottom: -2rem;
    right: -1rem;
}

.sp-notfound-orbit span:nth-child(3) {
    width: 7rem;
    height: 7rem;
    left: 2rem;
    bottom: 2rem;
}

.sp-secondary-outline-button.mud-button-root {
    border-radius: 14px !important;
    min-width: 12rem;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-color: rgba(14, 165, 198, 0.28) !important;
    color: var(--sp-primary-deep) !important;
    background: rgba(255, 255, 255, 0.66) !important;
}

.sp-secondary-outline-button-light.mud-button-root {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.sp-integrations-light-button.mud-button-root {
    color: var(--sp-primary-deep) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: white !important;
}

.sp-construction-banner {
    margin: 0 auto 1.5rem;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    background: rgba(255, 247, 237, 0.95);
    color: #c2410c;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.sp-module-detail-logo-shell {
    display: grid;
    place-items: center;
    min-height: 18rem;
}

.sp-module-detail-gallery {
    margin-top: 2rem;
}

.sp-module-carousel-frame {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.sp-module-detail-gallery-main {
    max-width: 62rem;
    margin: 0 auto;
    width: 100%;
}

.sp-module-shot-frame {
    display: grid;
    place-items: center;
}

.sp-module-detail-phone-shell {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sp-module-detail-shot-frame-phone {
    max-width: 20rem;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
}

.sp-module-detail-phone-notch,
.sp-module-detail-phone-home {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 20, 41, 0.95);
}

.sp-module-detail-phone-notch::before {
    content: '';
    width: 3.5rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.sp-module-detail-phone-home::before {
    content: '';
    width: 2rem;
    height: 0.26rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.sp-module-detail-shot-image-phone {
    height: 26rem;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
}

.sp-module-detail-feature-card {
    height: 100%;
}

.sp-module-detail-feature-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.sp-module-detail-feature-icon {
    color: var(--sp-primary-deep);
    font-size: 1.4rem !important;
    margin-top: 0.05rem;
}

.sp-module-results-section {
    background: linear-gradient(135deg, #081f37 0%, #10365e 48%, #154a77 100%);
}

.sp-module-results-section .sp-section-badge {
    background: rgba(110, 231, 249, 0.14);
    color: #d8fbff;
    border: 1px solid rgba(110, 231, 249, 0.22);
}

.sp-module-results-title,
.sp-module-results-title.sp-section-title,
.sp-module-results-title .sp-gradient-text {
    color: white !important;
}

.sp-module-results-title .sp-gradient-text {
    background: linear-gradient(135deg, #9be7ff 0%, #67e8f9 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-module-results-copy,
.sp-module-results-copy.sp-section-copy {
    color: rgba(241, 245, 249, 0.92) !important;
}

.sp-module-result-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    color: white;
}

.sp-module-result-card .sp-feature-title,
.sp-module-result-card .sp-feature-copy {
    color: white !important;
}

.sp-module-result-metric {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #6ee7f9;
    margin-bottom: 0.75rem;
}

.sp-module-industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sp-module-industry-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
    min-width: 11rem;
    padding: 1rem 1.15rem;
}

.sp-module-industry-icon {
    width: 2.8rem !important;
    height: 2.8rem !important;
    color: white !important;
}

.sp-module-final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0b2238 0%, #113a60 52%, #15527f 100%);
}

.sp-module-compare-cta-wrap {
    justify-content: center;
    width: 100%;
}

.sp-module-compare-cta-wrap .mud-button-root {
    margin-inline: auto;
}

.sp-module-hero-page {
    padding: 7rem 1.25rem 4rem;
}

.sp-module-logo-large {
    width: min(13rem, 60vw);
    opacity: 0.95;
}

.sp-module-carousel-arrow {
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 32, 56, 0.9);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.sp-module-carousel-arrow:hover {
    background: var(--sp-primary-deep);
}

.sp-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.sp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.sp-module-body-copy {
    max-width: 60rem;
    margin: 2rem auto 0;
}

.sp-benefit-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sp-benefit-metric-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.sp-benefit-metric {
    font-size: 2rem;
    font-weight: 700;
    color: #fb923c;
    margin-bottom: 0.25rem;
}

.sp-industry-pill-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.sp-industry-pill-card {
    padding: 1rem 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--sp-border);
    background: rgba(255,255,255,0.82);
}

.sp-dark-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.92));
    color: white;
}

.sp-related-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sp-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
    border-color: rgba(249, 115, 22, 0.35);
}

.sp-related-module-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-related-module-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-related-module-icon {
    width: 3rem;
    height: 3rem;
}

.sp-related-module-arrow {
    color: var(--sp-primary-deep);
    font-size: 1.5rem !important;
}

.sp-compare-distributor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
}

.sp-compare-distributor-primary-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sp-distributor-primary-row {
    display: flex;
    justify-content: center;
}

.sp-compare-distributor-card {
    text-align: center;
    min-height: 100%;
    width: min(100%, 16.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp-compare-distributor-card-primary {
    width: min(100%, 22rem);
}

.sp-compare-distributor-card-primary .sp-compare-distributor-flag {
    --flag-width: 3.6rem;
    --flag-height: 2.4rem;
}

.sp-distributor-leading-label {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.55rem;
    margin-right: 0.2rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: var(--sp-primary-deep);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .sp-compare-distributor-grid {
        flex-wrap: nowrap;
    }
}

.sp-legal-heading {
    margin-bottom: 2rem;
}

.sp-legal-card {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid var(--sp-border);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.sp-industry-hero-page {
    position: relative;
    padding: 7rem 1.25rem 4rem;
    overflow: hidden;
    color: white;
}

.sp-industry-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.sp-industry-hero-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.sp-industry-icon-large {
    width: 4rem !important;
    height: 4rem !important;
    color: white !important;
}

.sp-industry-hero-copy {
    max-width: 52rem;
}

.sp-industry-breadcrumb {
    color: rgba(255, 255, 255, 0.92);
}

.sp-industry-breadcrumb-link,
.sp-industry-breadcrumb-link:hover {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 600;
}

.sp-industry-breadcrumb-current {
    color: #fff;
    font-weight: 700;
}

.sp-industry-section-head {
    max-width: 58rem;
    margin-bottom: 2rem;
}

.sp-industry-section-title {
    max-width: 22ch;
}

.sp-industry-section-copy {
    max-width: 56rem;
    text-align: left;
    margin-inline: 0;
}

.sp-industry-problem-section {
    background: rgba(255, 255, 255, 0.46);
}

.sp-industry-problem-grid {
    align-items: stretch;
}

.sp-industry-problem-card {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1.25rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.96);
}

.sp-industry-problem-dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--industry-accent);
    box-shadow: 0 0 0 4px var(--industry-accent-soft);
}

.sp-industry-problem-copy {
    color: var(--sp-muted);
    line-height: 1.6;
}

.sp-industry-result-copy {
    text-align: center;
    margin-top: 1.4rem;
    color: #64748b;
    font-style: italic;
}

.sp-industry-solution-section {
    background: transparent;
    padding-top: 3.5rem;
}

.sp-industry-solution-badge {
    color: #0f9d8f;
    background: rgba(20, 199, 199, 0.12);
}

.sp-industry-solution-list {
    display: grid;
    gap: 1rem;
}

.sp-industry-solution-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(20, 199, 199, 0.26);
    background: rgba(236, 252, 252, 0.92);
}

.sp-industry-solution-check {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #0f9d8f;
    border: 2px solid #14c7c7;
    background: rgba(255, 255, 255, 0.8);
}

.sp-industry-module-bar {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(20, 199, 199, 0.18);
    background: rgba(240, 253, 250, 0.9);
}

.sp-industry-cta-shell {
    padding-top: 0;
    padding-bottom: 0;
}

.sp-industry-cta-card {
    text-align: center;
    padding: 4rem 1.5rem;
    color: #fff;
    background: linear-gradient(180deg, #0c2038 0%, #13385f 100%);
    box-shadow: 0 26px 50px rgba(8, 20, 36, 0.24);
}

.sp-industry-cta-title {
    color: #fff;
    margin-bottom: 1rem;
}

.sp-industry-cta-copy {
    color: rgba(255, 255, 255, 0.78);
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.sp-related-industry-card {
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.sp-related-industry-icon {
    width: 3rem !important;
    height: 3rem !important;
    color: white !important;
}

.sp-related-industry-link {
    margin-top: auto;
    color: var(--industry-accent);
    font-weight: 700;
}

.sp-industry-visual-section {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
}

.sp-industry-visual-section .sp-screenshot-card {
    max-width: 54rem;
    margin: 0 auto;
}

.sp-industry-visual-section .sp-screenshot-image {
    max-height: 27rem;
    object-fit: cover;
}

.sp-industry-benefits-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.sp-industry-benefits-badge {
    color: #0b5cab;
    background: rgba(59, 130, 246, 0.12);
}

.sp-industry-benefit-card {
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.sp-industry-benefit-check {
    color: #0f9d8f !important;
}

.sp-solution-list {
    display: grid;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

.sp-solution-point-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.18);
}

.sp-module-highlight {
    max-width: 60rem;
    margin: 1.5rem auto 0;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
}

.sp-bullet-list {
    display: grid;
    gap: 0.7rem;
}

.sp-bullet-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: start;
    color: var(--sp-muted);
}

.sp-accent-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.sp-accent-teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.sp-accent-amber {
    background: linear-gradient(135deg, #f59e0b, #b45309);
}

.sp-accent-rose {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.sp-accent-indigo {
    background: linear-gradient(135deg, #6366f1, #3730a3);
}

.sp-accent-slate {
    background: linear-gradient(135deg, #64748b, #334155);
}

.sp-footer {
    margin-top: 4rem;
    background: var(--sp-footer);
    color: rgba(255, 255, 255, 0.86);
}

.sp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.25rem 2rem;
}

.sp-footer-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 1.35fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

.sp-footer-column-brand {
    padding-right: 1rem;
}

.sp-footer-brand,
.sp-footer-brand:hover {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.sp-footer-copy {
    max-width: 32ch;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.sp-footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.sp-footer-social {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-footer-social svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.sp-footer-social:hover {
    color: white !important;
    background: rgba(20, 199, 199, 0.18);
}

.sp-footer-heading {
    color: white;
    margin-bottom: 0.85rem;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.sp-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0.65rem;
    text-decoration: none;
    transition: color 160ms ease;
}

.sp-footer-link:hover {
    color: var(--sp-primary);
}

.sp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.sp-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}

.sp-footer-bottom a,
.sp-footer-bottom a:hover {
    color: var(--sp-secondary);
    font-weight: 700;
    text-decoration: none;
}

.sp-reveal,
.sp-reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.sp-reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

html {
    scroll-behavior: smooth;
}

.sp-logo-wordmark {
    font-size: 1.18rem;
}

.sp-nav-link {
    font-size: 0.92rem;
}

.sp-header-demo-button {
    min-width: 9.5rem;
}

.sp-hero-title {
    width: fit-content;
    max-width: none;
    font-size: clamp(3.3rem, 7vw, 5.35rem) !important;
}

.sp-hero-copy {
    max-width: 43rem;
}

.sp-trust-title {
    display: block;
    text-align: center;
    width: 100%;
    color: rgba(71, 85, 105, 0.8);
    font-size: 0.72rem !important;
}

.sp-trust-item {
    color: rgba(71, 85, 105, 0.86);
    font-size: 0.84rem;
    font-weight: 500;
}

.sp-trust-item .mud-icon-root {
    color: rgba(12, 88, 166, 0.7) !important;
}

.sp-problem-index {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.sp-solution-section {
    background: linear-gradient(180deg, rgba(14, 165, 198, 0.06), rgba(255, 255, 255, 0));
}

.sp-solution-visual {
    min-height: 27rem;
    background: transparent;
    display: grid;
    place-items: center;
}

.sp-solution-wheel {
    width: min(28rem, 86%);
    display: block;
    filter: none;
}

.sp-industry-card-rich {
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

.sp-industry-media {
    position: relative;
    min-height: 9rem;
    padding: 1rem;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sp-industry-media-chip {
    align-self: flex-start;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.sp-industry-media-subtitle {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
}

.sp-industry-body {
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 12rem;
    font-size: 0.9rem;
    flex: 1;
}

.sp-industry-footer {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--sp-border);
}

.sp-industry-footer .mud-button-root {
    align-self: flex-start;
}

.sp-module-tab {
    display: inline-flex !important;
    align-items: center;
}

.sp-module-tab span {
    display: grid;
    gap: 0.15rem;
    text-align: left;
}

.sp-module-tab-copy {
    display: grid;
    gap: 0.15rem;
}

.sp-module-tab strong {
    font-size: 0.95rem;
}

.sp-module-tab small {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.68);
}

.sp-module-tab-icon {
    width: 2.45rem;
    height: 2.45rem;
    display: block;
}

.sp-module-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.35rem;
}

.sp-module-header-icon {
    width: 3.2rem;
    height: 3.2rem;
}

.sp-module-shot-frame {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(7, 20, 41, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(3, 10, 21, 0.42);
}

.sp-module-laptop-shell {
    position: relative;
    padding: 1rem 1.15rem 1.6rem;
}

.sp-module-laptop-base {
    width: 74%;
    height: 1rem;
    margin: -0.2rem auto 0;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(180deg, rgba(193, 205, 220, 0.95), rgba(133, 149, 170, 0.92));
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.sp-module-shot-frame-phone {
    max-width: 20rem;
    margin: 0 auto;
    border-radius: 34px;
}

.sp-module-shot-topbar {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0.8rem 0.35rem;
}

.sp-module-shot-topbar span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.sp-module-shot-image {
    width: 100%;
    height: 24rem;
    object-fit: contain;
    background: #08162a;
    display: block;
}

.sp-module-shot-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.sp-shot-dot {
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    transition: all 180ms ease;
}

.sp-shot-dot.active {
    width: 2rem;
    background: #14c7c7;
}

.sp-benefit-copy {
    margin-top: 0.15rem;
}

.sp-benefit-title {
    font-size: 1.05rem !important;
}

.sp-benefits-section .sp-section-title {
    font-weight: 800 !important;
}

.sp-benefits-section .sp-section-copy {
    font-size: 1.06rem !important;
}

.sp-auto-scroll-shell {
    overflow-x: auto;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    cursor: grab;
    scrollbar-width: none;
}

.sp-auto-scroll-shell::-webkit-scrollbar {
    display: none;
}

.sp-auto-scroll-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: sp-auto-scroll 42s linear infinite;
}

.sp-auto-scroll-shell:hover .sp-auto-scroll-track {
    animation-play-state: paused;
}

.sp-auto-scroll-shell.is-dragging {
    cursor: grabbing;
}

.sp-auto-scroll-shell.is-dragging .sp-auto-scroll-track {
    animation-play-state: paused;
}

.sp-auto-scroll-shell-slower .sp-auto-scroll-track {
    animation-duration: 58s;
}

.sp-auto-scroll-track-reverse {
    animation-direction: reverse;
}

@keyframes sp-auto-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.sp-case-card-wide,
.sp-testimonial-card-wide {
    width: min(25rem, 84vw);
    flex: 0 0 auto;
}

.sp-case-card-wide {
    min-height: 28rem;
}

.sp-case-card {
    display: flex;
    flex-direction: column;
}

.sp-case-copy {
    margin-bottom: auto;
}

.sp-case-bottom {
    margin-top: auto;
}

.sp-testimonials-section {
    background: linear-gradient(180deg, rgba(232, 242, 251, 0.78), rgba(255, 255, 255, 0.78));
}

.sp-testimonial-card {
    background: rgba(255, 255, 255, 0.92);
}

.sp-footer {
    background: linear-gradient(180deg, #07172b 0%, #0b1d35 100%);
    margin-top: 0;
}

.sp-footer-brand img {
    width: 2.6rem;
    height: 2.6rem;
}

.sp-footer-wordmark {
    font-family: "Outfit", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    color: white;
}

.sp-footer-wordmark span {
    color: var(--sp-secondary);
}

.sp-footer-link {
    font-size: 0.92rem;
}


#blazor-error-ui {
    color-scheme: light;
    background: #fff1f2;
    border-top: 1px solid rgba(190, 24, 93, 0.16);
    bottom: 0;
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.08);
    display: none;
    left: 0;
    padding: 0.8rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 959.98px) {
    .sp-home {
        padding-bottom: 3rem;
    }

    .sp-hero-title {
        max-width: none;
    }

    .sp-hero {
        padding-inline: 1rem;
        padding-top: 6.25rem;
    }

    .sp-hero-inner {
        min-height: 38rem;
    }

    .sp-hero-copy {
        max-width: 32rem;
    }

    .sp-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .sp-section {
        padding-block: 4rem;
    }

    .sp-module-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .sp-case-stats,
    .sp-module-metrics,
    .sp-module-panels {
        grid-template-columns: 1fr;
    }

    .sp-doc-card,
    .sp-compare-header-grid,
    .sp-compare-row {
        grid-template-columns: 1fr;
    }

    .sp-compare-module-grid,
    .sp-notfound-grid,
    .sp-compare-gallery-grid,
    .sp-integrations-card {
        grid-template-columns: 1fr;
    }

    .sp-compare-gallery-thumbs {
        grid-template-columns: repeat(5, minmax(7rem, 1fr));
        overflow-x: auto;
    }

    .sp-compare-thumb img {
        height: 4.5rem;
    }

    .sp-integrations-stats {
        gap: 1.5rem;
    }

    .sp-benefit-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-module-hero-page,
    .sp-industry-hero-page {
        padding-inline: 1rem;
    }

    .sp-testimonial-strip {
        grid-auto-columns: minmax(16rem, 88vw);
    }

    .sp-testimonial-quote {
        min-height: 0;
    }

    .sp-contact-fab {
        bottom: 5.8rem;
    }

    .sp-nav-links {
        gap: 1rem;
        margin-left: 1rem;
    }

    .sp-module-swipe-hint {
        display: block;
    }

    .sp-footer-grid {
        grid-template-columns: minmax(16rem, 1.2fr) repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 599.98px) {
    .sp-mobile-only {
        display: flex;
        align-items: center;
    }

    .sp-desktop-only {
        display: none;
    }

    .sp-logo-mark {
        width: 2.35rem;
        height: 2.35rem;
    }

    .sp-logo-wordmark {
        font-size: 0.95rem;
    }

    .sp-hero {
        padding-top: 5.8rem;
        padding-inline: 0.875rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .sp-hero-inner {
        min-height: auto;
        justify-items: stretch;
        align-content: start;
        text-align: left;
    }

    .sp-hero-title {
        width: 100%;
        max-width: 21rem;
        font-size: 2.82rem !important;
        line-height: 1.02 !important;
        margin-bottom: 1rem;
        text-align: left;
    }

    .sp-hero-title-line {
        white-space: normal;
        text-align: left;
        text-wrap: balance;
    }

    .sp-hero-badge {
        width: fit-content;
        max-width: 100%;
        margin-bottom: 1.35rem;
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem !important;
        line-height: 1.25;
        text-align: left;
    }

    .sp-hero-copy {
        max-width: 22rem;
        font-size: 1rem !important;
        line-height: 1.5;
        text-align: left;
    }

    .sp-hero-actions {
        width: 100%;
        gap: 0.7rem;
        margin-top: 1.35rem;
    }

    .sp-hero-primary,
    .sp-hero-secondary {
        width: 100%;
        min-width: 0;
        border-radius: 12px !important;
    }

    .sp-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 1.65rem;
    }

    .sp-stat-card {
        border-radius: 14px;
        padding: 0.85rem 0.7rem;
        text-align: left;
    }

    .sp-stat-value {
        font-size: 1.35rem !important;
        line-height: 1.1;
    }

    .sp-stat-label {
        font-size: 0.78rem !important;
        line-height: 1.25;
    }

    .sp-module-shot-image {
        height: 18rem;
    }

    .sp-auto-scroll-shell {
        mask-image: none;
        overflow-x: auto;
    }

    .sp-auto-scroll-track,
    .sp-auto-scroll-track-reverse {
        animation: none;
        width: max-content;
        padding-bottom: 0.35rem;
    }

    .sp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .sp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sp-footer-column-brand {
        padding-right: 0;
    }

    .sp-notfound-shell {
        padding: 1.35rem;
    }

    .sp-compare-cta {
        padding: 2.25rem 1rem;
    }
}

@media (min-width: 960px) {
    .sp-mobile-only {
        display: none;
    }

    .sp-desktop-only {
        display: flex;
    }

    .sp-sticky-cta {
        display: none;
    }
}

/* -- Reconnect modal ---------------------------------------------- */
#components-reconnect-modal {
    display: none !important;
}

/* -- Gradient text - ensure color:transparent wins over MudBlazor -- */
.sp-gradient-text {
    color: transparent !important;
}

/* -- Section titles - consistent size across all sections ---------- */
.sp-section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}

/* -- Module section detail action buttons -------------------------- */
.sp-modules-section .sp-hero-actions {
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.sp-modules-section .sp-hero-primary,
.sp-modules-section .sp-hero-secondary {
    min-width: 0;
    flex: 1 1 10rem;
}

/* -- Module icon top-aligned with name + objective ----------------- */
.sp-module-header {
    align-items: flex-start !important;
}

.sp-module-header-icon {
    margin-top: 0.15rem;
}

/* -- Module bullet colors per module ------------------------------ */
.sp-feature-dot.sp-accent-blue  { background: #577A9E; }
.sp-feature-dot.sp-accent-amber { background: #00AAB0; }
.sp-feature-dot.sp-accent-teal  { background: #0078E0; }
.sp-feature-dot.sp-accent-rose  { background: #A23F8F; }

/* -- Laptop topbar dots - left-aligned like a browser -------------- */
.sp-module-shot-topbar {
    justify-content: flex-start !important;
}

/* -- Phone frame for UM ------------------------------------------- */
.sp-module-phone-shell {
    padding: 0.75rem;
    display: flex;
    justify-content: center;
}

.sp-module-phone-notch {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 20, 41, 0.95);
}

.sp-module-phone-notch::before {
    content: '';
    width: 3.5rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.sp-module-phone-home {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 20, 41, 0.95);
}

.sp-module-phone-home::before {
    content: '';
    width: 2rem;
    height: 0.26rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.sp-module-shot-image-phone {
    height: 26rem;
    object-fit: cover;
    object-position: top;
}

/* -- CTA section -------------------------------------------------- */
.sp-cta-section {
    padding-block-start: 6rem;
    padding-bottom: 5rem !important;
    margin-bottom: 0 !important;
}

.sp-home {
    padding-bottom: 0 !important;
}

.sp-cta-bg {
    background:
        linear-gradient(150deg, #020918 0%, #071535 30%, #0a2d6e 58%, #0f4da3 82%, #0870ac 100%);
}

/* Subtle dot grid overlay on CTA background */
.sp-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* "Smart Platform" on dark CTA - solid cyan, clearly distinct from surrounding white */
.sp-cta-section .sp-hero-title-accent {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: #22d3ee !important;
    font-size: 1.1em;
}

/* Rich orbs */
.sp-cta-orbs span {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Footer sits flush against CTA */
.sp-footer {
    margin-top: 0 !important;
}

/* -- Multi-card slide carousel (SuccessCases + Testimonials) -------- */
.sp-slide-carousel {
    --sp-card-w: min(26rem, calc(100vw - 7rem));
    --sp-card-gap: 1.5rem;
    position: relative;
    padding: 0 3rem;
}

.sp-slide-viewport {
    overflow: hidden;
    padding: 0.5rem 0.1rem 1rem;
}

.sp-slide-track {
    display: flex;
    gap: var(--sp-card-gap);
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sp-slide-item {
    flex: 0 0 var(--sp-card-w);
    min-width: 0;
}

.sp-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid var(--sp-border);
    background: white;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--sp-ink);
    transition: background 150ms ease, box-shadow 150ms ease;
    padding: 0;
}

.sp-slide-nav:hover {
    background: var(--sp-primary);
    color: white;
    border-color: var(--sp-primary);
    box-shadow: 0 6px 20px rgba(14, 165, 198, 0.28);
}

.sp-slide-prev { left: 0; }
.sp-slide-next { right: 0; }

.sp-slide-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
}

.sp-slide-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.2);
    border: none;
    cursor: pointer;
    transition: all 250ms ease;
    padding: 0;
}

.sp-slide-dot.active {
    background: var(--sp-primary);
    width: 1.75rem;
}

/* -- Success case slide card -------------------------------------- */
.sp-case-slide-card {
    background: white;
    border-radius: 22px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--sp-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sp-case-slide-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sp-case-slide-title {
    margin-bottom: 0.65rem;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.sp-case-slide-copy {
    color: var(--sp-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sp-case-slide-stats {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.sp-case-slide-stats .sp-case-stat {
    flex: 1 1 0;
    min-width: 0;
}

.sp-case-slide-stats .sp-case-stat-label {
    font-size: 0.68rem;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* -- Testimonial slide card --------------------------------------- */
.sp-testimonial-slide-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--sp-border);
    background: white;
    height: 100%;
    box-sizing: border-box;
}

.sp-testimonial-slide-media {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    min-height: 10rem;
}

.sp-testimonial-media-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sp-testimonial-slide-body {
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.sp-testimonial-quote {
    line-height: 1.7;
    color: var(--sp-ink);
    font-style: italic;
    flex: 1;
}

.sp-testimonials-section .sp-section-title {
    font-size: 2.7rem !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
}

@media (max-width: 600px) {
    .sp-slide-carousel {
        --sp-card-gap: 1rem;
        padding: 0 2.5rem;
    }
}

/* -- Acquire / Quote stepper page -------------------------------- */
.sp-acquire-page {
    min-height: 100vh;
    padding-bottom: 4rem;
}

.sp-acquire-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.sp-acquire-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sp-acquire-subtitle {
    color: var(--sp-muted);
    text-align: center;
    margin-top: 0.75rem;
    max-width: 38rem;
    margin-inline: auto;
}

/* Stepper header */
.sp-acquire-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0;
}

.sp-acquire-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    min-width: 6rem;
}

.sp-acquire-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.4);
    background: white;
    transition: all 0.25s ease;
    font-family: "Outfit", sans-serif;
}

.sp-acquire-step.active .sp-acquire-step-circle {
    border-color: var(--sp-secondary);
    background: var(--sp-secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(20, 199, 199, 0.35);
}

.sp-acquire-step.done .sp-acquire-step-circle {
    border-color: var(--sp-secondary);
    background: var(--sp-secondary);
    color: white;
}

.sp-acquire-step-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.4);
    text-align: center;
    line-height: 1.3;
    max-width: 6rem;
}

.sp-acquire-step.active .sp-acquire-step-label {
    color: var(--sp-secondary);
    font-weight: 700;
}

.sp-acquire-step.done .sp-acquire-step-label {
    color: var(--sp-ink);
    font-weight: 600;
}

.sp-acquire-step-connector {
    flex: 1;
    height: 2px;
    background: rgba(15, 23, 42, 0.12);
    max-width: 5rem;
    margin-bottom: 1.6rem;
    transition: background 0.3s ease;
    align-self: flex-start;
    margin-top: 1.25rem;
}

.sp-acquire-step-connector.done {
    background: var(--sp-secondary);
}

/* Body area */
.sp-acquire-body {
    margin-bottom: 1.5rem;
}

.sp-acquire-hint {
    color: var(--sp-muted);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Module selection cards */
.sp-module-select-card {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border-radius: 1rem;
    border: 2px solid var(--sp-border);
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    user-select: none;
}

.sp-module-select-card:hover {
    border-color: rgba(20, 199, 199, 0.5);
    box-shadow: 0 4px 20px rgba(20, 199, 199, 0.12);
}

.sp-module-select-card.selected {
    border-color: var(--sp-secondary);
    background: rgba(20, 199, 199, 0.04);
    box-shadow: 0 4px 24px rgba(20, 199, 199, 0.18);
}

.sp-module-select-ring {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: white;
    z-index: 1;
}

.sp-module-select-ring.checked {
    border-color: var(--sp-secondary);
    background: var(--sp-secondary);
    color: white;
}

.sp-module-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-right: 2rem;
}

.sp-module-select-icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.sp-module-select-card.selected .sp-module-select-icon-wrap {
    background: rgba(20, 199, 199, 0.12);
}

.sp-module-select-icon {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.sp-module-select-name {
    font-weight: 700;
    line-height: 1.25;
    flex: 1;
}

/* Inline quantity section inside card */
.sp-module-qty-section {
    border-top: 1px solid var(--sp-border);
    padding-top: 0.875rem;
    margin-top: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sp-module-qty-label {
    color: var(--sp-muted);
    font-weight: 500;
    font-size: 0.8rem;
    display: block;
}

/* Rounded inputs inside acquire page */
.sp-acquire-page .mud-input-outlined .mud-input-outlined-border,
.sp-acquire-page fieldset.mud-input-outlined-border {
    border-radius: 0.75rem !important;
}

.sp-acquire-page .mud-input.mud-input-outlined {
    border-radius: 0.75rem !important;
}

/* Narrow wrapper for step 2 quote form */
.sp-quote-form-wrap {
    max-width: 36rem;
    margin: 0 auto;
}

/* Teal price text (replaces Color.Secondary which renders pink by default) */
.sp-price-teal {
    color: var(--sp-secondary) !important;
}

/* 3 CTA buttons row */
.sp-acquire-cta-row {
    display: flex;
    gap: 0.875rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.sp-acquire-cta-btn.mud-button-root {
    flex: 1;
    min-width: 10rem;
}

.sp-acquire-contact-cta.mud-button-root {
    flex: 2 1 20rem;
}

.sp-acquire-cta-row .sp-disabled-action-wrap .sp-acquire-cta-btn.mud-button-root {
    width: 100%;
}

/* Quote review card (step 2) */
.sp-quote-review-card {
    border: 1px solid var(--sp-border) !important;
    border-radius: 0.875rem;
    padding: 1.5rem;
    background: white !important;
    margin-bottom: 1.75rem;
}

.sp-quote-review-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--sp-border);
}

.sp-quote-review-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(14, 165, 198, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-primary);
    flex-shrink: 0;
}

.sp-quote-review-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sp-border);
}

.sp-quote-review-price {
    color: var(--sp-muted);
    text-align: right;
    white-space: nowrap;
}

.sp-quote-review-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    margin-top: 0.25rem;
}

.sp-quote-review-total-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

/* Success state (step 2 after submit) */
.sp-quote-success {
    text-align: center;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border: 1px solid var(--sp-border);
    border-radius: 1rem;
}

.sp-quote-success-icon {
    color: var(--sp-secondary);
    line-height: 1;
}

.sp-quote-success-icon .mud-icon-root {
    font-size: 4rem;
    width: 4rem;
    height: 4rem;
}

.sp-quote-success-title {
    font-weight: 700;
}

.sp-quote-success-desc {
    max-width: 28rem;
    text-align: center;
}

@media (max-width: 600px) {
    .sp-acquire-step-label {
        font-size: 0.65rem;
        max-width: 5rem;
    }
    .sp-acquire-cta-row {
        flex-direction: column;
    }
    .sp-acquire-cta-btn {
        min-width: unset;
    }
    .sp-quote-review-row {
        flex-direction: column;
        gap: 0.2rem;
    }
    .sp-quote-review-price {
        text-align: left;
        white-space: normal;
    }
}

/* -- Contact inline form --------------------------------------- */
.sp-contact-inline-form {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(14, 165, 198, 0.18);
    border-radius: 0.875rem;
    animation: sp-fade-in 0.2s ease;
}

.sp-contact-inline-title {
    margin-bottom: 1rem;
    color: var(--sp-primary-deep);
    font-weight: 600;
}

@keyframes sp-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sp-payment-error-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.18);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 255, 255, 0.96));
    box-shadow: 0 16px 34px rgba(127, 29, 29, 0.08);
}

.sp-payment-error-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.95rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.24);
}

.sp-payment-error-icon .mud-icon-root {
    font-size: 1.35rem !important;
}

.sp-payment-error-title {
    color: #991b1b !important;
    font-weight: 800 !important;
    margin-bottom: 0.2rem;
}

.sp-payment-error-copy {
    color: #7f1d1d !important;
    line-height: 1.55;
    margin: 0;
}
