:root {
    --geo-text: #eef7f9;
    --geo-sub: rgba(220, 235, 242, 0.78);
    --geo-line: rgba(181, 227, 239, 0.2);
    --geo-glass: rgba(8, 16, 28, 0.5);
    --geo-glow: rgba(64, 216, 255, 0.26);
    --geo-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.bi-geo-shell {
    padding-top: 58px;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(35, 201, 242, 0.12), transparent 36%),
        radial-gradient(circle at 88% 18%, rgba(26, 128, 255, 0.18), transparent 40%),
        linear-gradient(180deg, #08111b 0%, #0b1420 58%, #0a1019 100%);
}

.bi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(181, 227, 239, 0.22);
    background: rgba(8, 18, 30, 0.7);
    color: #eaf9ff;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bi-btn:hover {
    border-color: rgba(35, 201, 242, 0.5);
    box-shadow: 0 0 16px rgba(35, 201, 242, 0.18);
}

.bi-btn-primary {
    background: linear-gradient(120deg, rgba(35, 201, 242, 0.35), rgba(26, 128, 255, 0.35));
    border-color: rgba(35, 201, 242, 0.6);
}

.bi-geo-stage {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 780px;
    margin: 8px 10px 10px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(181, 227, 239, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    background: #07101a;
}

.bi-geo-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bi-geo-step-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bi-geo-step-actions .bi-btn {
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
}

.bi-geo-step-actions .bi-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.bi-geo-step-actions .bi-btn-ghost {
    background: rgba(8, 16, 26, 0.6);
    border: 1px solid rgba(120, 170, 190, 0.35);
    color: #eaf9ff;
}

.bi-geo-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bi-geo-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 8%, rgba(35, 201, 242, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(8, 18, 30, 0.0), rgba(8, 18, 30, 0.55) 58%, rgba(8, 18, 30, 0.85));
    z-index: 1;
}

.bi-geo-flow {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.65);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    z-index: 4;
    box-shadow: var(--geo-shadow);
}

.bi-geo-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--geo-sub);
    font-size: 12px;
}

.bi-geo-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 227, 239, 0.3);
    color: var(--geo-sub);
    font-weight: 600;
}

.bi-geo-step strong {
    display: block;
    color: #eaf9ff;
    font-size: 12px;
}

.bi-geo-step small {
    color: var(--geo-sub);
    font-size: 10px;
}

.bi-geo-step.active span {
    border-color: rgba(35, 201, 242, 0.7);
    color: #7ee4ff;
    box-shadow: 0 0 12px rgba(35, 201, 242, 0.35);
}

.bi-geo-line {
    width: 40px;
    height: 1px;
    background: rgba(181, 227, 239, 0.25);
}

.bi-geo-hero {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.bi-geo-hero-inner {
    max-width: 680px;
    text-align: center;
    padding: 28px 34px;
    border-radius: 20px;
    border: 1px solid var(--geo-line);
    background: rgba(8, 16, 28, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: var(--geo-shadow);
    overflow: visible;
}

.bi-geo-hero-inner h1 {
    margin: 12px 0 8px;
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--geo-text);
}

.bi-geo-hero-inner p {
    margin: 0 0 18px;
    color: var(--geo-sub);
    font-size: 13px;
    line-height: 1.6;
}

.bi-geo-hero-note {
    margin-top: 12px;
    color: rgba(220, 235, 242, 0.68);
    font-size: 12px;
}

.bi-geo-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8fefff;
    background: rgba(35, 201, 242, 0.08);
    border: 1px solid rgba(35, 201, 242, 0.22);
    border-radius: 999px;
    padding: 4px 10px;
}

.bi-geo-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--geo-line);
    background: linear-gradient(180deg, rgba(9, 18, 31, 0.6), rgba(8, 16, 26, 0.4));
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    min-width: 300px;
    position: relative;
    z-index: 5;
}

.bi-geo-search-large {
    margin: 0 auto;
    max-width: 520px;
}

.bi-geo-search label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--geo-sub);
    font-size: 12px;
}

.bi-geo-search input {
    border-radius: 12px;
    border: 1px solid rgba(181, 227, 239, 0.16);
    background: rgba(7, 14, 24, 0.7);
    color: var(--geo-text);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}

.bi-geo-suggest {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    background: rgba(7, 14, 24, 0.96);
    border: 1px solid rgba(181, 227, 239, 0.2);
    border-radius: 12px;
    padding: 6px;
    display: none;
    z-index: 9999;
    max-height: 240px;
    overflow: auto;
    box-shadow: var(--geo-shadow);
}

.bi-geo-suggest.open {
    display: block;
}

.bi-geo-suggest-item {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--geo-text);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.bi-geo-suggest-item span {
    color: var(--geo-sub);
}

.bi-geo-suggest-item:hover {
    background: rgba(35, 201, 242, 0.12);
}

.bi-geo-loader {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: none;
}

.bi-geo-loader.show {
    display: block;
}

.bi-geo-loader-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.7);
    color: var(--geo-sub);
    font-size: 12px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: var(--geo-shadow);
}

.bi-geo-loader-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(35, 201, 242, 0.9);
    animation: bi-geo-pulse 1.2s infinite ease-in-out;
}

.bi-geo-loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.bi-geo-loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bi-geo-pulse {
    0%, 100% { transform: scale(0.6); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
}

.bi-geo-insight {
    position: absolute;
    inset: 90px 32px 60px;
    z-index: 3;
    display: none;
}

.bi-geo-insight-inner {
    height: 100%;
    overflow: auto;
    padding: 0 4px;
    position: relative;
}

.bi-geo-panel {
    display: none;
}

.bi-geo-stage[data-step="2"] .bi-geo-panel[data-panel="2"] {
    display: block;
}

.bi-geo-stage[data-step="3"] .bi-geo-panel[data-panel="3"] {
    display: block;
}

.bi-geo-stage[data-step="4"] .bi-geo-panel[data-panel="4"] {
    display: block;
}
.bi-geo-stage[data-step="5"] .bi-geo-panel[data-panel="5"] {
    display: block;
}

.bi-geo-columns-wide {
    grid-template-columns: 1fr 1fr;
}

.bi-geo-columns-step4 {
    align-items: flex-start;
}

.bi-geo-select-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 14px;
    color: rgba(200, 230, 240, 0.8);
    font-size: 12px;
}

.bi-geo-select-row select {
    background: rgba(13, 24, 36, 0.7);
    border: 1px solid rgba(120, 170, 190, 0.35);
    color: #e9f7ff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.bi-geo-plant-list,
.bi-geo-comp-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

.bi-geo-plant-map,
.bi-geo-chain-chart {
    width: 100%;
    height: 360px;
}

.bi-geo-agri-pies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bi-geo-agri-pie {
    width: 100%;
    height: 260px;
    background: rgba(10, 20, 32, 0.55);
    border: 1px solid rgba(120, 170, 190, 0.2);
    border-radius: 16px;
}

.bi-geo-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bi-geo-kpi {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(13, 24, 36, 0.55);
    border: 1px solid rgba(120, 170, 190, 0.2);
}

.bi-geo-kpi span {
    display: block;
    color: rgba(200, 230, 240, 0.7);
    font-size: 12px;
}

.bi-geo-kpi strong {
    display: block;
    color: #eaf9ff;
    font-size: 16px;
    margin-top: 4px;
}

.bi-geo-chain-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bi-geo-chain-item {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(120, 170, 190, 0.2);
    background: rgba(13, 24, 36, 0.5);
}

.bi-geo-chain-item h4 {
    margin: 0 0 6px;
    font-size: 13px;
    color: #eaf9ff;
}

.bi-geo-chain-chart-mini {
    width: 100%;
    height: 140px;
    background: rgba(10, 20, 32, 0.55);
    border-radius: 12px;
    border: 1px solid rgba(120, 170, 190, 0.18);
}

.bi-geo-loader-inline {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(120, 170, 190, 0.18);
    background: rgba(10, 20, 32, 0.55);
    margin-bottom: 12px;
}

.bi-geo-loading-wrap {
    position: relative;
}

.bi-geo-loader-overlay {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(7, 16, 26, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.bi-geo-loader-overlay.active {
    display: flex;
}

.bi-geo-loader-overlay .bi-geo-loader-dots span {
    width: 6px;
    height: 6px;
}

.bi-geo-loader-inline.active {
    display: flex;
}

.bi-geo-loader-dots {
    display: inline-flex;
    gap: 6px;
}

.bi-geo-loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6dd6ff;
    animation: bi-geo-bounce 1.4s infinite ease-in-out;
}

.bi-geo-loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: #8bd0ff;
}

.bi-geo-loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: #a6f0ff;
}

.bi-geo-loader-text {
    color: rgba(220, 235, 242, 0.8);
    font-size: 12px;
}

@keyframes bi-geo-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.bi-geo-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bi-geo-chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #eaf9ff;
    background: rgba(35, 201, 242, 0.16);
    border: 1px solid rgba(35, 201, 242, 0.35);
}

.bi-geo-plant-item,
.bi-geo-comp-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(13, 24, 36, 0.55);
    border: 1px solid rgba(120, 170, 190, 0.2);
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bi-geo-plant-item:hover,
.bi-geo-comp-item:hover {
    border-color: rgba(126, 228, 255, 0.5);
    box-shadow: 0 8px 20px rgba(20, 120, 150, 0.25);
    transform: translateY(-2px);
}

.bi-geo-plant-item.active {
    border-color: rgba(35, 201, 242, 0.8);
    box-shadow: 0 10px 28px rgba(35, 201, 242, 0.28);
}

.bi-geo-plant-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(120, 170, 190, 0.4);
}

.bi-geo-plant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bi-geo-plant-name {
    font-size: 14px;
    font-weight: 600;
    color: #eaf9ff;
}

.bi-geo-plant-meta {
    font-size: 11px;
    color: rgba(200, 230, 240, 0.8);
}

.bi-geo-plant-score {
    background: rgba(35, 201, 242, 0.15);
    color: #8de1ff;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    white-space: nowrap;
}

.bi-geo-comp-name {
    font-size: 13px;
    color: #eaf9ff;
    font-weight: 600;
}

.bi-geo-comp-meta {
    font-size: 11px;
    color: rgba(200, 230, 240, 0.8);
}

.bi-geo-chain {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.bi-geo-chain-item {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(120, 170, 190, 0.35);
    background: rgba(13, 24, 36, 0.6);
    font-size: 12px;
    color: rgba(220, 245, 255, 0.9);
}

.bi-geo-marker-label {
    background: rgba(8, 18, 28, 0.7);
    color: #eaf9ff;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 10px;
    border: 1px solid rgba(120, 170, 190, 0.35);
    white-space: nowrap;
}

.bi-geo-center-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.bi-geo-center-title {
    font-size: 18px;
    color: #eaf9ff;
    font-weight: 600;
}

.bi-geo-center-sub {
    font-size: 11px;
    color: var(--geo-sub);
}

.bi-geo-center-mode {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(126, 228, 255, 0.9);
}

.bi-geo-center-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bi-geo-season-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 6px;
    font-size: 12px;
    color: var(--geo-sub);
}

.bi-geo-season-badges strong {
    color: #eaf9ff;
    font-weight: 600;
}

.bi-geo-season-chart {
    height: 160px;
}

.bi-geo-center-tab {
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.7);
    color: var(--geo-sub);
    font-size: 11px;
    cursor: pointer;
}

.bi-geo-center-tab.active {
    color: #eaf9ff;
    border-color: rgba(35, 201, 242, 0.6);
    background: rgba(35, 201, 242, 0.18);
}

.bi-geo-center-chart {
    height: 200px;
    margin: 10px 0;
}

.bi-geo-center-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 12px;
    color: var(--geo-sub);
}

.bi-geo-center-kpis strong {
    display: block;
    margin-top: 4px;
    color: #eaf9ff;
    font-size: 14px;
}

.bi-geo-columns {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 360px);
    gap: 28px;
    height: 100%;
    justify-content: space-between;
    margin-top: 0;
}

.bi-geo-card-chart {
    padding-bottom: 8px;
}

.bi-geo-popup-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(181, 227, 239, 0.25);
    background: linear-gradient(135deg, rgba(35, 201, 242, 0.2), rgba(26, 128, 255, 0.25));
    color: #eaf9ff;
    font-size: 13px;
    cursor: pointer;
}

.bi-geo-popup-icon {
    font-size: 14px;
    color: #7ee4ff;
}

.bi-geo-popup-btn em {
    font-style: normal;
    font-size: 11px;
    color: rgba(220, 235, 242, 0.8);
}

.bi-geo-modal {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.bi-geo-modal.show {
    display: flex;
}

.bi-geo-modal-card {
    width: min(820px, 86vw);
    max-height: 80vh;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.9);
    box-shadow: var(--geo-shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bi-geo-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bi-geo-modal-close {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(181, 227, 239, 0.3);
    background: rgba(8, 16, 28, 0.7);
    color: #eaf9ff;
    cursor: pointer;
    font-size: 12px;
}

.bi-geo-modal-body {
    flex: 1;
    overflow: auto;
    padding: 8px 4px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bi-geo-modal-tablet {
    border-radius: 16px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(9, 18, 31, 0.7);
    padding: 12px 14px;
}

.bi-geo-modal-title {
    font-size: 13px;
    color: #eaf9ff;
    margin-bottom: 8px;
    font-weight: 600;
}

.bi-geo-modal-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(230, 245, 255, 0.9);
    white-space: pre-wrap;
}

@media (max-width: 900px) {
    .bi-geo-modal-body {
        grid-template-columns: 1fr;
    }
}

.bi-geo-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: auto;
    padding-right: 4px;
}

.bi-geo-card {
    border-radius: 16px;
    border: 1px solid rgba(181, 227, 239, 0.16);
    background: rgba(8, 16, 28, 0.62);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    padding: 18px 18px;
    color: var(--geo-text);
    box-shadow: var(--geo-shadow);
}

.bi-geo-card h2 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #eaf9ff;
    letter-spacing: 0.04em;
}

.bi-geo-metric {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--geo-sub);
}

.bi-geo-metric strong {
    color: #eaf9ff;
    font-weight: 700;
}

.bi-geo-note {
    font-size: 12px;
    color: rgba(220, 235, 242, 0.7);
    line-height: 1.4;
}

.bi-geo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 14px;
    color: var(--geo-sub);
}

.bi-geo-grid-compact {
    gap: 8px 12px;
}

.bi-geo-grid strong {
    display: block;
    margin-top: 4px;
    color: #eaf9ff;
    font-size: 15px;
}

.bi-geo-tabs {
    display: flex;
    gap: 8px;
    margin: 6px 0 8px;
    flex-wrap: nowrap;
}

.bi-geo-tabs-wrap {
    flex-wrap: wrap;
}

.bi-geo-tab {
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.7);
    color: var(--geo-sub);
    font-size: 11px;
    cursor: pointer;
}

.bi-geo-tab.active {
    color: #eaf9ff;
    border-color: rgba(35, 201, 242, 0.6);
    background: rgba(35, 201, 242, 0.18);
}

.bi-geo-rain-chart {
    height: 200px;
    margin: 8px 0;
}

.bi-geo-ai {
    font-size: 14px;
    line-height: 1.7;
    color: var(--geo-sub);
    white-space: pre-wrap;
}

.bi-geo-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bi-geo-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.bi-geo-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(181, 227, 239, 0.2);
    background: rgba(8, 16, 28, 0.6);
    color: var(--geo-sub);
    z-index: 3;
    font-size: 12px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.bi-geo-stage[data-step="2"] .bi-geo-hero {
    display: none;
}

.bi-geo-stage[data-step="2"] .bi-geo-insight {
    display: block;
}

.bi-geo-stage[data-step="2"] .bi-geo-step[data-step="2"] {
    color: #eaf9ff;
}

.bi-geo-stage[data-step="2"] .bi-geo-step[data-step="2"] span {
    border-color: rgba(35, 201, 242, 0.7);
    color: #7ee4ff;
    box-shadow: 0 0 12px rgba(35, 201, 242, 0.35);
}

.bi-geo-stage[data-step="3"] .bi-geo-hero {
    display: none;
}

.bi-geo-stage[data-step="3"] .bi-geo-insight {
    display: block;
}

.bi-geo-stage[data-step="4"] .bi-geo-hero {
    display: none;
}

.bi-geo-stage[data-step="4"] .bi-geo-insight {
    display: block;
}

.bi-geo-stage[data-step="5"] .bi-geo-hero {
    display: none;
}

.bi-geo-stage[data-step="5"] .bi-geo-insight {
    display: block;
}

.bi-geo-stage[data-step="4"] .bi-geo-step[data-step="4"] {
    color: #eaf9ff;
}

.bi-geo-stage[data-step="4"] .bi-geo-step[data-step="4"] span {
    border-color: rgba(35, 201, 242, 0.7);
    color: #7ee4ff;
    box-shadow: 0 0 12px rgba(35, 201, 242, 0.35);
}

.bi-geo-stage[data-step="5"] .bi-geo-step[data-step="5"] {
    color: #eaf9ff;
}

.bi-geo-stage[data-step="5"] .bi-geo-step[data-step="5"] span {
    border-color: rgba(35, 201, 242, 0.7);
    color: #7ee4ff;
    box-shadow: 0 0 12px rgba(35, 201, 242, 0.35);
}

.bi-geo-stage[data-step="3"] .bi-geo-step[data-step="3"] {
    color: #eaf9ff;
}

.bi-geo-stage[data-step="3"] .bi-geo-step[data-step="3"] span {
    border-color: rgba(35, 201, 242, 0.7);
    color: #7ee4ff;
    box-shadow: 0 0 12px rgba(35, 201, 242, 0.35);
}

.bi-geo-terrain-toggle {
    margin-top: 10px;
    width: 100%;
}

.bi-geo-step-btn {
    width: 100%;
}

.bi-geo-road-toggle {
    width: 100%;
}

@media (max-width: 1200px) {
    .bi-geo-center-chart {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .bi-geo-columns {
        grid-template-columns: 1fr;
        height: auto;
        gap: 16px;
        margin-top: 12px;
    }

    .bi-geo-insight {
        inset: 100px 16px 70px;
    }

    .bi-geo-hero-inner {
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .bi-geo-stage {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .bi-geo-hero {
        position: static;
        padding: 90px 16px 20px;
    }

    .bi-geo-insight {
        position: static;
        display: block;
        padding: 16px;
    }

    .bi-geo-flow {
        position: static;
        transform: none;
        margin: 12px auto 0;
        justify-content: center;
    }

    .bi-geo-bottom {
        position: static;
        transform: none;
        margin: 12px;
        text-align: center;
    }
}
