/**
 * Geo Pages — Light CyberPunk Theme
 * Лайтовий киберпанк для гео-сторінок westelecom.ua
 * 16.02.2026
 */

:root {
    --cp-cyan: #00c8e0;
    --cp-cyan-dark: #0099b3;
    --cp-purple: #7c3aed;
    --cp-green: #10b981;
    --cp-glow: rgba(0, 200, 224, 0.12);
    --cp-glow-strong: rgba(0, 200, 224, 0.25);
    --cp-border: rgba(0, 200, 224, 0.2);
    --cp-bg: #f0f4fa;
    --cp-card: #ffffff;
    --cp-dark: #0f172a;
    --cp-text: #334155;
    --cp-subtle: #94a3b8;
    --cp-line: rgba(0, 200, 224, 0.08);
}

/* ═══════════════════════════════════════
   BASE OVERRIDES
═══════════════════════════════════════ */
.geo-page {
    background: var(--cp-bg);
    color: var(--cp-text);
}

/* ═══════════════════════════════════════
   HERO SECTION — Gradient with circuit pattern
═══════════════════════════════════════ */
.geo-hero {
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0d1f35 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 70px 0 !important;
}

.geo-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 224, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grid pattern */
.geo-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0, 200, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 224, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.geo-hero-content {
    position: relative;
    z-index: 1;
}

.geo-h1 {
    font-size: 40px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 200, 224, 0.3);
}

.geo-subtitle {
    color: rgba(255,255,255,0.7) !important;
    font-size: 16px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Badges — glassmorphism */
.geo-badge {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 224, 0.2) !important;
    font-size: 13px !important;
    padding: 8px 18px !important;
    transition: all 0.3s;
}

.geo-badge:hover {
    background: rgba(0, 200, 224, 0.12) !important;
    border-color: rgba(0, 200, 224, 0.4) !important;
    box-shadow: 0 0 15px rgba(0, 200, 224, 0.2);
}

.geo-badge-price {
    border-color: rgba(16, 185, 129, 0.4) !important;
    color: #6ee7b7 !important;
}

.geo-badge-speed {
    border-color: rgba(0, 200, 224, 0.4) !important;
    color: #67e8f9 !important;
}

.geo-badge-blackout {
    border-color: rgba(251, 191, 36, 0.4) !important;
    color: #fde68a !important;
}

.geo-badge-router {
    border-color: rgba(124, 58, 237, 0.4) !important;
    color: #c4b5fd !important;
}

/* Hero buttons */
.geo-btn-primary {
    background: linear-gradient(135deg, var(--cp-cyan) 0%, var(--cp-cyan-dark) 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 200, 224, 0.3);
    border: none !important;
    position: relative;
    overflow: hidden;
}

.geo-btn-primary::before {
    content: "";
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.geo-btn-primary:hover::before {
    left: 100%;
}

.geo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 224, 0.4) !important;
    background: linear-gradient(135deg, var(--cp-cyan) 0%, var(--cp-cyan-dark) 100%) !important;
}

.geo-btn-secondary {
    border: 1px solid rgba(0, 200, 224, 0.4) !important;
    color: #67e8f9 !important;
    background: rgba(0, 200, 224, 0.08) !important;
}

.geo-btn-secondary:hover {
    background: rgba(0, 200, 224, 0.15) !important;
    box-shadow: 0 0 20px rgba(0, 200, 224, 0.2);
}

/* Stats */
.geo-stat {
    border-left: 2px solid rgba(0, 200, 224, 0.3) !important;
}

/* Hero form — glassmorphism */
.geo-hero-form {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 224, 0.15) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(0, 200, 224, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    border-radius: 16px !important;
}

.geo-form-title {
    color: var(--cp-dark) !important;
    font-weight: 700 !important;
}

.geo-input {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    transition: all 0.3s !important;
}

.geo-input:focus {
    border-color: var(--cp-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.1) !important;
}

.geo-btn-submit {
    background: linear-gradient(135deg, var(--cp-cyan) 0%, var(--cp-cyan-dark) 100%) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 200, 224, 0.3);
}

.geo-btn-submit:hover {
    box-shadow: 0 6px 25px rgba(0, 200, 224, 0.4) !important;
    transform: translateY(-1px);
    background: linear-gradient(135deg, #00d4ee 0%, var(--cp-cyan) 100%) !important;
}

/* ═══════════════════════════════════════
   ADVANTAGES — Light glassmorphism cards
═══════════════════════════════════════ */
.geo-advantages {
    background: var(--cp-bg) !important;
    padding: 80px 0 !important;
    position: relative;
}

.geo-section-title {
    color: var(--cp-dark) !important;
    font-weight: 800 !important;
    position: relative;
    display: inline-block;
    width: 100%;
}

.geo-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cp-cyan), var(--cp-purple));
    margin: 16px auto 0;
    border-radius: 2px;
}

.geo-advantage-card {
    background: var(--cp-card) !important;
    border: 1px solid var(--cp-border);
    border-radius: 16px !important;
    padding: 36px 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.geo-advantage-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cp-cyan), var(--cp-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.geo-advantage-card:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 20px 40px rgba(0, 200, 224, 0.08),
        0 0 0 1px rgba(0, 200, 224, 0.15) !important;
    border-color: rgba(0, 200, 224, 0.3) !important;
}

.geo-advantage-card:hover::before {
    opacity: 1;
}

.geo-advantage-icon {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.1), rgba(124, 58, 237, 0.06));
    border-radius: 14px;
    font-size: 24px !important;
    color: var(--cp-cyan) !important;
}

.geo-advantage-title {
    color: var(--cp-dark) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.geo-advantage-desc {
    color: var(--cp-subtle) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* ═══════════════════════════════════════
   TARIFF CARDS — Light cyber with glow
═══════════════════════════════════════ */
.geo-tariffs {
    background: linear-gradient(180deg, var(--cp-bg) 0%, #e8eef8 100%) !important;
    padding: 80px 0 !important;
    position: relative;
}

.geo-tariff-card {
    background: var(--cp-card) !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 36px 28px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.geo-tariff-card:hover {
    transform: translateY(-8px) !important;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 200, 224, 0.2) !important;
    border-color: rgba(0, 200, 224, 0.3) !important;
}

/* Popular card — accent border + subtle glow */
.geo-tariff-popular {
    border: 2px solid var(--cp-cyan) !important;
    box-shadow: 0 0 30px rgba(0, 200, 224, 0.1);
    background: linear-gradient(180deg, rgba(0, 200, 224, 0.02), var(--cp-card)) !important;
}

.geo-tariff-popular::before {
    content: "" !important;
    position: absolute !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--cp-cyan), var(--cp-purple), var(--cp-cyan)) !important;
    background-size: 200% 100%;
    animation: shimmerLine 3s linear infinite !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

@keyframes shimmerLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.geo-tariff-popular::after { display: none !important; }

/* Badge */
.geo-tariff-badge {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-cyan-dark)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 200, 224, 0.3) !important;
    animation: none !important;
    border-radius: 20px !important;
    padding: 6px 20px !important;
    font-size: 11px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Name */
.geo-tariff-name {
    color: var(--cp-dark) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

/* Speed */
.geo-tariff-speed {
    color: var(--cp-cyan) !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Price */
.geo-price-value {
    font-weight: 800 !important;
    font-size: 48px !important;
    color: var(--cp-dark) !important;
    text-shadow: none !important;
}

.geo-tariff-popular .geo-price-value {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
}

/* Features */
.geo-tariff-features li {
    color: var(--cp-text) !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
}

/* Status indicator */
.geo-tariff-status {
    background: rgba(16, 185, 129, 0.06) !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    border-radius: 10px !important;
}

.status-dot {
    box-shadow: 0 0 8px var(--cp-green) !important;
}

.status-text {
    color: var(--cp-green) !important;
    font-size: 12px !important;
}

/* Tariff button */
.geo-btn-tariff {
    background: linear-gradient(135deg, var(--cp-cyan) 0%, var(--cp-cyan-dark) 100%) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 200, 224, 0.2);
}

.geo-btn-tariff::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important; left: -100% !important;
    width: 100% !important; height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    animation: btnShimmer 3s ease-in-out infinite !important;
}

.geo-btn-tariff:hover {
    box-shadow: 0 8px 25px rgba(0, 200, 224, 0.35) !important;
    transform: translateY(-2px);
}

.geo-tariff-popular .geo-btn-tariff {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-purple)) !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

/* ═══════════════════════════════════════
   REVIEWS — Clean with accent
═══════════════════════════════════════ */
.geo-reviews {
    background: var(--cp-card) !important;
}

.geo-review-card {
    border: 1px solid #e8eef5 !important;
    border-radius: 16px !important;
    transition: all 0.3s !important;
}

.geo-review-card:hover {
    border-color: var(--cp-border) !important;
    box-shadow: 0 12px 30px rgba(0, 200, 224, 0.06) !important;
}

.geo-review-avatar {
    background: linear-gradient(135deg, var(--cp-cyan) 0%, var(--cp-purple) 100%) !important;
}

.geo-reviews-summary {
    border: 2px solid var(--cp-cyan) !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.03), rgba(124, 58, 237, 0.02)) !important;
}

.geo-rating-value {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════
   CLIENTS — Clean grid
═══════════════════════════════════════ */
.geo-clients {
    background: var(--cp-bg) !important;
}

.geo-client-logo {
    background: var(--cp-card) !important;
    border: 1px solid #e8eef5;
    border-radius: 12px !important;
    transition: all 0.3s !important;
}

.geo-client-logo:hover {
    border-color: var(--cp-border) !important;
    box-shadow: 0 8px 20px rgba(0, 200, 224, 0.08) !important;
}

/* ═══════════════════════════════════════
   FAQ — Accordion with cyber accent
═══════════════════════════════════════ */
.geo-faq {
    background: var(--cp-card) !important;
}

.geo-faq-item {
    border-bottom: 1px solid #f1f5f9 !important;
}

.geo-faq-question {
    color: var(--cp-dark) !important;
    font-weight: 600 !important;
    transition: color 0.2s !important;
}

.geo-faq-question:hover {
    color: var(--cp-cyan) !important;
}

.geo-faq-icon {
    color: var(--cp-cyan) !important;
    font-size: 28px !important;
    font-weight: 300 !important;
}

.geo-faq-answer p {
    color: var(--cp-text) !important;
}

/* ═══════════════════════════════════════
   NEIGHBORS — Cyber pills
═══════════════════════════════════════ */
.geo-neighbors {
    background: var(--cp-bg) !important;
}

.geo-neighbor-link {
    background: var(--cp-card) !important;
    border: 1px solid #e8eef5 !important;
    border-radius: 10px !important;
    transition: all 0.3s !important;
    color: var(--cp-text) !important;
}

.geo-neighbor-link:hover {
    border-color: var(--cp-cyan) !important;
    color: var(--cp-cyan) !important;
    box-shadow: 0 4px 15px rgba(0, 200, 224, 0.1) !important;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   BOTTOM CTA — Dark cyber gradient
═══════════════════════════════════════ */
.geo-bottom-cta {
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0d1f35 100%) !important;
    position: relative;
    overflow: hidden;
}

.geo-bottom-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 200, 224, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.geo-bottom-cta h2,
.geo-bottom-cta p {
    position: relative;
    z-index: 1;
}

.geo-bottom-cta h2 {
    text-shadow: 0 0 20px rgba(0, 200, 224, 0.3);
}

.geo-bottom-buttons {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   USEFUL LINKS — Cyber cards
═══════════════════════════════════════ */
.geo-useful-links {
    background: var(--cp-card) !important;
}

.geo-useful-links a {
    border: 1px solid #e8eef5 !important;
    border-radius: 12px !important;
    transition: all 0.3s !important;
}

.geo-useful-links a:hover {
    border-color: var(--cp-border) !important;
    box-shadow: 0 8px 20px rgba(0, 200, 224, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* Districts links */
.geo-districts-links a {
    border: 1px solid #e8eef5 !important;
    border-radius: 8px !important;
    transition: all 0.3s !important;
}

.geo-districts-links a:hover {
    border-color: var(--cp-cyan) !important;
    color: var(--cp-cyan) !important;
    background: rgba(0, 200, 224, 0.04) !important;
}

/* ═══════════════════════════════════════
   MODAL — Cyber success
═══════════════════════════════════════ */
.geo-modal-content {
    border-radius: 20px !important;
    border: 1px solid var(--cp-border);
}

.geo-modal-icon {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-green)) !important;
    box-shadow: 0 8px 25px rgba(0, 200, 224, 0.3);
}

/* ═══════════════════════════════════════
   COUNTDOWN BAR — Cyber dark
═══════════════════════════════════════ */
.geo-countdown-bar {
    background: linear-gradient(135deg, #0f172a, #1a2744) !important;
    border-bottom: 1px solid rgba(0, 200, 224, 0.2);
}

.geo-countdown-timer span {
    background: rgba(0, 200, 224, 0.15) !important;
    color: var(--cp-cyan) !important;
}

.geo-countdown-btn {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-cyan-dark)) !important;
}

/* ═══════════════════════════════════════
   EXIT POPUP — Light cyber
═══════════════════════════════════════ */
.geo-exit-content {
    border: 1px solid var(--cp-border);
}

.geo-exit-title {
    color: var(--cp-dark) !important;
}

.geo-exit-free {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-cyan-dark)) !important;
}

.geo-exit-btn {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-cyan-dark)) !important;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF TOAST
═══════════════════════════════════════ */
.geo-social-proof {
    border-left: 4px solid var(--cp-cyan) !important;
    border-radius: 14px !important;
}

.geo-social-icon {
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-purple)) !important;
}

/* ═══════════════════════════════════════
   LIVE COUNTER
═══════════════════════════════════════ */
.geo-live-counter {
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.06), rgba(124, 58, 237, 0.04)) !important;
    border: 1px solid var(--cp-border) !important;
    border-radius: 14px !important;
}

/* ═══════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════ */
.geo-breadcrumbs {
    background: var(--cp-card) !important;
    border-bottom: 1px solid rgba(0, 200, 224, 0.1) !important;
}

.geo-breadcrumbs .breadcrumb-item a {
    color: var(--cp-cyan) !important;
}

.geo-breadcrumbs .breadcrumb-item a:hover {
    color: var(--cp-cyan-dark) !important;
}

/* ═══════════════════════════════════════
   SCROLLBAR — Cyber styled
═══════════════════════════════════════ */
.geo-page ::-webkit-scrollbar {
    width: 6px;
}

.geo-page ::-webkit-scrollbar-track {
    background: var(--cp-bg);
}

.geo-page ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cp-cyan), var(--cp-purple));
    border-radius: 3px;
}

/* ═══════════════════════════════════════
   SVG ICON CONTAINERS
═══════════════════════════════════════ */
.geo-svg-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

.geo-badge .geo-svg-icon {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════
   WHY WESTELECOM — Company Story Block
═══════════════════════════════════════ */
.geo-why {
    padding: 80px 0;
    background: var(--cp-card);
    position: relative;
    overflow: hidden;
}

.geo-why::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 200, 224, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats row */
.geo-why-hero {
    margin-bottom: 48px;
}

.geo-why-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.geo-why-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.04), rgba(124, 58, 237, 0.02));
    border: 1px solid var(--cp-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.geo-why-stat-item:hover {
    border-color: rgba(0, 200, 224, 0.3);
    box-shadow: 0 8px 25px rgba(0, 200, 224, 0.08);
    transform: translateY(-4px);
}

.geo-why-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cp-cyan), var(--cp-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 4px;
}

.geo-why-stat-label {
    display: block;
    font-size: 13px;
    color: var(--cp-subtle);
    font-weight: 500;
}

/* Cards grid */
.geo-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.geo-why-card {
    background: var(--cp-card);
    border: 1px solid #e8eef5;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.geo-why-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cp-cyan), var(--cp-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.geo-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--cp-border);
    box-shadow:
        0 16px 40px rgba(0, 200, 224, 0.06),
        0 0 0 1px rgba(0, 200, 224, 0.1);
}

.geo-why-card:hover::before {
    transform: scaleX(1);
}

/* Icon containers */
.geo-why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.1), rgba(0, 200, 224, 0.04));
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--cp-cyan);
    transition: all 0.3s;
}

.geo-why-card:hover .geo-why-icon {
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.15), rgba(0, 200, 224, 0.08));
    box-shadow: 0 4px 15px rgba(0, 200, 224, 0.15);
}

.geo-why-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.04));
    color: #10b981;
}

.geo-why-card:hover .geo-why-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.geo-why-icon-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.04));
    color: #7c3aed;
}

.geo-why-card:hover .geo-why-icon-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.08));
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

.geo-why-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.04));
    color: #f97316;
}

.geo-why-card:hover .geo-why-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

.geo-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cp-dark);
    margin: 0 0 10px;
}

.geo-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cp-text);
    margin: 0;
}

/* Contact links */
.geo-why-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.geo-why-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.08), rgba(0, 200, 224, 0.03));
    border: 1px solid var(--cp-border);
    border-radius: 10px;
    color: var(--cp-cyan-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.geo-why-link:hover {
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.15), rgba(0, 200, 224, 0.08));
    border-color: rgba(0, 200, 224, 0.3);
    box-shadow: 0 4px 12px rgba(0, 200, 224, 0.1);
    transform: translateY(-1px);
    color: var(--cp-cyan-dark);
}

/* Trust logos */
.geo-why-trust {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 200, 224, 0.03), rgba(124, 58, 237, 0.02));
    border: 1px solid var(--cp-border);
    border-radius: 16px;
}

.geo-why-trust-text {
    font-size: 14px;
    color: var(--cp-subtle);
    margin: 0 0 20px;
    font-weight: 500;
}

.geo-why-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.geo-why-trust-logos img {
    max-height: 36px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.geo-why-trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .geo-why-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .geo-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-why {
        padding: 60px 0;
    }
    .geo-why-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .geo-why-stat-number {
        font-size: 26px;
    }
    .geo-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .geo-why-card {
        padding: 24px 20px;
    }
    .geo-why-trust-logos {
        gap: 20px;
    }
    .geo-why-trust-logos img {
        max-height: 28px;
    }
}

@media (max-width: 480px) {
    .geo-why-stat-item {
        padding: 16px 12px;
    }
    .geo-why-stat-number {
        font-size: 22px;
    }
    .geo-why-links {
        flex-direction: column;
        gap: 8px;
    }
}
