/* ============================================
   SPORDAYIM.COM - Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --primary: #00D26A;
    --primary-dark: #00B85C;
    --primary-glow: rgba(0, 210, 106, 0.3);
    --secondary: #FF6B35;
    --secondary-dark: #E55A2B;

    /* Dark Theme */
    --dark: #0F1419;
    --dark-lighter: #1A2029;
    --dark-card: #1E252E;
    --dark-border: #2D3748;

    /* Text Colors */
    --text: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #8B949E;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #FF8F6B 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', var(--font-primary);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ---------- Cards ---------- */
.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-glass {
    background: rgba(30, 37, 46, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.header.scrolled {
    border-bottom-color: var(--dark-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-lighter);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav .btn {
        display: none;
    }
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--dark-border);
}

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.hero-stat p {
    font-size: 0.875rem;
    margin: 0;
}

/* ---------- Features Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(0, 210, 106, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 106, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.feature-card h4 {
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-md) 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin: var(--space-lg) 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Removed ::before to prevent duplicate checkmarks */

.pricing-card .btn {
    width: 100%;
}

/* ---------- Testimonials Section ---------- */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 350px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- CTA Section ---------- */
.cta {
    background: var(--dark-lighter);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: var(--space-sm);
}

.cta p {
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark-lighter);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ---------- Contact Form ---------- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-sm);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Utilities ---------- */
.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.pt-sm {
    padding-top: var(--space-sm);
}

.pt-md {
    padding-top: var(--space-md);
}

.pb-sm {
    padding-bottom: var(--space-sm);
}

.pb-md {
    padding-bottom: var(--space-md);
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: var(--space-lg) 0;
}

.auth-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.auth-header h1 {
    margin-bottom: var(--space-xs);
}

.auth-form .form-group {
    margin-bottom: var(--space-md);
}

.auth-form .form-group small {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.75rem;
}

.auth-footer {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-border);
}

.auth-footer a {
    color: var(--primary);
}

.auth-footer a:hover {
    text-decoration: underline;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.alert-success {
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    color: var(--primary);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.dashboard-body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

.dashboard-wrapper {
    display: block;
    min-height: 100vh;
    position: relative;
}

/* Dashboard Header */
.dashboard-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    z-index: 1000;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.sidebar-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
}

.subscription-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.subscription-badge.trial {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.subscription-badge.active {
    background: rgba(0, 210, 106, 0.1);
    color: var(--primary);
}

.subscription-badge.expired {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: none;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition-fast);
}

.user-menu-toggle:hover {
    border-color: var(--primary);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 0.625rem;
    color: var(--text-muted);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 100;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.user-dropdown a:hover {
    background: var(--dark-lighter);
    color: var(--primary);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--dark-border);
    margin: 0;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 240px;
    background: var(--dark-lighter);
    border-right: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    padding: var(--space-md) 0;
    overflow-y: auto;
    z-index: 999;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav ul {
    padding: 0 var(--space-sm);
}

.sidebar-nav li {
    margin-bottom: 2px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.sidebar-nav a:hover {
    background: var(--dark-card);
    color: var(--text);
}

.sidebar-nav a.active {
    background: rgba(0, 210, 106, 0.1);
    color: var(--primary);
}

.nav-icon {
    font-size: 1.125rem;
}

.sidebar-divider {
    height: 1px;
    background: var(--dark-border);
    margin: var(--space-md) 0;
}

.sidebar-stats {
    padding: var(--space-md);
    margin: var(--space-md) var(--space-sm) 0;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Dashboard Main Content */
.dashboard-main {
    margin-left: 240px;
    padding-top: 60px;
    min-height: 100vh;
    background: var(--dark);
}

.dashboard-content {
    padding: var(--space-lg);
    padding-bottom: var(--space-2xl);
    max-width: 100%;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.page-header h1 {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.page-actions {
    display: flex;
    gap: var(--space-sm);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card .stat-info h3 {
    font-size: 1.5rem;
    margin: 0;
}

.stat-card .stat-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.dashboard-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.dashboard-card:hover {
    transform: none;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--dark-border);
}

.card-header h3 {
    font-size: 1rem;
    margin: 0;
}

.card-body {
    padding: var(--space-md);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--text-muted);
}

/* Schedule List */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--dark-lighter);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--dark-border);
}

.schedule-item.status-confirmed {
    border-left-color: var(--primary);
}

.schedule-item.status-pending {
    border-left-color: #F59E0B;
}

.schedule-item.status-cancelled {
    border-left-color: #EF4444;
    opacity: 0.6;
}

.schedule-time {
    font-weight: 700;
    font-size: 1rem;
    min-width: 50px;
}

.schedule-info {
    flex: 1;
}

.schedule-info strong {
    display: block;
}

.schedule-info span {
    font-size: 0.875rem;
}

.schedule-status {
    font-size: 0.75rem;
}

/* Member List */
.member-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.member-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--dark-lighter);
    border-radius: var(--radius-sm);
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.member-info {
    flex: 1;
}

.member-info strong {
    display: block;
}

.member-info span {
    font-size: 0.875rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--dark-lighter);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.quick-action-btn:hover {
    background: var(--dark-border);
    color: var(--primary);
}

.action-icon {
    font-size: 1.5rem;
}

/* Responsive Dashboard */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .user-name {
        display: none;
    }
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: var(--transition-normal);
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .subscription-badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   DATA TABLE
   ============================================ */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--dark-border);
}

.data-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr:hover {
    background: var(--dark-lighter);
}

.data-table .actions {
    display: flex;
    gap: var(--space-xs);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(0, 210, 106, 0.1);
    color: var(--primary);
}

.status-badge.inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */
.hero-enhanced {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    display: none;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 210, 106, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-enhanced .hero-content {
    max-width: 600px;
}

.hero-enhanced .hero-badge {
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-enhanced h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--primary);
    font-weight: 700;
}

.hero-enhanced .hero-buttons {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(0, 210, 106, 0.4);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 210, 106, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 210, 106, 0.6);
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-border);
    animation: fadeInUp 0.6s ease 0.5s both;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-display);
}

.trust-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   iPHONE MOCKUP
   ============================================ */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.iphone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notch-camera {
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #2a2a2a;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Floating Labels */
.phone-label {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.label-1 {
    top: 80px;
    right: -30px;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.label-2 {
    bottom: 120px;
    left: -40px;
    color: var(--secondary);
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   WHATSAPP SIMULATOR
   ============================================ */
.whatsapp-simulator {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0b141a;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 45px 12px 10px;
    background: #1f2c34;
}

.wa-back {
    color: #00a884;
    font-size: 1.25rem;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00D26A, #00a884);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.wa-contact {
    flex: 1;
}

.wa-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e9edef;
}

.wa-status {
    font-size: 0.6875rem;
    color: #8696a0;
}

.wa-actions {
    display: flex;
    gap: 16px;
    color: #aebac1;
    font-size: 1rem;
}

.wa-chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #0b141a;
}

.wa-message {
    margin-bottom: 8px;
    display: flex;
}

.wa-message-bot {
    justify-content: flex-start;
}

.wa-message-user {
    justify-content: flex-end;
}

.wa-bubble {
    max-width: 85%;
    padding: 8px 10px 4px;
    border-radius: 8px;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #e9edef;
    position: relative;
}

.wa-message-bot .wa-bubble {
    background: #1f2c34;
    border-top-left-radius: 0;
}

.wa-message-user .wa-bubble {
    background: #005c4b;
    border-top-right-radius: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.wa-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.wa-btn {
    background: transparent;
    border: 1px solid #00a884;
    color: #00a884;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.wa-btn:hover {
    background: #00a884;
    color: #0b141a;
}

.wa-reset {
    margin-top: 16px;
    text-align: center;
}

.wa-reset-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #8696a0;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.wa-reset-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e9edef;
}

.wa-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1f2c34;
}

.wa-input-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a3942;
    border-radius: 20px;
    padding: 8px 12px;
}

.wa-emoji {
    font-size: 1rem;
}

.wa-placeholder {
    color: #8696a0;
    font-size: 0.875rem;
}

.wa-send-btn {
    width: 36px;
    height: 36px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-enhanced .hero-content {
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-phone {
        margin-top: var(--space-xl);
    }

    .iphone-frame {
        width: 240px;
        height: 500px;
    }

    .phone-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-enhanced {
        padding: 100px 0 60px;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .trust-divider {
        display: none;
    }

    .iphone-frame {
        width: 280px;
        height: 580px;
    }
}

/* ============================================
   DESIGN ENHANCEMENT v2.0
   Premium styling, larger phone, custom scrollbars
   ============================================ */

/* ----- Global Custom Scrollbar ----- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark-lighter);
}

/* ----- Dashboard Scroll Fix ----- */
html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    overflow-y: auto;
}

/* ----- Larger iPhone Frame ----- */
.iphone-frame {
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #3a3a3a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 50px;
    padding: 14px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.iphone-screen {
    border-radius: 40px;
}

.iphone-notch {
    width: 130px;
    height: 32px;
}

/* iPhone side buttons */
.iphone-frame::before {
    content: '';
    position: absolute;
    top: 120px;
    left: -3px;
    width: 3px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 2px 0 0 2px;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    top: 170px;
    left: -3px;
    width: 3px;
    height: 60px;
    background: #2a2a2a;
    border-radius: 2px 0 0 2px;
}

/* ----- WhatsApp Custom Scrollbar ----- */
.wa-chat-body::-webkit-scrollbar {
    width: 4px;
}

.wa-chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.wa-chat-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.wa-chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ----- Enhanced Card Design ----- */
.dashboard-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-lighter) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 106, 0.3), transparent);
}

.dashboard-card:hover {
    border-color: rgba(0, 210, 106, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 210, 106, 0.05);
    transform: translateY(-2px);
}

/* ----- Enhanced Stat Cards ----- */
.stat-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-lighter) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    transform: translate(30%, -30%);
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 210, 106, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ----- Premium Buttons ----- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

/* ----- Enhanced Feature Cards ----- */
.feature-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, rgba(30, 37, 46, 0.5) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(0, 210, 106, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 210, 106, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15) 0%, rgba(0, 210, 106, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
}

/* ----- Enhanced Pricing Cards ----- */
.pricing-card {
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-lighter) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 210, 106, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

/* ----- Enhanced Page Sections ----- */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* ----- Testimonial Cards Enhanced ----- */
.testimonial-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-lighter) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(0, 210, 106, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ----- Enhanced Header ----- */
.header {
    backdrop-filter: blur(20px);
    background: rgba(15, 20, 25, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ----- Glass Effect Utility ----- */
.glass {
    background: rgba(30, 37, 46, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----- Animated Background Elements ----- */
.animated-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(50px, -50px);
    }

    50% {
        transform: translate(-30px, 30px);
    }

    75% {
        transform: translate(-50px, -20px);
    }
}

/* ----- Enhanced Form Inputs ----- */
input,
select,
textarea {
    background: var(--dark-lighter);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    color: var(--text);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.1), 0 0 20px rgba(0, 210, 106, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* ----- Enhanced Table ----- */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th {
    background: var(--dark-lighter);
    padding: 1rem;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--dark-border);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--dark-border);
    transition: background 0.2s ease;
}

.data-table tbody tr:hover td {
    background: rgba(0, 210, 106, 0.03);
}

/* ----- Empty State Enhanced ----- */
.empty-state {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}

.empty-state::before {
    content: '📭';
    display: block;
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

/* ----- Member Avatar Enhanced ----- */
.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 210, 106, 0.3);
}

/* ----- Schedule Item Enhanced ----- */
.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--dark-lighter);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
    border-left: 3px solid var(--primary);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: var(--dark-card);
    transform: translateX(4px);
}

.schedule-time {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    min-width: 50px;
}

.schedule-info {
    flex: 1;
}

.schedule-info strong {
    display: block;
    color: var(--text);
}

.schedule-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ----- Responsive Larger Phone ----- */
@media (max-width: 992px) {
    .iphone-frame {
        width: 280px;
        height: 580px;
    }
}

@media (max-width: 576px) {
    .iphone-frame {
        width: 260px;
        height: 540px;
    }
}

/* ----- Dashboard Mobile Fix ----- */
@media (max-width: 768px) {
    .dashboard-main {
        margin-left: 0;
        padding-bottom: 80px;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }
}