@font-face {
    font-family: 'BPG WEB 001 Caps';
    src: url(../fonts/bpg-web-001-caps-webfont.eot);
    src: url(../fonts/bpg-web-001-caps-webfont.eot?#iefix) format('embedded-opentype'),
    url(../fonts/bpg-web-001-caps-webfont.woff2) format('woff2'),
    url(../fonts/bpg-web-001-caps-webfont.woff) format('woff'),
    url(../fonts/bpg-web-001-caps-webfont.ttf) format('truetype'),
    url(../fonts/bpg-web-001-caps-webfont.svg#bpg_web_001_capsregular) format('svg');
    font-display: swap;
}

:root {
    --site-primary: #0879fa;
    --site-primary-dark: #065fbe;
    --site-accent: #00bfa6;
    --site-text-main: #0f172a;
    --site-text-muted: #475569;
    --site-text-soft: #64748b;
    --site-bg: radial-gradient(circle at top left, rgba(8, 121, 250, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 191, 166, 0.10), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    --site-card-bg: #ffffff;
    --site-card-border: rgba(15, 23, 42, 0.08);
    --site-card-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    --site-card-shadow-hover: 0 22px 50px rgba(15, 23, 42, 0.10);
    --site-pill-bg: #eef6ff;
    --site-pill-text: #0879fa;
    --site-feature-icon-bg: linear-gradient(135deg, rgba(8, 121, 250, 0.12), rgba(0, 191, 166, 0.12));
    --site-dark-panel-bg: linear-gradient(135deg, #0f172a 0%, #172554 100%);
    --site-hero-card-bg: linear-gradient(135deg, #0b1220 0%, #11233f 55%, #0879fa 100%);
    --site-cta-bg: linear-gradient(135deg, #0879fa 0%, #00bfa6 100%);
    --site-check-color: #34d399;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--site-bg);
    color: var(--site-text-main);
}

h1, h2, h3, h4, h5, h6,
.BW1C {
    font-family: 'BPG WEB 001 Caps', sans-serif !important;
}

a {
    color: var(--site-primary);
}

a:hover {
    color: var(--site-primary-dark);
}

section {
    padding: 3rem 0;
    position: relative;
}

[data-bs-theme="dark"],
.dark-mode {
    --site-text-main: #f8fafc;
    --site-text-muted: #cbd5e1;
    --site-text-soft: #94a3b8;
    --site-bg: radial-gradient(circle at top left, rgba(8, 121, 250, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 191, 166, 0.14), transparent 25%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
    --site-card-bg: rgba(17, 24, 39, 0.78);
    --site-card-border: rgba(148, 163, 184, 0.16);
    --site-card-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    --site-card-shadow-hover: 0 24px 56px rgba(0, 0, 0, 0.32);
    --site-pill-bg: rgba(110, 168, 254, 0.12);
    --site-pill-text: #8ec5ff;
    --site-feature-icon-bg: linear-gradient(135deg, rgba(8, 121, 250, 0.20), rgba(0, 191, 166, 0.20));
    --site-dark-panel-bg: linear-gradient(135deg, #0b1220 0%, #132238 100%);
    --site-hero-card-bg: linear-gradient(135deg, #0b1220 0%, #101b30 55%, #0f4c9c 100%);
    --site-cta-bg: linear-gradient(135deg, #0f4c9c 0%, #0d9488 100%);
    --site-check-color: #5eead4;
}

/* Navbar */
.navbar-container {
    min-height: 60px;
}

.site-navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: background-color .2s ease, box-shadow .2s ease;
    z-index: 1030;
}

.navbar-light.site-navbar {
    background: rgba(255, 255, 255, 0.88) !important;
}

.navbar-dark.site-navbar {
    background: rgba(17, 24, 39, 0.88) !important;
}

.site-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--site-primary) !important;
}

.site-navbar .navbar-brand img {
    height: 34px;
    width: auto;
}

.site-navbar .nav-link {
    font-weight: 600;
    position: relative;
}

.site-navbar .nav-link.active {
    color: var(--site-primary) !important;
}

.site-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: .35rem;
    height: 2px;
    background: var(--site-primary);
    border-radius: 999px;
}

.theme-toggle-link {
    font-size: 1.05rem;
}

.navbar-cta {
    min-width: 150px;
    border-radius: 12px;
    font-weight: 600;
}

/* Common page system */
.page-shell,
.tariffs-page {
    background: var(--site-bg);
}

.page-hero {
    padding: 3rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: rgba(8, 121, 250, 0.08);
    color: var(--site-primary);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 1.25rem;
}

.page-badge i {
    font-size: 1rem;
    line-height: 1;
}

.page-title {
    font-size: clamp(1.4rem, 2.3vw, 1.65rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--site-text-main);
}

.page-lead {
    font-size: 1rem;
    line-height: 1.72;
    color: var(--site-text-soft);
    max-width: 700px;
}

.hero-support-text {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(8, 121, 250, 0.18);
    color: var(--site-text-muted);
    max-width: 680px;
    line-height: 1.75;
}

.page-login-text,
.updated-at {
    color: var(--site-text-soft);
}

.page-login-link {
    font-weight: 600;
    text-decoration: none;
}

.section-title {
    font-size: clamp(1.45rem, 2.8vw, 1.75rem);
    color: var(--site-text-main);
    margin-bottom: 1rem;
}

.section-title-sm {
    font-size: clamp(1.3rem, 2.4vw, 1.65rem);
    line-height: 1.25;
}

.section-text {
    color: var(--site-text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.home-page-ka .section-intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(8, 121, 250, 0.09);
    color: var(--site-primary);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}

.section-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: .8;
}

.section-kicker-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.hero-card,
.feature-card,
.info-card,
.cta-card,
.api-card,
.step-card,
.content-card,
.toc-card,
.notice-card,
.pricing-card,
.calculator-card,
.calculator-summary,
.compare-card,
.faq-card {
    border: 1px solid var(--site-card-border);
    border-radius: 24px;
    background: var(--site-card-bg);
    box-shadow: var(--site-card-shadow);
}

.hero-card {
    overflow: hidden;
    background: var(--site-hero-card-bg);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
    backdrop-filter: none;
}

.hero-card p,
.hero-card li {
    color: rgba(255, 255, 255, .84);
    margin-bottom: 0;
}

.hero-eyebrow {
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .72);
}

.hero-card-title {
    color: #fff;
    line-height: 1.2;
}

.hero-monitor-card {
    color: var(--site-text-main);
}

.hero-monitor-card .fw-semibold {
    color: var(--site-text-main);
}

.hero-monitor-card .text-body-secondary {
    color: var(--site-text-soft) !important;
}

.hero-monitor-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.hero-monitor-main {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 1.15rem;
    min-width: 0;
}

.hero-monitor-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    font-size: 1.35rem;
    flex: none;
}

.hero-monitor-copy {
    min-width: 0;
    padding-left: .1rem;
}

.hero-monitor-card .small,
.hero-monitor-card .fw-semibold {
    overflow-wrap: anywhere;
}

.hero-monitor-badge {
    justify-self: end;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .85rem;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: livePulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 1.1rem;
}

.mini-stat {
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-stat small {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .3rem;
    font-size: .78rem;
    line-height: 1.35;
}

.mini-stat strong {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
    font-size: 1rem;
}

.global-network-info {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    width: fit-content;
    max-width: 100%;
    padding: .65rem .85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(8, 121, 250, 0.12);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    color: var(--site-text-main);
    text-decoration: none;
}

.global-network-info:hover {
    color: var(--site-text-main);
    border-color: rgba(8, 121, 250, 0.26);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.global-network-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.12), rgba(0, 191, 166, 0.16));
    color: var(--site-primary);
    font-size: 1.05rem;
}

.global-network-info strong,
.global-network-info small {
    display: block;
    line-height: 1.25;
}

.global-network-info strong {
    font-size: .92rem;
}

.global-network-info small {
    margin-top: .12rem;
    color: var(--site-text-soft);
    font-size: .78rem;
}

.global-network-info-arrow {
    color: var(--site-primary);
    font-size: 1.25rem;
    line-height: 1;
}

.home-page-ka .page-hero {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
}

.home-page-ka .page-hero::before,
.home-page-ka .page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.home-page-ka .page-hero::before {
    width: 320px;
    height: 320px;
    top: -90px;
    left: -120px;
    background: radial-gradient(circle, rgba(8, 121, 250, 0.16) 0%, rgba(8, 121, 250, 0) 72%);
}

.home-page-ka .page-hero::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.16) 0%, rgba(0, 191, 166, 0) 72%);
}

.home-page-ka .page-badge {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(8, 121, 250, 0.10);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.home-page-ka .page-title {
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
    letter-spacing: -0.04em;
}

.home-page-ka .page-lead {
    max-width: 620px;
    color: var(--site-text-muted);
}

.home-page .hero-card {
    position: relative;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .hero-card::before {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
}

.home-page .hero-card > * {
    position: relative;
    z-index: 1;
}

.home-page-ka .hero-mini-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    max-width: 700px;
}

.home-page-ka .hero-mini-stat-grid .mini-stat {
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: none;
}

.home-page-ka .hero-mini-stat-grid .mini-stat small {
    color: var(--site-text-soft);
    margin-bottom: .45rem;
}

.home-page-ka .hero-mini-stat-grid .mini-stat strong {
    font-size: 1rem;
    color: var(--site-text-main);
}

.home-page-ka .hero-insight-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.home-page-ka .hero-insight-card {
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
}

.home-page-ka .hero-insight-card p {
    color: var(--site-text-soft);
    line-height: 1.75;
}

.home-page-ka .hero-insight-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.12), rgba(0, 191, 166, 0.16));
    color: var(--site-primary);
    font-size: 1.35rem;
}

.home-page-ka .feature-card,
.home-page .hero-monitor-card,
.home-page-ka .step-card,
.home-page-ka .info-card {
    position: relative;
    overflow: hidden;
}

.home-page-ka .feature-card,
.home-page .hero-monitor-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-page-ka .feature-card::after,
.home-page .hero-monitor-card::after,
.home-page-ka .step-card::after,
.home-page-ka .info-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(8, 121, 250, 0), rgba(8, 121, 250, 0.24), rgba(0, 191, 166, 0));
}

.home-page-ka .step-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 246, 255, 0.92) 100%);
}

.home-page-ka .step-number {
    box-shadow: 0 14px 28px rgba(8, 121, 250, 0.22);
}

.home-page-ka .info-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.home-page-ka .api-card {
    background: linear-gradient(135deg, #0f1b30 0%, #153157 100%);
    border: 0;
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.20);
}

.home-page-ka .api-card h2,
.home-page-ka .api-card p,
.home-page-ka .api-card li {
    color: rgba(255, 255, 255, 0.88);
}

.home-page-ka .cta-card {
    border-radius: 32px;
    box-shadow: 0 28px 72px rgba(8, 121, 250, 0.22);
}

.home-page-ka .cta-card::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    top: -90px;
    right: -50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.home-page-ka .cta-card > * {
    position: relative;
    z-index: 1;
}

[data-bs-theme="dark"] .home-page-ka .page-badge,
.dark-mode .home-page-ka .page-badge,
[data-bs-theme="dark"] .global-network-info,
.dark-mode .global-network-info,
[data-bs-theme="dark"] .home-page-ka .hero-mini-stat-grid .mini-stat,
.dark-mode .home-page-ka .hero-mini-stat-grid .mini-stat,
[data-bs-theme="dark"] .home-page-ka .hero-insight-card,
.dark-mode .home-page-ka .hero-insight-card {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

[data-bs-theme="dark"] .global-network-info,
.dark-mode .global-network-info,
[data-bs-theme="dark"] .global-network-info:hover,
.dark-mode .global-network-info:hover {
    color: #f8fafc;
}

[data-bs-theme="dark"] .home-page-ka .feature-card,
.dark-mode .home-page-ka .feature-card,
[data-bs-theme="dark"] .home-page .hero-monitor-card,
.dark-mode .home-page .hero-monitor-card,
[data-bs-theme="dark"] .home-page-ka .step-card,
.dark-mode .home-page-ka .step-card,
[data-bs-theme="dark"] .home-page-ka .info-card,
.dark-mode .home-page-ka .info-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.94) 0%, rgba(17, 24, 39, 0.88) 100%);
}

[data-bs-theme="dark"] .home-page-ka .hero-mini-stat-grid .mini-stat strong,
.dark-mode .home-page-ka .hero-mini-stat-grid .mini-stat strong {
    color: #f8fafc;
}

[data-bs-theme="dark"] .home-page-ka .hero-mini-stat-grid .mini-stat small,
.dark-mode .home-page-ka .hero-mini-stat-grid .mini-stat small,
[data-bs-theme="dark"] .home-page-ka .hero-insight-card p,
.dark-mode .home-page-ka .hero-insight-card p {
    color: #cbd5e1;
}

@media (max-width: 991.98px) {
    .home-page-ka .page-title {
        max-width: none;
    }

    .home-page-ka .hero-mini-stat-grid,
    .home-page-ka .hero-insight-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .home-page-ka .page-hero {
        padding-top: 2.4rem;
        padding-bottom: 4.75rem;
    }

    .home-page-ka .page-title {
        font-size: clamp(1.45rem, 7.4vw, 1.78rem);
        line-height: 1.16;
    }

    .home-page .hero-card {
        padding: 1.45rem;
    }

    .home-page .hero-card .d-flex.justify-content-between.align-items-start {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .home-page .hero-monitor-main {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 1rem;
    }

    .home-page .hero-monitor-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        border-radius: 15px;
        font-size: 1.25rem;
    }

    .home-page .hero-monitor-card .small {
        line-height: 1.45;
    }

    .home-page-ka .hero-insight-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .home-page-ka .hero-mini-stat-grid .mini-stat strong {
        font-size: 1.05rem;
    }

    .home-page-ka .section-kicker {
        font-size: .8rem;
    }
}

@media (max-width: 575.98px) {
    .home-page .hero-card {
        padding: 1.1rem;
    }

    .home-page .hero-monitor-card {
        padding: 1rem !important;
    }

    .home-page .hero-monitor-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: .75rem;
    }

    .home-page .hero-monitor-badge {
        justify-self: start;
        text-align: left;
    }
}

.feature-card,
.info-card,
.api-card,
.step-card,
.content-card,
.pricing-card,
.faq-card,
.compare-card {
    height: 100%;
    padding: 1.75rem 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover,
.info-card:hover,
.api-card:hover,
.step-card:hover,
.content-card:hover,
.pricing-card:hover,
.faq-card:hover,
.compare-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: var(--site-card-shadow-hover);
}

.feature-card:hover .feature-icon,
.feature-card:hover .icon-box,
.feature-card:hover .contact-icon,
.info-card:hover .feature-icon,
.info-card:hover .icon-box,
.info-card:hover .contact-icon,
.api-card:hover .feature-icon,
.api-card:hover .icon-box,
.step-card:hover .feature-icon,
.step-card:hover .step-number,
.pricing-card:hover .feature-icon,
.faq-card:hover .help-icon {
    animation: iconBounce 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


.feature-icon,
.icon-box,
.contact-icon,
.help-icon,
.value-icon,
.card-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--site-feature-icon-bg);
    color: var(--site-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-icon.whatsapp {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.contact-icon.phone {
    background: rgba(8, 121, 250, 0.12);
    color: #0879fa;
}

.contact-icon.mail {
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
}

.feature-card h3,
.step-card h3,
.api-card h2,
.info-card h2,
.content-card h2,
.content-card h3,
.pricing-card h3,
.compare-card h3,
.faq-card h3 {
    color: var(--site-text-main);
}

.feature-card p,
.info-card p,
.step-card p,
.api-card p,
.content-card p,
.content-card li,
.faq-card p,
.compare-card p,
.compare-card li,
.hours-list li,
.contact-link,
.toc-list a {
    color: var(--site-text-soft);
    line-height: 1.8;
}

.dark-panel {
    border-radius: 28px;
    background: var(--site-dark-panel-bg);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.dark-panel::after {
    content: '';
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.dark-panel p,
.dark-panel li {
    color: rgba(255, 255, 255, .82);
}

.check-list,
.timeline-list,
.toc-list,
.calculator-tips,
.plan-features,
.hours-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li,
.timeline-list li,
.calculator-tips li,
.plan-features li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: .9rem;
}

.check-list li::before,
.calculator-tips li::before,
.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--site-check-color);
    font-weight: 700;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--site-primary);
    box-shadow: 0 0 0 6px rgba(8, 121, 250, 0.10);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--site-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mini-pill,
.top-badge,
.discount-badge,
.price-pill,
.tag-line,
.range-value {
    display: inline-block;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
}

.mini-pill,
.top-badge,
.range-value,
.tag-line {
    background: var(--site-pill-bg);
    color: var(--site-pill-text);
}

.mini-pill-light {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.discount-0 {
    background: #edf2f7;
    color: #475569;
}

.discount-20 {
    background: rgba(8, 121, 250, .10);
    color: #0879fa;
}

.discount-40 {
    background: rgba(16, 185, 129, .12);
    color: #059669;
}

.discount-60 {
    background: rgba(245, 158, 11, .14);
    color: #b45309;
}

.discount-70 {
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
}

.pricing-card.featured {
    border: 1.5px solid rgba(8, 121, 250, 0.4) !important;
    box-shadow: 0 25px 60px rgba(8, 121, 250, 0.12);
    animation: borderPulse 4s infinite ease-in-out;
}

@keyframes borderPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(8, 121, 250, 0.15), var(--site-card-shadow);
        border-color: rgba(8, 121, 250, 0.35);
    }
    50% {
        box-shadow: 0 0 32px rgba(8, 121, 250, 0.35), 0 0 16px rgba(0, 191, 166, 0.2), var(--site-card-shadow-hover);
        border-color: rgba(0, 191, 166, 0.55);
    }
}


.pricing-qty,
.summary-price,
.plan-price {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--site-text-main);
    margin-bottom: .5rem;
}

.pricing-price {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    color: var(--site-text-main);
    margin-bottom: .5rem;
}

.pricing-note,
.summary-sub,
.plan-note,
.calculator-label,
.tariffs-section-text,
.tariffs-section-text-left {
    color: var(--site-text-soft);
}

.calculator-card,
.cta-card {
    padding: 2rem;
}

.calculator-summary {
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    border: 1px solid rgba(8, 121, 250, 0.08);
}

[data-bs-theme="dark"] .calculator-summary,
.dark-mode .calculator-summary {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(17, 24, 39, 0.94) 100%);
    border-color: rgba(148, 163, 184, 0.16);
}

.cta-card {
    background: var(--site-cta-bg);
    color: #fff;
    border: 0;
    overflow: hidden;
    position: relative;
}

.cta-card p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 0;
}

.cta-card .btn,
.cta-buttons .btn,
.plan-card .btn {
    min-width: 170px;
    border-radius: 14px;
    font-weight: 600;
}

.btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 121, 250, 0.16);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}


.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toc-card {
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.toc-list li {
    margin-bottom: .75rem;
}

.toc-list a {
    text-decoration: none;
}

.toc-list a:hover {
    color: var(--site-primary);
}

.notice-card {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
    border: 1px solid rgba(8, 121, 250, 0.08);
    box-shadow: none;
}

.policy-section,
.terms-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--site-card-border);
}

.policy-section:last-child,
.terms-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.terms-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--site-text-main);
    margin-top: 1.25rem;
    margin-bottom: .75rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--site-card-border);
}

.hours-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-link {
    text-decoration: none;
    font-weight: 600;
}

.plan-card {
    border: 1px solid var(--site-card-border);
    border-radius: 24px;
    background: var(--site-card-bg);
    box-shadow: var(--site-card-shadow);
    height: 100%;
    overflow: hidden;
}

.plan-card.plan-featured {
    border: 1.5px solid rgba(8, 121, 250, 0.4) !important;
    box-shadow: 0 25px 60px rgba(8, 121, 250, 0.12);
    animation: borderPulse 4s infinite ease-in-out;
}


.plan-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.12), rgba(0, 191, 166, 0.12));
    border-bottom: 1px solid var(--site-card-border);
}

.plan-body {
    padding: 1.5rem;
}

.plan-features li {
    padding-top: .35rem;
    padding-bottom: .35rem;
}

.scroll-down {
    opacity: 1;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid var(--site-primary);
    border-radius: 50%;
    z-index: 5;
    transition: all .2s ease-in;
    background: rgba(8, 121, 250, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

.scroll-down::before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid var(--site-primary);
    border-width: 0 0 2px 2px;
}

[data-bs-theme="dark"] .scroll-down,
.dark-mode .scroll-down {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .scroll-down::before,
.dark-mode .scroll-down::before {
    border-color: #fff;
}

/* Footer */
.footer-brands {
    background: #f8fbff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-label {
    display: inline-block;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--site-primary);
    margin-bottom: .75rem;
}

.footer-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--site-text-main);
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 40px;
}

.footer-wave {
    display: block;
    width: 100%;
    height: 56px;
    line-height: 0;
    fill: #16224d;
    margin-bottom: -1px;
}

[data-bs-theme="dark"] .footer-wave,
.dark-mode .footer-wave {
    fill: #0b1220;
}

.site-footer {
    color: #fff;
    position: relative;
    padding: 4rem 0 2rem;
    background: linear-gradient(
            180deg,
            #16224d 0%,
            #16224d 20%,
            #172554 58%,
            #0879fa 100%
    );
}

[data-bs-theme="dark"] .site-footer,
.dark-mode .site-footer {
    background: linear-gradient(
            180deg,
            #0b1220 0%,
            #132238 20%,
            #142238 58%,
            #1f4f7a 100%
    );
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-text {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: .65rem;
}

.site-footer a,
.site-footer .footer-links a,
.site-footer .footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-title {
    margin-bottom: 1rem;
}

.footer-text,
.footer-tags,
.footer-bottom {
    color: rgba(255, 255, 255, .88);
}

.footer-social {
    display: flex;
    gap: .85rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .65rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .18);
}

.cookie-inner {
    max-width: 960px;
    width: calc(100% - 24px);
}

#cookieNotice {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    display: none;
    z-index: 9999;
}

.cookie-card {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
}

.cookie-text,
.cookie-text a {
    color: var(--site-text-muted);
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 9998;
}

#back-to-top img {
    height: 110px;
}

@media (max-width: 767.98px) {
    section {
        padding: 2rem 0;
    }

    .page-hero {
        padding-top: 2rem;
        padding-bottom: 4.5rem;
    }

    .hero-card,
    .feature-card,
    .info-card,
    .cta-card,
    .api-card,
    .step-card,
    .content-card,
    .toc-card,
    .notice-card,
    .pricing-card,
    .calculator-card,
    .calculator-summary,
    .faq-card,
    .compare-card,
    .plan-body {
        padding: 1.5rem;
    }

    .hero-card,
    .feature-card,
    .info-card,
    .cta-card,
    .api-card,
    .step-card,
    .content-card,
    .toc-card,
    .pricing-card,
    .calculator-card,
    .calculator-summary,
    .faq-card,
    .compare-card,
    .plan-card {
        border-radius: 20px;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ===== PARTNERS SECTION ===== */

.partners-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(8, 121, 250, 0.03) 100%);
}

.partners-section .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    background: #eef2f7;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.partners-section .section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.partners-section .section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.partner-card {
    grid-column: span 4;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    min-height: 104px;
    padding: .85rem .95rem;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: .75rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    text-decoration: none;
}

.partner-card:nth-child(1),
.partner-card:nth-child(2) {
    grid-column: span 6;
}

.partner-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.12), rgba(0, 191, 166, 0.14));
    color: var(--site-primary);
    font-size: 1.12rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.partner-card-body {
    min-width: 0;
}

.partner-card-title {
    color: var(--site-text-main);
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: .25rem;
}

.partner-card-meta {
    color: var(--site-text-soft);
    font-size: .82rem;
    line-height: 1.45;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
    border-color: rgba(8, 121, 250, 0.16);
}

/* dark mode */
[data-bs-theme="dark"] .partners-section,
.dark-mode .partners-section {
    background: var(--site-bg);
}

[data-bs-theme="dark"] .partners-section .section-badge,
.dark-mode .partners-section .section-badge {
    background: var(--site-pill-bg);
    color: var(--site-pill-text);
}

[data-bs-theme="dark"] .partners-section .section-title,
.dark-mode .partners-section .section-title {
    color: var(--site-text-main);
}

[data-bs-theme="dark"] .partners-section .section-subtitle,
.dark-mode .partners-section .section-subtitle {
    color: var(--site-text-soft);
}

[data-bs-theme="dark"] .partner-card,
.dark-mode .partner-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(17, 24, 39, 0.88) 100%);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

[data-bs-theme="dark"] .partner-card:hover,
.dark-mode .partner-card:hover {
    box-shadow: var(--site-card-shadow-hover);
    border-color: rgba(96, 165, 250, 0.24);
}

[data-bs-theme="dark"] .partner-card-title,
.dark-mode .partner-card-title {
    color: #f8fafc;
}

[data-bs-theme="dark"] .partner-card-meta,
.dark-mode .partner-card-meta {
    color: #cbd5e1;
}

@media (max-width: 991.98px) {
    .partner-card,
    .partner-card:nth-child(1),
    .partner-card:nth-child(2) {
        grid-column: span 6;
    }
}

@media (max-width: 767.98px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .partner-card,
    .partner-card:nth-child(1),
    .partner-card:nth-child(2) {
        grid-column: auto;
        min-height: 0;
        padding: .8rem;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: .7rem;
    }

    .partner-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 1rem;
    }
}

.inline-code,
.table-shell code {
    background: rgba(8, 121, 250, 0.10);
    color: var(--site-primary);
    padding: .15rem .45rem;
    border-radius: 8px;
    font-size: .92em;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

@media (max-width: 767.98px) {
    #cookieNotice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
    }

    .cookie-inner {
        width: 100%;
        max-width: none;
    }

    .cookie-card {
        border-radius: 16px;
    }

    .cookie-card .card-body {
        padding: 14px;
    }

    .cookie-card .d-flex.flex-column.flex-lg-row {
        gap: 14px !important;
    }

    .cookie-card .d-flex.align-items-start {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-card img {
        width: 34px;
        margin-right: 0 !important;
    }

    .cookie-text {
        font-size: 14px;
        line-height: 1.55;
    }

    .cookie-card .ms-lg-3 {
        margin-left: 0 !important;
        width: 100%;
    }

    .cookie-card .btn {
        width: 100%;
        min-height: 44px;
    }
}

.pricing-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card-wide {
    min-height: 100%;
}

.tariffs-card-text {
    color: var(--site-text-soft);
    line-height: 1.75;
    font-size: 0.98rem;
}

.pricing-card .discount-badge {
    white-space: nowrap;
}

.pricing-card .top-badge {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 1.35rem;
    }

    .tariffs-card-text {
        font-size: 0.94rem;
        line-height: 1.65;
    }
}

.contact-hours-section .row {
    align-items: stretch;
}

.contact-hours-section .col-lg-5,
.contact-hours-section .col-lg-7 {
    display: flex;
}

.contact-hours-section .content-card,
.contact-hours-section .feature-grid,
.contact-hours-section .feature-card {
    height: 100%;
}

.contact-hours-section .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.contact-hours-section .feature-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .contact-hours-section .col-lg-5,
    .contact-hours-section .col-lg-7 {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .contact-hours-section .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.lang-toggle-link {
    font-weight: 600;
    white-space: nowrap;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-code {
    font-size: .95rem;
    line-height: 1;
}

.dropdown-item .lang-flag {
    width: 20px;
    flex: 0 0 20px;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: rgba(8, 121, 250, 0.08);
    color: var(--site-primary);
}

@media (max-width: 991.98px) {
    .site-navbar {
        overflow: visible;
    }

    .site-navbar #mobileLangDropdown {
        position: relative;
        z-index: 1056;
    }

    .site-navbar #mobileLangDropdown + .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        min-width: 170px;
        margin-top: 0;
        z-index: 1055;
        border-radius: 14px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    }
}

[data-bs-theme="dark"] .dropdown-menu .dropdown-item.active,
.dark-mode .dropdown-menu .dropdown-item.active,
[data-bs-theme="dark"] .dropdown-menu .dropdown-item:active,
.dark-mode .dropdown-menu .dropdown-item:active {
    background-color: rgba(110, 168, 254, 0.14);
    color: #8ec5ff;
}

.icon-circle {
    width: 56px;
    height: 56px;
}

.subscription-page .pricing-card {
    transition: border-color .18s ease, box-shadow .18s ease;
}

.subscription-page .pricing-card:hover {
    transform: none;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

.subscription-page .pricing-card-featured {
    box-shadow: 0 12px 28px rgba(8, 121, 250, .10) !important;
}

.subscription-plan-column {
    display: flex;
}

.subscription-plan-column .pricing-card {
    width: 100%;
}

.subscription-page .pricing-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.subscription-page .hero-card,
.subscription-page .subscription-shared-card,
.subscription-page .pricing-card,
.subscription-page .dark-panel,
.subscription-page .cta-card {
    backdrop-filter: none;
}

.subscription-page .pricing-card.featured {
    animation: none;
    box-shadow: 0 14px 30px rgba(8, 121, 250, 0.11);
}

.subscription-page .btn {
    transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
}

.subscription-page .btn:hover,
.subscription-page .btn:active {
    transform: none;
    box-shadow: none;
}

.subscription-page .scroll-down {
    box-shadow: none;
    transition: border-color .18s ease, background-color .18s ease;
}

.subscription-page .pricing-feature-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-rows: repeat(10, 2.55rem);
}

.subscription-page .pricing-feature-list li {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    padding: .3rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: .95rem;
}

.subscription-page .pricing-feature-list li::before {
    content: none;
}

.subscription-page .pricing-feature-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.subscription-page .pricing-feature-list li:first-child {
    padding-top: 0;
}

.pricing-feature-label {
    color: var(--site-text-soft);
    flex: 1 1 auto;
    min-width: 0;
    font-size: .89rem;
    line-height: 1.2;
    white-space: nowrap;
}

.pricing-feature-value {
    color: var(--site-text-main);
    text-align: right;
    font-weight: 600;
    flex: 0 0 auto;
    max-width: none;
    margin-left: auto;
    white-space: nowrap;
    line-height: 1.2;
}

.pricing-feature-value.is-unavailable {
    color: #b91c1c;
}

.pricing-feature-value.is-available {
    color: var(--site-text-main);
}

.pricing-feature-item.is-capacity-row {
    min-height: 0;
}

.pricing-feature-item.is-capacity-row .pricing-feature-value {
    max-width: none;
}

.pricing-feature-item.has-select {
    min-height: 0;
}

.pricing-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.1rem;
    margin: 0 auto 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.pricing-billing-toggle-top {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}

.pricing-billing-label {
    font-size: .92rem;
    line-height: 1.2;
    margin-bottom: .3rem;
    color: var(--site-text-main);
}

.pricing-billing-copy {
    font-size: .92rem;
    line-height: 1.5;
    color: var(--site-text-soft);
    max-width: 520px;
}

.pricing-billing-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-billing-switch {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .3rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}

.pricing-billing-option {
    border: 0;
    background: transparent;
    color: var(--site-text-soft);
    border-radius: 999px;
    padding: .68rem 1rem;
    font-weight: 700;
    line-height: 1;
    min-width: 108px;
}

.pricing-billing-option.active {
    background: #fff;
    color: var(--site-primary);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.pricing-price-block {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.pricing-billing-meta {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 1.55rem;
}

.pricing-billing-compare,
.pricing-billing-badge {
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease;
}

.pricing-billing-compare.is-visible,
.pricing-billing-badge.is-visible {
    opacity: 1;
    visibility: visible;
}

.pricing-billing-compare {
    color: var(--site-text-soft);
    font-size: .92rem;
    text-decoration: line-through;
}

.pricing-billing-badge {
    display: inline-flex;
    align-items: center;
    padding: .24rem .52rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: .76rem;
    font-weight: 700;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    flex-wrap: wrap;
}

.pricing-plan-amount {
    line-height: 1;
}

.enterprise-config-select {
    min-height: 34px;
    border-radius: 12px;
    border-color: rgba(15, 23, 42, 0.10);
    background-color: rgba(8, 121, 250, 0.04);
    font-weight: 600;
    box-shadow: none !important;
}

.enterprise-feature-select {
    width: 8.25rem;
    margin-left: auto;
    font-size: .88rem;
}

[data-bs-theme="dark"] .subscription-page .pricing-feature-list li {
    border-bottom-color: rgba(255, 255, 255, .08);
}

.subscription-page-ka .section-intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-page-ka .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 4.5rem;
}

.subscription-page-ka .page-hero::before,
.subscription-page-ka .page-hero::after {
    content: none;
}

.subscription-page-ka .page-hero::before {
    display: none;
}

.subscription-page-ka .page-hero::after {
    display: none;
}

.subscription-page-ka .page-title {
    font-size: clamp(1.55rem, 3.2vw, 2rem);
    letter-spacing: -0.04em;
}

.subscription-page-ka .page-lead {
    max-width: 580px;
    color: var(--site-text-muted);
}

.subscription-page-ka .hero-card {
    position: relative;
}

.subscription-page-ka .hero-card::before {
    content: none;
}

.subscription-page-ka .hero-card > * {
    position: relative;
    z-index: 1;
}

.subscription-page-ka .mini-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subscription-page-ka .subscription-shared-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.locations-page-ka .section-intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.locations-page-ka .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 4.5rem;
}

.locations-page-ka .page-title {
    font-size: clamp(1.55rem, 3.2vw, 2rem);
    letter-spacing: -0.04em;
}

.locations-page-ka .page-lead {
    max-width: 620px;
    color: var(--site-text-muted);
}

.locations-page .hero-card,
.locations-page .locations-map-shell,
.locations-page .locations-directory-card,
.locations-page .locations-active-card,
.locations-page .locations-meta-card,
.locations-page .cta-card {
    backdrop-filter: none;
}

.locations-page .scroll-down {
    box-shadow: none;
    transition: border-color .18s ease, background-color .18s ease;
}

.locations-map-shell,
.locations-directory-card {
    padding: 1.45rem;
    border-radius: 28px;
    border: 1px solid var(--site-card-border);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.locations-map-head,
.locations-directory-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.locations-map-caption {
    font-size: 1rem;
}

.locations-map-hint {
    color: var(--site-text-soft);
    font-size: .95rem;
    margin-top: .35rem;
}

.locations-map-tools {
    display: inline-flex;
    gap: .45rem;
}

.locations-map-tool {
    min-width: 2.15rem;
    height: 2.15rem;
    padding: 0 .75rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.92);
    cursor: pointer;
    color: var(--site-text-main);
    font-weight: 700;
    line-height: 1;
}

.locations-map-tool.is-text {
    min-width: auto;
    font-size: .84rem;
}

.locations-map-frame {
    position: relative;
    margin-top: 1.1rem;
    aspect-ratio: 1.92 / 1;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(8, 121, 250, 0.12), transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(0, 191, 166, 0.08), transparent 24%),
        linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
    border: 1px solid rgba(8, 121, 250, 0.08);
    cursor: grab;
    touch-action: none;
}

.locations-map-frame.is-dragging {
    cursor: grabbing;
}

.locations-map-canvas {
    position: absolute;
    inset: 0 auto auto 0;
    width: 1400px;
    height: 760px;
    transform-origin: 0 0;
    will-change: transform;
}

.locations-map-grid,
.locations-map-grid::before {
    position: absolute;
    inset: 0;
}

.locations-map-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.10) 1px, transparent 1px);
    background-size: 116px 116px;
}

.locations-map-grid::before {
    content: '';
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.locations-map-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
}

.locations-map-orb-west {
    width: 360px;
    height: 360px;
    top: 56px;
    left: 48px;
    background: radial-gradient(circle, rgba(8, 121, 250, 0.14) 0%, rgba(8, 121, 250, 0) 72%);
}

.locations-map-orb-east {
    width: 420px;
    height: 420px;
    top: 82px;
    right: 94px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.14) 0%, rgba(0, 191, 166, 0) 72%);
}

.locations-continent {
    position: absolute;
    background: linear-gradient(180deg, rgba(85, 122, 160, 0.30) 0%, rgba(72, 110, 149, 0.42) 100%);
    border: 1px solid rgba(71, 85, 105, 0.16);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.05);
}

.locations-continent span {
    position: absolute;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: rgba(15, 23, 42, 0.54);
    white-space: nowrap;
}

.continent-north-america {
    left: 74px;
    top: 102px;
    width: 320px;
    height: 220px;
    clip-path: polygon(4% 24%, 16% 7%, 40% 0, 68% 7%, 86% 22%, 96% 42%, 92% 54%, 76% 54%, 68% 48%, 58% 54%, 42% 56%, 26% 66%, 16% 64%, 7% 52%, 0 38%);
    border-radius: 34px;
}

.continent-north-america::before,
.continent-north-america::after,
.continent-europe::before,
.continent-africa::before,
.continent-asia::before,
.continent-oceania::before {
    content: '';
    position: absolute;
    inset: auto;
    background: inherit;
    border: inherit;
}

.continent-north-america::before {
    width: 82px;
    height: 56px;
    top: -40px;
    left: 162px;
    border-radius: 28px;
    transform: rotate(-6deg);
}

.continent-north-america::after {
    width: 64px;
    height: 92px;
    left: 230px;
    bottom: -32px;
    clip-path: polygon(28% 0, 100% 12%, 76% 100%, 22% 84%, 0 30%);
    border-radius: 18px;
    transform: rotate(14deg);
}

.continent-north-america span {
    top: 84px;
    left: 82px;
}

.continent-south-america {
    left: 286px;
    top: 332px;
    width: 124px;
    height: 198px;
    clip-path: polygon(36% 0, 82% 14%, 100% 44%, 82% 76%, 52% 100%, 22% 88%, 0 54%, 12% 20%);
    border-radius: 32px;
}

.continent-south-america span {
    top: 72px;
    left: 10px;
}

.continent-europe {
    left: 628px;
    top: 164px;
    width: 138px;
    height: 94px;
    clip-path: polygon(0 44%, 18% 18%, 42% 8%, 68% 12%, 92% 26%, 100% 46%, 88% 60%, 60% 54%, 38% 66%, 14% 60%);
    border-radius: 24px;
}

.continent-europe::before {
    width: 42px;
    height: 26px;
    top: -16px;
    left: 62px;
    border-radius: 18px;
    transform: rotate(18deg);
}

.continent-europe span {
    top: 28px;
    left: 38px;
}

.continent-africa {
    left: 676px;
    top: 244px;
    width: 168px;
    height: 212px;
    clip-path: polygon(22% 0, 72% 0, 94% 26%, 82% 62%, 60% 100%, 28% 92%, 10% 56%, 0 22%);
    border-radius: 40px;
}

.continent-africa::before {
    width: 30px;
    height: 34px;
    right: 26px;
    bottom: -14px;
    border-radius: 18px;
}

.continent-africa span {
    top: 82px;
    left: 56px;
}

.continent-asia {
    left: 764px;
    top: 118px;
    width: 434px;
    height: 270px;
    clip-path: polygon(2% 34%, 14% 10%, 34% 0, 58% 2%, 82% 12%, 98% 30%, 100% 52%, 88% 68%, 72% 66%, 60% 54%, 48% 58%, 38% 78%, 20% 84%, 8% 70%);
    border-radius: 44px;
}

.continent-asia::before {
    width: 110px;
    height: 86px;
    right: 46px;
    bottom: -34px;
    clip-path: polygon(18% 0, 100% 22%, 88% 100%, 10% 90%, 0 30%);
    border-radius: 28px;
    transform: rotate(8deg);
}

.continent-asia span {
    top: 78px;
    left: 176px;
}

.continent-oceania {
    left: 1170px;
    top: 470px;
    width: 126px;
    height: 88px;
    clip-path: polygon(10% 20%, 44% 0, 86% 16%, 100% 52%, 76% 86%, 28% 100%, 0 60%);
    border-radius: 28px;
}

.continent-oceania::before {
    width: 18px;
    height: 18px;
    left: -24px;
    top: 28px;
    border-radius: 50%;
}

.continent-oceania span {
    top: 28px;
    left: 28px;
}

.locations-map-marker {
    position: absolute;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.locations-map-marker.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.locations-map-marker-pulse,
.locations-map-marker-dot {
    position: absolute;
    inset: 0;
    border-radius: 999px;
}

.locations-map-marker-pulse {
    background: rgba(8, 121, 250, 0.18);
    border: 2px solid rgba(8, 121, 250, 0.46);
}

.locations-map-marker-dot {
    inset: 7px;
    background: #0879fa;
}

.locations-map-marker.is-primary .locations-map-marker-pulse {
    background: rgba(0, 191, 166, 0.22);
    border-color: rgba(0, 191, 166, 0.6);
}

.locations-map-marker.is-primary .locations-map-marker-dot {
    background: #00bfa6;
}

.locations-map-marker.is-active .locations-map-marker-pulse {
    transform: scale(1.15);
    border-color: rgba(8, 121, 250, 0.72);
}

.locations-map-marker.is-active .locations-map-marker-dot {
    background: #075bc0;
}

.locations-map-tooltip {
    position: absolute;
    z-index: 4;
    min-width: 9rem;
    max-width: 11rem;
    padding: .65rem .78rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 14px));
}

.locations-map-tooltip strong,
.locations-map-tooltip span {
    display: block;
}

.locations-map-tooltip strong {
    color: var(--site-text-main);
    font-size: .94rem;
    line-height: 1.15;
}

.locations-map-tooltip span {
    color: var(--site-text-soft);
    font-size: .78rem;
    margin-top: .18rem;
}

.locations-map-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, .92fr));
    gap: 1rem;
    margin-top: 1rem;
}

.locations-active-card,
.locations-meta-card {
    padding: 1rem 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.06), rgba(14, 165, 233, 0.03));
}

.locations-active-kicker,
.locations-meta-title {
    display: inline-flex;
    margin-bottom: .45rem;
    color: var(--site-text-soft);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.locations-active-tags,
.locations-legend-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.locations-active-pill,
.locations-legend-pill,
.location-row-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .34rem .65rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}

.locations-active-pill {
    background: rgba(8, 121, 250, 0.10);
    color: var(--site-primary);
}

.locations-active-pill.is-soft {
    background: rgba(15, 23, 42, 0.05);
    color: var(--site-text-soft);
}

.locations-legend-pill {
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--site-text-main);
}

.locations-legend-pill.continent-europe {
    color: #075bc0;
}

.locations-legend-pill.continent-asia {
    color: #0f766e;
}

.locations-legend-pill.continent-americas {
    color: #b45309;
}

.locations-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
}

.locations-summary-list li {
    color: var(--site-text-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.locations-summary-list li::before {
    content: '•';
    color: var(--site-primary);
    margin-right: .45rem;
}

.locations-directory-text {
    margin: 0;
    max-width: none;
    text-align: left;
}

.locations-reset-btn {
    flex-shrink: 0;
}

.locations-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) minmax(220px, .75fr);
    gap: 1rem;
    margin: 1.2rem 0 1rem;
}

.locations-search-field {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 3rem;
    padding: 0 .95rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.84);
}

.locations-search-field i {
    color: var(--site-text-soft);
}

.locations-search-field input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--site-text-main);
    outline: 0;
}

.locations-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
}

.locations-filter-chip {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.84);
    color: var(--site-text-soft);
    border-radius: 999px;
    padding: .68rem .95rem;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1;
}

.locations-filter-chip.is-active {
    border-color: rgba(8, 121, 250, 0.16);
    background: rgba(8, 121, 250, 0.10);
    color: var(--site-primary);
}

.locations-country-select-wrap {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    color: var(--site-text-soft);
    font-size: .84rem;
    font-weight: 700;
}

.locations-country-select-wrap .form-select {
    min-height: 3rem;
    border-radius: 16px;
    border-color: rgba(15, 23, 42, 0.10);
    background-color: rgba(248, 250, 252, 0.84);
    box-shadow: none !important;
}

.locations-results-meta {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .9rem;
    color: var(--site-text-soft);
}

.locations-results-meta strong {
    color: var(--site-text-main);
    font-size: 1rem;
}

.locations-table {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.68);
}

.locations-table-head,
.location-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .9fr) minmax(0, .84fr) minmax(120px, .58fr) minmax(0, 1.12fr);
    gap: 1rem;
    align-items: center;
}

.locations-table-head {
    padding: .95rem 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-text-soft);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.locations-table-body {
    display: grid;
}

.location-row {
    width: 100%;
    padding: 1rem 1.15rem;
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: transparent;
    color: var(--site-text-main);
    text-align: left;
    transition: background-color .18s ease;
}

.location-row:hover,
.location-row.is-active {
    background: rgba(8, 121, 250, 0.06);
}

.location-row.is-hidden {
    display: none;
}

.location-row-city strong {
    font-size: 1rem;
    line-height: 1.15;
}

.location-row-badge {
    background: rgba(15, 23, 42, 0.06);
    color: var(--site-text-main);
}

.location-row-badge.is-primary {
    background: rgba(0, 191, 166, 0.12);
    color: #0f766e;
}

.location-row-checks {
    color: var(--site-text-soft);
}

.locations-empty-state {
    padding: 1.25rem 1.15rem;
    color: var(--site-text-soft);
}

.subscription-page-ka .subscription-shared-card {
    padding: 1.45rem;
    border-radius: 24px;
    border: 1px solid var(--site-card-border);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.subscription-page-ka .subscription-shared-card p {
    color: var(--site-text-soft);
    line-height: 1.75;
}

.subscription-page-ka .subscription-shared-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: rgba(8, 121, 250, 0.09);
    color: var(--site-primary);
    font-size: 1.35rem;
}

.subscription-page-ka .pricing-card {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.subscription-page-ka .pricing-card::after {
    content: none;
}

.subscription-page-ka .pricing-card.featured {
    box-shadow: 0 14px 30px rgba(8, 121, 250, 0.11);
    animation: none;
}

.subscription-page-ka .pricing-plan-top {
    min-height: 58px;
}

.subscription-page-ka .pricing-plan-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(8, 121, 250, 0.09);
    color: var(--site-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.subscription-page-ka .pricing-plan-period {
    font-size: 1rem;
}

.subscription-page-ka .dark-panel {
    border-radius: 32px;
    box-shadow: none;
}

.subscription-page .dark-panel::after {
    content: none;
}

[data-bs-theme="dark"] .subscription-page-ka .subscription-shared-card,
.dark-mode .subscription-page-ka .subscription-shared-card,
[data-bs-theme="dark"] .locations-map-shell,
.dark-mode .locations-map-shell,
[data-bs-theme="dark"] .locations-directory-card,
.dark-mode .locations-directory-card,
[data-bs-theme="dark"] .locations-active-card,
.dark-mode .locations-active-card,
[data-bs-theme="dark"] .locations-meta-card,
.dark-mode .locations-meta-card,
[data-bs-theme="dark"] .subscription-page-ka .pricing-card,
.dark-mode .subscription-page-ka .pricing-card {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

[data-bs-theme="dark"] .subscription-page-ka .subscription-shared-card p,
.dark-mode .subscription-page-ka .subscription-shared-card p {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .locations-map-frame,
.dark-mode .locations-map-frame {
    background:
        radial-gradient(circle at top left, rgba(8, 121, 250, 0.16), transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(0, 191, 166, 0.10), transparent 24%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.92) 100%);
    border-color: rgba(148, 163, 184, 0.14);
}

[data-bs-theme="dark"] .locations-continent,
.dark-mode .locations-continent {
    background: linear-gradient(180deg, rgba(71, 85, 105, 0.42) 0%, rgba(51, 65, 85, 0.54) 100%);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.20);
}

[data-bs-theme="dark"] .locations-continent span,
.dark-mode .locations-continent span,
[data-bs-theme="dark"] .locations-active-kicker,
.dark-mode .locations-active-kicker,
[data-bs-theme="dark"] .locations-meta-title,
.dark-mode .locations-meta-title,
[data-bs-theme="dark"] .location-row-checks,
.dark-mode .location-row-checks {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .locations-active-card,
.dark-mode .locations-active-card,
[data-bs-theme="dark"] .locations-meta-card,
.dark-mode .locations-meta-card {
    border-color: rgba(148, 163, 184, 0.14);
    background: linear-gradient(135deg, rgba(8, 121, 250, 0.18), rgba(30, 41, 59, 0.3));
}

[data-bs-theme="dark"] .locations-map-tool,
.dark-mode .locations-map-tool,
[data-bs-theme="dark"] .locations-filter-chip,
.dark-mode .locations-filter-chip,
[data-bs-theme="dark"] .locations-search-field,
.dark-mode .locations-search-field,
[data-bs-theme="dark"] .locations-country-select-wrap .form-select,
.dark-mode .locations-country-select-wrap .form-select,
[data-bs-theme="dark"] .locations-table,
.dark-mode .locations-table,
[data-bs-theme="dark"] .locations-table-head,
.dark-mode .locations-table-head {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(148, 163, 184, 0.18);
    color: #f8fafc;
}

[data-bs-theme="dark"] .locations-filter-chip.is-active,
.dark-mode .locations-filter-chip.is-active {
    background: rgba(8, 121, 250, 0.16);
    border-color: rgba(96, 165, 250, 0.24);
    color: #8ec5ff;
}

[data-bs-theme="dark"] .locations-search-field input,
.dark-mode .locations-search-field input,
[data-bs-theme="dark"] .locations-results-meta strong,
.dark-mode .locations-results-meta strong,
[data-bs-theme="dark"] .location-row-badge,
.dark-mode .location-row-badge {
    color: #f8fafc;
}

[data-bs-theme="dark"] .locations-map-tooltip,
.dark-mode .locations-map-tooltip {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(148, 163, 184, 0.16);
}

[data-bs-theme="dark"] .locations-map-tooltip strong,
.dark-mode .locations-map-tooltip strong {
    color: #f8fafc;
}

[data-bs-theme="dark"] .locations-map-tooltip span,
.dark-mode .locations-map-tooltip span,
[data-bs-theme="dark"] .locations-results-meta,
.dark-mode .locations-results-meta,
[data-bs-theme="dark"] .locations-country-select-wrap,
.dark-mode .locations-country-select-wrap {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .locations-legend-pill,
.dark-mode .locations-legend-pill,
[data-bs-theme="dark"] .location-row-badge,
.dark-mode .location-row-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(148, 163, 184, 0.16);
}

[data-bs-theme="dark"] .location-row-badge.is-primary,
.dark-mode .location-row-badge.is-primary {
    background: rgba(0, 191, 166, 0.18);
    color: #8bf4db;
}

[data-bs-theme="dark"] .locations-active-pill.is-soft,
.dark-mode .locations-active-pill.is-soft {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

[data-bs-theme="dark"] .location-row,
.dark-mode .location-row {
    color: #f8fafc;
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .location-row:hover,
.dark-mode .location-row:hover,
[data-bs-theme="dark"] .location-row.is-active,
.dark-mode .location-row.is-active {
    background: rgba(8, 121, 250, 0.12);
}

[data-bs-theme="dark"] .locations-empty-state,
.dark-mode .locations-empty-state,
[data-bs-theme="dark"] .locations-summary-list li,
.dark-mode .locations-summary-list li {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .subscription-page-ka .pricing-feature-list li,
.dark-mode .subscription-page-ka .pricing-feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .pricing-feature-label,
.dark-mode .pricing-feature-label {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .subscription-page-ka .pricing-feature-value:not(.is-unavailable),
.dark-mode .subscription-page-ka .pricing-feature-value:not(.is-unavailable) {
    color: #f8fafc;
}

[data-bs-theme="dark"] .pricing-billing-toggle,
.dark-mode .pricing-billing-toggle {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

[data-bs-theme="dark"] .pricing-billing-option,
.dark-mode .pricing-billing-option {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .pricing-billing-option.active,
.dark-mode .pricing-billing-option.active {
    background: rgba(255, 255, 255, 0.08);
    color: #8ec5ff;
}

[data-bs-theme="dark"] .pricing-billing-switch,
.dark-mode .pricing-billing-switch {
    background: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .pricing-billing-copy,
.dark-mode .pricing-billing-copy,
[data-bs-theme="dark"] .pricing-billing-compare,
.dark-mode .pricing-billing-compare {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .enterprise-config-select,
.dark-mode .enterprise-config-select {
    background-color: rgba(15, 23, 42, 0.92);
    border-color: rgba(148, 163, 184, 0.16);
    color: #f8fafc;
}

@media (max-width: 991.98px) {
    .pricing-billing-toggle {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-billing-toggle-top {
        justify-content: space-between;
    }

    .subscription-page-ka .page-title {
        max-width: none;
    }

    .subscription-page-ka .subscription-shared-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .locations-map-summary {
        grid-template-columns: 1fr;
    }

    .locations-filter-bar {
        grid-template-columns: 1fr;
    }

    .locations-page-ka .page-title {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .pricing-billing-toggle {
        padding: .95rem;
        border-radius: 18px;
        margin-bottom: 1.5rem;
    }

    .pricing-billing-toggle-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-billing-switch {
        width: 100%;
    }

    .pricing-billing-option {
        flex: 1 1 0;
        min-width: 0;
    }

    .subscription-page .pricing-feature-list {
        display: block;
    }

    .subscription-page .pricing-feature-list li {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .45rem;
    }

    .pricing-feature-label,
    .pricing-feature-value {
        max-width: none;
        margin-left: 0;
        text-align: left;
        white-space: normal;
    }

    .enterprise-feature-select {
        width: 100%;
        margin-left: 0;
    }

    .locations-map-head,
    .locations-directory-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .locations-map-tools {
        flex-wrap: wrap;
    }

    .locations-map-frame {
        aspect-ratio: 1.45 / 1;
    }

    .locations-map-shell,
    .locations-directory-card {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .locations-table {
        background: transparent;
        border: 0;
    }

    .locations-table-head {
        display: none;
    }

    .location-row {
        grid-template-columns: 1fr;
        gap: .45rem;
        margin-bottom: .85rem;
        padding: 1rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        background: rgba(248, 250, 252, 0.86);
    }

    .location-row span {
        display: block;
    }

    .subscription-page-ka .page-hero {
        padding-top: 2.35rem;
        padding-bottom: 4rem;
    }

    .subscription-page-ka .page-title {
        font-size: clamp(1.45rem, 7.4vw, 1.74rem);
        line-height: 1.16;
    }

    .subscription-page-ka .hero-card,
    .subscription-page-ka .subscription-shared-card,
    .subscription-page-ka .pricing-card {
        padding: 1.35rem;
    }

    .subscription-page-ka .mini-stat-grid {
        grid-template-columns: 1fr;
    }

    .subscription-page-ka .subscription-shared-grid {
        grid-template-columns: 1fr;
    }

    .locations-page-ka .page-title {
        font-size: clamp(1.45rem, 7.4vw, 1.74rem);
        line-height: 1.16;
    }

    .locations-page .hero-card {
        padding: 1.35rem;
    }
}

.modules-page .module-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.modules-page .module-card:hover {
    transform: translateY(-4px);
}

.modules-page .module-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.modules-page .module-card-custom {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08) !important;
}
