/* ================================
   FASTPANEL - DESIGN PROFESSIONNEL 2024
   Style épuré, moderne et corporate
   ================================ */

/* Variables CSS */
:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;

    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-200: #bfdbfe;
    --blue-100: #dbeafe;

    --green-500: #22c55e;
    --green-400: #4ade80;

    --orange-500: #f97316;
    --orange-400: #fb923c;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* NAVIGATION BAR */
.navigation-bar,
.sticky-wrapper {
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
}

.header-top-area {
    z-index: 1 !important;
    position: relative !important;
}

/* ================================
   BASE & TYPOGRAPHY
   ================================ */

* {
    box-sizing: border-box;
}

/* ================================
   HERO SECTION - PROFESSIONNEL
   ================================ */

.hero-ultra-modern {
    background: linear-gradient(135deg, var(--primary-900) 0%, #0c1929 50%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Fondu en bas du hero vers la section suivante */
.hero-ultra-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(15, 23, 42, 0.3) 30%,
        rgba(15, 23, 42, 0.7) 60%,
        var(--primary-900) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Indication de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-300);
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--blue-400);
    text-decoration: none;
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover .scroll-arrow {
    border-color: var(--blue-400);
    background: rgba(59, 130, 246, 0.1);
}

.scroll-arrow i {
    font-size: 14px;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Background subtil */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
}

/* Particules très subtiles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--blue-400);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 3s; }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 6s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 9s; }
.particle:nth-child(5) { top: 15%; left: 50%; animation-delay: 12s; }
.particle:nth-child(6) { top: 80%; left: 85%; animation-delay: 15s; }
.particle:nth-child(7) { top: 45%; left: 30%; animation-delay: 8s; }
.particle:nth-child(8) { top: 85%; left: 40%; animation-delay: 11s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
}

.gradient-orbs,
.orb {
    display: none;
}

/* Hero Content */
.hero-content-ultra {
    position: relative;
    z-index: 2;
}

/* Badge Hero */
.hero-badge-premium {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-badge-premium .badge-glow {
    display: none;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-text {
    color: var(--blue-300);
    font-size: 14px;
    font-weight: 500;
}

.badge-text strong {
    color: var(--white);
}

/* Titre Hero */
.hero-title-ultra {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: var(--white);
}

.title-line-2 {
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    color: var(--blue-400);
}

/* Sous-titre Hero */
.hero-subtitle-ultra {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--primary-300);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-subtitle-ultra strong {
    color: var(--white);
    font-weight: 600;
}

/* Métriques Hero */
.hero-metrics {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-metrics .metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
}

.hero-metrics .metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.hero-metrics .metric-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.hero-metrics .metric-info {
    display: flex;
    flex-direction: column;
}

.hero-metrics .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-metrics .metric-label {
    font-size: 0.875rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* Actions Hero */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-ultra {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary-ultra:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-primary-ultra .btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-primary-ultra .btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-primary-ultra .btn-title {
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary-ultra .btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-primary-ultra .btn-arrow {
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.btn-primary-ultra:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.btn-secondary-ultra {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary-ultra:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* Garanties Hero */
.hero-guarantees {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.guarantee-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.guarantee-item i {
    color: var(--green-400);
    font-size: 14px;
}

/* ================================
   HERO VISUAL - DASHBOARD MOCKUP
   ================================ */

.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.mockup-header {
    background: var(--primary-900);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-title {
    font-weight: 600;
    color: var(--primary-300);
    font-size: 13px;
}

.mockup-content {
    padding: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

.stat-icon.cpu { background: var(--blue-500); }
.stat-icon.ram { background: var(--green-500); }

.stat-info {
    flex: 1;
}

.stat-label {
    color: var(--primary-400);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.stat-value {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.service-item:hover,
.service-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-status.online {
    background: var(--green-400);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.service-status.maintenance {
    background: var(--orange-400);
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
}

.mockup-content .service-info {
    flex: 1;
    min-width: 0;
}

.service-name {
    color: var(--white);
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.service-uptime {
    color: var(--primary-400);
    font-size: 11px;
}

.service-action {
    color: var(--primary-500);
    font-size: 14px;
}

/* Floating Cards - Plus subtils */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: floatCard 8s ease-in-out infinite;
}

.floating-card i {
    color: var(--blue-400);
}

.card-1 { top: 10%; right: -10px; animation-delay: 0s; }
.card-2 { bottom: 40%; left: -15px; animation-delay: 2s; }
.card-3 { top: 50%; right: -20px; animation-delay: 4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================
   SECTION PREUVE SOCIALE
   ================================ */

.social-proof-section {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-900) 100%);
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.proof-badge:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.proof-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.proof-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.proof-trust-text {
    text-align: center;
    color: var(--primary-400);
    font-size: 14px;
    margin: 0;
}

/* ================================
   SECTION SERVICES
   ================================ */

.modern-services {
    background: var(--primary-900);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.premium-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-400);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.premium-badge .badge-glow {
    display: none;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.gradient-text-modern {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    margin: 16px auto;
    border-radius: 2px;
}

.section-subtitle-modern {
    color: var(--primary-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.service-stats-mini {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
    margin-bottom: 4px;
}

.mini-label {
    font-size: 0.875rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* Service Cards */
.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Equal height cards on desktop - dynamic */
@media (min-width: 992px) {
    .modern-services .row.justify-content-center {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch !important;
    }

    .modern-services .row.justify-content-center > [class*="col-"] {
        display: flex !important;
    }

    .service-card-modern {
        width: 100%;
    }

    /* Tags container takes available space (space goes below tags, not stretching them) */
    .service-card-modern .service-games,
    .service-card-modern .service-specs,
    .service-card-modern .service-technologies {
        flex-grow: 1;
        align-content: flex-start;
    }

    /* Separator line above features */
    .service-card-modern .service-features-modern {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.service-card-modern:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

/* Service Featured (Gaming) */
.service-featured {
    border: 2px solid var(--green-400);
    box-shadow: var(--shadow-lg);
}

.service-featured:hover {
    border-color: var(--green-500);
}

/* Service Coming Soon */
.service-coming-soon {
    opacity: 0.7;
}

.service-coming-soon:hover {
    opacity: 0.85;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    position: relative;
}

.service-icon-modern .icon-bg-effect {
    display: none;
}

.gaming-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
}

.vps-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
}

.web-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 100%);
}

.service-popularity {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-300);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-400);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.service-badge.pro {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    color: var(--white);
}

.service-card-modern h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    color: var(--primary-300);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-games,
.service-technologies,
.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.game-tag,
.tech-tag,
.spec-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-300);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--primary-300);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features-modern li:last-child {
    border-bottom: none;
}

.service-features-modern li i {
    color: var(--blue-400);
    font-size: 14px;
    width: 18px;
}

.service-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    color: var(--white);
    text-decoration: none;
}

.gaming-modern .service-btn-modern {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.gaming-modern .service-btn-modern:hover {
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.service-btn-disabled {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-400);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: not-allowed;
}

/* ================================
   SECTION WHY CHOOSE US
   ================================ */

.why-choose-us-modern {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
    padding: 100px 0;
}

.why-header {
    margin-bottom: 48px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-badge .trust-glow {
    display: none;
}

.trust-badge i {
    color: var(--orange-500);
}

.trust-badge span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.why-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text-why {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-size: 1.125rem;
    color: var(--primary-400);
    font-weight: 400;
    margin-top: 8px;
}

.why-description-modern {
    color: var(--primary-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.why-features-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s ease;
}

.feature-item-modern:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.feature-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
}

.feature-icon-modern .icon-pulse {
    display: none;
}

.feature-icon-modern.shield {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
}

.feature-icon-modern.speed {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
}

.feature-icon-modern.support {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
}

.feature-content-modern h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content-modern p {
    color: var(--primary-300);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-highlight {
    background: rgba(59, 130, 246, 0.2);
    color: var(--blue-400);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
}

.feature-stats span:not(.stat-highlight) {
    color: var(--primary-400);
    font-size: 13px;
}

/* Trust Metrics */
.trust-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-metrics .metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.trust-metrics .metric-card.featured {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.trust-metrics .metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.trust-metrics .metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.trust-metrics .metric-icon.small {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
}

.metric-content {
    text-align: center;
}

.trust-metrics .metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-400);
    display: block;
    margin-bottom: 4px;
}

.trust-metrics .metric-number.small {
    font-size: 1.25rem;
}

.trust-metrics .metric-label {
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-metrics .metric-label.small {
    font-size: 0.75rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--green-500);
    font-size: 13px;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trust-metrics .metric-card.mini {
    padding: 16px;
}

.quality-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-300);
}

.quality-badge i {
    color: var(--blue-400);
}

/* ================================
   SECTION TECHNOLOGIES
   ================================ */

.technologies-section-modern {
    background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
    padding: 100px 0;
}

.tech-header-modern {
    margin-bottom: 48px;
}

.innovation-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange-400);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.innovation-badge .innovation-glow {
    display: none;
}

.innovation-badge i {
    color: var(--orange-400);
}

.tech-title-ultra {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tech-gradient-modern {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-underline-modern {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    margin: 16px auto;
    border-radius: 2px;
}

.tech-description-ultra {
    color: var(--primary-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Tech Cards */
.tech-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Equal height tech cards on desktop - dynamic */
@media (min-width: 992px) {
    .tech-showcase {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch !important;
    }

    .tech-showcase [class*="col-"] {
        display: flex !important;
    }

    .tech-card-ultra {
        width: 100%;
    }

    .tech-card-ultra p {
        flex-grow: 1;
    }

    .tech-specs {
        margin-top: auto;
    }
}

.tech-card-ultra:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.tech-badge-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue-500);
}

.tech-badge-modern.premium {
    background: var(--orange-500);
}

.tech-badge-modern.security {
    background: var(--green-500);
}

.tech-badge-modern.network {
    background: var(--blue-600);
}

.tech-icon-ultra {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-icon-ultra .tech-glow {
    display: none;
}

.tech-icon-ultra i {
    font-size: 32px;
    color: var(--orange-500);
}

.tech-logo {
    max-width: 48px;
    max-height: 48px;
}

.tech-card-ultra h5 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-card-ultra p {
    color: var(--primary-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.tech-specs .spec-item i {
    color: var(--orange-400);
    font-size: 12px;
}

.tech-specs .spec-item span {
    color: var(--primary-300);
}

.tech-commitments {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-300);
    font-size: 14px;
    font-weight: 500;
}

.commitment-item i {
    color: var(--orange-400);
    font-size: 16px;
}

/* ================================
   SECTION TESTIMONIALS
   ================================ */

.testimonials-section-ultra {
    background: var(--primary-900);
    padding: 100px 0;
}

.testimonials-badge {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonials-badge i,
.testimonials-badge span {
    color: #fbbf24;
}

.testimonials-badge span {
    font-size: 14px;
    font-weight: 600;
}

.testimonials-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
}

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

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--primary-400);
    font-weight: 400;
}

/* Trust Metrics Testimonials */
.testimonials-trust-metrics {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-metric-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    min-width: 130px;
}

.metric-icon-wrapper {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}

.trust-metric-item .metric-content .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 4px;
}

.trust-metric-item .metric-content .metric-label {
    color: var(--primary-400);
    font-size: 12px;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonials-carousel-ultra {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container-modern {
    margin-bottom: 32px;
}

.carousel-track-modern {
    display: flex;
    justify-content: center;
}

.testimonial-slide-modern {
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 600px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-content-modern {
    margin-bottom: 24px;
}

.testimonial-content-modern p {
    color: var(--primary-200);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-modern {
    flex-shrink: 0;
}

.avatar-bg {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.avatar-bg.user { background: var(--blue-500); }
.avatar-bg.gaming { background: var(--green-500); }
.avatar-bg.support { background: #ec4899; }
.avatar-bg.premium { background: var(--orange-500); }
.avatar-bg.performance { background: var(--blue-600); }
.avatar-bg.design { background: #8b5cf6; }

.author-info-modern {
    flex: 1;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.author-meta .service-type {
    color: #fbbf24;
    font-weight: 500;
}

.author-meta .divider {
    color: var(--primary-500);
}

.author-meta .date {
    color: var(--primary-400);
}

.verified-badge {
    color: var(--green-400);
    font-size: 18px;
}

/* Carousel Controls */
.carousel-controls-ultra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn-modern {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.carousel-btn-modern:hover {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.2);
}

.carousel-dots-modern {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

/* CTA Final */
.testimonials-cta {
    margin-top: 64px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--primary-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #000;
    text-decoration: none;
}

.btn-cta-secondary {
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    background: transparent;
}

.btn-cta-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    text-decoration: none;
}

.cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
}

.cta-reassurance span i {
    color: var(--green-400);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .hero-title-ultra {
        font-size: 2.75rem;
    }

    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 2rem;
    }

    .hero-metrics {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-metrics .metric-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-ultra,
    .btn-secondary-ultra {
        justify-content: center;
    }

    .proof-badges {
        gap: 16px;
    }

    .proof-badge {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-ultra-modern {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title-ultra {
        font-size: 2.25rem;
    }

    .hero-subtitle-ultra {
        font-size: 1rem;
    }

    .hero-metrics .metric-card {
        flex: 1 1 100%;
    }

    .hero-guarantees {
        justify-content: center;
        gap: 10px;
    }

    .guarantee-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .dashboard-mockup {
        margin-top: 40px;
    }

    .floating-cards {
        display: none;
    }

    .modern-services,
    .why-choose-us-modern,
    .technologies-section-modern,
    .testimonials-section-ultra {
        padding: 64px 0;
    }

    .proof-badge {
        flex: 1 1 100%;
    }

    .service-stats-mini {
        gap: 24px;
    }

    .testimonials-trust-metrics {
        gap: 12px;
    }

    .trust-metric-item {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
    }

    .cta-reassurance {
        gap: 8px;
    }

    .cta-reassurance span {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title-ultra {
        font-size: 1.875rem;
    }

    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 1.5rem;
    }

    .btn-primary-ultra {
        padding: 14px 20px;
    }

    .btn-primary-ultra .btn-icon {
        display: none;
    }

    .service-card-modern {
        padding: 24px;
    }

    .feature-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card-ultra {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

/* Mobile spacing fixes */
@media (max-width: 768px) {
    /* Services section spacing */
    .modern-services .col-lg-4,
    .modern-services .col-md-6 {
        margin-bottom: 20px;
    }

    .modern-services .col-lg-4:last-child,
    .modern-services .col-md-6:last-child {
        margin-bottom: 0;
    }

    /* Infrastructure section spacing */
    .tech-showcase .col-lg-3,
    .tech-showcase .col-md-6 {
        margin-bottom: 20px;
    }

    .tech-card-ultra {
        padding: 24px 20px;
    }

    /* Why FastPanel - quality indicators */
    .quality-indicators {
        gap: 16px !important;
    }

    .quality-indicator {
        padding: 20px 16px !important;
        margin-bottom: 12px;
    }

    /* Feature items spacing - reduced */
    .why-features-modern .feature-item-modern {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .why-features-modern .feature-item-modern:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    /* Space between features column and metrics column */
    .why-choose-us-modern .col-lg-7 {
        margin-bottom: 40px;
    }

    /* Trust metrics spacing */
    .trust-metrics {
        margin-top: 0;
    }

    .trust-metrics .metric-card.featured {
        margin-bottom: 20px;
    }

    /* Mini stats in section header */
    .service-stats-mini {
        gap: 12px !important;
    }

    .mini-stat {
        padding: 10px 14px !important;
    }

    /* Trust metrics grid */
    .metrics-grid {
        gap: 10px;
    }

    .trust-metrics .metric-card.mini {
        padding: 12px 10px;
    }

    .metric-number.small {
        font-size: 1.25rem !important;
    }

    .metric-label.small {
        font-size: 0.7rem !important;
    }

    /* Quality badges */
    .quality-badges {
        gap: 8px;
        margin-top: 20px;
    }

    .quality-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Tech commitments */
    .tech-commitments {
        gap: 10px !important;
    }

    .commitment-item {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
}
