:root {
    --ss-primary: #0e3f99;
    --ss-primary-dark: #114fb5;
    --ss-gradient-start: #1d6ae5;
    --ss-gradient-end: #123b9b;
    --ss-surface: #f8f9fa;
    --bs-primary: #123b9b;
    --bs-primary-rgb: 15, 108, 189;
    --bs-secondary: #5b6b7a;
    --bs-secondary-rgb: 91, 107, 122;
    --bs-link-color: #0f6cbd;
    --bs-link-hover-color: #0b5597;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #0b5597;
    --bs-btn-hover-border-color: #0b5597;
    --bs-btn-active-bg: #094a83;
    --bs-btn-active-border-color: #094a83;
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: #0b5597;
    --bs-btn-active-border-color: #0b5597;
}

footer a:not(.btn) {
    display: inline-block;
    padding: 0.2rem 0.15rem;
}

footer .list-unstyled li {
    margin-bottom: 0.25rem;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #1d1d1f;
    background-color: var(--ss-surface);
}

#pageContent {
    min-height: 100vh;
}

#pageContent.cookie-banner-visible {
    padding-bottom: 6.5rem;
}

.bg-gradient-primary {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--ss-gradient-start) 0%, var(--ss-gradient-end) 100%);
}

.bg-gradient-golden {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f5cf72 0%, #edbd2f 65%, #d6930c 100%);
}

.hero-landing .lead {
    max-width: 620px;
}

.hero-media img {
    display: block;
}

/* start page hero */
.hero-landing .carousel-item {
    min-height: 360px;
}

@media (max-width: 991.98px) {
    .hero-landing .hero-copy {
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-landing .hero-media {
        display: none;
    }

    .hero-landing .carousel-item {
        min-height: 420px;
    }
}

.payment-hero-media {
    position: relative;
}

.payment-hero-label {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0e3f99;
    box-shadow: 0 0.5rem 1.2rem rgba(13, 37, 88, 0.25);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.payment-hero-label i {
    font-size: 1.1rem;
}

.card .brand-mark {
    max-width: 120px;
    height: auto;
}

.gradient-card {
    background: linear-gradient(135deg, var(--ss-gradient-start) 0%, var(--ss-gradient-end) 100%);
}

.object-fit-cover,
.object-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.navbar {
    background: linear-gradient(0deg, #0e3f99 0%, #0744b7 100%);
}

.navbar .nav-link {
    font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:focus-visible,
.navbar .dropdown.show > .nav-link {
    text-decoration: underline;
    font-size: 105%;
    font-weight: 700;
}

.dropdown-menu-wide {
    min-width: 20rem;
    background: #0e3f99;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 16px 40px rgba(4, 15, 44, 0.35);
}

.dropdown-menu-wide .dropdown-item {
    color: #ffffff;
}

.dropdown-menu-wide .dropdown-item:hover,
.dropdown-menu-wide .dropdown-item:active,
.dropdown-menu-wide .dropdown-item:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.dropdown-menu-wide .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.18);
}

.dropdown-menu-wide::before {
    content: "SaaS Products";
    display: block;
    padding: 0.6rem 1rem 0.4rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background-color: var(--ss-primary);
    border-color: var(--ss-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--ss-primary-dark);
    border-color: var(--ss-primary-dark);
}

.scrollup {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(13, 37, 88, 0.85);
    color: #fff;
}

.scrollup.show {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.scrollup:focus-visible {
    box-shadow: 0 0 0 3px rgba(14, 63, 153, 0.4);
}

.ratio > img {
    width: 100%;
    height: 100%;
}

.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1200;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
}

.cookie-banner .container {
    gap: 1rem;
}

.cookie-banner__text {
    margin: 0;
}

.cookie-banner a {
    color: #bbdefb;
    text-decoration: underline;
}

.sale-tag {
    position: absolute;
    top: -25px;
    right: 0;
    z-index: 5;
}

.sale-tag img {
    display: block;
    width: 140px;
    height: 46px;
}

.enlargeable-image {
    cursor: zoom-in;
}

.enlargeable-image img {
    cursor: zoom-in;
}

#stripeCardElement {
    width: 500px;
}
