* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --dark: #0a0a0a;
    --gray: #71717a;
    --light-gray: #18181b;
    --white: #fafafa;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-vibrant: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-sunset: linear-gradient(135deg, #f43f5e 0%, #f59e0b 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.7);
    --glow: 0 0 40px rgba(59, 130, 246, 0.4);
    --bg-dark: #0a0a0a;
    --bg-card: #18181b;
    --border-dark: #27272a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--bg-dark);
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 122, 255, 0.4)) brightness(1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-image:hover {
    filter: drop-shadow(0 6px 24px rgba(0, 122, 255, 0.7)) brightness(1.2);
    transform: scale(1.08) translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.desktop-only {
    display: inline-block;
}

/* Buttons */
.btn {
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.5), 0 0 60px rgba(0, 122, 255, 0.3);
}

.btn-arrow {
    transition: transform 0.3s;
    font-size: 20px;
}

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

.play-icon {
    font-size: 14px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 10px 24px;
    font-size: 15px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 25px 0 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #764ba2, transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #f093fb, transparent);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 14px;
    border-radius: 16px;
    color: var(--white);
    font-size: 12px;
    margin-bottom: 12px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.hero-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.app-window {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    animation: floatWindow 6s ease-in-out infinite;
}

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

.window-header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.window-content {
    padding: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-vibrant);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 0.6;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.stat-number::after {
    content: attr(data-suffix);
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.2;
}

.stat-trend {
    font-size: 11px;
    color: #34C759;
    margin-top: 4px;
    font-weight: 600;
}

.progress-bar {
    margin-top: 12px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-vibrant);
    border-radius: 10px;
    animation: fillProgress 3s ease-out forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 87%; }
}

/* Section Styles */
section {
    padding: 25px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number-large {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-large {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

@media (max-width: 768px) {
    .stats-banner {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    }
    
    .stat-number-large {
        font-size: 48px;
    }
    
    .stat-label-large {
        font-size: 14px;
    }
}

/* Problem Section */
.problem {
    background: var(--bg-card);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.problem-card {
    text-align: center;
    padding: 18px;
}

.problem-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features {
    background: var(--bg-dark);
    padding: 25px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.feature-card {
    background: var(--bg-card);
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-vibrant);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 14px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    background: var(--bg-card);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-vibrant);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 18px rgba(102, 126, 234, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.step-content h3 {
    font-size: 19px;
    margin-bottom: 5px;
    color: var(--white);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Benefits */
.benefits {
    background: var(--dark);
    color: var(--white);
}

.benefits .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}

.benefit-card {
    text-align: center;
    padding: 22px 16px;
}

.benefit-stat {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.benefit-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

/* Interface Showcase Section */
.interface-showcase {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 30px 0;
}

.interface-showcase .section-title {
    color: var(--white);
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interface-showcase .gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.interface-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.interface-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.interface-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.interface-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.interface-item:hover img {
    transform: scale(1.05);
}

.interface-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interface-item:hover .interface-overlay {
    transform: translateY(0);
}

.interface-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing {
    background: var(--bg-card);
    padding: 25px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-dark);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-dark);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-ribbon {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 0 14px 0 14px;
    letter-spacing: 0.5px;
}

.pricing-ribbon.special {
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B6B 100%);
}

.pricing-badge {
    display: inline-block;
    background: #FFD60A;
    color: #1D1D1F;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}

.pricing-badge.early-bird {
    background: #FFD60A;
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

.feature-item {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    border-bottom: 1px solid var(--border-dark);
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.price-period {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 20px;
    display: flex;
    text-align: center;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 17px;
    margin-bottom: 22px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 25px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 26px;
    margin-bottom: 26px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section p {
    color: var(--gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 12px;
}

.footer-bottom p {
    margin-bottom: 6px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Responsive - Mobile Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        font-size: 16px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

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

    .section-title {
        font-size: 28px;
    }

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

    .step {
        flex-direction: column;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .pricing-card {
        padding: 20px;
    }

    .pricing-icon {
        font-size: 36px;
    }

    .pricing-title {
        font-size: 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .window-content {
        padding: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .notification-stack {
        left: 12px;
        right: 12px;
        bottom: 12px;
        opacity: 0.9;
    }

    .activity-notification {
        min-width: unset;
        max-width: 100%;
        padding: 12px 14px;
        gap: 12px;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .notification-name {
        font-size: 13px;
    }

    .notification-email {
        font-size: 11px;
        display: none;
    }

    .notification-action {
        font-size: 12px;
    }

    .notification-meta {
        display: none;
    }
}

/* Responsive - Mobile Landscape */
@media (max-width: 900px) and (max-height: 500px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer {
        padding: 30px 0 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    .pricing-card {
        padding: 16px;
    }

    .feature-item {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-image {
        height: 48px;
    }

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

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

    .notification-stack {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .activity-notification {
        padding: 12px;
        gap: 12px;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .notification-stack {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Enhanced Gallery Effects */
.gallery-item {
    transform-style: preserve-3d;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity 0.4s;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 0.2;
}

/* Enhance CTA Section */
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(241, 7, 163, 0.15) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Text glow effects */
.hero-title, h1 {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                 0 0 60px rgba(123, 47, 247, 0.2);
}

/* Enhanced benefit cards */
.benefit-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-card);
    padding: 30px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-dark);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: rgba(0, 212, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cyber);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Integrations Section */
.integrations {
    padding: 30px 0;
    background: var(--bg-dark);
}

.integrations-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.integration-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
    background: var(--bg-card);
}

.integration-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.integration-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.integration-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq {
    background: var(--bg-card);
    padding: 30px 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-dark);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 1px solid var(--border-dark);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
//==============================================================================
/* Typewriter Effect */
//==============================================================================
.typewriter {
    display: inline-block;
    border-right: 3px solid #00d4ff;
    animation: blink 0.7s infinite;
    min-width: 200px;
}

@keyframes blink {
    50% { border-color: transparent; }
}

//==============================================================================
/* Trust Badges */
//==============================================================================
.trust-badges {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.trust-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

//==============================================================================
/* Live Activity Notifications (Smart Popups) */
//==============================================================================
.notification-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
}

.activity-notification {
    position: relative;
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    min-width: 380px;
    max-width: 460px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(40px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    pointer-events: auto;
}

.activity-notification.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes notificationSlideIn {
    0% { 
        transform: translateX(100px);
        opacity: 0;
    }
    100% { 
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.notification-name {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-email {
    color: #4b5563;
    font-size: 13px;
    white-space: nowrap;
}

.notification-time {
    color: #9ca3af;
    font-size: 12px;
    white-space: nowrap;
}

.notification-action {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.notification-meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.notification-module,
.notification-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #1f2937;
}

.notification-status {
    background: rgba(0, 212, 255, 0.12);
    color: #0369a1;
}

//==============================================================================
/* Responsive */
//==============================================================================
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trust-item {
        padding: 16px 12px;
    }
    
    .trust-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .trust-text {
        font-size: 12px;
    }
}
    
    /* Compact Stats Section */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.stats-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.stat-suffix {
    font-size: 20px;
    opacity: 0.9;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-icon {
        font-size: 28px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}
            }

            .stat-mini-icon {
                font-size: 28px;
            }
        }
    

    <!-- Trust Badges -->

    
        /* Admin Icon */
        .admin-icon {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
            z-index: 1000;
            transition: transform 0.3s;
        }

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

        /* Admin Modal */
        .admin-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }

        .admin-modal-content {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            max-width: 400px;
            width: 90%;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .admin-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #999;
            cursor: pointer;
        }

        .admin-close:hover {
            color: #333;
        }

        .admin-modal-content h2 {
            margin-bottom: 10px;
            color: #1a1a2e;
        }

        .admin-modal-content p {
            margin-bottom: 24px;
            color: #666;
        }

        .admin-modal-content input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            margin-bottom: 16px;
            box-sizing: border-box;
        }

        .admin-modal-content input:focus {
            outline: none;
            border-color: #667eea;
        }

        .admin-error {
            color: #ff4444;
            margin-top: 10px;
            font-size: 14px;
        }

        /* Admin Dashboard */
        .admin-dashboard {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            overflow-y: auto;
        }

        .admin-dashboard-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

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

        .admin-header h2 {
            font-size: 32px;
            color: #1a1a2e;
            margin: 0;
        }

        .admin-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }

        .admin-metric-card {
            background: #fff;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
        }

        .admin-metric-card h3 {
            font-size: 13px;
            color: #999;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .admin-metric-card .value {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a2e;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            .admin-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .admin-metrics-grid {
                grid-template-columns: 1fr;
            }

            .admin-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
                bottom: 20px;
                right: 20px;
            }
        }
    
