/* ===========================================
   HARDWARE MARKETPLACE STYLES
   =========================================== */

/* ===========================================
   MARKETPLACE HUB STYLES
   =========================================== */
.mp-hub-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 30% 40%, rgba(6,182,212,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 60%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mp-hub-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.mp-hub-hero-content {
    max-width: 600px;
    margin-bottom: 48px;
}

.mp-hub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f59e0b;
    padding: 10px 16px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 4px;
    margin-bottom: 28px;
}

.mp-hub-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    margin: 0 0 24px 0;
}

.mp-hub-headline .accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-hub-subhead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 32px 0;
}

.mp-hub-actions {
    display: flex;
    gap: 16px;
}

/* Hub Category Cards */
.mp-hub-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mp-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: rgba(15, 22, 32, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.mp-hub-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-4px);
}

.mp-hub-card.compute:hover {
    border-color: rgba(6,182,212,0.5);
}

.mp-hub-card.apps:hover {
    border-color: rgba(139,92,246,0.5);
}

.mp-hub-card.hardware:hover {
    border-color: rgba(16,185,129,0.5);
}

.mp-hub-card.power:hover {
    border-color: rgba(245,158,11,0.5);
}

.mp-hub-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.mp-hub-card.compute .mp-hub-card-icon {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
}

.mp-hub-card.apps .mp-hub-card-icon {
    background: rgba(139,92,246,0.1);
    color: #a78bfa;
}

.mp-hub-card.hardware .mp-hub-card-icon {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.mp-hub-card.power .mp-hub-card-icon {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

.mp-hub-card-icon .icon {
    width: 24px;
    height: 24px;
}

.mp-hub-card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-hub-card-content p {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.mp-hub-card-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #64748b;
    margin-bottom: 12px;
}

.mp-hub-card-badge.gold {
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.3);
    color: #f59e0b;
}

.mp-hub-card-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 20px;
    height: 20px;
    color: #475569;
    transition: all 0.2s ease;
}

.mp-hub-card:hover .mp-hub-card-arrow {
    transform: translateX(4px);
    color: #06b6d4;
}

.mp-hub-card.power:hover .mp-hub-card-arrow {
    color: #f59e0b;
}

/* Section Split Layout */
.mp-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mp-section-split.reverse {
    direction: rtl;
}

.mp-section-split.reverse > * {
    direction: ltr;
}

.mp-section-content {
    max-width: 540px;
}

.mp-section-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

.mp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.mp-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: #f1f5f9;
}

.mp-feature-item .icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Section Visual */
.mp-section-visual {
    display: flex;
    justify-content: center;
}

/* GPU Cards Visual */
.mp-gpu-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.mp-gpu-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.mp-gpu-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
}

.mp-gpu-spec {
    font-size: 0.875rem;
    color: #64748b;
}

.mp-gpu-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #06b6d4;
}

/* App Badges */
.mp-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.mp-app-badge {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Apps Preview Grid */
.mp-apps-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.mp-app-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.mp-app-preview-card .icon {
    width: 28px;
    height: 28px;
    color: #a78bfa;
}

.mp-app-preview-card span {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Hardware Preview */
.mp-hardware-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.mp-hardware-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.mp-hardware-category .icon {
    width: 28px;
    height: 28px;
    color: #10b981;
}

.mp-hardware-category span {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Power Highlight */
.mp-power-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: rgba(245,158,11,0.03);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 20px;
}

.mp-power-content {
    max-width: 600px;
    margin: 0 auto;
}

.mp-power-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.mp-power-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mp-power-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
}

.mp-power-stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Hub CTA */
.mp-hub-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-hub-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mp-hub-cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px 0;
}

.mp-hub-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 40px 0;
}

.mp-hub-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hub Responsive */
@media (max-width: 1200px) {
    .mp-hub-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mp-section-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mp-section-split.reverse {
        direction: ltr;
    }

    .mp-section-content {
        max-width: none;
        text-align: center;
    }

    .mp-feature-list {
        align-items: center;
    }

    .mp-section-visual {
        order: -1;
    }

    .mp-power-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .mp-hub-hero {
        padding: 120px 0 60px;
    }

    .mp-hub-hero-container {
        padding: 0 24px;
    }

    .mp-hub-categories {
        grid-template-columns: 1fr;
    }

    .mp-hub-actions {
        flex-direction: column;
    }

    .mp-hub-actions .btn-gold,
    .mp-hub-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .mp-hub-cta-actions {
        flex-direction: column;
    }

    .mp-hub-cta-actions .btn-gold,
    .mp-hub-cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .mp-gpu-cards,
    .mp-apps-preview,
    .mp-hardware-preview {
        max-width: 100%;
    }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.mp-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6,182,212,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mp-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.mp-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #06b6d4;
    padding: 10px 16px;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 4px;
    margin-bottom: 28px;
}

.mp-tag.gold {
    color: #f59e0b;
    background: rgba(245,158,11,0.08);
    border-color: rgba(245,158,11,0.3);
}

.mp-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    margin: 0 0 24px 0;
}

.mp-headline .accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-subhead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 40px 0;
}

/* Search Bar */
.mp-search-wrapper {
    max-width: 600px;
    margin: 0 auto 32px;
}

.mp-search-form {
    display: flex;
    align-items: center;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.mp-search-form .icon {
    width: 20px;
    height: 20px;
    color: #64748b;
    margin-left: 16px;
}

.mp-search-input {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    color: #f1f5f9;
    font-size: 1rem;
}

.mp-search-input::placeholder {
    color: #64748b;
}

.mp-search-input:focus {
    outline: none;
}

.mp-search-btn {
    padding: 16px 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: #030508;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mp-search-btn:hover {
    opacity: 0.9;
}

/* Quick Filter Pills */
.mp-quick-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-filter-pill {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.mp-filter-pill:hover,
.mp-filter-pill.active {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.3);
    color: #06b6d4;
}

.mp-filter-pill.gold {
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.3);
    color: #f59e0b;
}

/* ===========================================
   HERO SECTION - SPLIT LAYOUT
   =========================================== */
.mp-hero-split {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6,182,212,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mp-hero-split .mp-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mp-hero-split .mp-hero-content {
    max-width: none;
    text-align: left;
    margin: 0;
}

/* Hero Props */
.mp-hero-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.mp-hero-prop {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #94a3b8;
}

.mp-hero-prop .icon {
    width: 16px;
    height: 16px;
    color: #06b6d4;
}

/* Hero Actions */
.mp-hero-actions {
    display: flex;
    gap: 16px;
}

/* Right Side - Category Navigation */
.mp-hero-nav {
    background: rgba(15, 22, 32, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.mp-nav-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mp-nav-header .icon {
    width: 16px;
    height: 16px;
}

.mp-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp-nav-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mp-nav-card:hover {
    background: rgba(6,182,212,0.05);
    border-color: rgba(6,182,212,0.2);
    transform: translateX(4px);
}

.mp-nav-card.gold:hover {
    background: rgba(245,158,11,0.05);
    border-color: rgba(245,158,11,0.2);
}

.mp-nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,0.1);
    border-radius: 10px;
    color: #06b6d4;
    flex-shrink: 0;
}

.mp-nav-icon.gold {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

.mp-nav-icon .icon {
    width: 20px;
    height: 20px;
}

.mp-nav-content {
    flex: 1;
}

.mp-nav-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 4px 0;
}

.mp-nav-content p {
    font-size: 0.813rem;
    color: #64748b;
    margin: 0;
}

.mp-nav-arrow {
    width: 16px;
    height: 16px;
    color: #475569;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.mp-nav-card:hover .mp-nav-arrow {
    transform: translateX(4px);
    color: #06b6d4;
}

.mp-nav-card.gold:hover .mp-nav-arrow {
    color: #f59e0b;
}

/* Responsive for Split Hero */
@media (max-width: 1024px) {
    .mp-hero-split .mp-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mp-hero-split .mp-hero-content {
        text-align: center;
    }

    .mp-hero-props {
        justify-content: center;
    }

    .mp-hero-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .mp-hero-split {
        padding: 120px 0 40px;
    }

    .mp-hero-split .mp-hero-container {
        padding: 0 24px;
    }

    .mp-hero-props {
        grid-template-columns: 1fr;
    }

    .mp-hero-actions {
        flex-direction: column;
    }

    .mp-hero-actions .btn-gold,
    .mp-hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .mp-hero-nav {
        padding: 20px;
    }

    .mp-nav-card {
        padding: 12px;
    }

    .mp-nav-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===========================================
   CATEGORY PAGE HERO
   =========================================== */
.mp-category-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(6,182,212,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.mp-category-hero .mp-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.mp-category-hero .mp-hero-content {
    max-width: 700px;
    text-align: left;
}

.mp-category-hero .mp-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Power Hero Variant */
.mp-category-hero.power-hero::before {
    background:
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(245,158,11,0.08) 0%, transparent 50%);
}

@media (max-width: 768px) {
    .mp-category-hero {
        padding: 120px 0 40px;
    }

    .mp-category-hero .mp-hero-container {
        padding: 0 24px;
    }

    .mp-category-hero .mp-hero-content {
        text-align: center;
    }

    .mp-category-hero .mp-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===========================================
   CATEGORIES GRID
   =========================================== */
.mp-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.mp-category-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-category-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-4px);
}

.mp-category-card.gold-border {
    border-color: rgba(245,158,11,0.3);
}

.mp-category-card.gold-border:hover {
    border-color: rgba(245,158,11,0.5);
}

.mp-category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: #06b6d4;
}

.mp-category-card.gold-border .mp-category-icon {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

.mp-category-icon .icon {
    width: 24px;
    height: 24px;
}

.mp-category-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-category-count {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 12px;
}

.mp-category-subcats {
    font-size: 0.8125rem;
    color: #94a3b8;
    flex: 1;
    margin-bottom: 16px;
}

.mp-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #06b6d4;
}

.mp-category-card.gold-border .mp-category-link {
    color: #f59e0b;
}

.mp-category-link .icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.mp-category-card:hover .mp-category-link .icon {
    transform: translateX(4px);
}

/* ===========================================
   PRODUCT GRID & CARDS
   =========================================== */
.mp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mp-products-grid.list-view {
    grid-template-columns: 1fr;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* Section Subtitle - Centered description under section title */
.section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.mp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #06b6d4;
    text-decoration: none;
}

.mp-view-all:hover .icon {
    transform: translateX(4px);
}

.mp-view-all .icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

/* Product Card */
.mp-product-card {
    position: relative;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mp-product-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-4px);
}

.mp-card-link {
    display: block;
    text-decoration: none;
}

.mp-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: #0a1018;
    overflow: hidden;
}

.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.mp-card-image-placeholder .icon {
    width: 48px;
    height: 48px;
}

.mp-card-content {
    padding: 20px;
}

.mp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 8px 0;
    line-height: 1.3;
}

.mp-card-description {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    font-size: 0.75rem;
    color: #64748b;
}

.mp-card-specs li {
    display: inline;
}

.mp-card-specs li:not(:last-child)::after {
    content: ' • ';
}

.mp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* Compare Button */
.mp-compare-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
    z-index: 2;
}

.mp-product-card:hover .mp-compare-btn {
    opacity: 1;
}

.mp-compare-btn:hover {
    background: rgba(6,182,212,0.3);
    border-color: #06b6d4;
}

.mp-compare-btn.active {
    opacity: 1;
    background: #06b6d4;
    border-color: #06b6d4;
    color: #030508;
}

.mp-compare-btn .icon {
    width: 14px;
    height: 14px;
}

/* ===========================================
   BADGES
   =========================================== */
.condition-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.condition-badge.condition-new {
    background: #22c55e;
    color: white;
}

.condition-badge.condition-cpo {
    background: #3b82f6;
    color: white;
}

.condition-badge.condition-openbox {
    background: #f59e0b;
    color: #1a1a1a;
}

.mp-card-image .condition-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.source-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 500;
    border-radius: 4px;
}

.source-badge.source-slyd {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
}

.source-badge.source-partner {
    background: rgba(255,255,255,0.1);
    color: #888;
}

.source-badge.source-decommission {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.availability-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #64748b;
}

.availability-badge.availability-instock .availability-dot {
    background: #22c55e;
}

.availability-badge.availability-leadtime .availability-dot {
    background: #f59e0b;
}

.availability-badge.availability-preorder .availability-dot {
    background: #3b82f6;
}

/* ===========================================
   PRICE DISPLAY
   =========================================== */
.price-display {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
}

.price-note {
    font-size: 0.75rem;
    color: #64748b;
}

.contact-pricing .price-amount {
    font-size: 0.875rem;
    color: #f59e0b;
}

/* ===========================================
   TRUST SECTION
   =========================================== */
.mp-trust-section {
    padding: 48px 0;
    background: #0a1018;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mp-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: #94a3b8;
}

.mp-trust-item .icon {
    width: 20px;
    height: 20px;
    color: #10b981;
}

/* ===========================================
   SELL CTA
   =========================================== */
.mp-sell-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.mp-sell-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-sell-content p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

.mp-sell-actions {
    display: flex;
    gap: 16px;
}

/* ===========================================
   POWER OPPORTUNITIES GRID
   =========================================== */
.mp-power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mp-power-card {
    display: block;
    padding: 28px;
    background: #0f1620;
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-power-card:hover {
    border-color: rgba(245,158,11,0.5);
    transform: translateY(-4px);
}

.mp-power-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mp-power-tag {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(16,185,129,0.15);
    color: #10b981;
    border-radius: 4px;
}

.mp-power-mw {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
}

.mp-power-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-power-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 12px 0;
}

.mp-power-location .icon {
    width: 14px;
    height: 14px;
}

.mp-power-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-power-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    color: #64748b;
}

.mp-power-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mp-power-details .icon {
    width: 14px;
    height: 14px;
}

.mp-power-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f59e0b;
}

.mp-power-link .icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.mp-power-card:hover .mp-power-link .icon {
    transform: translateX(4px);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.mp-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mp-cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px 0;
}

.mp-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 40px 0;
}

.mp-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   CATEGORY LISTING PAGE
   =========================================== */
.mp-breadcrumb-wrapper {
    padding: 24px 0;
    background: #0a1018;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mp-category-layout {
    min-height: 100vh;
    padding: 40px 0;
}

.mp-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.mp-filters-sidebar {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.mp-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mp-filters-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.mp-clear-filters {
    font-size: 0.75rem;
    color: #06b6d4;
    background: none;
    border: none;
    cursor: pointer;
}

.mp-close-filters {
    display: none;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
}

.mp-filter-group {
    margin-bottom: 24px;
}

.mp-filter-group h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mp-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #94a3b8;
    cursor: pointer;
}

.mp-filter-option input {
    accent-color: #06b6d4;
}

.mp-filter-count {
    color: #64748b;
    font-size: 0.75rem;
    margin-left: auto;
}

.mp-price-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mp-price-inputs input {
    width: 100%;
    padding: 10px 12px;
    background: #0a1018;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f1f5f9;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.mp-price-inputs span {
    display: none;
}

.mp-filter-select {
    width: 100%;
    padding: 10px 12px;
    background: #0a1018;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f1f5f9;
    font-size: 0.875rem;
}

.mp-apply-filters {
    width: 100%;
    margin-top: 16px;
}

/* Main Content */
.mp-main-content {
    min-width: 0;
}

.mp-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.mp-header-left h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}

.mp-results-count {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.mp-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f1f5f9;
    cursor: pointer;
}

.mp-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-sort-wrapper label {
    font-size: 0.875rem;
    color: #64748b;
}

.mp-sort-wrapper select {
    padding: 10px 12px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f1f5f9;
    font-size: 0.875rem;
}

.mp-view-toggle {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.mp-view-toggle button {
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.mp-view-toggle button:hover,
.mp-view-toggle button.active {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
}

.mp-view-toggle button .icon {
    width: 16px;
    height: 16px;
}

/* Active Filters */
.mp-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.mp-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #06b6d4;
}

.mp-active-filter button {
    display: flex;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.mp-active-filter button .icon {
    width: 12px;
    height: 12px;
}

/* No Results */
.mp-no-results {
    text-align: center;
    padding: 80px 20px;
}

.mp-no-results .icon {
    width: 64px;
    height: 64px;
    color: #334155;
    margin-bottom: 24px;
}

.mp-no-results h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-no-results p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

/* ===========================================
   PAGINATION
   =========================================== */
.mp-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mp-pagination-info {
    font-size: 0.875rem;
    color: #64748b;
}

.mp-pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-page-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #94a3b8;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.mp-page-btn:hover:not(.disabled) {
    border-color: rgba(6,182,212,0.3);
    color: #06b6d4;
}

.mp-page-btn.active {
    background: rgba(6,182,212,0.1);
    border-color: #06b6d4;
    color: #06b6d4;
}

.mp-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mp-page-btn .icon {
    width: 14px;
    height: 14px;
}

.mp-page-ellipsis {
    padding: 0 8px;
    color: #64748b;
}

/* ===========================================
   COMPARE BAR
   =========================================== */
.mp-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1620;
    border-top: 1px solid rgba(6,182,212,0.3);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    z-index: 100;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.mp-compare-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-compare-items {
    display: flex;
    gap: 12px;
}

.mp-compare-item-mini {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #0a1018;
}

.mp-compare-item-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-compare-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.mp-compare-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
}

.mp-compare-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-compare-count {
    font-size: 0.875rem;
    color: #94a3b8;
}

.mp-compare-clear {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    cursor: pointer;
}

.mp-compare-clear:hover {
    color: #ef4444;
}

/* ===========================================
   PRODUCT DETAIL PAGE
   =========================================== */
.mp-product-detail {
    padding: 40px 0;
}

.mp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

/* Gallery */
.mp-gallery {
    position: sticky;
    top: 100px;
}

.mp-main-image {
    aspect-ratio: 4/3;
    background: #0a1018;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.mp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.mp-image-placeholder .icon {
    width: 96px;
    height: 96px;
}

.mp-thumbnails {
    display: flex;
    gap: 12px;
}

.mp-thumb {
    width: 80px;
    height: 60px;
    background: #0a1018;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.mp-thumb:hover,
.mp-thumb.active {
    border-color: #06b6d4;
}

.mp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.mp-product-info {
    display: flex;
    flex-direction: column;
}

.mp-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.mp-product-info h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.mp-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

.mp-quick-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: #0a1018;
    border-radius: 8px;
}

.mp-spec-item {
    display: flex;
    flex-direction: column;
}

.mp-spec-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 2px;
}

.mp-spec-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
}

.mp-availability-block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.mp-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #64748b;
}

.mp-location .icon {
    width: 14px;
    height: 14px;
}

.mp-price-block {
    margin-bottom: 24px;
}

.mp-price-block .mp-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
}

.mp-price-block .mp-price-note {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.mp-contact-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f59e0b;
}

.mp-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.mp-actions .btn-large {
    padding: 18px 32px;
    font-size: 1rem;
}

.mp-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #06b6d4;
    text-decoration: none;
    margin-bottom: 32px;
}

.mp-phone-link .icon {
    width: 16px;
    height: 16px;
}

.mp-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.875rem;
    color: #94a3b8;
}

.mp-trust-signals span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-trust-signals .icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Tabs */
.mp-tabs {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 64px;
}

.mp-tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mp-tab-btn {
    padding: 20px 32px;
    background: transparent;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.mp-tab-btn:hover {
    color: #94a3b8;
}

.mp-tab-btn.active {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}

.mp-tab-content {
    padding: 32px;
}

.mp-tab-panel h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 20px 0;
}

.mp-tab-panel h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 24px 0 12px 0;
}

.mp-tab-panel p,
.mp-tab-panel ul,
.mp-tab-panel li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
}

.mp-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.mp-specs-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mp-specs-table th,
.mp-specs-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.9375rem;
}

.mp-specs-table th {
    color: #64748b;
    font-weight: 500;
    width: 40%;
}

.mp-specs-table td {
    color: #f1f5f9;
}

/* Related Products */
.mp-related h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 32px 0;
}

/* Detail CTA */
.mp-detail-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

/* ===========================================
   COMPARE PAGE
   =========================================== */
.mp-compare-page {
    padding: 40px 0 100px;
}

.mp-compare-header {
    text-align: center;
    margin-bottom: 48px;
}

.mp-compare-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-compare-header p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 16px 0;
}

.mp-clear-all {
    font-size: 0.875rem;
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
}

.mp-compare-empty {
    text-align: center;
    padding: 80px 20px;
}

.mp-compare-empty .icon {
    width: 64px;
    height: 64px;
    color: #334155;
    margin-bottom: 24px;
}

.mp-compare-empty h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-compare-empty p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

.mp-compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}

.mp-compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.mp-compare-feature-col {
    width: 200px;
}

.mp-compare-product-col {
    width: 250px;
    position: relative;
    text-align: center;
    padding: 24px;
    background: #0f1620;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.mp-compare-product-col:first-of-type {
    border-left: none;
}

.mp-compare-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
}

.mp-compare-remove:hover {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.mp-compare-thumb {
    width: 100px;
    height: 75px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 12px;
}

.mp-compare-thumb-placeholder {
    width: 100px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a1018;
    border-radius: 8px;
    margin: 0 auto 12px;
    color: #334155;
}

.mp-compare-product-col h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-compare-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 12px 0;
}

.mp-compare-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #06b6d4;
    text-decoration: none;
}

.mp-compare-add-col {
    width: 200px;
    text-align: center;
    vertical-align: middle;
    background: #0a1018;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.mp-compare-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    padding: 40px;
}

.mp-compare-add:hover {
    color: #06b6d4;
}

.mp-compare-section td {
    background: #0a1018;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f59e0b;
    padding: 12px 16px;
}

.mp-compare-table tbody tr:not(.mp-compare-section) td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9375rem;
}

.mp-compare-table tbody tr:not(.mp-compare-section) td:first-child {
    color: #64748b;
    font-weight: 500;
}

.mp-compare-table tbody tr:not(.mp-compare-section) td:not(:first-child) {
    color: #f1f5f9;
    text-align: center;
    background: #0f1620;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.mp-highlight-good {
    color: #10b981 !important;
}

.mp-compare-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===========================================
   SEARCH PAGE
   =========================================== */
.mp-search-page {
    padding: 40px 0;
    min-height: 80vh;
}

.mp-search-header {
    text-align: center;
    margin-bottom: 48px;
}

.mp-search-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 32px 0;
}

.mp-search-form-large {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.mp-search-form-large .icon {
    width: 20px;
    height: 20px;
    color: #64748b;
    margin-left: 20px;
}

.mp-search-form-large input {
    flex: 1;
    padding: 18px 16px;
    background: transparent;
    border: none;
    color: #f1f5f9;
    font-size: 1rem;
}

.mp-search-form-large input:focus {
    outline: none;
}

.mp-search-form-large button {
    padding: 18px 32px;
}

.mp-search-count {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 24px;
}

.mp-search-categories {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mp-search-categories span {
    font-size: 0.875rem;
    color: #64748b;
}

.mp-search-suggestions,
.mp-popular-searches {
    text-align: left;
    max-width: 400px;
    margin: 24px auto;
}

.mp-search-suggestions h3,
.mp-popular-searches h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-search-suggestions ul {
    list-style: disc;
    padding-left: 20px;
    color: #94a3b8;
}

.mp-search-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mp-search-tags a {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.mp-search-tags a:hover {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.3);
    color: #06b6d4;
}

.mp-search-browse {
    text-align: center;
    padding: 40px 0;
}

.mp-search-browse h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 32px 0;
}

.mp-browse-categories {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.mp-browse-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 140px;
}

.mp-browse-category:hover {
    border-color: rgba(6,182,212,0.3);
    color: #06b6d4;
}

.mp-browse-category .icon {
    width: 32px;
    height: 32px;
}

/* ===========================================
   COMPUTE MARKETPLACE STYLES
   =========================================== */

/* GPU Grid */
.compute-gpu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.compute-gpu-card {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.compute-gpu-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-4px);
}

.compute-gpu-header {
    margin-bottom: 20px;
}

.compute-gpu-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 12px;
}

.compute-gpu-badge.flagship {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.compute-gpu-badge.newest {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.compute-gpu-badge.popular {
    background: rgba(16,185,129,0.15);
    color: #10b981;
}

.compute-gpu-badge.inference {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.compute-gpu-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 6px 0;
}

.compute-gpu-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.compute-gpu-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.compute-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compute-spec-label {
    font-size: 0.8125rem;
    color: #64748b;
}

.compute-spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
}

.compute-gpu-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex: 1;
}

.compute-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

.compute-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #06b6d4;
}

.compute-deploy-btn {
    width: 100%;
    justify-content: center;
}

.compute-more-gpus {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}

.compute-more-gpus p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 20px 0;
}

/* Benefits Grid */
.compute-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compute-benefit-card {
    padding: 32px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.compute-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: #06b6d4;
}

.compute-benefit-icon.secondary {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

.compute-benefit-icon.tertiary {
    background: rgba(139,92,246,0.1);
    color: #a78bfa;
}

.compute-benefit-icon.quaternary {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.compute-benefit-icon .icon {
    width: 24px;
    height: 24px;
}

.compute-benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.compute-benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Use Cases Grid */
.compute-usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.compute-usecase-card {
    padding: 32px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.compute-usecase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.compute-usecase-header .icon {
    width: 24px;
    height: 24px;
    color: #f59e0b;
}

.compute-usecase-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.compute-usecase-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 16px 0;
}

.compute-usecase-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compute-usecase-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
    padding: 6px 0;
}

.compute-usecase-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Comparison Section */
.compute-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.compute-comparison-card {
    padding: 40px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.compute-comparison-card.rent {
    border-color: rgba(6,182,212,0.3);
}

.compute-comparison-card.buy {
    border-color: rgba(245,158,11,0.3);
}

.compute-comparison-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 24px 0;
}

.compute-comparison-card.rent h3 .icon {
    color: #06b6d4;
}

.compute-comparison-card.buy h3 .icon {
    color: #f59e0b;
}

.compute-comparison-card h3 .icon {
    width: 28px;
    height: 28px;
}

.compute-comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.compute-comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #94a3b8;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compute-comparison-card li:last-child {
    border-bottom: none;
}

.compute-comparison-card li .icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.compute-comparison-card .btn-gold,
.compute-comparison-card .btn-outline {
    width: 100%;
    justify-content: center;
}

.compute-comparison-note {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.compute-comparison-note a {
    color: #06b6d4;
    text-decoration: none;
}

.compute-comparison-note a:hover {
    text-decoration: underline;
}

/* FAQ Grid */
.compute-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.compute-faq-item {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.compute-faq-item summary {
    padding: 20px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.compute-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #64748b;
    transition: transform 0.2s;
}

.compute-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.compute-faq-item p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

/* ===========================================
   PREMIUM SERVER CARDS (Compute Marketplace)
   =========================================== */

/* CSS Custom Properties for Server Cards */
.slyd-server-cards {
    --card-bg-primary: #171717;
    --card-bg-secondary: #262626;
    --card-bg-specs: rgba(38, 38, 38, 0.5);
    --card-border: #262626;
    --card-border-hover: #404040;
    --server-text-primary: #ffffff;
    --server-text-secondary: #a3a3a3;
    --server-text-tertiary: #737373;
    --server-text-muted: #525252;
    --server-accent-primary: #10b981;
    --accent-gradient-from: rgba(139, 92, 246, 0.05);
    --accent-gradient-to: rgba(59, 130, 246, 0.05);
    --server-button-bg: #ffffff;
    --server-button-text: #171717;
    --server-button-hover: #f5f5f5;
    --card-padding: 1.5rem;
    --card-padding-sm: 1rem;
    --card-radius: 0.75rem;
    --card-radius-sm: 0.5rem;
    --card-gap: 1rem;
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Server Card Grid */
.slyd-server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 48px;
}

/* Server Card Base */
.slyd-server-card {
    position: relative;
    background: linear-gradient(to bottom right, var(--card-bg-primary), var(--card-bg-primary), var(--card-bg-secondary));
    border-radius: var(--card-radius);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.slyd-server-card:hover {
    border-color: var(--card-border-hover);
}

/* Ambient Glow Effect */
.slyd-server-card__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--accent-gradient-from), transparent, var(--accent-gradient-to));
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.slyd-server-card:hover .slyd-server-card__glow {
    opacity: 1;
}

/* Card Content Layer */
.slyd-server-card__content {
    position: relative;
    z-index: 1;
}

/* Header Section */
.slyd-server-card__header {
    padding: 1.25rem var(--card-padding) var(--card-padding);
}

.slyd-server-card__status-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Status Indicator */
.slyd-server-card__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.slyd-server-card__status-glow {
    position: absolute;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: var(--server-accent-primary);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(4px);
}

.slyd-server-card__status--available .slyd-server-card__status-glow {
    background-color: #10b981;
}

.slyd-server-card__status--limited .slyd-server-card__status-glow {
    background-color: #f59e0b;
}

.slyd-server-card__status--unavailable .slyd-server-card__status-glow {
    background-color: #ef4444;
}

.slyd-server-card__status-icon {
    width: 1rem;
    height: 1rem;
    color: var(--server-accent-primary);
    position: relative;
    z-index: 1;
}

.slyd-server-card__status--available .slyd-server-card__status-icon {
    color: #10b981;
}

.slyd-server-card__status--limited .slyd-server-card__status-icon {
    color: #f59e0b;
}

.slyd-server-card__status--unavailable .slyd-server-card__status-icon {
    color: #ef4444;
}

.slyd-server-card__status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--server-accent-primary);
    letter-spacing: 0.05em;
}

.slyd-server-card__status--available .slyd-server-card__status-text {
    color: #10b981;
}

.slyd-server-card__status--limited .slyd-server-card__status-text {
    color: #f59e0b;
}

.slyd-server-card__status--unavailable .slyd-server-card__status-text {
    color: #ef4444;
}

/* Tier Badge */
.slyd-server-card__tier {
    padding: 0.375rem 0.625rem;
    background: rgba(38, 38, 38, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border-hover);
    border-radius: var(--card-radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--server-text-secondary);
}

.slyd-server-card__tier--1 {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.slyd-server-card__tier--2 {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.slyd-server-card__tier--3 {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Title & Category */
.slyd-server-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--server-text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.slyd-server-card__category {
    font-size: 0.875rem;
    color: var(--server-text-secondary);
    margin: 0;
}

/* Specs Section */
.slyd-server-card__specs-container {
    padding: 0 var(--card-padding) 1.25rem;
}

.slyd-server-card__specs-grid {
    background: var(--card-bg-specs);
    backdrop-filter: blur(8px);
    border-radius: var(--card-radius-sm);
    padding: 1rem;
    border: 1px solid rgba(64, 64, 64, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.slyd-server-card__spec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slyd-server-card__spec-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--server-text-tertiary);
    font-weight: 600;
}

.slyd-server-card__spec-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--server-text-primary);
}

/* Location Section */
.slyd-server-card__location {
    padding: 0 var(--card-padding) 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--server-text-secondary);
}

.slyd-server-card__location-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--server-text-tertiary);
}

.slyd-server-card__location-divider {
    color: var(--server-text-muted);
}

.slyd-server-card__location-latency {
    color: var(--server-accent-primary);
}

/* Divider */
.slyd-server-card__divider {
    margin: 0 var(--card-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--card-border-hover), transparent);
}

/* Footer Section */
.slyd-server-card__footer {
    padding: 1.25rem var(--card-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slyd-server-card__price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slyd-server-card__price-label {
    font-size: 0.75rem;
    color: var(--server-text-tertiary);
}

.slyd-server-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.slyd-server-card__price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--server-text-primary);
}

.slyd-server-card__price-unit {
    font-size: 0.875rem;
    color: var(--server-text-secondary);
}

/* Deploy Button */
.slyd-server-card__button {
    padding: 0.75rem 1.5rem;
    background: var(--server-button-bg);
    color: var(--server-button-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--card-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.slyd-server-card__button:hover:not(:disabled) {
    background: var(--server-button-hover);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
}

.slyd-server-card__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slyd-server-card__button-icon {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.slyd-server-card__button:hover:not(:disabled) .slyd-server-card__button-icon {
    transform: translateX(2px);
}

/* Loading State */
.slyd-server-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: #94a3b8;
}

.slyd-server-loading .icon {
    width: 48px;
    height: 48px;
    color: #10b981;
}

/* Empty State */
.slyd-server-empty {
    text-align: center;
    padding: 60px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.slyd-server-empty .icon {
    width: 48px;
    height: 48px;
    color: #64748b;
    margin-bottom: 16px;
}

.slyd-server-empty p {
    color: #94a3b8;
    margin: 0;
}

/* View Toggle */
.compute-view-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    margin-bottom: 32px;
}

.compute-view-toggle button {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    cursor: pointer;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compute-view-toggle button:hover {
    color: #f1f5f9;
}

.compute-view-toggle button.active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.compute-view-toggle button .icon {
    width: 16px;
    height: 16px;
}

/* Section Header with View Toggle */
.section-header-with-toggle {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.section-header-with-toggle .section-header {
    margin-bottom: 0;
}

/* Server Cards Responsive */
@media (max-width: 768px) {
    .slyd-server-grid {
        grid-template-columns: 1fr;
    }

    .slyd-server-card__specs-grid {
        grid-template-columns: 1fr;
    }

    .slyd-server-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .slyd-server-card__button {
        width: 100%;
        justify-content: center;
    }

    .section-header-with-toggle {
        flex-direction: column;
    }

    .compute-view-toggle {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slyd-server-card__title {
        font-size: 1.25rem;
    }

    .slyd-server-card__price-amount {
        font-size: 1.5rem;
    }
}

/* Compute Responsive */
@media (max-width: 1200px) {
    .compute-gpu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .compute-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compute-usecases-grid {
        grid-template-columns: 1fr;
    }

    .compute-comparison {
        grid-template-columns: 1fr;
    }
}

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

    .compute-benefits-grid {
        grid-template-columns: 1fr;
    }

    .compute-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   APPS MARKETPLACE STYLES
   =========================================== */

/* Apps Loading State */
.apps-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: #94a3b8;
}

.apps-loading i,
.apps-loading svg {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #06b6d4;
}

.apps-loading p {
    font-size: 1.125rem;
    margin: 0;
}

/* Featured Apps Grid */
.apps-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.apps-featured-card {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.apps-featured-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-4px);
}

.apps-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.apps-card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.apps-card-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,0.1);
    border-radius: 10px;
    color: #06b6d4;
}

.apps-card-icon-wrapper .icon {
    width: 24px;
    height: 24px;
}

.apps-card-badge {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.apps-card-badge.popular {
    background: rgba(16,185,129,0.15);
    color: #10b981;
}

.apps-card-badge.trending {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.apps-card-badge.new {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.apps-featured-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 10px 0;
}

.apps-featured-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 16px 0;
    flex: 1;
}

.apps-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.apps-card-tags span {
    padding: 4px 10px;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #64748b;
}

.apps-card-footer {
    margin-top: auto;
}

.apps-deploy-btn {
    width: 100%;
    justify-content: center;
}

/* Category Grid */
.apps-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.apps-category-card {
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.apps-category-card:hover {
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-2px);
}

.apps-mini-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 12px;
}

.apps-placeholder-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(6,182,212,0.1);
    border-radius: 8px;
    color: #06b6d4;
}

.apps-placeholder-icon .icon {
    width: 20px;
    height: 20px;
}

.apps-category-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 4px 0;
}

.apps-category-card p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* Two Column Layout */
.apps-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.apps-col .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.apps-col .section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apps-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.apps-list-item:hover {
    border-color: rgba(6,182,212,0.3);
}

.apps-list-item > .icon {
    width: 24px;
    height: 24px;
    color: #06b6d4;
    flex-shrink: 0;
}

.apps-list-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 2px 0;
}

.apps-list-item p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

/* Benefits Grid */
.apps-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.apps-benefit-card {
    padding: 32px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-align: center;
}

.apps-benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,0.1);
    border-radius: 12px;
    margin: 0 auto 20px;
    color: #06b6d4;
}

.apps-benefit-icon.secondary {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

.apps-benefit-icon.tertiary {
    background: rgba(139,92,246,0.1);
    color: #a78bfa;
}

.apps-benefit-icon.quaternary {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.apps-benefit-icon .icon {
    width: 24px;
    height: 24px;
}

.apps-benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.apps-benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Custom Apps CTA */
.apps-custom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.apps-custom-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.apps-custom-content p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

.apps-custom-actions {
    display: flex;
    gap: 16px;
}

/* Apps Responsive */
@media (max-width: 1200px) {
    .apps-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .apps-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .apps-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .apps-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apps-custom-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

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

    .apps-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-benefits-grid {
        grid-template-columns: 1fr;
    }

    .apps-custom-actions {
        flex-direction: column;
        width: 100%;
    }

    .apps-custom-actions .btn-gold,
    .apps-custom-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   POWER OPPORTUNITIES LIST
   =========================================== */
.mp-power-list-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

.mp-power-list-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin: 16px 0;
}

.mp-power-list-hero p {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0;
}

.mp-power-filters {
    padding: 24px 0;
    background: #0a1018;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 40px;
}

.mp-filter-row {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.mp-filter-row .mp-filter-group {
    margin-bottom: 0;
}

.mp-filter-row .mp-filter-group label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}

.mp-filter-row .mp-filter-group select,
.mp-filter-row .mp-filter-group input {
    padding: 12px 16px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f1f5f9;
    font-size: 0.875rem;
    min-width: 150px;
}

.mp-power-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mp-power-list-card {
    display: block;
    background: #0f1620;
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-power-list-card:hover {
    border-color: rgba(245,158,11,0.5);
    transform: translateY(-4px);
}

.mp-power-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mp-power-status {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.mp-power-status.ready-now {
    background: rgba(16,185,129,0.15);
    color: #10b981;
}

.mp-power-status.in-development {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.mp-power-status.planning {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.mp-power-list-image {
    height: 200px;
    background: #0a1018;
}

.mp-power-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-power-list-content {
    padding: 24px;
}

.mp-power-list-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.mp-power-list-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 12px 0;
}

.mp-power-list-desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-power-list-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    color: #64748b;
}

.mp-power-list-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mp-has-fiber {
    color: #10b981 !important;
}

.mp-power-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.mp-power-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
}

.mp-power-contact {
    font-size: 0.875rem;
    color: #f59e0b;
}

.mp-power-structure {
    font-size: 0.8125rem;
    color: #64748b;
}

.mp-power-list-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f59e0b;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.mp-power-list-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

/* ===========================================
   POWER OPPORTUNITY DETAIL
   =========================================== */
.mp-power-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f1620 0%, #0a1018 100%);
}

.mp-power-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mp-power-listing-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    border-radius: 4px;
    margin-bottom: 16px;
}

.mp-power-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px 0;
}

.mp-power-location-large {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0 0 32px 0;
}

.mp-power-key-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.mp-power-stat {
    display: flex;
    flex-direction: column;
}

.mp-power-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
}

.mp-power-stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.mp-power-actions {
    display: flex;
    gap: 16px;
}

.mp-power-hero-media {
    aspect-ratio: 4/3;
    background: #0a1018;
    border-radius: 12px;
    overflow: hidden;
}

.mp-power-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-power-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #334155;
}

.mp-power-map-placeholder .icon {
    width: 64px;
    height: 64px;
}

/* Detail Cards */
.mp-power-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mp-detail-card {
    padding: 28px;
    background: #0f1620;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.mp-detail-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 20px 0;
}

.mp-detail-card h3 .icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.mp-detail-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 0;
}

.mp-detail-card dt {
    font-size: 0.8125rem;
    color: #64748b;
}

.mp-detail-card dd {
    font-size: 0.9375rem;
    color: #f1f5f9;
    margin: 0;
    text-align: right;
}

.mp-status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.mp-status-badge.ready-now {
    background: rgba(16,185,129,0.15);
    color: #10b981;
}

.mp-status-badge.in-development {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.mp-status-badge.planning {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.mp-asking-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.mp-asking-label {
    font-size: 0.8125rem;
    color: #64748b;
}

.mp-asking-amount {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 4px;
}

.mp-contact-pricing {
    margin-top: 20px;
    padding: 16px;
    background: rgba(245,158,11,0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9375rem;
    color: #f59e0b;
}

.mp-facilities-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
}

.mp-power-description {
    max-width: 900px;
    margin: 0 auto;
}

.mp-power-description h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 24px 0;
}

.mp-description-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
}

.mp-description-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 32px 0 16px 0;
}

.mp-power-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mp-power-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

.mp-power-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1018 0%, #050a12 100%);
}

/* ===========================================
   NOT FOUND
   =========================================== */
.mp-not-found {
    text-align: center;
    padding: 120px 20px;
}

.mp-not-found .icon {
    width: 64px;
    height: 64px;
    color: #f59e0b;
    margin-bottom: 24px;
}

.mp-not-found h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px 0;
}

.mp-not-found p {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0 0 32px 0;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #030508;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 40px rgba(245,158,11,0.15);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(245,158,11,0.25);
}

.btn-gold .icon {
    width: 16px;
    height: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    background: rgba(6,182,212,0.05);
}

.btn-outline .icon {
    width: 16px;
    height: 16px;
}

.btn-large {
    padding: 18px 32px;
    font-size: 1rem;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
    .mp-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-power-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-layout-grid {
        grid-template-columns: 260px 1fr;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .mp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-gallery {
        position: static;
    }

    .mp-power-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-power-details-grid {
        grid-template-columns: 1fr;
    }

    .mp-layout-grid {
        grid-template-columns: 1fr;
    }

    .mp-filters-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        border-radius: 0;
        overflow-y: auto;
    }

    .mp-filters-sidebar.show {
        display: block;
    }

    .mp-close-filters {
        display: block;
    }

    .mp-mobile-filter-btn {
        display: flex;
    }

    .mp-sell-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .mp-compare-table-wrapper {
        margin: 0 -24px;
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .mp-hero-container,
    .section .container,
    .mp-cta-content {
        padding: 0 24px;
    }

    .mp-headline {
        font-size: 2rem;
    }

    .mp-categories-grid {
        grid-template-columns: 1fr;
    }

    .mp-products-grid {
        grid-template-columns: 1fr;
    }

    .mp-power-grid,
    .mp-power-list-grid {
        grid-template-columns: 1fr;
    }

    .mp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-quick-specs {
        grid-template-columns: 1fr;
    }

    .mp-actions {
        flex-direction: column;
    }

    .mp-actions .btn-large {
        width: 100%;
        justify-content: center;
    }

    .mp-power-key-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .mp-power-actions {
        flex-direction: column;
    }

    .mp-pagination {
        flex-direction: column;
        gap: 16px;
    }

    .mp-browse-categories {
        flex-wrap: wrap;
    }

    .mp-browse-category {
        min-width: calc(50% - 12px);
    }

    .mp-filter-row {
        flex-direction: column;
        gap: 16px;
    }

    .mp-filter-row .mp-filter-group {
        width: 100%;
    }

    .mp-filter-row .mp-filter-group select,
    .mp-filter-row .mp-filter-group input {
        width: 100%;
    }

    .mp-power-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mp-trust-grid {
        grid-template-columns: 1fr;
    }

    .mp-compare-bar-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .mp-compare-items {
        justify-content: center;
    }

    .mp-compare-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===========================================
   COMPUTE MARKETPLACE - DYNAMIC DATA STATES
   =========================================== */

/* Hero Nav Loading/Empty States */
.mp-nav-loading,
.mp-nav-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    color: #94a3b8;
    font-size: 0.9375rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.mp-nav-loading i {
    color: #06b6d4;
}

/* Compute Section Loading State */
.compute-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: #94a3b8;
}

.compute-loading i {
    font-size: 48px;
    color: #06b6d4;
}

.compute-loading p {
    font-size: 1.125rem;
    margin: 0;
}

/* Compute Section Error State */
.compute-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    text-align: center;
}

.compute-error i {
    font-size: 48px;
    color: #ef4444;
}

.compute-error p {
    font-size: 1rem;
    color: #f1f5f9;
    margin: 0;
}

/* Compute Section Empty State */
.compute-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: #64748b;
    text-align: center;
}

.compute-empty i {
    font-size: 48px;
    opacity: 0.5;
}

.compute-empty p {
    font-size: 1.125rem;
    margin: 0;
}

/* GPU Availability Badge */
.compute-gpu-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #10b981;
}

.compute-gpu-availability i {
    font-size: 14px;
}

/* Additional badge variants */
.compute-gpu-badge.consumer {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.compute-gpu-badge.professional {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.compute-gpu-badge.default {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

/* More GPUs section update */
.compute-more-gpus {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compute-more-gpus p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.compute-more-gpus .btn-outline {
    margin: 0 8px;
}

/* ===========================================
   CATEGORY INTRODUCTION STYLES (SEO CONTENT)
   =========================================== */

.category-intro {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(10, 16, 24, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.category-intro-content {
    max-width: 900px;
}

.category-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.category-intro h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.category-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.category-intro ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: none;
}

.category-intro ul li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    color: #94a3b8;
    line-height: 1.6;
}

.category-intro ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #06b6d4;
    font-weight: bold;
}

.category-intro strong {
    color: #f1f5f9;
    font-weight: 600;
}

.category-intro a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.2s;
}

.category-intro a:hover {
    color: #22d3ee;
    text-decoration: underline;
}

/* Guide Points Grid */
.category-intro .guide-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.category-intro .guide-point {
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.category-intro .guide-point:hover {
    border-color: rgba(6, 182, 212, 0.2);
}

.category-intro .guide-point h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.category-intro .guide-point p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: #cbd5e1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-intro {
        padding: 32px 0;
    }

    .category-intro h2 {
        font-size: 1.5rem;
    }

    .category-intro h3 {
        font-size: 1.125rem;
        margin-top: 1.5rem;
    }

    .category-intro .guide-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-intro .guide-point {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .category-intro h2 {
        font-size: 1.375rem;
    }

    .category-intro p,
    .category-intro ul li {
        font-size: 0.9375rem;
    }
}

/* ============================================
   Category Intro V2 - Enhanced Design
   ============================================ */

.category-intro-v2 {
    padding: 64px 0 80px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(10, 16, 24, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Intro Header - Centered */
.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #06b6d4;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intro-tag svg {
    width: 14px;
    height: 14px;
}

.intro-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.intro-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto;
}

/* Intro Sections */
.intro-section {
    margin-bottom: 48px;
}

.intro-section:last-child {
    margin-bottom: 0;
}

.intro-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 12px;
    text-align: center;
}

.intro-section-title svg {
    width: 20px;
    height: 20px;
    color: #06b6d4;
}

.intro-section-desc {
    text-align: center;
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid - 5 columns on desktop */
.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.intro-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.intro-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 10px;
    margin: 0 auto 16px auto;
    color: #06b6d4;
}

.intro-card-icon svg {
    width: 22px;
    height: 22px;
}

.intro-card-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.intro-card-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.intro-card-icon.gold {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.intro-card-icon.red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.intro-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.intro-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Features Grid - 2x2 */
.intro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-feature {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.intro-feature:hover {
    border-color: rgba(6, 182, 212, 0.2);
}

.intro-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.intro-feature-header svg {
    width: 20px;
    height: 20px;
    color: #06b6d4;
}

.intro-feature-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.intro-feature p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

/* Why SLYD - Split Layout */
.intro-why-slyd {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
}

.intro-why-content .intro-section-title {
    justify-content: flex-start;
    text-align: left;
}

.intro-why-content .intro-section-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.intro-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.intro-checklist li:last-child {
    border-bottom: none;
}

.intro-checklist li svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.intro-checklist li strong {
    color: #f1f5f9;
    font-weight: 600;
}

/* CTA Card */
.intro-cta-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.intro-cta-card > svg {
    width: 40px;
    height: 40px;
    color: #06b6d4;
    margin-bottom: 16px;
}

.intro-cta-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.intro-cta-card p {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #f1f5f9;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-sm:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
}

.btn-outline-sm svg {
    width: 14px;
    height: 14px;
}

/* Responsive - Category Intro V2 */
@media (max-width: 1200px) {
    .intro-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-cards-grid .intro-card:nth-child(4),
    .intro-cards-grid .intro-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .intro-why-slyd {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-cta-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .category-intro-v2 {
        padding: 48px 0 56px 0;
    }

    .intro-header {
        margin-bottom: 36px;
    }

    .intro-header h2 {
        font-size: 1.5rem;
    }

    .intro-lead {
        font-size: 1rem;
    }

    .intro-section {
        margin-bottom: 36px;
    }

    .intro-section-title {
        font-size: 1.25rem;
    }

    .intro-why-slyd {
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .intro-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .intro-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .intro-card-icon {
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
    }

    .intro-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .intro-card h4 {
        margin-bottom: 4px;
    }

    .intro-card p {
        font-size: 0.8125rem;
    }

    .intro-feature {
        padding: 20px;
    }
}

/* ===========================================
   MARKETPLACE OVERVIEW SECTION (Content-Intro)
   =========================================== */
.content-intro {
    max-width: 1100px;
    margin: 0 auto;
}

.content-intro.centered {
    text-align: center;
}

.content-intro-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-intro-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* Overview Grid */
.mp-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
    text-align: left;
}

.mp-overview-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.mp-overview-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mp-overview-icon svg {
    width: 24px;
    height: 24px;
}

.mp-overview-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.mp-overview-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.mp-overview-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.mp-overview-icon.gold { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.mp-overview-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.mp-overview-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 16px;
    flex-grow: 1;
}

.mp-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #06b6d4;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.mp-overview-link:hover {
    gap: 10px;
}

.mp-overview-link svg {
    width: 14px;
    height: 14px;
}

/* Trust Signals */
.mp-trust-signals {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.mp-trust-signals h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 24px;
    text-align: center;
}

.mp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.mp-trust-item > svg {
    width: 20px;
    height: 20px;
    color: #06b6d4;
    margin-top: 2px;
    flex-shrink: 0;
}

.mp-trust-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.mp-trust-item span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #94a3b8;
}

@media (max-width: 1200px) {
    .mp-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mp-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .mp-overview-grid {
        grid-template-columns: 1fr;
    }
}
