﻿:root {
    --stat-primary: #6366f1;
    --stat-accent: #06b6d4;
    --stat-success: #10b981;
    --stat-warning: #f59e0b;
    --stat-danger: #ef4444;
    --neon-glow: 0 0 10px rgba(99, 102, 241, 0.5), 0 0 20px rgba(99, 102, 241, 0.3), 0 0 40px rgba(99, 102, 241, 0.2);
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cyberpunk-hero {
    position: relative;
    overflow: visible;
}

.cyberpunk-hero .hero-title .line {
    display: block;
}

.neon-text {
    text-shadow: var(--neon-glow);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 5px rgba(99, 102, 241, 0.5), 0 0 10px rgba(99, 102, 241, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 40px rgba(99, 102, 241, 0.5), 0 0 60px rgba(99, 102, 241, 0.3);
    }
}

.glitch-badge {
    position: relative;
}

.glitch-badge::before,
.glitch-badge::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-badge:hover::before {
    animation: glitch1 0.3s infinite;
    color: #ff00ff;
    opacity: 0.8;
}

.glitch-badge:hover::after {
    animation: glitch2 0.3s infinite;
    color: #00ffff;
    opacity: 0.8;
}

@keyframes glitch1 {

    0%,
    100% {
        clip-path: inset(0 0 80% 0);
        transform: translateX(-2px);
    }

    25% {
        clip-path: inset(20% 0 60% 0);
        transform: translateX(2px);
    }

    50% {
        clip-path: inset(40% 0 40% 0);
        transform: translateX(-2px);
    }

    75% {
        clip-path: inset(60% 0 20% 0);
        transform: translateX(2px);
    }
}

@keyframes glitch2 {

    0%,
    100% {
        clip-path: inset(80% 0 0 0);
        transform: translateX(2px);
    }

    25% {
        clip-path: inset(60% 0 20% 0);
        transform: translateX(-2px);
    }

    50% {
        clip-path: inset(40% 0 40% 0);
        transform: translateX(2px);
    }

    75% {
        clip-path: inset(20% 0 60% 0);
        transform: translateX(-2px);
    }
}

.cyber-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--stat-primary), var(--stat-accent), transparent);
    margin: 40px auto 0;
    position: relative;
}

.cyber-line::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--stat-accent);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: linePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--stat-accent);
}

@keyframes linePulse {

    0%,
    100% {
        left: 0;
    }

    50% {
        left: calc(100% - 10px);
    }
}

.hero-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -15%;
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: 40%;
    left: auto;
    right: -10%;
    animation-delay: -4s;
    animation-duration: 10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(0, -40px) scale(1);
    }

    75% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

.stat-card.prime,
.stat-group,
.testimonial-card {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.stats-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 120px;
    
}


.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(6, 182, 212, 0.04) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.stats-section>.container {
    position: relative;
    z-index: 1;
}

.page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: fadeInDown 0.8s ease;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(3px);
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

.stats-grid,
.details-grid>* {
    animation: fadeInUp 0.6s ease backwards;
}

.stats-grid {
    animation-delay: 0.1s;
}

.details-grid>*:nth-child(1) {
    animation-delay: 0.15s;
}

.details-grid>*:nth-child(2) {
    animation-delay: 0.25s;
}

.details-grid>*:nth-child(3) {
    animation-delay: 0.35s;
}

.details-grid>*:nth-child(4) {
    animation-delay: 0.45s;
}

.details-grid>*:nth-child(5) {
    animation-delay: 0.55s;
}

.details-grid>*:nth-child(6) {
    animation-delay: 0.65s;
}

.details-grid>*:nth-child(7) {
    animation-delay: 0.75s;
}

.details-grid>*:nth-child(8) {
    animation-delay: 0.85s;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.stats-grid.highlights {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}




.stats-grid.highlights .stat-card:nth-child(1) {
    grid-column: span 2;
}

.stats-grid.highlights .stat-card:nth-child(2) {
    grid-column: span 2;
}

.stats-grid.highlights .stat-card:nth-child(3) {
    grid-column: span 2;
}


.stats-grid.highlights .stat-card:nth-child(4) {
    grid-column: span 4;
}

.stats-grid.highlights .stat-card:nth-child(5) {
    grid-column: span 2;
}


.stats-grid.highlights .stat-card:nth-child(6) {
    grid-column: span 6;
}


.stats-grid.highlights .stat-card:nth-child(4) .card-body {
    justify-content: flex-start;
    gap: 40px;
}

.stats-grid.highlights .stat-card:nth-child(4) .chart-container.timeline {
    width: 200px;
}


.stats-grid.highlights .stat-card:nth-child(1) h3 {
    font-size: 3.5rem;
}

@media (max-width: 1000px) {
    .stats-grid.highlights {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid.highlights .stat-card:nth-child(1),
    .stats-grid.highlights .stat-card:nth-child(2),
    .stats-grid.highlights .stat-card:nth-child(3),
    .stats-grid.highlights .stat-card:nth-child(4),
    .stats-grid.highlights .stat-card:nth-child(5),
    .stats-grid.highlights .stat-card:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {

    .stats-grid,
    .stats-grid.highlights {
        grid-template-columns: 1fr;
    }

    .stats-grid.highlights .stat-card:nth-child(1),
    .stats-grid.highlights .stat-card:nth-child(2),
    .stats-grid.highlights .stat-card:nth-child(3),
    .stats-grid.highlights .stat-card:nth-child(4),
    .stats-grid.highlights .stat-card:nth-child(5),
    .stats-grid.highlights .stat-card:nth-child(6) {
        grid-column: span 1;
    }

    .stats-grid.highlights .stat-card:nth-child(1) h3 {
        font-size: 2.5rem;
    }
}

.stat-card.prime {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 28px;
    border-radius: 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.stat-card.prime::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, var(--stat-primary), var(--stat-accent), #a855f7, var(--stat-primary));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


.stat-card.prime::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
}

.stat-card.prime:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(15, 23, 42, 0.6);
    box-shadow:
        0 25px 50px -15px rgba(99, 102, 241, 0.25),
        0 0 40px rgba(99, 102, 241, 0.1);
}

.stat-card.prime:hover::before {
    opacity: 1;
}

.stat-card.prime:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--stat-primary), var(--stat-accent));
    border-color: transparent;
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.5);
}

.stat-card.prime:hover .icon-box i {
    color: #fff;
}


.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--stat-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    margin: 0;
}

.stat-card.prime h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--stat-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 10px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.stat-card.prime p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--stat-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.stat-card.prime .sub-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-group {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.stat-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stat-primary), var(--stat-accent), transparent);
    opacity: 0.5;
}

.stat-group:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}


.stat-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-list li:last-child {
    border-bottom: none;
}

.stat-list li:hover {
    background: transparent;
    padding-left: 10px;
    color: #fff;
}

.stat-list li:hover strong {
    color: var(--stat-primary);
    transform: scale(1.1);
}

.chart-bar-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-group:hover::before {
    opacity: 1;
}

.stat-group h2 {
    font-size: 1.25rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.stat-group h2 i {
    color: var(--stat-primary);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.stat-group:hover h2 i {
    transform: scale(1.15);
}

.stat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.stat-list li:hover {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.stat-list li:last-child {
    border-bottom: none;
}

.stat-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stat-list strong {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.chart-bar-container {
    margin-bottom: 18px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.bar-label strong {
    color: #fff;
    font-weight: 600;
}

.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--stat-primary) 0%, var(--stat-accent) 100%);
    border-radius: 10px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress .fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.stat-group.full-width {
    grid-column: 1 / -1;
}

.stat-group.bg-darker {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.grid-2 h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card.prime h3 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.tag.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.heat-map {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 30px 0;
}

.heat-item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
}

.heat-item:hover {
    transform: scale(1.08);
}

.heat-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--stat-warning), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
    animation: float 3s ease-in-out infinite;
}

.heat-item span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.heat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.rating-box {
    padding: 25px 0;
}

.rating-box>div:first-child {
    background: linear-gradient(135deg, #fff 0%, var(--stat-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cancel-reasons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.reason {
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: all 0.2s ease;
}

.reason:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateX(3px);
}

.disclaimer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.text-sm {
    font-size: 0.875rem;
}

.text-muted {
    color: var(--text-muted);
}

.text-success {
    color: var(--stat-success);
}

.text-primary {
    color: var(--stat-primary);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.75rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.justify-center {
    justify-content: center;
}

[data-theme="light"] .stats-section::before {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.04) 0%, transparent 40%);
}

[data-theme="light"] .stat-card.prime {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stat-card.prime:hover {
    border-color: var(--stat-primary);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .stat-card.prime h3 {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .stat-card.prime p {
    color: var(--stat-primary);
}

[data-theme="light"] .stat-card.prime .sub-text {
    color: #64748b;
}

[data-theme="light"] .icon-box {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: var(--stat-primary);
}

[data-theme="light"] .stat-group {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stat-group:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-group h2 {
    color: #0f172a;
    border-bottom-color: #e2e8f0;
}

[data-theme="light"] .stat-list li {
    border-bottom-color: #f1f5f9;
}

[data-theme="light"] .stat-list li:hover {
    background: #f8fafc;
}

[data-theme="light"] .stat-list span {
    color: #64748b;
}

[data-theme="light"] .stat-list strong {
    color: #0f172a;
}

[data-theme="light"] .progress {
    background: #e2e8f0;
}

[data-theme="light"] .bar-label span {
    color: #475569;
}

[data-theme="light"] .bar-label strong {
    color: #0f172a;
}

[data-theme="light"] .tag {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
}

[data-theme="light"] .heat-item span {
    color: #64748b;
}

[data-theme="light"] .heat-item strong {
    color: #0f172a;
}

[data-theme="light"] .reason {
    background: rgba(239, 68, 68, 0.06);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.12);
}

[data-theme="light"] .disclaimer {
    border-top-color: #e2e8f0;
    color: #64748b;
}

.testimonials-section {
    margin-top: 60px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--stat-primary);
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--stat-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 30px -10px rgba(99, 102, 241, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--stat-primary), var(--stat-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.testimonial-header .info {
    flex: 1;
}

.testimonial-header .info strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.testimonial-header .info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-header .stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
}

.comparison-section {
    margin-top: 60px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table thead {
    background: rgba(99, 102, 241, 0.1);
}

.comparison-table th {
    padding: 20px 25px;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th.highlight {
    color: var(--stat-primary);
    background: rgba(99, 102, 241, 0.15);
}

.comparison-table td {
    padding: 18px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table td.highlight {
    color: var(--stat-success);
    font-weight: 600;
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table td.highlight i {
    color: var(--stat-success);
    margin-right: 8px;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

[data-theme="light"] .section-title {
    color: #0f172a;
}

[data-theme="light"] .testimonial-card {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .testimonial-card:hover {
    border-color: var(--stat-primary);
}

[data-theme="light"] .testimonial-header .info strong {
    color: #0f172a;
}

[data-theme="light"] .testimonial-card .quote {
    color: #475569;
}

[data-theme="light"] .comparison-table-wrapper {
    background: #fff;
    border-color: #e2e8f0;
}

[data-theme="light"] .comparison-table thead {
    background: #f8fafc;
}

[data-theme="light"] .comparison-table th {
    color: #0f172a;
    border-bottom-color: #e2e8f0;
}

[data-theme="light"] .comparison-table th.highlight {
    background: rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .comparison-table td {
    color: #475569;
    border-bottom-color: #f1f5f9;
}

[data-theme="light"] .comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.04);
}

[data-theme="light"] .comparison-table tbody tr:hover {
    background: #f8fafc;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner p {
    color: #475569;
}

[data-theme="light"] .cookie-banner a {
    color: #4f46e5;
}




.stat-card.prime h3 {
    animation: numberGlow 3s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    }
}


.stats-grid.highlights .stat-card.prime:nth-child(1) {
    animation-delay: 0s;
}

.stats-grid.highlights .stat-card.prime:nth-child(2) {
    animation-delay: 0.1s;
}

.stats-grid.highlights .stat-card.prime:nth-child(3) {
    animation-delay: 0.2s;
}

.stats-grid.highlights .stat-card.prime:nth-child(4) {
    animation-delay: 0.3s;
}

.stats-grid.highlights .stat-card.prime:nth-child(5) {
    animation-delay: 0.4s;
}

.stats-grid.highlights .stat-card.prime:nth-child(6) {
    animation-delay: 0.5s;
}


.stat-card.prime::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.stat-card.prime:hover::before {
    opacity: 1;
}


.stat-card.prime .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.stat-card.prime:hover .shine {
    left: 100%;
}


.stat-group {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-group:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow:
        0 25px 50px -15px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(99, 102, 241, 0.1);
}


.cyberpunk-hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
}


.progress {
    height: 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.progress .fill {
    background: linear-gradient(90deg, var(--stat-primary) 0%, var(--stat-accent) 50%, #a855f7 100%);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}



.stat-card.dashboard-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.stat-card.dashboard-card::after {
    display: none;
    
}


.stat-card.dashboard-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.icon-box-sm {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--stat-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.icon-box-sm.glow {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    color: #e9d5ff;
}

.stat-card.dashboard-card:hover .icon-box-sm {
    transform: scale(1.1);
    background: var(--stat-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.stat-card.dashboard-card:hover .icon-box-sm.glow {
    background: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.trend-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trend-badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.trend-badge.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.trend-badge.neutral {
    background: rgba(148, 163, 184, 0.15);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.2);
}


.stat-card.dashboard-card .card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.stat-card.dashboard-card .label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.stat-card.dashboard-card h3 {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1;
    background: linear-gradient(180deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
}

.stat-card.dashboard-card .sub-text {
    font-size: 0.75rem;
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    opacity: 0.7;
}


.chart-container {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-chart .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circular-chart .circle {
    fill: none;
    stroke: var(--stat-success);
    stroke-width: 3;
    stroke-linecap: round;
    animation: progressFill 1.5s ease-out forwards;
}


.chart-container.sparkline {
    width: 90px;
    height: 40px;
}

.sparkline svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sparkline-path {
    fill: none;
    stroke: var(--stat-accent);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 4px 6px rgba(6, 182, 212, 0.4));
}

.sparkline-dot {
    fill: var(--stat-accent);
    stroke: #fff;
    stroke-width: 2;
    animation: pulse 2s infinite;
}


.chart-container.bars {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-bottom: 2px;
}

.mini-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.mini-bar.active {
    background: var(--stat-primary);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}


.chart-container.timeline {
    width: 80px;
    height: auto;
    display: block;
}

.timeline-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.timeline-fill {
    height: 100%;
    background: var(--stat-warning);
    border-radius: 10px;
}


.chart-container.gauge {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gauge-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gauge-bg {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-linecap: round;
}

.gauge-fill {
    stroke: var(--stat-primary);
    stroke-linecap: round;
    animation: progressFill 1.5s ease-out forwards;
}


.chart-container.pie svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 32;
    stroke-dasharray: 0 0 !important;
    
}

.pie-fill {
    fill: none;
    stroke: var(--stat-primary);
    stroke-width: 32;
    stroke-dasharray: 76 100 !important;
    
    animation: progressFill 1s ease-out forwards;
    transform-origin: center;
    transform: rotate(0deg);
    
}


.stat-card.dashboard-card.milestone {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.milestone-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.milestone-visual {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pulse-ring {
    width: 20px;
    height: 20px;
    background: #a855f7;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    animation: pulser 2s infinite;
}

@keyframes pulser {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(168, 85, 247, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}


@media (max-width: 1200px) {
    .stat-card.dashboard-card {
        padding: 20px;
    }

    .stat-card.dashboard-card h3 {
        font-size: 1.8rem;
    }
}


.cyberpunk-hero {
    
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    
}

[data-theme="light"] .page-hero h1 {
    color: #0f172a;
}

[data-theme="light"] .hero-desc {
    color: #475569;
}

[data-theme="light"] .cyber-line {
    opacity: 0.6;
}

[data-theme="light"] .neon-text {
    text-shadow: none;
    color: #4f46e5;
    animation: none;
}

[data-theme="light"] .dashboard-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(226, 232, 240, 1) !important;
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.15);
}

[data-theme="light"] .dashboard-card:hover {
    background: #ffffff !important;
    border-color: var(--stat-primary) !important;
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.25);
}

[data-theme="light"] .dashboard-card h3 {
    color: #1e293b !important;
    text-shadow: none;
    -webkit-text-fill-color: #1e293b;
}

[data-theme="light"] .dashboard-card .label,
[data-theme="light"] .dashboard-card .sub-text,
[data-theme="light"] .dashboard-card .metric-label {
    color: #64748b !important;
}

[data-theme="light"] .stat-card.prime {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.15);
}

[data-theme="light"] .stat-card.prime p {
    color: #4f46e5;
}

[data-theme="light"] .stat-card.prime .sub-text {
    color: #64748b;
}

[data-theme="light"] .stat-card.prime h3 {
    background: none;
    -webkit-text-fill-color: #1e293b;
    color: #1e293b;
    text-shadow: none;
}

[data-theme="light"] .stat-group {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(226, 232, 240, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .stat-group h2 {
    color: #0f172a;
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stat-list li {
    border-bottom-color: rgba(226, 232, 240, 0.6);
}

[data-theme="light"] .stat-list li:hover {
    background: rgba(241, 245, 249, 0.5);
    
}

[data-theme="light"] .stat-list strong {
    color: #334155;
}

[data-theme="light"] .stat-list span {
    color: #64748b;
}

[data-theme="light"] .chart-bar-container {
    background: rgba(241, 245, 249, 0.5);
    border-color: rgba(226, 232, 240, 0.8);
}

[data-theme="light"] .bar-label strong {
    color: #334155;
}

[data-theme="light"] .bar-label {
    color: #64748b;
}

[data-theme="light"] .progress {
    background: rgba(203, 213, 225, 0.4);
}

[data-theme="light"] .mini-bar {
    background: rgba(203, 213, 225, 0.5);
}

[data-theme="light"] .mini-bar.active {
    background: var(--stat-primary);
}

[data-theme="light"] .sparkline-path {
    stroke: var(--stat-primary);
}

[data-theme="light"] .circle-bg,
[data-theme="light"] .gauge-bg {
    stroke: #e2e8f0;
}
