/* ==========================================================================
   MAP & PUMP — HomePage.css
   Dark "control room" aesthetic: deep navy base, cyan signal, amber fuel accent.
   Built on top of Bootstrap 5.3.3 — this file only overrides / extends.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    --mp-bg:            #05070e;
    --mp-bg-2:          #080d18;
    --mp-surface:       #0b111e;
    --mp-surface-2:     #101827;
    --mp-line:          rgba(255, 255, 255, 0.08);
    --mp-line-strong:   rgba(255, 255, 255, 0.16);

    --mp-text:          #f1f5f9;
    --mp-muted:         #94a3b8;
    --mp-dim:           #64748b;

    --mp-cyan:          #22d3ee;
    --mp-blue:          #3b82f6;
    --mp-amber:         #f59e0b;
    --mp-green:         #10b981;
    --mp-red:           #f43f5e;

    --mp-glow-cyan:     rgba(34, 211, 238, 0.35);
    --mp-glow-amber:    rgba(245, 158, 11, 0.30);

    --mp-radius:        18px;
    --mp-radius-lg:     26px;

    --mp-font-display:  'Sora', system-ui, -apple-system, sans-serif;
    --mp-font-body:     'Inter', system-ui, -apple-system, sans-serif;

    --mp-ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
* { scroll-behavior: smooth; }

html { scroll-padding-top: 96px; }

body {
    background-color: var(--mp-bg);
    color: var(--mp-text);
    font-family: var(--mp-font-body);
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--mp-font-display);
    letter-spacing: -0.035em;
    line-height: 1.08;
    font-weight: 700;
}

a { text-decoration: none; }

::selection {
    background: var(--mp-cyan);
    color: #04121a;
}

/* Ambient page backdrop — fixed aurora + grid, sits behind everything */
.mp-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(900px 620px at 12% -6%,  rgba(34, 211, 238, 0.16), transparent 62%),
        radial-gradient(820px 560px at 88% 4%,   rgba(59, 130, 246, 0.16), transparent 60%),
        radial-gradient(760px 620px at 60% 105%, rgba(245, 158, 11, 0.09), transparent 62%),
        var(--mp-bg);
}

.mp-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
}

/* --------------------------------------------------------------------------
   3. UTILITIES
   -------------------------------------------------------------------------- */
.fw-extrabold { font-weight: 800; }
.text-muted-custom { color: var(--mp-muted); }
.text-dim { color: var(--mp-dim); }
.tracking-wider { letter-spacing: 0.14em; }
.max-width-md { max-width: 760px; }
.bg-dark-custom { background-color: transparent; }
.bg-features { background-color: transparent; }
.bg-card { background-color: transparent !important; }

.text-gradient {
    background: linear-gradient(120deg, #ffffff 0%, #e2e8f0 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: linear-gradient(110deg, var(--mp-cyan) 0%, #60a5fa 45%, var(--mp-amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    font-family: var(--mp-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mp-cyan);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mp-cyan));
}

.section-pad { padding: 82px 0; }

.divider-glow {
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--mp-line-strong), transparent);
    opacity: 1;
    margin: 0;
}

/* --------------------------------------------------------------------------
   4. GLASS SURFACES
   -------------------------------------------------------------------------- */
.glass {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.main-navbar {
    background: rgba(5, 7, 14, 0.55);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--mp-ease),
                border-color 0.35s var(--mp-ease),
                padding 0.35s var(--mp-ease),
                box-shadow 0.35s var(--mp-ease);
}

.main-navbar.is-scrolled {
    background: rgba(5, 7, 14, 0.88);
    border-bottom-color: var(--mp-line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.navbar-brand.logo-text {
    font-family: var(--mp-font-display);
    letter-spacing: -0.04em;
    color: #fff;
}

.navbar-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px var(--mp-glow-cyan));
    transition: transform 0.4s var(--mp-ease);
}

.navbar-brand:hover .navbar-logo-img { transform: rotate(-8deg) scale(1.06); }

.navbar-nav .nav-link {
    color: var(--mp-muted);
    font-weight: 500;
    font-size: 0.98rem !important;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 2px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--mp-cyan), var(--mp-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--mp-ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
    border: 1px solid var(--mp-line-strong);
    border-radius: 12px;
    padding: 8px 11px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25); }

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        background: rgba(8, 13, 24, 0.97);
        border: 1px solid var(--mp-line);
        border-radius: var(--mp-radius);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--mp-line);
        font-size: 1.05rem !important;
    }
    .navbar-nav .nav-item:last-child .nav-link { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    font-family: var(--mp-font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 999px;
    transition: transform 0.28s var(--mp-ease),
                box-shadow 0.28s var(--mp-ease),
                background 0.28s ease,
                border-color 0.28s ease,
                color 0.28s ease;
}

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

.btn-primary,
.btn-mp {
    position: relative;
    overflow: hidden;
    border: 0;
    color: #04121a !important;
    background: linear-gradient(105deg, #67e8f9 0%, var(--mp-cyan) 45%, #38bdf8 100%);
    box-shadow: 0 10px 30px -8px var(--mp-glow-cyan);
}

.btn-primary:hover,
.btn-mp:hover {
    color: #04121a !important;
    background: linear-gradient(105deg, #a5f3fc 0%, #67e8f9 45%, #7dd3fc 100%);
    box-shadow: 0 18px 46px -10px var(--mp-glow-cyan);
    transform: translateY(-2px);
}

/* moving sheen */
.btn-primary::before,
.btn-mp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--mp-ease);
}
.btn-primary:hover::before,
.btn-mp:hover::before { left: 150%; }

.btn-outline-light,
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--mp-line-strong);
    color: var(--mp-text);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 211, 238, 0.55);
    color: #fff;
    transform: translateY(-2px);
}

.btn-success {
    border: 0;
    color: #052015 !important;
    background: linear-gradient(105deg, #34d399, var(--mp-green));
    box-shadow: 0 12px 34px -10px rgba(16, 185, 129, 0.5);
}
.btn-success:hover {
    background: linear-gradient(105deg, #6ee7b7, #34d399);
    transform: translateY(-2px);
    box-shadow: 0 18px 46px -12px rgba(16, 185, 129, 0.6);
}

.btn-amber {
    border: 0;
    color: #1f1300 !important;
    background: linear-gradient(105deg, #fbbf24, var(--mp-amber));
    box-shadow: 0 12px 34px -10px var(--mp-glow-amber);
}
.btn-amber:hover {
    background: linear-gradient(105deg, #fcd34d, #fbbf24);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100svh;
    padding-top: clamp(96px, 12vh, 132px);
    padding-bottom: clamp(34px, 6vh, 64px);
}

.hero-title {
    font-size: clamp(2.5rem, 6.4vw, 4.65rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    color: var(--mp-muted);
    max-width: 44ch;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
}

.listing-stage {
    position: relative;
}

@media (min-width: 992px) {
    .hero-actions {
        flex-wrap: nowrap;
        gap: 0.5rem !important;
    }

    .hero-actions .btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding-left: 1.05rem !important;
        padding-right: 1.05rem !important;
        font-size: 0.98rem;
    }

    .listing-stage {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .hero-actions .btn {
        padding-left: 1.4rem !important;
        padding-right: 1.4rem !important;
    }
}

@media (max-width: 991.98px) {
    .hero-sub { max-width: 100%; margin-inline: auto; }
    .hero-section {
        min-height: 100svh;
        padding-top: 96px;
        padding-bottom: 34px;
    }
}

/* Live status pill */
.badge-status {
    background: rgba(16, 185, 129, 0.08);
    color: #6ee7b7;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(16, 185, 129, 0.28);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--mp-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: mp-pulse 2s infinite;
}

@keyframes mp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65); transform: scale(0.92); }
    70%  { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0);   transform: scale(1.1); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);     transform: scale(0.92); }
}

/* Hero trust strip */
.hero-trust {
    display: none;
    flex-wrap: wrap;
    gap: 34px;
    padding-top: 34px;
    margin-top: 34px;
    border-top: 1px solid var(--mp-line);
}

.hero-trust .trust-num {
    font-family: var(--mp-font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-trust .trust-label {
    font-size: 0.78rem;
    color: var(--mp-dim);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-top: 6px;
}

@media (max-width: 991.98px) {
    .hero-trust { justify-content: center; gap: 26px; }
}

/* --------------------------------------------------------------------------
   8. PHONE MOCKUP
   -------------------------------------------------------------------------- */
.phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1400px;
}

/* glow behind the device */
.phone-stage::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 66%);
    filter: blur(46px);
    z-index: 0;
    animation: mp-breathe 7s ease-in-out infinite;
}

@keyframes mp-breathe {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.12); }
}

.phone-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(170deg, #0f172a, #070c16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 9px #0d1422,
        0 0 0 10px rgba(255, 255, 255, 0.07),
        0 46px 90px -28px rgba(0, 0, 0, 0.9);
    border-radius: 40px;
    animation: mp-float 6.5s ease-in-out infinite;
}

@keyframes mp-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-16px) rotate(-0.6deg); }
}

.expanded-phone {
    max-width: 300px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-notch {
    width: 90px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0 auto 18px;
}

.phone-container .card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--mp-line) !important;
}

.bg-gradient-token {
    background: linear-gradient(150deg, rgba(34, 211, 238, 0.13), rgba(59, 130, 246, 0.05)) !important;
    border: 1px solid rgba(34, 211, 238, 0.28) !important;
}

.token-qr-card {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qr-wrapper {
    position: relative;
    background-color: #ffffff;
    padding: 14px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.qr-wrapper i {
    color: #060b14;
    font-size: 3rem;
    line-height: 1;
}

/* scanning laser across the QR */
.qr-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.55), transparent);
    animation: mp-scan 2.6s ease-in-out infinite;
}

@keyframes mp-scan {
    0%   { top: -34%; }
    100% { top: 104%; }
}

/* fuel level bar inside station card */
.fuel-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.fuel-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mp-green), #6ee7b7);
    animation: mp-fill 3.2s var(--mp-ease) infinite alternate;
}

.fuel-bar2.is-low span {
    background: linear-gradient(90deg, var(--mp-amber), #fcd34d);
}

.fuel-bar2 {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.fuel-bar2 span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mp-green), #6ee7b7);
    animation: mp-fill 6.4s var(--mp-ease) infinite alternate;
}

@keyframes mp-fill {
    0%   { width: 34%; }
    100% { width: 82%; }
}

/* Floating chips around the phone */
.float-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(11, 17, 30, 0.86);
    border: 1px solid var(--mp-line-strong);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
}

.float-chip i { font-size: 0.9rem; }

.float-chip.chip-a {
    top: 16%;
    left: -2%;
    animation: mp-float-a 5.5s ease-in-out infinite;
}

.float-chip.chip-b {
    bottom: 20%;
    right: -1%;
    animation: mp-float-b 6.5s ease-in-out infinite;
}

@keyframes mp-float-a {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(6px, -14px); }
}
@keyframes mp-float-b {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-8px, 12px); }
}

@media (max-width: 1199.98px) {
    .float-chip.chip-a { left: -4%; }
    .float-chip.chip-b { right: -2%; }
}
@media (max-width: 575.98px) {
    .float-chip { font-size: 0.72rem; padding: 9px 12px; }
    .float-chip.chip-a { left: -2%; top: 10%; }
    .float-chip.chip-b { right: -2%; bottom: 14%; }
}

/* --------------------------------------------------------------------------
   9. TICKER (live station marquee)
   -------------------------------------------------------------------------- */
.ticker {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--mp-line);
    border-bottom: 1px solid var(--mp-line);
    background: rgba(255, 255, 255, 0.015);
    padding: 16px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
    display: flex;
    gap: 52px;
    width: max-content;
    animation: mp-marquee 34s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes mp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--mp-muted);
    letter-spacing: 0.01em;
}

.ticker-item .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: none;
}
.dot-ok   { background: var(--mp-green); box-shadow: 0 0 10px var(--mp-green); }
.dot-low  { background: var(--mp-amber); box-shadow: 0 0 10px var(--mp-amber); }
.dot-out  { background: var(--mp-red);   box-shadow: 0 0 10px var(--mp-red); }

/* --------------------------------------------------------------------------
   10. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-title {
    font-size: clamp(2rem, 3.9vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.042em;
    margin: 18px 0 14px;
}

.section-lead {
    color: var(--mp-muted);
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.7;
}

.mx-auto .section-lead,
.text-center .section-lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   11. STATS BAND
   -------------------------------------------------------------------------- */
.stat-card {
    padding: 30px 26px;
    border-radius: var(--mp-radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--mp-line);
    height: 100%;
    transition: transform 0.4s var(--mp-ease), border-color 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.4);
}

.stat-num {
    font-family: var(--mp-font-display);
    font-size: clamp(2.1rem, 3.6vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(120deg, #fff, var(--mp-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 10px;
    color: var(--mp-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS
   -------------------------------------------------------------------------- */
.steps-row { position: relative; }

.steps-row::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.45), rgba(245, 158, 11, 0.45), transparent);
}

@media (max-width: 991.98px) {
    .steps-row::before { display: none; }
}

.step-card {
    position: relative;
    margin: 50px 0 0 0;
    padding: 34px 26px 30px;
    height: 100%;
    border-radius: var(--mp-radius);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--mp-line);
    transition: transform 0.45s var(--mp-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 26px 60px -30px var(--mp-glow-cyan);
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: var(--mp-font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: #04121a;
    background: linear-gradient(140deg, #67e8f9, var(--mp-cyan));
    box-shadow: 0 12px 30px -12px var(--mp-glow-cyan);
    margin-bottom: 22px;
}

.step-card:nth-child(2) .step-num,
.col-lg-4:nth-child(2) .step-num {
    background: linear-gradient(140deg, #93c5fd, var(--mp-blue));
    color: #050d1f;
}

.col-lg-4:nth-child(3) .step-num {
    background: linear-gradient(140deg, #fcd34d, var(--mp-amber));
    color: #1f1300;
}

.step-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    color: var(--mp-muted);
    font-size: 0.93rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   13. FEATURE BENTO CARDS
   -------------------------------------------------------------------------- */
.feature-card {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--mp-radius);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--mp-line);
    overflow: hidden;
    transition: transform 0.45s var(--mp-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* cursor-tracked spotlight */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(34, 211, 238, 0.14), transparent 62%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 30px 64px -34px rgba(34, 211, 238, 0.55);
}

.feature-card h3 {
    font-size: 1.14rem;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--mp-muted);
    font-size: 0.92rem;
    margin: 0;
}

.icon-shape {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.3);
    transition: transform 0.45s var(--mp-ease);
}

.feature-card:hover .icon-shape { transform: scale(1.08) rotate(-6deg); }

.icon-shape i {
    color: var(--mp-cyan) !important;
    font-size: 1.35rem;
}

.icon-shape.tone-amber {
    background: linear-gradient(150deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    border-color: rgba(245, 158, 11, 0.32);
}
.icon-shape.tone-amber i { color: var(--mp-amber) !important; }

.icon-shape.tone-green {
    background: linear-gradient(150deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border-color: rgba(16, 185, 129, 0.32);
}
.icon-shape.tone-green i { color: #34d399 !important; }

.icon-shape.tone-blue {
    background: linear-gradient(150deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.32);
}
.icon-shape.tone-blue i { color: #60a5fa !important; }

/* --------------------------------------------------------------------------
   14. LIVE MAP SHOWCASE
   -------------------------------------------------------------------------- */
.map-panel {
    position: relative;
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line);
    background:
        radial-gradient(600px 400px at 30% 20%, rgba(34, 211, 238, 0.12), transparent 60%),
        linear-gradient(160deg, #0c1322, #070b14);
    overflow: hidden;
    min-height: clamp(330px, 38vw, 430px);
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}

.map-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
}

/* faux roads */
.map-road {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
}
.road-1 { top: 28%; left: -5%; width: 110%; height: 10px; transform: rotate(-7deg); }
.road-2 { top: 66%; left: -5%; width: 110%; height: 8px;  transform: rotate(5deg); }
.road-3 { top: -10%; left: 34%; width: 9px; height: 130%; transform: rotate(9deg); }

.map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px 9px 10px;
    border-radius: 999px;
    background: rgba(9, 14, 25, 0.9);
    border: 1px solid var(--mp-line-strong);
    backdrop-filter: blur(10px);
    font-size: 0.79rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
    transition: transform 0.35s var(--mp-ease), border-color 0.3s ease;
    animation: mp-pin-bob 5s ease-in-out infinite;
}

.map-pin:hover { transform: scale(1.06); border-color: rgba(34, 211, 238, 0.6); }

@keyframes mp-pin-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

.map-pin .pin-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    flex: none;
}
.pin-ok  { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16,185,129,.4); }
.pin-low { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245,158,11,.4); }
.pin-out { background: rgba(244, 63, 94, 0.18); color: #fb7185; border: 1px solid rgba(244,63,94,.4); }

.pin-1 { top: 18%; left: 12%; animation-delay: 0s; }
.pin-2 { top: 46%; left: 52%; animation-delay: .8s; }
.pin-3 { top: 72%; left: 20%; animation-delay: 1.6s; }
.pin-4 { top: 33%; right: 8%; animation-delay: 2.4s; }

/* radar sweep */
.map-radar {
    position: absolute;
    width: 230px;
    height: 230px;
    top: 42%;
    left: 46%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.25);
}
.map-radar::before,
.map-radar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.35);
    animation: mp-radar 3.4s ease-out infinite;
}
.map-radar::after { animation-delay: 1.7s; }

@keyframes mp-radar {
    0%   { transform: scale(0.35); opacity: 0.9; }
    100% { transform: scale(1.25); opacity: 0; }
}

.map-legend {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 11px 16px;
    border-radius: 14px;
    background: rgba(6, 10, 18, 0.85);
    border: 1px solid var(--mp-line);
    backdrop-filter: blur(12px);
    font-size: 0.74rem;
    color: var(--mp-muted);
}

.map-legend span { display: inline-flex; align-items: center; gap: 7px; }

.map-customer-card {
    position: absolute;
    right: 20px;
    top: 20px;
    width: min(260px, calc(100% - 40px));
    padding: 16px;
    border-radius: 16px;
    background: rgba(6, 10, 18, 0.88);
    border: 1px solid rgba(34, 211, 238, 0.28);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.55);
    color: var(--mp-text);
    z-index: 2;
}

.customer-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.74rem;
    color: var(--mp-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.customer-card-top span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.customer-card-top strong {
    color: #fff;
    white-space: nowrap;
}

.customer-card-station {
    margin-top: 12px;
    font-family: var(--mp-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.customer-card-meta {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--mp-muted);
}

.customer-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.customer-card-actions span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.22);
    color: #a5f3fc;
    font-size: 0.72rem;
    font-weight: 700;
}

/* checklist next to the map */
.check-list { list-style: none; padding: 0; margin: 28px 0 0; }

.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px dashed var(--mp-line);
    color: var(--mp-muted);
    font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: 0; }

.check-list i {
    color: var(--mp-cyan);
    margin-top: 4px;
    font-size: 0.95rem;
}

.check-list strong { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote-card {
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--mp-radius);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--mp-line);
    transition: transform 0.45s var(--mp-ease), border-color 0.4s ease;
}

.quote-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, 0.35); }

.quote-card .stars { color: var(--mp-amber); font-size: 0.85rem; letter-spacing: 2px; }

.quote-card blockquote {
    margin: 16px 0 22px;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.72;
}

.quote-person { display: flex; align-items: center; gap: 13px; }

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--mp-font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: #04121a;
    background: linear-gradient(140deg, #67e8f9, #38bdf8);
    flex: none;
}
.avatar.av-2 { background: linear-gradient(140deg, #fcd34d, #f59e0b); color: #1f1300; }
.avatar.av-3 { background: linear-gradient(140deg, #6ee7b7, #10b981); color: #052015; }

.quote-person .name { font-weight: 600; color: #fff; font-size: 0.93rem; line-height: 1.3; }
.quote-person .role { font-size: 0.8rem; color: var(--mp-dim); }

/* --------------------------------------------------------------------------
   16. B2B BAND
   -------------------------------------------------------------------------- */
.bg-gradient-business {
    position: relative;
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    background:
        radial-gradient(700px 340px at 20% 0%, rgba(59, 130, 246, 0.28), transparent 62%),
        radial-gradient(620px 340px at 85% 100%, rgba(34, 211, 238, 0.22), transparent 62%),
        linear-gradient(150deg, #0e1a33, #070b14);
    border: 1px solid var(--mp-line);
}

.bg-gradient-business::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 75%);
}

.b2b-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mp-line-strong);
}

.perk-pill i { color: var(--mp-cyan); font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--mp-line);
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-family: var(--mp-font-display);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 22px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) { color: var(--mp-cyan); }

.faq-accordion .accordion-button::after {
    filter: invert(1) grayscale(1) brightness(1.6);
    transition: transform 0.35s var(--mp-ease);
}

.faq-accordion .accordion-body {
    color: var(--mp-muted);
    padding: 0 24px 24px;
    font-size: 0.96rem;
    line-height: 1.72;
}

/* --------------------------------------------------------------------------
   18. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
    position: relative;
    text-align: center;
    padding: 88px 24px;
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line);
    background:
        radial-gradient(560px 300px at 50% 0%, rgba(34, 211, 238, 0.2), transparent 66%),
        linear-gradient(160deg, #0b1220, #06090f);
    overflow: hidden;
}

.final-cta h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
footer.site-footer {
    border-top: 1px solid var(--mp-line);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
    padding: 66px 0 30px;
}

.footer-title {
    font-family: var(--mp-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

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

.footer-links li { margin-bottom: 11px; }

.footer-links a {
    color: var(--mp-muted);
    font-size: 0.92rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover { color: var(--mp-cyan); padding-left: 4px; }

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    max-width: 100%;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-contact a:hover {
    color: var(--mp-cyan);
}

.footer-contact i {
    color: var(--mp-cyan);
}

.social-row { display: flex; gap: 11px; margin-top: 20px; }

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--mp-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--mp-line);
    transition: all 0.3s var(--mp-ease);
}

.social-row a:hover {
    color: #04121a;
    background: var(--mp-cyan);
    border-color: var(--mp-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid var(--mp-line);
    color: var(--mp-dim);
    font-size: 0.86rem;
}

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s var(--mp-ease), transform 0.75s var(--mp-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    z-index: 10000;
    background: linear-gradient(90deg, var(--mp-cyan), #60a5fa, var(--mp-amber));
    box-shadow: 0 0 12px var(--mp-glow-cyan);
    transition: width 0.1s linear;
}

/* Back to top */
#back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    z-index: 9998;
    color: #04121a;
    background: linear-gradient(140deg, #67e8f9, var(--mp-cyan));
    border: 0;
    box-shadow: 0 16px 34px -12px var(--mp-glow-cyan);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: all 0.4s var(--mp-ease);
}

#back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
#back-to-top:hover { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   21. CURSOR SPOTLIGHT
   -------------------------------------------------------------------------- */
#mouse-follower {
    position: fixed;
    left: 0;
    top: 0;
    width: 420px;
    height: 420px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(34, 211, 238, 0.10) 0%,
        rgba(59, 130, 246, 0.05) 38%,
        transparent 70%);
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

#mouse-follower.is-active { opacity: 1; }

@media (hover: none), (pointer: coarse) {
    #mouse-follower { display: none; }
}

/* --------------------------------------------------------------------------
   22. SCROLLBAR
   -------------------------------------------------------------------------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--mp-bg); }
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 50px;
    border: 2px solid var(--mp-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--mp-cyan); }

/* --------------------------------------------------------------------------
   23. RESPONSIVE POLISH — mobile, tablet, iPad, desktop
   -------------------------------------------------------------------------- */

/* Large tablets / small laptops */
@media (max-width: 1199.98px) {
    .section-title { font-size: clamp(1.65rem, 3.2vw, 2.4rem); }
    .hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); }
}

/* Tablets / iPad portrait & landscape under lg */
@media (max-width: 991.98px) {
    .section-pad { padding: 62px 0; }
    .map-panel { min-height: 330px; }
    footer.site-footer { padding: 52px 0 28px; }
    .footer-title { margin-bottom: 14px; }
    .footer-bottom { margin-top: 36px; }
    .calc-wrap { padding: 24px 20px; }
    .hero-actions { align-items: center; justify-content: center; }
}

/* Small tablets / large phones */
@media (max-width: 767.98px) {
    body { font-size: 0.97rem; }
    .section-pad { padding: 52px 0; }
    .hero-section {
        align-items: flex-start !important;
        padding-top: 84px;
        padding-bottom: 28px;
    }
    .badge-status {
        margin-bottom: 1rem !important;
        font-size: 0.72rem;
        padding: 7px 13px;
    }
    .hero-title {
        letter-spacing: -0.035em;
        font-size: clamp(1.85rem, 7.5vw, 2.6rem);
        margin-bottom: 0.85rem;
    }
    .hero-sub {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem !important;
    }
    .hero-actions {
        gap: 0.65rem !important;
        flex-wrap: nowrap;
    }
    .hero-actions .btn {
        width: auto !important;
        flex: 1 1 0;
        min-width: 0;
        margin-bottom: 0 !important;
        padding: 0.72rem 0.7rem !important;
        font-size: 0.82rem;
        white-space: normal;
    }
    .hero-actions .btn i { margin-right: 0.35rem !important; }
    .hero-actions + .small {
        font-size: 0.75rem;
        margin-top: 0.8rem !important;
    }
    .listing-stage { margin-top: 22px; }
    .phone-stage { margin-top: 26px; }
    .expanded-phone { max-width: 280px; min-height: 460px; }
    .final-cta { padding: 48px 18px; }
    .map-legend { position: static; margin: 16px; }
    .footer-links a:hover { padding-left: 0; }
    .btn-lg { font-size: 1rem; padding: 0.85rem 1.6rem !important; }
    .navbar-logo-img { height: 32px; }
    .navbar-brand.logo-text { font-size: 1.15rem !important; }
    #back-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
    .section-title-sm { font-size: clamp(1.35rem, 4.5vw, 1.75rem); }
    .faq-accordion .accordion-button { font-size: 0.98rem; }
}

/* buttons: full width on phones, natural width from small up */
@media (min-width: 576px) {
    .w-sm-auto { width: auto !important; }
}

/* Phones */
@media (max-width: 575.98px) {
    .w-sm-auto { width: 100% !important; }
    .hero-trust {
        gap: 16px 22px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-trust .trust-num { font-size: 1.25rem; }
    .badge-status {
        max-width: 100%;
        white-space: nowrap;
        font-size: 0.62rem;
    }
    .hero-sub { font-size: 0.86rem; }
    .hero-actions + .small {
        white-space: nowrap;
        font-size: 0.62rem;
        line-height: 1.4;
    }
    .listing-stage { margin-top: 14px; }
    .map-panel {
        min-height: clamp(220px, 58vw, 280px);
        border-radius: 20px;
    }
    .map-customer-card {
        right: 12px;
        top: 12px;
        width: min(230px, calc(100% - 24px));
        padding: 12px;
        border-radius: 14px;
    }
    .customer-card-top { font-size: 0.64rem; }
    .customer-card-station { font-size: 0.88rem; margin-top: 8px; }
    .customer-card-meta { font-size: 0.7rem; }
    .customer-card-actions { margin-top: 10px; gap: 6px; }
    .customer-card-actions span {
        padding: 5px 8px;
        font-size: 0.62rem;
    }
    .map-pin { font-size: 0.68rem; padding: 7px 11px 7px 8px; }
    .pin-1 { top: 29%; left: 8%; }
    .pin-2 { top: 57%; left: 49%; }
    .pin-3 { top: 75%; left: 12%; }
    .pin-4 { display: none; }
    .map-radar {
        width: 160px;
        height: 160px;
    }
    .map-legend {
        position: absolute;
        left: 10px;
        bottom: 10px;
        margin: 0;
        gap: 9px;
        padding: 8px 10px;
        font-size: 0.62rem;
    }
    footer.site-footer { padding: 42px 0 24px; }
    .footer-contact a { font-size: 0.88rem; }
    .social-row a { width: 36px; height: 36px; }
    .footer-bottom {
        margin-top: 28px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 8px;
    }
    .calc-wrap { padding: 18px 14px; border-radius: 14px; }
    .section-pad { padding: 44px 0; }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Very small phones */
@media (max-width: 379.98px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 22px;
    }
    .hero-title { font-size: 1.62rem; }
    .badge-status {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hero-sub { font-size: 0.78rem; line-height: 1.42; }
    .hero-actions + .small { font-size: 0.58rem; }
    .btn-lg { font-size: 0.95rem; padding: 0.75rem 1.2rem !important; }
    .hero-actions .btn {
        padding: 0.62rem 0.55rem !important;
        font-size: 0.74rem;
    }
    .map-panel { min-height: 205px; }
    .navbar-brand.logo-text { font-size: 1.05rem !important; }
}

/* --------------------------------------------------------------------------
   25. NAVBAR EXTRAS — plain sign-in link + NEWS dot
   -------------------------------------------------------------------------- */
.nav-link-plain {
    color: var(--mp-muted);
    font-weight: 500;
    font-size: 0.98rem;
    white-space: nowrap;
    transition: color 0.25s ease;
}
.nav-link-plain:hover { color: #fff; }

.nav-news { position: relative; display: inline-block; }

.nav-news-dot {
    position: absolute;
    top: -2px;
    right: -9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mp-amber);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: mp-pulse-amber 2.2s infinite;
}

@keyframes mp-pulse-amber {
    0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.65); }
    70%  { box-shadow: 0 0 0 7px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@media (max-width: 991.98px) {
    .nav-link-plain {
        padding: 12px 0;
        border-bottom: 1px solid var(--mp-line);
        display: block;
    }
}

/* --------------------------------------------------------------------------
   26. COMPACT HERO
   -------------------------------------------------------------------------- */
.hero-compact {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
}

@media (max-width: 991.98px) {
    .hero-compact { padding-top: 128px; padding-bottom: 56px; }
}

/* --------------------------------------------------------------------------
   27. OPERATOR CONSOLE MOCKUP
   -------------------------------------------------------------------------- */
.console-stage { position: relative; }

.console-stage::before {
    content: '';
    position: absolute;
    inset: 8% 6%;
    background: radial-gradient(circle at 50% 40%, rgba(34, 211, 238, 0.22), transparent 68%);
    filter: blur(48px);
    z-index: 0;
    animation: mp-breathe 7s ease-in-out infinite;
}

.console-panel {
    position: relative;
    z-index: 1;
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line-strong);
    background: linear-gradient(165deg, rgba(19, 27, 43, 0.96), rgba(7, 11, 20, 0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 44px 96px -40px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.console-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--mp-line);
    background: rgba(255, 255, 255, 0.02);
}

.console-title {
    font-family: var(--mp-font-display);
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.console-sub { font-size: 0.82rem; color: var(--mp-dim); margin-top: 2px; }

.console-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6ee7b7;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    white-space: nowrap;
}

.console-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 17px 24px;
    border-bottom: 1px solid var(--mp-line);
    transition: background 0.3s ease;
}

.console-row:hover { background: rgba(255, 255, 255, 0.025); }
.console-row.is-off { opacity: 0.5; }

.console-station { display: flex; align-items: center; gap: 13px; min-width: 0; }

.station-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: none;
}

.station-name {
    display: block;
    font-weight: 600;
    font-size: 0.94rem;
    color: #fff;
    line-height: 1.3;
}

.station-meta {
    display: block;
    font-size: 0.78rem;
    color: var(--mp-dim);
    margin-top: 2px;
}

/* fake toggle switch */
.switch {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--mp-line-strong);
    position: relative;
    flex: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.switch span {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #94a3b8;
    transition: transform 0.35s var(--mp-ease), background 0.3s ease;
}

.switch.is-on {
    background: rgba(34, 211, 238, 0.28);
    border-color: rgba(34, 211, 238, 0.6);
}

.switch.is-on span {
    transform: translateX(20px);
    background: var(--mp-cyan);
    box-shadow: 0 0 12px var(--mp-glow-cyan);
}

.console-foot {
    padding: 16px 24px;
    font-size: 0.8rem;
    color: var(--mp-muted);
    background: rgba(34, 211, 238, 0.05);
}

.float-chip.chip-console {
    top: -5%;
    right: -4%;
    animation: mp-float-a 5.5s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .float-chip.chip-console { top: -3%; right: 0; }
}
@media (max-width: 575.98px) {
    .console-head, .console-row, .console-foot { padding-left: 16px; padding-right: 16px; }
    .float-chip.chip-console { font-size: .7rem; }
}

/* --------------------------------------------------------------------------
   28. DISABLED MAP PIN
   -------------------------------------------------------------------------- */
.map-pin.is-disabled { opacity: 0.45; filter: grayscale(0.8); }
.pin-icon.pin-out    { background: rgba(100, 116, 139, 0.2); color: #94a3b8; border: 1px solid rgba(148, 163, 184, 0.35); }

/* --------------------------------------------------------------------------
   29. PRICING PLANS
   -------------------------------------------------------------------------- */
.plan-card {
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    transition: border-color 0.4s ease, transform 0.45s var(--mp-ease);
}

.plan-card:hover { border-color: rgba(34, 211, 238, 0.35); transform: translateY(-4px); }

.plan-card-featured {
    border-color: rgba(34, 211, 238, 0.32);
    background:
        radial-gradient(520px 260px at 85% 0%, rgba(34, 211, 238, 0.14), transparent 62%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.plan-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mp-line-strong);
    margin-bottom: 18px;
}

.plan-tag-accent {
    color: #04121a;
    background: linear-gradient(105deg, #67e8f9, var(--mp-cyan));
    border-color: transparent;
}

.plan-name {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.plan-price {
    font-family: var(--mp-font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.1;
    color: #fff;
}

.plan-price span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--mp-muted);
    margin-top: 6px;
}

.plan-note {
    color: var(--mp-muted);
    font-size: 0.9rem;
    margin: 14px 0 22px;
}

.plan-list { list-style: none; padding: 0; margin: 0 0 26px; }

.plan-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 0.93rem;
    color: var(--mp-muted);
}

.plan-list i { color: var(--mp-cyan); margin-top: 4px; font-size: 0.8rem; }

/* discount grid inside the featured plan */
.discount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.discount-cell {
    padding: 14px 16px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--mp-line);
}

.discount-head {
    font-family: var(--mp-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mp-cyan);
    margin-bottom: 12px;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--mp-muted);
    padding: 4px 0;
    border-bottom: 1px dashed var(--mp-line);
}
.discount-row:last-child { border-bottom: 0; }
.discount-row strong { color: #fff; font-weight: 600; white-space: nowrap; }

@media (max-width: 575.98px) {
    .discount-grid { grid-template-columns: 1fr; }
    .plan-card { padding: 26px 20px; }
}

/* --------------------------------------------------------------------------
   30. PRICE CALCULATOR
   -------------------------------------------------------------------------- */
.calc-wrap {
    padding: 26px 26px;
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line);
    background:
        radial-gradient(600px 300px at 15% 0%, rgba(59, 130, 246, 0.12), transparent 62%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.calc-title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 14px 0 26px; color: #fff; }

.calc-label { font-size: 0.9rem; color: var(--mp-muted); display: block; margin-bottom: 12px; }
.calc-label strong { color: var(--mp-cyan); font-size: 1.05rem; }

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mp-cyan) var(--fill, 10%), rgba(255, 255, 255, 0.1) var(--fill, 10%));
    outline: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--mp-cyan);
    box-shadow: 0 4px 14px var(--mp-glow-cyan);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.14); }

.calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--mp-cyan);
    cursor: pointer;
}

.calc-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: var(--mp-dim);
    margin-top: 9px;
}

.calc-months { display: flex; flex-wrap: wrap; gap: 9px; }

.calc-months button {
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--mp-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mp-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--mp-line-strong);
    transition: all 0.3s var(--mp-ease);
}

.calc-months button:hover { color: #fff; border-color: rgba(34, 211, 238, 0.5); }

.calc-months button.is-active {
    color: #04121a;
    background: linear-gradient(105deg, #67e8f9, var(--mp-cyan));
    border-color: transparent;
    box-shadow: 0 8px 22px -8px var(--mp-glow-cyan);
}

.calc-result {
    padding: 28px 26px;
    border-radius: var(--mp-radius);
    background: rgba(5, 8, 15, 0.6);
    border: 1px solid var(--mp-line-strong);
    backdrop-filter: blur(12px);
}

.calc-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.89rem;
    color: var(--mp-muted);
    padding: 9px 0;
    border-bottom: 1px dashed var(--mp-line);
}

.calc-line strong { color: #fff; font-weight: 600; white-space: nowrap; }

.calc-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--mp-line-strong);
}

.calc-total span {
    font-family: var(--mp-font-display);
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.calc-total strong {
    font-family: var(--mp-font-display);
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(120deg, #fff, var(--mp-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.calc-per {
    font-size: 0.83rem;
    color: var(--mp-cyan);
    margin-top: 4px;
    font-weight: 600;
}

.calc-foot { font-size: 0.79rem; color: var(--mp-dim); margin: 14px 0 20px; }

@media (max-width: 575.98px) {
    .calc-wrap { padding: 26px 18px; }
    .calc-result { padding: 22px 18px; }
}

/* --------------------------------------------------------------------------
   31. PRICE CARDS + TREND CHIPS
   -------------------------------------------------------------------------- */
.price-card {
    height: 100%;
    padding: 24px 22px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    transition: transform 0.4s var(--mp-ease), border-color 0.4s ease;
}

.price-card:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4); }

.price-card-lg { padding: 28px 24px; }

.price-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--mp-muted);
    margin-bottom: 14px;
}

.price-head i { color: var(--mp-cyan); font-size: 0.95rem; }

.price-value {
    font-family: var(--mp-font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 14px;
}

.price-value small {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--mp-dim);
}

.price-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--mp-line);
    font-size: 0.78rem;
    color: var(--mp-dim);
}

.trend-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.trend-chip .trend-period { color: var(--mp-dim); font-weight: 500; font-size: 0.72rem; }
.trend-chip-sm { padding: 4px 10px; font-size: 0.72rem; }

.trend-up   { color: #fb7185; background: rgba(244, 63, 94, 0.1);  border: 1px solid rgba(244, 63, 94, 0.25); }
.trend-down { color: #34d399; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); }
.trend-flat { color: var(--mp-muted); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--mp-line-strong); }

/* --------------------------------------------------------------------------
   32. PAGE HEADER (News.php)
   -------------------------------------------------------------------------- */
.page-header { padding: 160px 0 56px; }

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    margin: 16px 0 16px;
    background: linear-gradient(120deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-sm {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 8px;
}

.updated-card {
    padding: 22px 24px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-line);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
}

.updated-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mp-muted);
}

.updated-time {
    font-family: var(--mp-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

@media (max-width: 991.98px) {
    .page-header { padding: 128px 0 40px; }
}

@media (max-width: 575.98px) {
    .page-header { padding: 108px 0 32px; }
    .page-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
    .updated-card { padding: 16px 18px; }
}

/* --------------------------------------------------------------------------
   33. GRADE / TAG FILTER TABS
   -------------------------------------------------------------------------- */
.grade-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.grade-tabs button {
    padding: 9px 16px;
    border-radius: 999px;
    font-family: var(--mp-font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mp-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--mp-line-strong);
    transition: all 0.3s var(--mp-ease);
    white-space: nowrap;
}

.grade-tabs button:hover { color: #fff; border-color: rgba(34, 211, 238, 0.5); }

.grade-tabs button.is-active {
    color: #04121a;
    background: linear-gradient(105deg, #67e8f9, var(--mp-cyan));
    border-color: transparent;
    box-shadow: 0 8px 22px -10px var(--mp-glow-cyan);
}

/* --------------------------------------------------------------------------
   34. PRICE TABLE
   -------------------------------------------------------------------------- */
.table-shell {
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.price-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--mp-text);
    margin: 0;
    color: var(--mp-text);
}

.price-table thead th {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--mp-line-strong) !important;
    color: var(--mp-muted);
    font-family: var(--mp-font-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 20px;
    white-space: nowrap;
}

.price-table tbody th,
.price-table tbody td {
    background: transparent;
    border-bottom: 1px solid var(--mp-line) !important;
    padding: 17px 20px;
    vertical-align: middle;
    color: var(--mp-text);
    font-size: 0.93rem;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0 !important; }

.price-table tbody tr { transition: background 0.25s ease; }
.price-table tbody tr:hover th,
.price-table tbody tr:hover td { background: rgba(34, 211, 238, 0.04); }

.company-cell { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; color: #fff; white-space: nowrap; }

.company-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-family: var(--mp-font-display);
    font-weight: 800;
    font-size: 0.82rem;
    color: #04121a;
    background: linear-gradient(140deg, #67e8f9, #38bdf8);
    flex: none;
}

.cell-price { font-family: var(--mp-font-display); font-weight: 700; color: #fff; letter-spacing: -0.02em; }

.cell-trend { display: inline-block; margin-left: 7px; font-size: 0.72rem; }
.cell-trend.trend-up   { color: #fb7185; background: none; border: 0; }
.cell-trend.trend-down { color: #34d399; background: none; border: 0; }
.cell-trend.trend-flat { color: var(--mp-dim); background: none; border: 0; }

@media (max-width: 575.98px) {
    .price-table thead th,
    .price-table tbody th,
    .price-table tbody td { padding: 14px 14px; font-size: 0.86rem; }
    .company-mark { width: 27px; height: 27px; font-size: 0.72rem; }
}

/* --------------------------------------------------------------------------
   35. REGION CARDS
   -------------------------------------------------------------------------- */
.region-card {
    height: 100%;
    padding: 22px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    transition: transform 0.4s var(--mp-ease), border-color 0.4s ease;
}

.region-card:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.35); }

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

.region-name { font-weight: 600; color: #fff; font-size: 0.95rem; }
.region-name i { color: var(--mp-cyan); font-size: 0.85rem; }

.region-price {
    font-family: var(--mp-font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.region-price small {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--mp-dim);
}

.region-meta { font-size: 0.78rem; color: var(--mp-dim); margin-top: 10px; }

/* --------------------------------------------------------------------------
   36. NEWS CARDS
   -------------------------------------------------------------------------- */
.news-card {
    position: relative;
    height: 100%;
    padding: 28px 26px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    overflow: hidden;
    transition: transform 0.45s var(--mp-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(34, 211, 238, 0.12), transparent 62%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.news-card:hover::before { opacity: 1; }

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow: 0 28px 60px -34px rgba(34, 211, 238, 0.5);
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-date { font-size: 0.78rem; color: var(--mp-dim); white-space: nowrap; }

.tag-pill {
    display: inline-flex;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tag-price   { color: #67e8f9; background: rgba(34, 211, 238, 0.12);  border: 1px solid rgba(34, 211, 238, 0.3); }
.tag-supply  { color: #fbbf24; background: rgba(245, 158, 11, 0.12);  border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-policy  { color: #93c5fd; background: rgba(59, 130, 246, 0.12);  border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-station { color: #6ee7b7; background: rgba(16, 185, 129, 0.12);  border: 1px solid rgba(16, 185, 129, 0.3); }

.news-title {
    font-size: 1.12rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.news-body { color: var(--mp-muted); font-size: 0.93rem; margin: 0; }/* --------------------------------------------------------------------------
   24. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

.qr-wrapper.qr-sm { width: 58px; height: 58px; margin: 0; font-size: 1.6rem; }
