/* home.css - Lightweight styles for homepage only */
:root {
    /* Refined Professional Palette - Slate & Deep Emerald */
    --color-bg: #fdfdfd;
    --color-bg-alt: #f1f5f9;
    --color-ink: #0f172a;
    /* Slate 900 */
    --color-ink-muted: #475569;
    /* Slate 600 */

    --color-accent: #10b981;
    /* Emerald 500 */
    --color-accent-soft: #ecfdf5;
    --color-accent-deep: #064e3b;

    --color-secondary: #f59e0b;
    /* Amber 500 */
    --color-secondary-soft: #fffbeb;

    --color-border: rgba(15, 23, 42, 0.08);
    /* Sophisticated border */
    --color-surface: #ffffff;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    /* Layered Shadows - Senior Designer approach */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Glassmorphism utility */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --transition-main: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent-strong);
    outline-offset: 3px;
}

main {
    min-height: 60vh;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: min(1160px, 100% - 32px);
    margin-inline: auto;
}

/* NAV */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(248, 249, 250, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: 0.02em;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.nav-link {
    position: relative;
    padding-block: 4px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-strong);
    transition: width var(--transition-main);
}

.nav-link:hover::after,
.nav-link.nav-link-active::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-ink);
    font-size: 13px;
    font-weight: 500;
    background-color: var(--color-ink);
    color: var(--color-bg);
    transition: transform var(--transition-main), box-shadow var(--transition-main), background-color var(--transition-main), color var(--transition-main);
}

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

/* Mobile nav */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle svg {
    display: block;
}

.nav-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-mobile {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 12px 0 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-mobile.open {
        display: flex;
    }

    .nav-mobile a {
        padding-block: 6px;
        font-size: 14px;
    }
}

/* HERO */
.hero {
    padding-top: 32px;
    padding-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

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

.hero-copy {
    padding-right: 24px;
}

@media (max-width: 960px) {
    .hero-copy {
        padding-right: 0;
    }
}

.hero-kicker {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.hero-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(120deg, var(--color-accent) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    max-width: 580px;
    color: var(--color-ink-muted);
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-pill {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--color-bg-alt);
    color: var(--color-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

.hero-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    transition: transform 0.2s;
}

.trust-badge:hover {
    transform: translateY(-1px);
}

.trust-badge i {
    font-size: 0.9rem;
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.btn-primary {
    border-radius: var(--radius-md);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    background-color: var(--color-ink);
    color: white;
    cursor: pointer;
    transition: all var(--transition-main);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: #1e293b;
}

.btn-ghost {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    background-color: transparent;
    color: var(--color-ink);
    cursor: pointer;
    transition: all var(--transition-main);
}

.btn-ghost:hover {
    background-color: #ffffff;
    border-color: var(--color-ink);
    box-shadow: var(--shadow-md);
}

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

.hero-media-wrapper {
    position: relative;
    padding-top: 12px;
}

@media (max-width: 960px) {
    .hero-media-wrapper {
        order: -1;
    }
}

.hero-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #202020;
    min-height: 260px;
    box-shadow: var(--shadow-hover);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=70");
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: var(--color-ink);
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.hero-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.hero-overlay-title {
    font-size: 13px;
    font-weight: 600;
}

.hero-overlay-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(248, 249, 250, 0.28);
}

.hero-overlay-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-stat {
    padding: 12px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-ink-muted);
    margin-bottom: 4px;
}

.hero-stat-value {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Inter', monospace;
    color: var(--color-ink);
}

.hero-stat-footnote {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-accent-deep);
    margin-top: 4px;
}

/* SECTIONS */
.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 */
.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 */
.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 */
.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);
}

/* OPERATORS */
.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 */
.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 */
.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;
    /* Fix mobile overflow */
    max-width: 100%;
}

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

.top-meta {
    /* Critical for triggering ellipsis in flexbox */
    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;
    /* Prevent price from shrinking */
}

@media (max-width: 768px) {
    .top-cards-link {
        padding: 12px 14px;
        /* Más compacto */
    }

    .top-station-name {
        font-size: 13px;
        /* Un poco más pequeño */
    }

    .top-station-price {
        font-size: 1rem;
        /* Aún más pequeño para asegurar que quepa */
        margin-left: 8px;
        /* Menor separación */
    }
}

/* EV PROMO */
.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);
}

/* TABS */
.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);
}

/* UTILS */
.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 */
.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 */
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;
    }
}

/* === BUSCADOR DESTACADO === */
.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;
    }
}

/* === TABS REGION === */
.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;
    }
}

/* === TABS OPERATORS === */
.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;
    }
}

/* === TOOLS === */
.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;
}

/* TOP STATIONS */
.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;
}

.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 SECTION REFINEMENTS */
.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 SECTION */
#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 */
.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 SECTION */
.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;
}

/* SECTION BACKGROUNDS */
#faq {
    background: #f8fafc;
}

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

/* EV NO RESULTS */
.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;
}