:root {
    --bg-color: #05050f;
    --text-color: #ffffff;
    --text-muted: #a0a5b5;

    /* Brand Colors */
    --neon-cyan: #00f0ff;
    --neon-purple: #9d4edd;
    --gradient-brand: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(25, 25, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Layout */
    --container-width: 1200px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(157, 78, 221, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.1), transparent 25%);
}

/* Fallback for AOS if an element gets stuck */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass UI Elements */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-section {
    position: relative;
    padding: 6rem 0;
    margin: 2rem 0;
}

.glass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-neon {
    background: transparent;
    color: white;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-neon:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7), inset 0 0 15px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.1);
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Typography Headings */
h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.9));
    transform: scale(1.05);
}

.logo-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    margin-bottom: 4rem;
}

.social-proof {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.social-proof p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.tech-logos span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Pain Section */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pain-card {
    background: rgba(255, 0, 0, 0.02);
    border: 1px solid rgba(255, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 0, 0.05);
}

.icon-danger {
    color: #ff4757;
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 71, 87, 0.05);
    /* very dark red bg */
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 71, 87, 0.05), 0 10px 20px rgba(0, 0, 0, 0.5);
}

.icon-danger svg {
    width: 28px;
    height: 28px;
    stroke: #ff4757;
    stroke-width: 2.2px;
    filter: drop-shadow(0px 0px 4px rgba(255, 71, 87, 0.9));
    /* Premium SVG glow */
}

.pain-card p {
    color: var(--text-muted);
}

/* Services */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-top: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top: 2px solid var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 24px;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--neon-cyan);
    stroke-width: 2.2px;
    filter: drop-shadow(0px 0px 4px rgba(0, 240, 255, 0.9));
    /* Premium SVG glow */
}

.service-card p {
    color: var(--text-muted);
}

/* Timeline Differential */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-muted);
}

/* CTA Final Section */
.final-cta-section {
    padding: 8rem 0;
}

.cta-container {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 240, 255, 0.05) 100%);
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.small-text {
    display: block;
    margin-top: 1.5rem !important;
    font-size: 0.85rem !important;
    opacity: 0.6;
}

/* Diagnostic Page Layout */
.diagnostic-page-wrapper {
    min-height: calc(100vh - var(--nav-height) - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

.diagnostic-content {
    max-width: 650px;
    width: 100%;
    padding: 3rem;
    border-radius: 20px;
    background: rgba(10, 10, 15, 0.7);
    border-top: 2px solid var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.diagnostic-header {
    margin-bottom: 2rem;
}

.diagnostic-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diagnostic-header p {
    color: var(--text-muted);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modal Formulario */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 600px;
    width: 100%;
    padding: 3rem 2.5rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.modern-form input,
.modern-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modern-form input:focus,
.modern-form select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.modern-form option {
    background: var(--bg-color);
    color: white;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #4cd137;
    margin: 0 auto 1rem auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .headline {
        font-size: 2.5rem;
    }

    .services-grid,
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
        max-width: 180px;
    }

    .nav-links a.btn {
        display: none;
    }

    .tech-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }
}

/* Animations and Impact */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
        border-color: var(--neon-cyan);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.8), 0 0 10px rgba(157, 78, 221, 0.6);
        border-color: #fff;
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
        border-color: var(--neon-cyan);
    }
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(255, 71, 87, 0.6));
    }

    100% {
        transform: scale(1);
    }
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(0, 240, 255, 1), 0 0 15px rgba(157, 78, 221, 0.8);
    }

    100% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
}

.floating {
    animation: floating 3.5s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 2.5s infinite;
}

.pulse {
    animation: pulse-icon 2s infinite;
}

.glow-text {
    animation: text-glow 3s infinite;
}

.hover-float {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-float:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15) !important;
}

/* Particles Area */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.3;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* =========================================================================
   MOCK DASHBOARD ANIMATION STYLES (INDEX.HTML)
   ========================================================================= */

.mock-dashboard {
    width: 100%;
    max-width: 1000px;
    background: #111113;
    /* Darker solid color like the image */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dash-card {
    background: #19191c;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dash-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dash-icon-cyan {
    color: var(--neon-cyan);
    width: 16px;
    height: 16px;
}

.dash-card-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.dash-card-value.single-val {
    margin-bottom: 0;
}

.dash-card-value.centered {
    display: block;
    text-align: center;
}

.dash-card-value h3 {
    font-size: 2rem;
    margin: 0;
    color: white;
    font-weight: 700;
}

.dash-badge.success {
    background: rgba(80, 250, 123, 0.15);
    color: #50fa7b;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* MRR Mini Chart */
.dash-mini-chart {
    margin-top: auto;
    width: 100%;
    height: 30px;
}

.cyan-stroke svg {
    width: 100%;
    height: 100%;
}

/* Users active */
.dash-users-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.circles {
    display: flex;
}

.circles .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #19191c;
    margin-left: -8px;
}

.circles .circle:first-child {
    margin-left: 0;
}

.text-success {
    color: #50fa7b;
    font-size: 0.75rem;
    font-weight: 600;
}

.text-danger {
    color: #ff4d4d;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Retention Ring */
.dash-retention {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.circular-progress {
    position: relative;
    display: inline-block;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.circular-progress circle {
    fill: none;
    stroke-width: 5;
}

.circular-progress .bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.circular-progress .progress {
    stroke: #50fa7b;
    stroke-linecap: round;
}

.circle-anim {
    animation: fillCircle 2.5s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}

@keyframes fillCircle {
    from {
        stroke-dashoffset: 188.4;
    }

    to {
        stroke-dashoffset: 11.3;
    }

    /* 94% de 188.4 */
}

.inner-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.churn-info {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Conversion Bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: auto;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 10px;
    width: 0%;
}

.bar-anim {
    animation: fillBar 2s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fillBar {
    to {
        width: 34%;
    }
}

.card-footer.center {
    text-align: center;
    margin-top: 0.8rem;
}

/* Main Chart Area */
.dash-main-chart {
    background: #19191c;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
    z-index: 2;
}

.chart-area {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    padding-bottom: 10px;
}

.chart-grid span {
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}

/* Path Animations SVG */
.chart-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.line-anim {
    animation: drawLine 3s ease-in-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-fill {
    opacity: 0;
}

.fill-anim {
    animation: fadeFill 2s ease-in-out forwards;
    animation-delay: 1.5s;
    /* Comes in smoothly after line */
}

@keyframes fadeFill {
    to {
        opacity: 1;
    }
}

/* Responsive Dashboard */
@media (max-width: 900px) {
    .dash-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dash-cards {
        grid-template-columns: 1fr;
    }

    .mock-dashboard {
        padding: 1.5rem;
    }
}