/**
 * PRÎVÍÑVÂŪLT - Main Stylesheet
 * Light theme for public pages | Dark theme for dashboard
 */

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

:root {
    /* Brand Colors */
    --primary: #C41E3A;
    --primary-hover: #A01830;
    --primary-light: rgba(196, 30, 58, 0.1);
    --gold: #C9A84C;
    --gold-hover: #A88B3C;
    --gold-light: rgba(201, 168, 76, 0.1);
    
    /* Dark Theme */
    --dark-navy: #0F1923;
    --dark-card: #1a1d29;
    --dark-card-2: #242838;
    --dark-border: #2d3142;
    --dark-text: #8b8fa3;
    --dark-text-light: #c5c8d4;
    
    /* Light Theme */
    --white: #FFFFFF;
    --light-bg: #F5F7FA;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-light: #E5E5E5;
    
    /* Feature Blue */
    --feature-blue: #1B3A5C;
    --feature-blue-light: #244a70;
    
    /* Dashboard */
    --dash-bg: #0f1117;
    --dash-card: #1a1d2a;
    --dash-card-hover: #222638;
    --dash-success: #10b981;
    --dash-warning: #f59e0b;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
    
    /* Spacing */
    --container: 1200px;
    --section-pad: 80px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

html { scroll-behavior: smooth; }

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

body.dashboard-body {
    background: var(--dash-bg);
    color: var(--dark-text-light);
    padding-bottom: 80px;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

img { max-width: 100%; height: auto; }

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title span { font-weight: 400; }

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 16px;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }

.btn-gold {
    background: var(--gold);
    color: white;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: white; color: var(--dark-navy); }

.btn-dark {
    background: var(--dark-navy);
    color: white;
}
.btn-dark:hover { background: #1a2a3a; }

.btn-green {
    background: var(--dash-success);
    color: white;
}
.btn-green:hover { background: #059669; }

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 48px; font-size: 16px; }

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark-navy);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-bar i { color: var(--primary); }

/* ==================== NAVBAR ==================== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    font-style: italic;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

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

.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::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    font-size: 24px;
    color: var(--text-primary);
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:hover { color: var(--primary); padding-left: 8px; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.mobile-overlay.active { display: block; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-subtitle .dot {
    color: var(--primary);
    font-weight: 700;
    margin: 0 6px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 32px;
}

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

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
    border: none;
    font-size: 18px;
}

.hero-nav:hover { background: rgba(255,255,255,0.3); }

.hero-nav.prev { left: 24px; }
.hero-nav.next { right: 24px; }

/* ==================== CRYPTO TICKER ==================== */
.crypto-ticker {
    background: var(--dark-navy);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ticker-name { font-weight: 600; }
.ticker-price { font-weight: 500; }
.ticker-change-up { color: #10b981; font-weight: 600; }
.ticker-change-down { color: #ef4444; font-weight: 600; }

/* ==================== FEATURE CARDS ==================== */
.features-section {
    background: white;
    padding: 0 0 var(--section-pad);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-card {
    background: var(--feature-blue);
    padding: 48px 36px;
    color: white;
    transition: var(--transition);
}

.feature-card:nth-child(2) { background: #162d48; }
.feature-card:nth-child(3) { background: var(--feature-blue); }

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ==================== SERVICES ==================== */
.services-section { padding: var(--section-pad) 0; }

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

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 1;
}

.services-grid .service-card:nth-child(4) { justify-self: end; }
.services-grid .service-card:nth-child(5) { justify-self: start; }

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card h4 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

/* ==================== ABOUT ==================== */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.about-feature h4 { font-size: 17px; margin-bottom: 6px; }
.about-feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ==================== PACKAGES ==================== */
.packages-section { padding: var(--section-pad) 0; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--dark-navy);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.package-return {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.package-percent {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 16px 0;
}

.package-detail {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
}

.package-detail .badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

.package-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin: 20px 0;
}

.package-btn {
    color: #60a5fa;
    font-weight: 600;
    font-size: 14px;
}
.package-btn:hover { text-decoration: underline; }

.referral-banner {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
}

.referral-banner span { color: var(--gold); }

/* ==================== WHY CHOOSE US ==================== */
.why-section { padding: var(--section-pad) 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.why-card {
    padding: 32px 28px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-card:hover { background: var(--light-bg); }

.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-last-child(-n+3) { border-bottom: none; }

.why-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.why-card h4 { font-size: 17px; font-weight: 600; }

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}
.why-link:hover { gap: 10px; }

/* ==================== MANAGEMENT GRID ==================== */
.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 400px;
}

.mgmt-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.mgmt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
}

.mgmt-card:hover .mgmt-bg { transform: scale(1.05); }

.mgmt-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.mgmt-content {
    position: absolute;
    bottom: 40px;
    left: 32px;
    z-index: 2;
    color: white;
}

.mgmt-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.mgmt-title {
    font-size: 24px;
    font-weight: 700;
}

/* ==================== STATS ==================== */
.stats-section { padding: var(--section-pad) 0; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.stat-circle-wrap {
    text-align: center;
}

.stat-circle {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    position: relative;
}

.stat-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.stat-circle-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.stat-circle-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.stat-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.stat-award-img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* ==================== GLOBAL MAP ==================== */
.map-section {
    padding: var(--section-pad) 0;
    background: var(--light-bg);
    text-align: center;
}

.map-img {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.6;
}

/* ==================== FAQ ==================== */
.faq-section { padding: var(--section-pad) 0; }

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

.faq-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: #3A3F47;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.faq-question:hover { background: #4a4f57; }

.faq-question i { color: var(--primary); font-size: 16px; }

.faq-question .chevron { margin-left: auto; transition: transform 0.3s ease; }

.faq-item.active .chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #4a4f57;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px 24px;
}

.faq-answer p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { padding: var(--section-pad) 0; }

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    scroll-snap-align: start;
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-quote {
    font-size: 48px;
    color: var(--border-light);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active { background: var(--primary); width: 24px; border-radius: 5px; }

/* ==================== DEPOSITS / WITHDRAWALS ==================== */
.dw-section { padding: var(--section-pad) 0; }

.dw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.dw-card {
    background: #3A3F47;
    border-radius: 10px;
    padding: 24px;
    color: white;
    transition: var(--transition);
}

.dw-card.highlight {
    background: var(--gold);
    transform: scale(1.05);
}

.dw-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.dw-card p { font-size: 14px; opacity: 0.9; }

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--section-pad) 0;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.cta-box h2 { font-size: 32px; margin-bottom: 16px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }

/* ==================== PAYMENT METHODS ==================== */
.payment-section { padding: 60px 0; }

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.payment-icon {
    width: 100px;
    height: 100px;
    background: var(--dark-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.payment-icon img { width: 50px; height: 50px; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-item i { color: var(--primary); }

.footer-links h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-links a i { font-size: 10px; color: var(--primary); }

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

/* ==================== FLOATING BUTTONS ==================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-hover); transform: translateY(-4px); }

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-widget:hover { transform: scale(1.1); background: var(--primary-hover); }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

textarea.form-input { resize: vertical; min-height: 100px; }

select.form-input { cursor: pointer; }

/* ==================== AUTH PAGES ==================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.auth-card .logo { justify-content: center; margin-bottom: 32px; }

.auth-card h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a { color: var(--primary); font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* ==================== DASHBOARD ==================== */

/* Dashboard Header */
.dash-header {
    background: var(--dash-card);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--dark-border);
}

.dash-header .logo-brand { color: white; font-size: 16px; }
.dash-header .logo-tagline { font-size: 7px; }

.dash-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dark-card-2);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--dark-border);
    transition: var(--transition-fast);
}

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

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

/* Dashboard Content */
.dash-content { padding: 24px; max-width: 600px; margin: 0 auto; }

.dash-welcome h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
}

.dash-welcome p {
    font-size: 14px;
    color: var(--dash-success);
    margin-bottom: 16px;
}

/* KYC Banner */
.kyc-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dash-success);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.kyc-banner:hover { background: #059669; }

.kyc-banner.verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--dash-success);
}

/* Balance Card */
.balance-card {
    background: var(--dash-card);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--dark-border);
}

.balance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.balance-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.balance-title i { color: var(--dash-success); font-size: 20px; }

.balance-subtitle {
    font-size: 12px;
    color: var(--dark-text);
    margin-top: 2px;
}

.balance-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.balance-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--dash-success);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.balance-updated {
    font-size: 12px;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.balance-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.balance-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.balance-btn.deposit {
    background: var(--dark-card-2);
    color: white;
    border: 1px solid var(--dark-border);
}
.balance-btn.deposit:hover { background: var(--dash-success); border-color: var(--dash-success); }

.balance-btn.withdraw {
    background: var(--dark-card-2);
    color: white;
    border: 1px solid var(--dark-border);
}
.balance-btn.withdraw:hover { background: var(--primary); border-color: var(--primary); }

/* Stats Grid */
.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--dash-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--dark-border);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stat-card-title {
    font-size: 14px;
    color: var(--dark-text);
}

.stat-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-card-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--dash-success); }
.stat-card-icon.gold { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
.stat-card-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.stat-card-icon.red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.stat-card-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-card-note {
    font-size: 12px;
    color: var(--dark-text);
}

.stat-card-note.gold { color: var(--gold); }

/* Bottom Navigation */
.dash-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dash-card);
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 12px;
    z-index: 1000;
}

.dash-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    color: var(--dark-text);
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dash-nav-item i { font-size: 20px; }

.dash-nav-item.active,
.dash-nav-item:hover { color: var(--dash-success); }

.dash-nav-item.center {
    position: relative;
    top: -20px;
}

.dash-nav-item.center i {
    width: 56px;
    height: 56px;
    background: var(--dash-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    font-size: 22px;
}

/* KYC Page */
.kyc-status-card {
    background: var(--dash-card);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--dark-border);
    margin-bottom: 24px;
}

.kyc-status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
}

.kyc-status-icon.pending { background: rgba(245, 158, 11, 0.15); color: var(--dash-warning); }
.kyc-status-icon.verified { background: rgba(16, 185, 129, 0.15); color: var(--dash-success); }
.kyc-status-icon.rejected { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.kyc-form {
    background: var(--dash-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--dark-border);
}

.kyc-form .form-label { color: var(--dark-text-light); }

.kyc-form .form-input {
    background: var(--dark-card-2);
    border-color: var(--dark-border);
    color: white;
}

.kyc-form .form-input:focus {
    border-color: var(--dash-success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.file-upload {
    border: 2px dashed var(--dark-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--dark-text);
}

.file-upload:hover { border-color: var(--dash-success); }

.file-upload i { font-size: 32px; margin-bottom: 8px; display: block; }

/* Deposit Page */
.deposit-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.deposit-method {
    background: var(--dash-card);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.deposit-method:hover,
.deposit-method.active {
    border-color: var(--dash-success);
    background: var(--dark-card-2);
}

.deposit-method img { width: 40px; height: 40px; margin-bottom: 8px; }
.deposit-method span { display: block; font-size: 13px; color: var(--dark-text-light); }

.wallet-address-box {
    background: var(--dark-card-2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.wallet-address-box p { font-size: 12px; color: var(--dark-text); margin-bottom: 8px; }
.wallet-address {
    font-family: monospace;
    font-size: 14px;
    color: white;
    background: var(--dark-navy);
    padding: 12px;
    border-radius: 8px;
    word-break: break-all;
}

/* History Page */
.history-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.history-tab {
    padding: 10px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.history-tab.active,
.history-tab:hover {
    background: var(--dash-success);
    color: white;
    border-color: var(--dash-success);
}

.history-item {
    background: var(--dash-card);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history-item-left { display: flex; align-items: center; gap: 12px; }

.history-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.history-item-info h4 { font-size: 14px; color: white; margin-bottom: 2px; }
.history-item-info p { font-size: 12px; color: var(--dark-text); }

.history-item-amount { text-align: right; }
.history-item-amount h4 { font-size: 16px; color: white; }
.history-item-amount.in h4 { color: var(--dash-success); }
.history-item-amount.out h4 { color: #ef4444; }

/* Profile Page */
.profile-header {
    text-align: center;
    padding: 32px 0;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dash-success);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.profile-header h2 { color: white; font-size: 20px; }
.profile-header p { color: var(--dark-text); font-size: 14px; }

.profile-menu {
    background: var(--dash-card);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    overflow: hidden;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--dark-text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition-fast);
}

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

.profile-menu-item:hover { background: var(--dark-card-2); padding-left: 24px; }

.profile-menu-item i:first-child { color: var(--dash-success); margin-right: 12px; }

/* Admin Panel */
.admin-body { background: var(--light-bg); }
.admin-body .navbar { background: var(--dark-navy); }
.admin-body .navbar .logo-brand { color: white; }
.admin-body .nav-links a { color: rgba(255,255,255,0.8); }
.admin-body .nav-links a:hover { color: white; }

.admin-sidebar {
    width: 260px;
    background: var(--dark-navy);
    min-height: calc(100vh - 70px);
    position: fixed;
    left: 0;
    top: 70px;
    padding: 24px 0;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,0.05);
    color: white;
    border-left-color: var(--primary);
}

.admin-main {
    margin-left: 260px;
    padding: 32px;
}

.stat-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.stat-box h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-box .value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table th,
.admin-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.admin-table td { border-bottom: 1px solid var(--border-light); }
.admin-table tr:last-child td { border-bottom: none; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-slide-right { animation: slideInRight 0.5s ease forwards; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .mobile-menu { display: block; }
    
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .mgmt-grid { grid-template-columns: repeat(2, 1fr); height: 300px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .admin-sidebar { width: 200px; }
    .admin-main { margin-left: 200px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 48px; }
    
    .section-title { font-size: 28px; }
    .hero-title { font-size: 36px; }
    .hero { min-height: 500px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { border-right: none !important; }
    .mgmt-grid { grid-template-columns: 1fr; height: auto; }
    .mgmt-card { height: 250px; }
    .stats-grid { grid-template-columns: 1fr; }
    .dw-grid { grid-template-columns: 1fr; max-width: 300px; }
    .payment-icons { gap: 16px; }
    .payment-icon { width: 80px; height: 80px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .auth-card { padding: 32px 24px; }
    
    .hero-nav { display: none; }
    
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .deposit-methods { grid-template-columns: 1fr; }
    
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 13px; letter-spacing: 2px; }
    .btn { padding: 10px 24px; font-size: 13px; }
    .container { padding: 0 16px; }
    .dash-content { padding: 16px; }
}

/* Print styles */
@media print {
    .navbar, .footer, .chat-widget, .back-to-top, .dash-nav { display: none !important; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* Selection */
::selection { background: var(--primary); color: white; }


/* ==================== HERO SLIDER ==================== */
.hero-slider { position: relative; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,0.45); transition: all .3s ease; padding: 0;
}
.hero-dot.active { background: #fff; width: 28px; border-radius: 6px; }

/* ==================== LIVE CALCULATOR ==================== */
.calc-section { padding: 80px 0; background: #0e1116; color: #fff; }
.calc-head { text-align: center; margin-bottom: 36px; }
.calc-head h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.calc-head p { opacity: .7; font-size: 16px; }
.calc-card {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 28px;
}
.calc-label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; opacity: .6; margin: 16px 0 10px; }
.calc-plans { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.calc-plan {
    text-align: left; padding: 14px; border-radius: 12px; cursor: pointer;
    background: rgba(255,255,255,0.05); color: #fff;
    border: 1px solid rgba(255,255,255,0.1); transition: all .2s ease;
}
.calc-plan span { display: block; font-weight: 700; font-size: 15px; }
.calc-plan small { opacity: .65; font-size: 12px; }
.calc-plan.active { border-color: var(--primary, #C41E3A); background: rgba(196,30,58,0.18); }
.calc-input {
    width: 100%; padding: 14px 16px; font-size: 20px; font-weight: 700; color: #fff;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px;
}
.calc-range { width: 100%; margin-top: 14px; accent-color: var(--primary, #C41E3A); }
.calc-range-note { display: flex; justify-content: space-between; font-size: 12px; opacity: .55; margin-top: 6px; }
.calc-warn { color: #ffb4b4; font-size: 13px; min-height: 18px; margin-top: 8px; }
.calc-results { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.calc-result { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.calc-result span { opacity: .7; font-size: 14px; }
.calc-result strong { font-size: 18px; font-weight: 700; }
.calc-result.total strong { color: var(--primary, #C41E3A); font-size: 24px; }
.calc-cta { margin-top: auto; text-align: center; }
@media (max-width: 900px) { .calc-card { grid-template-columns: 1fr; } .calc-head h2 { font-size: 26px; } }

/* ==================== ADMIN UI HELPERS ==================== */
.adm-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.adm-nav a {
    padding: 9px 14px; border-radius: 10px; font-size: 14px; font-weight: 600;
    background: rgba(0,0,0,0.05); color: inherit; text-decoration: none;
}
.adm-nav a.active { background: var(--primary, #C41E3A); color: #fff; }
.adm-card { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; padding: 22px; margin-bottom: 22px; }
.adm-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.adm-field { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; opacity: .75; }
.adm-input, .adm-select, .adm-textarea {
    width: 100%; padding: 11px 13px; border: 1px solid rgba(0,0,0,.15);
    border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff;
}
.adm-textarea { min-height: 120px; font-family: ui-monospace, Menlo, Consolas, monospace; }
.adm-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.adm-table th, .adm-table td { padding: 11px 10px; border-bottom: 1px solid rgba(0,0,0,.07); text-align: left; }
.adm-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; opacity: .6; }
.adm-actions { display: flex; gap: 8px; flex-wrap: wrap; }
