/* ===== MUCO DESIGN SYSTEM ===== */
:root {
    /* Brand Colors - Premium High-Contrast Palette */
    --primary: #4f46e5;
    --primary-light: #e0e7ff;
    --primary-dark: #3730a3;
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --cyan: #06b6d4;
    --pink: #db2777;
    --green: #16a34a;
    --red: #dc2626;
    --amber: #d97706;

    /* Neutrals */
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --border: rgba(79, 70, 229, 0.08);
    --border-strong: rgba(79, 70, 229, 0.15);

    /* Text */
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--primary), var(--blue));
    --gradient-brand-wide: linear-gradient(90deg, var(--primary), var(--blue), var(--pink));
    --gradient-glow-purple: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 70%);
    --gradient-glow-blue: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
    --gradient-page: linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);

    /* Shadows - Layered & Soft */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.2);

    /* Spacing */
    --section-py: 7rem;
    --container-px: 2rem;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}


/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gradient-page);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
    background: var(--gradient-brand-wide);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-x 6s ease infinite;
}

.section-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.75;
    margin-top: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.875rem 2rem;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-inverse);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, var(--blue), var(--primary));
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border-strong);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.05);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), var(--shadow-inner);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-inner);
    border-color: rgba(255, 255, 255, 1);
}


/* ===== GLOW ORBS ===== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite alternate;
}

/* ===== SECTION ===== */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

/* ===== KEYFRAMES ===== */
@keyframes gradient-x {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    width: 90%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: color var(--duration-fast);
}

.modal-close:hover {
    color: var(--text);
}

/* ===== FORM ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    animation: fade-in-up 0.3s var(--ease-out);
}

.toast-success {
    background: var(--green);
    color: white;
}

.toast-error {
    background: var(--red);
    color: white;
}

/* ===== UTILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
        --container-px: 1.25rem;
    }

    .section-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}

.app {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.app__content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
}

/* Fixed background glows */
.app__bg-glows {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.app__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.app__bg-glow--1 {
    width: 50vw;
    height: 50vw;
    top: -15%;
    right: -10%;
    background: rgba(124, 58, 237, 0.08);
}

.app__bg-glow--2 {
    width: 40vw;
    height: 40vw;
    top: 25%;
    left: -10%;
    background: rgba(37, 99, 235, 0.06);
}

.app__bg-glow--3 {
    width: 35vw;
    height: 35vw;
    bottom: 10%;
    right: 5%;
    background: rgba(236, 72, 153, 0.05);
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

.about-page {
    overflow: hidden;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at top, var(--primary-light) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.text-primary {
    color: var(--primary);
}

.bg-primary\/5 {
    background-color: rgba(79, 70, 229, 0.05);
}

.border-primary\/20 {
    border-color: rgba(79, 70, 229, 0.2);
}

.about-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.stat-item {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.story-content {
    padding-right: 2rem;
}

.story-visual img {
    transition: transform 0.7s ease;
}

.story-visual:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    padding: 3rem 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: left;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.value-icon-wrapper {
    display: inline-block;
}

.value-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(0deg) scale(1.05);
    color: var(--blue);
}

/* Responsive Utilities */
.hidden {
    display: none;
}

.md\:block {
    @media (min-width: 768px) {
        display: block;
    }
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mt-8 {
    margin-top: 2rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-l-4 {
    border-left-width: 4px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-\[500px\] {
    height: 500px;
}

.blur-xl {
    filter: blur(24px);
}

.scale-110 {
    transform: scale(1.1);
}

.bg-white {
    background-color: #ffffff;
}

.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.from-primary {
    --tw-gradient-from: var(--primary) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa var(--tw-gradient-to-position);
}

.text-white {
    color: #ffffff;
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-text-secondary {
    color: var(--text-secondary);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.opacity-0 {
    opacity: 0;
}

.opacity-90 {
    opacity: 0.9;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-500 {
    transition-duration: 500ms;
}

/* Responsive break points */
@media (max-width: 1024px) {
    .story-grid {
        gap: 3rem;
    }

    .about-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 4rem 0 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        padding-right: 0;
        text-align: center;
    }

    .story-content .border-l-4 {
        border-left: none;
        border-top: 4px solid var(--primary);
        padding: 1.5rem 1rem;
        border-radius: 0.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .story-visual.h-\[500px\] {
        height: 400px;
    }
}

.analytics__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.analytics__bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.analytics__bullet {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: default;
    transition: color var(--duration-fast);
}

.analytics__bullet:hover {
    color: var(--primary);
}

.analytics__bullet-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: transform var(--duration-normal) var(--ease-out);
}

.analytics__bullet:hover .analytics__bullet-icon {
    transform: scale(1.1);
}

/* Mockup */
.analytics__visual {
    position: relative;
}

.analytics__mockup {
    overflow: hidden;
    z-index: 2;
    position: relative;
}

.amock__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-muted);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.amock__header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amock__logo-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-sm);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.amock__logo-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.amock__header-pills {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.amock__pill {
    width: 3.5rem;
    height: 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--bg-muted);
    border: 1px solid var(--border);
}

.amock__avatar {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--bg-muted);
    border: 1px solid var(--border);
}

.amock__body {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0.75rem;
    padding: 1rem;
}

.amock__chart {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.amock__chart::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-glow-purple);
    pointer-events: none;
}

.amock__chart-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.amock__chart-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.amock__chart-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.amock__badge-green {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--green);
}

.amock__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 110px;
}

.amock__chart-bar {
    flex: 1;
    background: var(--gradient-brand);
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    transition: opacity var(--duration-fast);
    cursor: pointer;
}

.amock__chart-bar:hover {
    opacity: 0.75;
}

.amock__side {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amock__side-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.625rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amock__side-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}

.amock__side-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.amock__side-unit {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 1px;
}

.analytics__glow-1 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -60px;
    background: rgba(37, 99, 235, 0.18);
}

.analytics__glow-2 {
    width: 250px;
    height: 250px;
    top: -60px;
    left: -60px;
    background: rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
    .analytics__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .analytics__copy {
        text-align: center;
    }

    .analytics__bullets {
        align-items: center;
    }

    .amock__body {
        grid-template-columns: 1fr;
    }
}

.cta__card {
    position: relative;
    background: linear-gradient(135deg, var(--text), #1e293b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-inverse);
}

.cta__glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.6;
}

.cta__glow--1 {
    top: -80px;
    right: -60px;
    background: var(--blue);
}

.cta__glow--2 {
    bottom: -80px;
    left: -60px;
    background: var(--primary);
}

.cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.cta__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta__form .form-label {
    color: rgba(255, 255, 255, 0.85);
}

.cta__form-row {
    display: flex;
    gap: 1rem;
}

.cta__privacy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .cta__inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .cta__text {
        text-align: center;
        align-items: center;
    }

    .cta__form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.features__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ===== Uniform 3×2 Grid ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===== Feature Card — all identical ===== */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), transparent, rgba(219, 39, 119, 0.2));
    -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 var(--ease-out);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

/* Circle icon */
.feature-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* Title */
.feature-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Description */
.feature-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== Modules ===== */
.features__modules {
    margin-top: 5rem;
    text-align: center;
}

.features__modules-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.features__modules-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.features__module-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.features__module-pill:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Glow */
.features__glow {
    width: 400px;
    height: 400px;
    top: 50%;
    left: -200px;
    background: rgba(124, 58, 237, 0.06);
    transform: translateY(-50%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.75rem;
    }
}

.footer {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
}

.footer__logo {
    margin-bottom: 0.75rem;
}

.footer__logo img {
    height: 3.5rem;
    width: auto;
}

.footer__tagline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.6;
}

.footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    display: inline-block;
}

.footer__list a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__social {
    color: var(--text-muted);
    transition: all var(--duration-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
}

.footer__social:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

.hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

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

.hero__heading {
    max-width: 100%;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Dashboard Mockup - Replicating Muco styling exactly */
.hero__visual {
    width: 100%;
    margin-top: 4rem;
    position: relative;
    max-width: 1000px;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(4px);
    padding: 0;
}

.hero__image-bg {
    background: linear-gradient(to top right, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1), rgba(236, 72, 153, 0.1));
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero__grid {
        gap: 3rem;
    }

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

    .hero__ctas .btn {
        width: 100%;
    }
}

.how__header {
    text-align: center;
    margin-bottom: 4rem;
}

.how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.how__step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    position: relative;
    transition: transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

.how__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.how__step-num {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.how__step-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.how__step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.how__step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Connector arrows (desktop only) */
.how__connector {
    display: none;
}

@media (min-width: 769px) {
    .how__connector {
        display: block;
        position: absolute;
        right: -1.25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2.5rem;
        height: 2px;
        background: var(--gradient-brand);
        z-index: 1;
    }

    .how__connector::after {
        content: '';
        position: absolute;
        right: -4px;
        top: -3px;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--primary);
        border-top: 2px solid var(--primary);
        transform: rotate(45deg);
    }
}

@media (max-width: 768px) {
    .how__steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container-max);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-strong);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
}

.navbar__brand img {
    height: 2.35rem;
    width: auto;
    transition: height var(--duration-normal) var(--ease-out);
}

@media (min-width: 768px) {
    .navbar__brand img {
        height: 2.8rem;
    }
}

.navbar__links {
    display: flex;
    gap: 2.5rem;
}

.navbar__link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover {
    color: var(--primary);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar__hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    padding: 0.25rem;
}

.navbar__mobile {
    display: none;
    padding: 1rem var(--container-px) 1.5rem;
    border-top: 1px solid var(--border);
}

.navbar__mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color var(--duration-fast);
}

.navbar__mobile-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {

    .navbar__links,
    .navbar__actions {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__mobile {
        display: block;
    }
}

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stats-banner__value {
    font-size: 2.25rem;
    font-weight: 800;
}

.stats-banner__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Header */
.testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Grid */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-icon {
    color: var(--primary-light);
    opacity: 0.5;
    flex-shrink: 0;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

.trusted__heading {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.trusted__track-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trusted__track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trusted__track:hover {
    animation-play-state: paused;
}

.trusted__logo {
    flex-shrink: 0;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.trusted__logo:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    color: var(--text-secondary);
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: var(--gradient-page);
    overflow: hidden;
}

.admin-login__bg-glows {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.admin-login__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.admin-login__glow--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: rgba(124, 58, 237, 0.15);
}

.admin-login__glow--2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    background: rgba(37, 99, 235, 0.12);
}

.admin-login__card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.admin-login__header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login__icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-xl);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.admin-login__brand {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.75rem;
}

.admin-login__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.admin-login__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-login__error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--red);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.admin-login__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-login__pass-wrap {
    position: relative;
}

.admin-login__pass-wrap .form-input {
    padding-right: 2.75rem;
    width: 100%;
}

.admin-login__pass-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.25rem;
    cursor: pointer;
    transition: color var(--duration-fast);
}

.admin-login__pass-toggle:hover {
    color: var(--text);
}

.admin-login__footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.admin-login__footer a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--duration-fast);
}

.admin-login__footer a:hover {
    color: var(--primary);
}

.admin-dash {
    min-height: 100vh;
    background: var(--gradient-page);
}

/* Top bar */
.admin-dash__topbar {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}



.admin-dash__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

.admin-dash__brand {
    font-size: 1.4rem;
    font-weight: 800;
}

.admin-dash__topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-dash__role {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary);
}

/* Content */
.admin-dash__content {
    padding: 2.5rem 0 4rem;
}

.admin-dash__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

.admin-dash__subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Stats */
.admin-dash__stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-dash__stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.admin-dash__stat-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.admin-dash__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Loading */
.admin-dash__loading {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    justify-content: center;
    color: var(--text-muted);
}

.admin-dash__spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.admin-dash__error {
    padding: 1.5rem;
    text-align: center;
    color: var(--red);
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-lg);
}

.admin-dash__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Table */
.admin-dash__table-wrap {
    overflow-x: visible;
    padding: 0;
}

.admin-dash__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-dash__table thead {
    background: var(--bg-muted);
}

.admin-dash__table th {
    text-align: left;
    padding: 0.875rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.admin-dash__table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.admin-dash__table tr:last-child td {
    border-bottom: none;
}

.admin-dash__table tr:hover td {
    background: rgba(124, 58, 237, 0.02);
}

.admin-dash__td-num {
    font-weight: 700;
    color: var(--text-muted);
    width: 3rem;
}

.admin-dash__td-name {
    font-weight: 600;
    color: var(--text);
}

.admin-dash__td-with-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.admin-dash__td-with-icon svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .admin-dash__stats {
        flex-direction: column;
    }
}

/* Status Select */
.admin-dash__status-select {
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--bg);
    outline: none;
    transition: all var(--duration-fast);
}

.admin-dash__status-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
}

.status-new {
    color: var(--blue);
    background-color: rgba(37, 99, 235, 0.05);
}

.status-called {
    color: var(--amber);
    background-color: rgba(217, 119, 6, 0.05);
}

.status-not-interested {
    color: var(--text-muted);
    background-color: var(--bg-muted);
}

.status-converted {
    color: var(--green);
    background-color: rgba(22, 163, 74, 0.05);
}

/* Notes Input */
.admin-dash__notes-wrapper {
    min-width: 180px;
}

.admin-dash__notes-input {
    width: 100%;
    min-height: 40px;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    font-family: inherit;
    color: var(--text-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    resize: vertical;
    transition: all var(--duration-fast);
}

.admin-dash__notes-input:hover {
    background: rgba(124, 58, 237, 0.02);
    border-color: var(--border);
}

.admin-dash__notes-input:focus {
    background: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
    outline: none;
}

.admin-dash__td-notes {
    vertical-align: top;
    padding-top: 0.5rem;
}