body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.fuel-radio input:checked+span {
    background: rgba(37, 99, 235, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.35) !important;
    color: #0f172a !important
}

.fuel-radio input:checked+span .dot {
    background: #2563eb !important
}

.ev-live-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start
}

@media (max-width:980px) {
    .ev-live-grid {
        grid-template-columns: 1fr
    }
}

.ev-live-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px -12px rgba(2, 6, 23, 0.12);
    overflow: hidden
}

.ev-live-card-header {
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.10), rgba(59, 130, 246, 0.10));
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.ev-live-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.ev-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(248, 250, 252, 0.9);
    white-space: nowrap
}

.ev-live-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px
}

.ev-btn {
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .15s ease
}

.ev-btn-primary {
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    box-shadow: 0 18px 30px -18px rgba(22, 163, 74, 0.65)
}

.ev-btn-primary:hover {
    filter: brightness(0.98);
    transform: translateY(-1px)
}

.ev-btn-ghost {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0
}

.ev-btn-ghost:hover {
    background: #e2e8f0;
    transform: translateY(-1px)
}

.ev-live-body {
    padding: 16px 18px 18px
}

.ev-loader {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(22, 163, 74, 0.25);
    border-top-color: rgba(22, 163, 74, 0.95);
    border-radius: 50%;
    display: inline-block;
    animation: evspin 1s linear infinite
}

@keyframes evspin {
    to {
        transform: rotate(360deg)
    }
}

.ev-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

@media (min-width:1320px) {
    .ev-grid-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width:900px) {
    .ev-grid-cards {
        grid-template-columns: 1fr
    }
}

.ev-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    box-shadow: 0 12px 26px -20px rgba(2, 6, 23, 0.25);
    padding: 16px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.ev-card:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.8);
    box-shadow: 0 20px 40px -26px rgba(2, 6, 23, 0.35)
}

.ev-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px
}

.ev-body {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.ev-left {
    display: flex;
    gap: 12px;
    min-width: 0;
    align-items: flex-start
}

.ev-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden
}

.ev-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    display: block
}

.ev-logo i {
    color: #16a34a;
    font-size: 18px
}

.ev-title {
    margin: 0;
    font-weight: 950;
    color: #0f172a;
    font-size: 0.98rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.ev-operator {
    font-weight: 900;
    color: #0f172a;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px
}

.ev-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.ev-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ev-chip i {
    color: #16a34a
}

.ev-right {
    text-align: right;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 130px
}

.ev-level {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 950;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(203, 213, 225, 0.85);
    background: rgba(248, 250, 252, 0.98);
    white-space: nowrap
}

.ev-level-normal {
    border-color: rgba(22, 163, 74, 0.25);
    background: rgba(22, 163, 74, 0.10);
    color: #166534
}

.ev-level-rapida {
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(249, 115, 22, 0.10);
    color: #9a3412
}

.ev-level-ultra {
    border-color: rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.10);
    color: #991b1b
}

.ev-level-unk {
    border-color: rgba(100, 116, 139, 0.25);
    background: rgba(100, 116, 139, 0.10);
    color: #334155
}

.ev-tipo {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap
}

.ev-tipo-normal {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.25)
}

.ev-tipo-rapida {
    background: rgba(249, 115, 22, 0.12);
    color: #9a3412;
    border: 1px solid rgba(249, 115, 22, 0.25)
}

.ev-tipo-ultra {
    background: rgba(239, 68, 68, 0.12);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.25)
}

.ev-kw {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 950;
    border: 1px solid rgba(148, 163, 184, 0.30);
    background: rgba(15, 23, 42, 0.04);
    color: #0f172a;
    white-space: nowrap
}

.ev-kw i {
    color: #2563eb
}

.ev-dist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.80rem;
    font-weight: 900;
    color: #64748b;
    white-space: nowrap
}

.ev-dist i {
    color: #16a34a
}

.ev-address {
    margin-top: 8px;
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.86rem * 1.35 * 2)
}

.ev-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(226, 232, 240, 0.75)
}

.ev-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 950;
    color: #166534;
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.18);
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ev-nav {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 950;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #059669);
    box-shadow: 0 18px 28px -18px rgba(22, 163, 74, 0.55);
    transition: transform .15s ease, filter .15s ease;
    white-space: nowrap
}

.ev-nav:hover {
    filter: brightness(0.98);
    transform: translateY(-1px)
}

.ev-mini-help {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.45;
    margin: 10px 0 0
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

@media (max-width:900px) {
    .provinces-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:500px) {
    .provinces-grid {
        grid-template-columns: 1fr
    }
}

.province-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px -6px rgba(2, 6, 23, 0.1)
}

.province-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.25)
}

.province-card i {
    color: #94a3b8;
    transition: color 0.2s
}

.province-card:hover i {
    color: #2563eb
}

.provinces-cta {
    text-align: center;
    margin-top: 24px
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

@media (max-width:768px) {
    .operators-grid {
        grid-template-columns: 1fr
    }
}

.operators-col h3 {
    margin: 0 0 16px
}

.operators-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.operator-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease
}

.operator-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateX(4px)
}

.operator-name {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.95rem
}

.operator-price {
    font-weight: 900;
    color: #16a34a;
    font-size: 1rem
}

.no-data {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    text-align: center
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease
}

.faq-item:hover {
    border-color: #cbd5e1
}

.faq-item[open] {
    border-color: #2563eb;
    box-shadow: 0 8px 20px -10px rgba(37, 99, 235, 0.2)
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #94a3b8;
    font-weight: 400;
    transition: transform 0.2s
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #2563eb
}

.faq-item p {
    padding: 0 24px 18px;
    margin: 0;
    color: #475569;
    line-height: 1.6
}

.map-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

@media (max-width:900px) {
    .map-section-inner {
        grid-template-columns: 1fr
    }
}

.map-copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.map-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #0f172a;
    font-weight: 600
}

.map-list li i {
    color: #2563eb;
    width: 20px
}

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

.map-preview {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px -20px rgba(2, 6, 23, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.9)
}

.map-preview img {
    display: block;
    width: 100%;
    height: auto
}

.prices-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px
}

@media (max-width:768px) {
    .prices-grid {
        grid-template-columns: 1fr
    }
}

.station-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px -12px rgba(2, 6, 23, 0.12)
}

.station-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap
}

.station-card-title {
    font-weight: 900;
    color: #0f172a;
    font-size: 1.1rem
}

.station-card-meta {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600
}

.fuel-prices-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

@media (max-width:500px) {
    .fuel-prices-row {
        grid-template-columns: 1fr
    }
}

.fuel-price-block {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 16px;
    text-align: center
}

.fuel-price-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 8px
}

.fuel-price-highlight {
    font-size: 2rem;
    font-weight: 950;
    color: #0f172a
}

.fuel-price-unit {
    font-size: 1rem;
    color: #64748b;
    font-weight: 700
}

.fuel-price-diff {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 700;
    margin-top: 8px
}

.note-small {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 16px;
    text-align: center
}

.price-context {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 16px
}

.price-context:last-child {
    margin-bottom: 0
}

.heatmap-wrapper {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 40px -20px rgba(2, 6, 23, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9) inset
}

.heatmap-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.heatmap-fuel-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .heatmap-fuel-pills {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%
    }

    .heatmap-pill {
        padding: 10px 12px;
        font-size: 0.82rem;
        justify-content: center;
        gap: 6px
    }

    .heatmap-pill .hm-dot {
        width: 10px;
        height: 10px
    }
}

.heatmap-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: #f8fafc;
    color: #475569
}

.heatmap-pill:hover {
    border-color: #cbd5e1;
    background: #f1f5f9
}

.heatmap-pill.active {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-color: #0f172a;
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.4)
}

.hm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.hm-dot-g95 {
    background: linear-gradient(135deg, #22c55e, #16a34a)
}

.hm-dot-g98 {
    background: linear-gradient(135deg, #3b82f6, #2563eb)
}

.hm-dot-diesel {
    background: linear-gradient(135deg, #1e293b, #0f172a)
}

.hm-dot-diesel-plus {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed)
}

.hm-dot-glp {
    background: linear-gradient(135deg, #f97316, #ea580c)
}

.heatmap-pill.active .hm-dot {
    background: #fff !important
}

.heatmap-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b
}

.legend-gradient {
    width: 120px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #22c55e, #fbbf24, #ef4444);
    border: 1px solid rgba(0, 0, 0, 0.08)
}

.heatmap-container {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    min-height: 480px
}

.spain-heatmap {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center
}

.spain-heatmap svg {
    width: 100%;
    height: 100%
}

.spain-heatmap path {
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.2s ease;
    cursor: pointer
}

.spain-heatmap path:hover {
    stroke: #0f172a;
    stroke-width: 2;
    filter: brightness(0.95)
}

.heatmap-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-weight: 600
}

.hm-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: hm-spin 0.8s linear infinite
}

@keyframes hm-spin {
    to {
        transform: rotate(360deg)
    }
}

.heatmap-tooltip {
    position: absolute;
    pointer-events: none;
    background: #0f172a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translate(-50%, -100%) translateY(-12px);
    transition: opacity 0.15s ease;
    z-index: 100;
    white-space: nowrap
}

.heatmap-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #0f172a
}

.heatmap-tooltip.visible {
    opacity: 1
}

.heatmap-tooltip .tt-name {
    font-weight: 900;
    margin-bottom: 4px
}

.heatmap-tooltip .tt-price {
    font-size: 1.1rem;
    color: #22c55e
}

.heatmap-tooltip .tt-rank {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px
}

.heatmap-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0
}

.hm-stat {
    text-align: center;
    padding: 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px
}

.hm-stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.hm-stat-value {
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f172a
}

.hm-stat-diff {
    color: #16a34a
}

.heatmap-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .heatmap-wrapper {
        padding: 20px
    }

    .heatmap-controls {
        flex-direction: column;
        align-items: stretch
    }

    .heatmap-fuel-pills {
        justify-content: center
    }

    .heatmap-legend {
        justify-content: center
    }

    .heatmap-container {
        min-height: 300px
    }

    .spain-heatmap {
        height: 280px
    }

    .heatmap-stats {
        grid-template-columns: 1fr
    }

    .heatmap-cta {
        flex-direction: column
    }

    .heatmap-cta .btn-primary,
    .heatmap-cta .btn-ghost {
        width: 100%;
        justify-content: center
    }
}

:root {
    --footer-bg: #f1f2f4;
    --footer-bg-alt: #f8f9fa;
    --footer-ink: #1a1a1a;
    --footer-accent: #e9c46a;
    --footer-accent-strong: #f4a261;
    --footer-muted: #7a7a7a;
    --footer-border: #dedede;
    --footer-surface: #ffffff;
    --footer-radius-sm: 8px;
    --footer-radius-md: 12px;
    --footer-radius-lg: 16px;
    --footer-radius-pill: 999px;
    --footer-shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.04);
    --footer-shadow-hover: 0 4px 10px rgba(0, 0, 0, 0.16), 0 16px 32px rgba(0, 0, 0, 0.10);
    --footer-transition: 180ms cubic-bezier(0.4, 0, 0.2, 1)
}

.site-footer {
    margin-top: auto;
    padding-block: 20px 16px;
    background-color: var(--footer-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--footer-ink)
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.footer-intro {
    padding-block: 20px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 18px
}

.footer-intro-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    color: var(--footer-ink);
    margin: 0 0 6px;
    font-weight: 600
}

.footer-intro-text {
    font-size: 13px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 6px
}

.footer-intro-text:last-child {
    margin-bottom: 0
}

.footer-intro-text strong {
    color: var(--footer-ink)
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 12px;
    margin-bottom: 10px
}

@media (max-width:992px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr)
    }
}

@media (max-width:640px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.footer-col {
    font-size: 13px
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.footer-brand-block .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 40% 60% 55% 45%;
    background-color: var(--footer-ink);
    color: var(--footer-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px
}

.footer-brand-block .brand-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: var(--footer-ink)
}

.footer-brand-block .brand-subtitle {
    font-size: 12px;
    color: var(--footer-muted)
}

.footer-small {
    font-size: 12px;
    color: var(--footer-muted);
    margin: 6px 0 10px;
    line-height: 1.5
}

.footer-search {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 10px;
    max-width: 280px
}

.footer-search-input {
    flex: 1;
    padding: 7px 12px;
    border-radius: var(--footer-radius-pill);
    border: 1px solid var(--footer-border);
    font-size: 13px;
    background: var(--footer-surface);
    color: var(--footer-ink);
    transition: border-color var(--footer-transition)
}

.footer-search-input:focus {
    outline: none;
    border-color: var(--footer-accent-strong)
}

.footer-search-button {
    border-radius: var(--footer-radius-pill);
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    background-color: var(--footer-accent-strong);
    color: var(--footer-ink);
    cursor: pointer;
    transition: transform var(--footer-transition), box-shadow var(--footer-transition), background-color var(--footer-transition);
    box-shadow: var(--footer-shadow-soft);
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-search-button:hover,
.footer-search-button:focus-visible {
    transform: scale(1.05) translateY(-1px);
    box-shadow: var(--footer-shadow-hover);
    background-color: var(--footer-accent)
}

.footer-search-button span {
    display: none
}

@media (min-width:400px) {
    .footer-search-button span {
        display: inline
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 12px;
    margin-top: 10px
}

.footer-legal a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color var(--footer-transition)
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--footer-ink)
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--footer-ink)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.footer-links a {
    font-size: 13px;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color var(--footer-transition)
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--footer-ink)
}

.footer-provinces {
    padding-block: 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 10px
}

.footer-provinces .footer-title {
    margin-bottom: 12px
}

.footer-province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px
}

.footer-province-grid--preview {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    max-width: 700px
}

.province-pill {
    padding: 7px 9px;
    border-radius: var(--footer-radius-pill);
    border: 1px solid #e0e0e0;
    background-color: var(--footer-surface);
    font-size: 12px;
    text-align: center;
    color: var(--footer-ink);
    text-decoration: none;
    transition: background-color var(--footer-transition), box-shadow var(--footer-transition), transform var(--footer-transition);
    cursor: pointer
}

.province-pill:hover,
.province-pill:focus-visible {
    background-color: var(--footer-accent);
    transform: translateY(-2px);
    box-shadow: var(--footer-shadow-hover)
}

.province-pill--more {
    background-color: var(--footer-accent-strong);
    color: var(--footer-ink);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.province-pill--more:hover,
.province-pill--more:focus-visible {
    background-color: var(--footer-accent)
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: var(--footer-radius-pill);
    background-color: var(--footer-accent);
    color: var(--footer-ink);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--footer-transition);
    border: 1px solid transparent;
    margin-top: 5px
}

.footer-pill:hover,
.footer-pill:focus-visible {
    background-color: var(--footer-accent-strong);
    transform: translateY(-1px);
    box-shadow: var(--footer-shadow-soft)
}

.footer-cta {
    padding-block: 14px 14px
}

.footer-cta-inner {
    border-radius: 14px;
    padding: 12px 16px;
    background-color: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.footer-cta-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--footer-ink)
}

.footer-cta-text {
    font-size: 13px;
    margin: 0;
    color: #4a4a4a
}

.footer-cta-button {
    border-radius: var(--footer-radius-pill);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background-color: var(--footer-ink);
    color: var(--footer-bg);
    box-shadow: var(--footer-shadow-soft);
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--footer-transition), box-shadow var(--footer-transition), background-color var(--footer-transition)
}

.footer-cta-button:hover,
.footer-cta-button:focus-visible {
    transform: scale(1.05) translateY(-1px);
    box-shadow: var(--footer-shadow-hover);
    background-color: var(--footer-accent-strong)
}

@media (max-width:640px) {
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-block: 10px 2px;
    font-size: 12px;
    color: var(--footer-muted)
}

.footer-copyright {
    font-weight: 500
}

.footer-sources a {
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: color var(--footer-transition)
}

.footer-sources a:hover,
.footer-sources a:focus-visible {
    color: var(--footer-ink)
}

@media (max-width:640px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.site-footer a:focus-visible,
.site-footer button:focus-visible,
.site-footer input:focus-visible {
    outline: 2px solid var(--footer-accent-strong);
    outline-offset: 2px
}

.footer-col-ev {
    font-size: 13px
}

.footer-ev-block {
    display: flex;
    flex-direction: column
}

.footer-ev-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--footer-muted);
    margin: 8px 0 4px
}

.footer-ev-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: var(--footer-accent-strong);
    color: var(--footer-ink);
    border-radius: var(--footer-radius-pill);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: transform var(--footer-transition), box-shadow var(--footer-transition), background-color var(--footer-transition);
    box-shadow: var(--footer-shadow-soft);
    width: fit-content
}

.footer-ev-cta:hover,
.footer-ev-cta:focus-visible {
    transform: scale(1.03) translateY(-1px);
    box-shadow: var(--footer-shadow-hover);
    background-color: var(--footer-accent)
}

.section {
    padding-block: 24px
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px
}

.section-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin: 0 0 6px
}

.section-kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted)
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-muted);
    max-width: 420px
}

.section-link {
    font-size: 13px;
    color: var(--color-ink);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding-bottom: 3px;
    align-self: flex-start
}

.section-link:hover {
    border-color: var(--color-accent-strong)
}

@media (max-width:768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start
    }
}

.prices-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 20px
}

@media (max-width:880px) {
    .prices-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.station-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-main)
}

.station-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-ink)
}

.station-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px
}

.station-card-title {
    font-size: 15px;
    font-weight: 600
}

.station-card-meta {
    font-size: 12px;
    color: var(--color-muted)
}

.fuel-prices-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px
}

.fuel-price-block {
    padding: 10px 10px 9px;
    border-radius: var(--radius-md);
    background-color: #fdfdfd;
    border: 1px solid #ececec
}

.fuel-price-label {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 4px
}

.fuel-price-highlight {
    font-size: 18px;
    font-weight: 600
}

.fuel-price-unit {
    font-size: 12px;
    color: var(--color-muted)
}

.fuel-price-diff {
    margin-top: 2px;
    font-size: 11px;
    color: #26734d
}

.fuel-price-diff.negative {
    color: #26734d
}

.fuel-price-diff.positive {
    color: #8a3a2a
}

.note-small {
    margin-top: 8px;
    font-size: 12px;
    color: var(--color-muted)
}

.price-context {
    font-size: 13px;
    line-height: 1.7;
    color: #4c4c4c
}

.search-container-narrow {
    max-width: 980px;
    margin-inline: auto
}

.search-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%)
}

.search-box-featured {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 28px 70px -18px rgba(2, 6, 23, 0.35);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(8px);
    margin-top: -60px
}

.search-box-featured-inner {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.92)
}

.search-featured-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .search-featured-header {
        flex-direction: column
    }
}

.search-featured-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em
}

.search-featured-sub {
    margin: 8px 0 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.5
}

.search-featured-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 99px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.8);
    white-space: nowrap
}

.search-fuel-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.3)
}

.main-search-form {
    display: flex;
    flex-direction: column
}

.fuel-radio {
    cursor: pointer;
    position: relative;
    user-select: none
}

.fuel-radio input {
    display: none
}

.fuel-radio span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: #f8fafc;
    color: #475569;
    transition: all 0.15s ease
}

.fuel-radio .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8;
    display: inline-block;
    transition: all 0.15s
}

.fuel-radio input:checked+span {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    border-color: #2563eb !important;
    color: #fff !important;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3)
}

.fuel-radio input:checked+span .dot {
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2)
}

.featured-search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px
}

@media (max-width:640px) {
    .featured-search-row {
        flex-direction: column
    }

    .featured-submit {
        width: 100%
    }
}

.featured-input {
    flex: 1;
    position: relative
}

.featured-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-ink-muted)
}

.featured-input input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s
}

.featured-input input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1)
}

.featured-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px
}

.featured-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.5)
}

.quick-chips-featured {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px dashed rgba(203, 213, 225, 0.85)
}

.chip-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    margin-right: 2px
}

.chip-btn,
.chip-link {
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 800;
    transition: all 0.2s ease;
    border: 1px solid rgba(203, 213, 225, 0.65);
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.chip-btn:hover,
.chip-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1)
}

.chip-btn {
    background: #f1f5f9;
    color: #334155;
    border-color: rgba(203, 213, 225, 0.9)
}

.chip-btn i {
    color: #2563eb
}

.chip-g95 {
    background: #dcfce7;
    color: #166534
}

.chip-diesel {
    background: #0f172a;
    color: #fff
}

.chip-glp {
    background: #ffedd5;
    color: #9a3412
}

.chip-ev {
    background: #dbeafe;
    color: #1e40af
}

.action-bar-section {
    padding: 14px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.action-bar-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

@media (max-width:640px) {
    .action-bar-inner {
        flex-direction: column;
        align-items: stretch
    }
}

.provinces-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 16px 16px 14px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft)
}

.provinces-intro {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px
}

.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px
}

.province-pill {
    padding: 7px 9px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    font-size: 12px;
    text-align: center;
    transition: background-color var(--transition-main), box-shadow var(--transition-main), transform var(--transition-main)
}

.province-pill:hover {
    background-color: var(--color-accent);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-hover)
}

.operator-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 18px
}

@media (max-width:900px) {
    .operator-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.operator-column-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 6px
}

.operator-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.operator-chip {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-main), box-shadow var(--transition-main), background-color var(--transition-main)
}

.operator-chip:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--shadow-hover);
    background-color: #fffaf1
}

.guides-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: stretch
}

@media (max-width:980px) {
    .guides-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr)
    }
}

@media (max-width:720px) {
    .guides-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.guide-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px 16px 14px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-main), box-shadow var(--transition-main)
}

.guide-card:nth-child(2) {
    margin-top: 10px
}

.guide-card:nth-child(3) {
    margin-top: 18px
}

@media (max-width:980px) {

    .guide-card:nth-child(2),
    .guide-card:nth-child(3) {
        margin-top: 0
    }
}

.guide-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px
}

.guide-body {
    font-size: 13px;
    color: #4b4b4b;
    line-height: 1.7;
    margin-bottom: 8px
}

.guide-meta {
    font-size: 12px;
    color: var(--color-muted)
}

.guide-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover)
}

.top-cards-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s;
    max-width: 100%
}

.top-cards-link:hover {
    border-color: var(--color-ink);
    box-shadow: var(--shadow-md);
    transform: translateX(4px)
}

.top-meta {
    min-width: 0;
    flex: 1
}

.top-station-name {
    font-weight: 800;
    color: var(--color-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px
}

.top-station-price {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--color-ink);
    font-family: 'Inter', monospace;
    margin-left: 16px;
    flex-shrink: 0
}

@media (max-width:768px) {
    .top-cards-link {
        padding: 12px 14px
    }

    .top-station-name {
        font-size: 13px
    }

    .top-station-price {
        font-size: 1rem;
        margin-left: 8px
    }
}

.ev-promo-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-accent-soft);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease
}

.ev-promo-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px)
}

.ev-dest-link {
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-ink);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ev-dest-link:hover {
    background: var(--color-accent-soft);
    border-color: var(--color-accent);
    color: var(--color-accent-deep);
    transform: translateY(-2px)
}

.tab-btn-op {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-ink-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    border-radius: var(--radius-sm)
}

.tab-btn-op.active {
    color: var(--color-ink);
    background: var(--color-bg-alt);
    border-bottom-color: var(--color-ink)
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

.faq-item {
    border-bottom: 1px solid #ececec
}

.faq-item:last-child {
    border-bottom: none
}

.faq-question {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

.faq-question-text {
    font-size: 14px;
    font-weight: 500
}

.faq-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--color-muted);
    flex-shrink: 0;
    transition: transform var(--transition-main), background-color var(--transition-main), color var(--transition-main)
}

.faq-answer {
    padding: 0 16px 12px;
    font-size: 13px;
    color: #4b4b4b;
    line-height: 1.6;
    display: none
}

.faq-item.open .faq-answer {
    display: block
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
    background-color: var(--color-accent);
    color: var(--color-ink)
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 260ms cubic-bezier(0.4, 0, 0.2, 1), transform 260ms cubic-bezier(0.4, 0, 0.2, 1)
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

footer {
    margin-top: auto;
    padding-block: 20px 16px;
    background-color: #f1f2f4;
    border-top: 1px solid rgba(0, 0, 0, 0.06)
}

.footer-top {
    padding-block: 20px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.footer-intro {
    margin-bottom: 18px
}

.footer-intro-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    margin: 0 0 6px
}

.footer-intro-text {
    font-size: 13px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 6px
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 12px;
    margin-bottom: 10px
}

.footer-col {
    font-size: 13px
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.footer-small {
    font-size: 12px;
    color: var(--color-muted);
    margin: 6px 0 10px
}

.footer-search {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 10px
}

.footer-search-input {
    flex: 1;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    font-size: 13px
}

.footer-search-button {
    border-radius: 999px;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    background-color: var(--color-accent-strong);
    color: var(--color-ink);
    cursor: pointer;
    transition: transform var(--transition-main), box-shadow var(--transition-main), background-color var(--transition-main);
    box-shadow: var(--shadow-soft)
}

.footer-search-button:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: var(--shadow-hover);
    background-color: var(--color-accent)
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px
}

.footer-links a {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: var(--color-muted);
    text-decoration: none
}

.footer-links a:hover {
    color: var(--color-ink)
}

.footer-provinces {
    padding-block: 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.footer-province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 10px
}

.footer-cta {
    padding-block: 14px 14px
}

.footer-cta-inner {
    border-radius: 14px;
    padding: 12px 16px;
    background-color: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.footer-cta-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px
}

.footer-cta-text {
    font-size: 13px;
    margin: 0;
    color: #4a4a4a
}

.footer-cta-button {
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background-color: var(--color-ink);
    color: var(--color-bg);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform var(--transition-main), box-shadow var(--transition-main), background-color var(--transition-main)
}

.footer-cta-button:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: var(--shadow-hover);
    background-color: var(--color-accent-strong)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-block: 10px 2px;
    font-size: 12px;
    color: var(--color-muted)
}

.footer-bottom-text a {
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none
}

.footer-bottom-text a:hover {
    color: var(--color-ink)
}

@media (max-width:880px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr)
    }
}

@media (max-width:640px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr)
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.search-hero-wrap {
    display: flex;
    justify-content: center
}

.search-box-featured {
    width: 100%;
    max-width: 980px;
    position: relative;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 28px 70px -18px rgba(2, 6, 23, 0.35);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(8px)
}

.search-box-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 260px at 15% 0%, rgba(59, 130, 246, 0.22), transparent 60%), radial-gradient(600px 260px at 85% 10%, rgba(16, 185, 129, 0.18), transparent 65%);
    pointer-events: none
}

.search-box-featured-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    padding: 26px 26px 22px;
    border-radius: 20px
}

.search-featured-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px
}

.search-featured-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em
}

.search-featured-sub {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.35
}

.search-featured-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2px
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(248, 250, 252, 0.9);
    white-space: nowrap
}

.search-badge i {
    color: #2563eb
}

.search-fuel-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 14px
}

.fuel-radio input {
    display: none
}

.fuel-radio span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: #f8fafc;
    color: #475569;
    user-select: none
}

.fuel-radio span:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px -14px rgba(2, 6, 23, 0.30);
    border-color: #cbd5e1
}

.fuel-radio input:checked+span {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #93c5fd;
    box-shadow: 0 14px 24px -18px rgba(37, 99, 235, 0.45)
}

.fuel-radio span .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8
}

.fuel-radio input:checked+span .dot {
    background: #2563eb
}

.featured-search-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 14px
}

.featured-input {
    flex: 1;
    position: relative
}

.featured-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem
}

.featured-input input {
    width: 100%;
    padding: 16px 16px 16px 46px;
    border-radius: 14px;
    border: 1px solid rgba(203, 213, 225, 0.95);
    background: #ffffff;
    font-size: 1.02rem;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease
}

.featured-input input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.16)
}

.featured-submit {
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 18px 30px -18px rgba(37, 99, 235, 0.65);
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.featured-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 26px 44px -24px rgba(37, 99, 235, 0.72)
}

.featured-submit:active {
    transform: translateY(0px)
}

.quick-chips-featured {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed rgba(203, 213, 225, 0.85)
}

.chip-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 700;
    margin-right: 2px
}

.chip-btn {
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #334155;
    border: 1px solid rgba(203, 213, 225, 0.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease
}

.chip-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 18px -16px rgba(2, 6, 23, 0.25);
    border-color: #cbd5e1
}

.chip-link {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(203, 213, 225, 0.65);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.chip-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 18px -16px rgba(2, 6, 23, 0.25);
    filter: brightness(1.01)
}

.near-status {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    min-height: 1.1em
}

@media(max-width:760px) {
    .search-featured-header {
        flex-direction: column;
        align-items: flex-start
    }

    .search-featured-badges {
        justify-content: flex-start
    }

    .featured-search-row {
        flex-direction: column
    }

    .featured-submit {
        width: 100%;
        min-width: 0;
        padding: 14px 18px
    }

    .search-box-featured-inner {
        padding: 20px 16px 18px
    }

    .search-featured-title {
        font-size: 1.15rem
    }
}

.tab-btn-region {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s
}

.tab-btn-region.active {
    color: #2563eb;
    border-bottom-color: #2563eb
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease
}

.tab-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:900px) {
    #top-today .top-grid {
        grid-template-columns: 1fr !important
    }

    .tabs-region {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px
    }
}

.tab-btn-op {
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    border-radius: 10px
}

.tab-btn-op.active {
    color: #2563eb;
    border-bottom-color: #2563eb
}

.op-tab-content {
    display: none;
    animation: fadeIn 0.3s ease
}

.op-tab-content.active {
    display: block
}

@media (max-width:900px) {
    #ranking-operadores .top-grid {
        grid-template-columns: 1fr !important
    }

    .tabs-op {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px
    }
}

.tool-card {
    display: block;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1
}

.tabs-region {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none
}

.tabs-region::-webkit-scrollbar {
    display: none
}

.tab-btn-region {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s
}

.tab-btn-region.active {
    color: #2563eb;
    border-bottom-color: #2563eb
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease
}

.tab-content.active {
    display: block
}

.top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

@media (max-width:900px) {
    .top-grid {
        grid-template-columns: 1fr
    }
}

.top-title-g95,
.top-title-diesel {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800
}

.top-title-g95 .dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%
}

.top-title-diesel .dot {
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-radius: 50%
}

.top-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.top-cards-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05)
}

.top-cards-link:hover {
    transform: translateX(4px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1)
}

.top-meta {
    min-width: 0;
    flex: 1;
    padding-right: 12px
}

.top-station-name {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.top-station-loc {
    font-size: 0.85rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.top-station-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: #16a34a;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content
}

.no-data-msg {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #64748b;
    text-align: center;
    font-weight: 600
}

.top-cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 12px;
    font-weight: 600
}

.map-lead {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.map-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0
}

.map-list li:last-child {
    border-bottom: none
}

.map-list li i {
    width: 20px;
    text-align: center;
    color: #2563eb;
    font-size: 1.1rem
}

.map-list li span {
    font-weight: 700;
    color: #0f172a
}

.map-mock:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -20px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease
}

#ev-live {
    background: linear-gradient(to bottom, #ffffff, #f0fdf4);
    padding-top: 40px
}

.kicker-ev,
.link-ev {
    color: #16a34a !important
}

.link-ev {
    border-color: rgba(22, 163, 74, 0.2)
}

.link-ev:hover {
    border-color: #16a34a
}

.ev-card-main-title {
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-size: 1.1rem
}

.ev-card-main-sub {
    font-size: 0.9rem;
    color: #475569;
    margin-top: 2px
}

.bolt-green {
    color: #16a34a !important
}

.ev-data-source {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 8px
}

.ev-data-source a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 700
}

.ev-loader-container {
    text-align: center;
    padding: 22px 0
}

.ev-bottom-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

@media (max-width:480px) {
    .ev-bottom-actions {
        flex-direction: column;
        align-items: stretch
    }
}

.ev-tips-section {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 26px -20px rgba(2, 6, 23, 0.25);
    margin-top: 30px
}

.ev-tips-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.ev-tips-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em
}

.ev-tips-sub {
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: #475569
}

.ev-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px
}

@media (max-width:1100px) {
    .ev-tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .ev-tips-grid {
        grid-template-columns: 1fr
    }
}

.ev-tip-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease
}

.ev-tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -16px rgba(2, 6, 23, 0.3)
}

.ev-tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 14px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3)
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb)
}

.icon-green {
    background: linear-gradient(135deg, #10b981, #059669)
}

.icon-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706)
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed)
}

.ev-tip-card h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em
}

.ev-tip-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5
}

.ev-tips-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.75)
}

.ev-cities-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px
}

.ev-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.operators-meta-note {
    color: #64748b;
    font-size: 0.9em
}

.op-title-g95,
.op-title-diesel {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800
}

.op-title-g95 .dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%
}

.op-title-diesel .dot {
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-radius: 50%
}

.operators-cta {
    text-align: center;
    margin-top: 30px
}

#faq {
    background: #f8fafc
}

#mapa-calor {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%)
}

.ev-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    font-weight: 800;
    padding: 30px 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.card--elevated {
    box-shadow: var(--shadow-md)
}

.card--premium {
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(148, 163, 184, 0.35)
}

.card-pad {
    padding: var(--space-lg)
}

.card-pad--sm {
    padding: var(--space-md)
}

.card-pad--lg {
    padding: var(--space-xl)
}

.searchbox {
    border: 1px solid rgba(148, 163, 184, 0.35);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl)
}

.searchbox__inner {
    background: rgba(255, 255, 255, 0.92);
    padding: var(--space-lg);
    border-radius: var(--radius-xl)
}

.searchbox__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap
}

.searchbox__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.02em
}

.searchbox__sub {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.95rem
}

.searchbox__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.searchbox__row {
    display: flex;
    gap: var(--space-sm);
    align-items: stretch;
    margin: var(--space-sm) 0
}

.searchbox__input {
    position: relative;
    flex: 1
}

.searchbox__input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-light)
}

.searchbox__input input {
    width: 100%;
    padding: 16px 16px 16px 46px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(203, 213, 225, 0.95);
    background: var(--bg-white);
    font-size: 1.02rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s
}

.searchbox__input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1)
}

.searchbox__submit {
    min-width: 150px
}

.searchbox__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: var(--space-sm)
}

@media (max-width:820px) {
    .searchbox__row {
        flex-direction: column
    }

    .searchbox__submit {
        width: 100%;
        min-width: 0
    }
}

.fuel-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: var(--space-md)
}

.fuel-radio {
    position: relative
}

.fuel-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.fuel-radio span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-white);
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.15s ease
}

.fuel-radio input:checked+span {
    background: rgba(37, 99, 235, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.35) !important;
    color: var(--ink) !important
}

.fuel-radio span:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05)
}

.fuel-radio .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted-light);
    transition: background 0.15s
}

.fuel-radio input:checked+span .dot {
    background: var(--primary) !important
}

.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.95));
    color: white;
    padding: 60px 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15), transparent 50%), radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15), transparent 50%);
    pointer-events: none
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.hero__title {
    color: white;
    margin-bottom: var(--space-md)
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: var(--space-xl)
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl)
}

.hero__kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl)
}

.kpi {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px)
}

.kpi__value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-xs);
    line-height: 1
}

.kpi__label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600
}

/* ========================================
   MOBILE FIX: Top Station Cards Truncation
   (Fix 2 - Numbers cut off on mobile)
   ======================================== */

@media (max-width: 480px) {
    .top-cards-link {
        padding: 10px 10px;
        gap: 8px;
    }

    .top-meta {
        padding-right: 8px;
    }

    .top-station-name {
        font-size: 12px;
    }

    .top-station-loc {
        font-size: 0.75rem;
    }

    .top-station-price {
        font-size: 0.9rem;
        margin-left: 6px;
    }

    .top-title-g95,
    .top-title-diesel {
        font-size: 1rem;
        gap: 8px;
    }

    /* Anomaly cards overflow fix */
    .anomalies-grid {
        grid-template-columns: 1fr;
    }

    .anomaly-card {
        max-width: 100%;
        padding: 16px;
    }

    .station-link-box {
        padding: 10px;
        gap: 8px;
    }

    .station-diff {
        width: 70px;
    }

    .station-diff .diff-val {
        font-size: 0.9rem;
    }

    .station-diff .price-hint {
        font-size: 0.7rem;
    }

    .station-details .name {
        font-size: 0.8rem;
    }
}


/* ========================================
   MOBILE FIX: Very Small Screens (iPhone 7/8 = 375px)
   (Fix 3 - General layout issues on ≤375px)
   ======================================== */

@media (max-width: 375px) {

    /* Container breathing room */
    .container {
        width: calc(100% - 20px) !important;
        padding: 0;
    }

    /* Hero adjustments */
    .hero-premium {
        padding: 28px 0 40px;
    }

    .hero-title-lg {
        font-size: 1.6rem !important;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-search-box {
        border-radius: 16px;
        padding: 6px;
    }

    .segment-btn {
        font-size: 12px;
        padding: 8px 6px;
    }

    .hero-input {
        font-size: 14px;
    }

    .btn-near-hero {
        padding: 8px 10px;
        font-size: 12px;
    }

    .fuel-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .hero-trust-row {
        gap: 8px;
    }

    .trust-item {
        font-size: 11px;
        gap: 4px;
    }

    /* Market card glass */
    .market-card-glass {
        padding: 16px;
        border-radius: 16px;
    }

    .stat-row {
        gap: 8px;
    }

    .stat-value {
        font-size: 1rem;
    }

    /* Geo links section */
    .home-geo-links {
        padding: 16px 0 12px;
    }

    .geo-links-title {
        font-size: 1.25rem;
    }

    .geo-links-subtitle {
        font-size: 0.85rem;
    }

    .geo-links-card {
        padding: 10px;
        border-radius: 14px;
    }

    .geo-chip {
        padding: 7px 10px;
        font-size: 0.82rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.15rem;
    }

    .section-kicker {
        font-size: 11px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    /* Top station cards */
    .top-cards-link {
        padding: 8px;
    }

    .top-station-name {
        font-size: 11px;
    }

    .top-station-price {
        font-size: 0.85rem;
        margin-left: 4px;
    }

    /* Fuel stats cards */
    .stats-full-card {
        padding: 10px;
        border-radius: 14px;
    }

    .card-title {
        font-size: 1rem;
    }

    .station-card {
        padding: 14px;
    }

    .fuel-price-highlight {
        font-size: 1.4rem;
    }

    /* Heatmap */
    .heatmap-wrapper {
        padding: 12px;
        border-radius: 16px;
    }

    .heatmap-pill {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    /* EV section */
    .ev-live-card-header {
        padding: 12px;
    }

    .ev-card-main-title {
        font-size: 0.95rem;
    }

    .ev-btn {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .ev-tips-section {
        padding: 14px;
    }

    .ev-tip-card {
        padding: 12px;
    }

    /* FAQ */
    .faq-item summary {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-intro-title {
        font-size: 15px;
    }

    .footer-cta-inner {
        padding: 10px 12px;
    }

    /* Buttons general */
    .btn-primary,
    .btn-ghost {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    /* Top CTA */
    .top-cta-wrapper {
        padding: 16px;
        margin-top: 24px;
    }
}