/* ═══════════════════════════════════════════════════════════════════════════
   Oga Crypto Investments — Premium Stylesheet
   Brand: Gold & Charcoal — No gradients, solid colours only
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */

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

:root {
    /* Brand palette */
    --rich-gold: #D4A64A;
    --deep-gold: #B8872D;
    --champagne-gold: #E7C87A;
    --silver-white: #E5E5E5;
    --charcoal-black: #121212;
    --graphite-black: #232323;

    /* Semantic */
    --bg: var(--charcoal-black);
    --bg-elevated: var(--graphite-black);
    --bg-card: #1a1a1a;
    --bg-input: #1e1e1e;
    --text: var(--silver-white);
    --text-muted: #999999;
    --text-dim: #6b6b6b;
    --accent: var(--rich-gold);
    --accent-hover: var(--deep-gold);
    --accent-light: var(--champagne-gold);
    --border: #333333;
    --border-light: #2a2a2a;
    --success: #4CAF50;
    --danger: #e53935;
    --warning: #FF9800;
    --info: #2196F3;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 999px;

    /* Shadows (solid, no gradients) */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 166, 74, 0.15);

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --nav-height: 72px;
    --sidebar-width: 260px;
    --content-max: 1200px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--accent-light);
}

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

ul,
ol {
    list-style: none;
}

/* ── Typography ───────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-muted);
    line-height: 1.7;
}

.text-gold {
    color: var(--accent);
}

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

/* ── Layout Utilities ─────────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title h2 {
    margin-bottom: var(--space-xs);
}

.section-title .subtitle {
    color: var(--accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    display: block;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--charcoal-black);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--charcoal-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 166, 74, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--charcoal-black);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-danger {
    background-color: transparent;
    color: var(--danger);
    border-color: var(--danger);
}

.btn-danger:hover {
    background-color: var(--danger);
    color: var(--silver-white);
}

.btn-success {
    background-color: transparent;
    color: var(--success);
    border-color: var(--success);
}

.btn-success:hover {
    background-color: var(--success);
    color: var(--silver-white);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

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

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background-color: var(--charcoal-black);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    max-width: var(--content-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand:hover {
    opacity: 0.85;
}

.navbar-brand .navbar-logo {
    height: calc(var(--nav-height) - 16px);
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.navbar-links a:hover {
    color: var(--accent);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.navbar-links a:hover::after {
    width: 100%;
}

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

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ── Hero Section ─────────────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-xl);
    background-color: var(--bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial(circle at 20% 50%, rgba(212, 166, 74, 0.04) 0%, transparent 50%),
        radial(circle at 80% 20%, rgba(212, 166, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--accent);
    font-style: italic;
}

.hero .tagline {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-ticker {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-lg);
    overflow: hidden;
}

.hero-ticker-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-align: left;
}

.ticker-row {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.ticker-item .symbol {
    font-weight: 700;
    color: var(--text);
}

.ticker-item .price {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.ticker-item .change {
    font-size: 0.75rem;
    font-weight: 600;
}

.ticker-item .change.up {
    color: var(--success);
}

.ticker-item .change.down {
    color: var(--danger);
}

/* ── Stats Banner ─────────────────────────────────────────────────────────── */

.stats-banner {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    padding: var(--space-sm);
}

.stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.8125rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── How It Works ─────────────────────────────────────────────────────────── */

.how-it-works {
    background-color: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--bg-elevated);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto var(--space-sm);
}

.step-card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Plans Section ────────────────────────────────────────────────────────── */

.plans {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.plan-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.plan-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--charcoal-black);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.plan-rate {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.plan-rate .period {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-weight: 400;
}

.plan-deposit {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.plan-features {
    flex: 1;
    margin-bottom: var(--space-md);
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── FAQ Section ──────────────────────────────────────────────────────────── */

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

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .faq-icon {
    color: var(--accent);
    font-size: 1.25rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-md) var(--space-sm);
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */

.testimonials {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.testimonial-card .quote-mark {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-style: italic;
    line-height: 1.7;
}

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

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    background-color: var(--bg-elevated);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-author .author-info .name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.testimonial-author .author-info .location {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.testimonial-author .author-info .plan-badge {
    font-size: 0.6875rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── CTA Section ──────────────────────────────────────────────────────────── */

.cta-section {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.cta-section h2 {
    margin-bottom: var(--space-sm);
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */

.footer {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.footer-disclaimer {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ── Auth Pages (Login / Register) ────────────────────────────────────────── */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-sm) var(--space-lg);
}

.auth-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 460px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.auth-card .auth-logo .brand-icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--charcoal-black);
    margin-bottom: var(--space-sm);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.auth-card .auth-footer {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Forms ────────────────────────────────────────────────────────────────── */

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 166, 74, 0.1);
}

.form-control::placeholder {
    color: var(--text-dim);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A64A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.375rem;
}

.form-error {
    background-color: rgba(229, 57, 53, 0.1);
    border: 1px solid var(--danger);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--danger);
    margin-bottom: var(--space-md);
}

.form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--success);
    margin-bottom: var(--space-md);
}

/* ── Dashboard Layout ─────────────────────────────────────────────────────── */

.dashboard {
    display: flex;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

.dashboard-sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-elevated);
    border-right: 1px solid var(--border-light);
    padding: var(--space-md) 0;
    position: fixed;
    top: var(--nav-height);
    bottom: 0;
    left: 0;
    overflow-y: auto;
    transition: var(--transition);
    z-index: 900;
}

.dashboard-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 var(--space-sm);
}

.dashboard-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.dashboard-sidebar nav a:hover {
    background-color: var(--bg-card);
    color: var(--accent);
}

.dashboard-sidebar nav a.active {
    background-color: var(--bg-card);
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: calc(1rem - 3px);
}

.dashboard-sidebar nav a .nav-icon {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.dashboard-sidebar .sidebar-section {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    padding: var(--space-md) 1rem var(--space-xs);
    font-weight: 600;
}

.dashboard-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: var(--space-md);
    min-width: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.dashboard-header h1 {
    font-size: 1.75rem;
    margin: 0;
}

.dashboard-header .header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* ── Dashboard Cards ──────────────────────────────────────────────────────── */

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.card-header h3 {
    font-size: 1.125rem;
    margin: 0;
}

.card-header .card-action {
    font-size: 0.8125rem;
}

.card-body {
    padding: 0;
}

.card-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

/* Balance Card */
.balance-card {
    background-color: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
    margin-bottom: var(--space-md);
}

.balance-card .balance-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.balance-card .balance-amount {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.balance-card .balance-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Stat Cards Grid */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.stat-card .stat-card-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.stat-card .stat-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.stat-card .stat-card-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.dashboard-grid .full-width {
    grid-column: 1 / -1;
}

/* ── Tables ───────────────────────────────────────────────────────────────── */

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

table thead {
    background-color: var(--bg-elevated);
}

table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

table td {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

table tbody tr {
    transition: var(--transition);
}

table tbody tr:hover {
    background-color: var(--bg-elevated);
}

table tbody tr:last-child td {
    border-bottom: none;
}

.table-empty {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--text-dim);
}

.table-empty .empty-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    opacity: 0.3;
}

/* ── Badges ───────────────────────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    white-space: nowrap;
}

.badge-pending {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning);
    border-color: rgba(255, 152, 0, 0.3);
}

.badge-confirmed,
.badge-approved,
.badge-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
    border-color: rgba(76, 175, 80, 0.3);
}

.badge-rejected {
    background-color: rgba(229, 57, 53, 0.1);
    color: var(--danger);
    border-color: rgba(229, 57, 53, 0.3);
}

.badge-paid {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--info);
    border-color: rgba(33, 150, 243, 0.3);
}

.badge-frozen {
    background-color: rgba(229, 57, 53, 0.1);
    color: var(--danger);
    border-color: rgba(229, 57, 53, 0.3);
}

.badge-active {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
    border-color: rgba(76, 175, 80, 0.3);
}

.badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

/* ── Chat Widget ──────────────────────────────────────────────────────────── */

.chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 800;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--charcoal-black);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-height: 480px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.open {
    display: flex;
}

.chat-header {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header .chat-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--accent);
}

.chat-header .chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
    line-height: 1;
}

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

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 320px;
}

.chat-message {
    max-width: 80%;
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.user {
    align-self: flex-end;
    background-color: var(--accent);
    color: var(--charcoal-black);
    border-bottom-right-radius: 4px;
}

.chat-message.admin {
    align-self: flex-start;
    background-color: var(--bg-elevated);
    color: var(--text);
    border: 1px solid var(--border-light);
    border-bottom-left-radius: 4px;
}

.chat-message .msg-time {
    font-size: 0.625rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    display: block;
}

.chat-message.user .msg-time {
    color: rgba(18, 18, 18, 0.6);
}

.chat-input-area {
    padding: var(--space-sm);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background-color: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.8125rem;
    outline: none;
    font-family: var(--font-body);
}

.chat-input-area input:focus {
    border-color: var(--accent);
}

.chat-input-area button {
    padding: 0.5rem 0.875rem;
    background-color: var(--accent);
    color: var(--charcoal-black);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: var(--transition);
}

.chat-input-area button:hover {
    background-color: var(--accent-hover);
}

/* Full chat page (dashboard) */
.chat-page {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--nav-height) - var(--space-md) * 2 - 80px);
}

.chat-page-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.chat-page-input {
    display: flex;
    gap: 0.5rem;
}

.chat-page-input input {
    flex: 1;
}

/* Admin chat list */
.admin-chat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-md);
    height: calc(100vh - var(--nav-height) - 160px);
}

.admin-chat-list {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow-y: auto;
}

.admin-chat-list-item {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.admin-chat-list-item:hover {
    background-color: var(--bg-elevated);
}

.admin-chat-list-item.active {
    background-color: var(--bg-elevated);
    border-left: 3px solid var(--accent);
}

.admin-chat-list-item .chat-user-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.admin-chat-list-item .chat-preview {
    font-size: 0.75rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-chat-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── WhatsApp Float Button ────────────────────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 800;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ── Alert / Notification ─────────────────────────────────────────────────── */

.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid;
}

.alert-info {
    background-color: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    color: var(--info);
}

.alert-warning {
    background-color: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
    color: var(--warning);
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: var(--success);
}

.alert-danger {
    background-color: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
    color: var(--danger);
}

/* ── KYC Status ───────────────────────────────────────────────────────────── */

.kyc-status-box {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--space-md);
}

.kyc-status-box.not_submitted {
    background-color: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.kyc-status-box.pending {
    background-color: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.kyc-status-box.approved {
    background-color: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.kyc-status-box.rejected {
    background-color: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.kyc-status-box .kyc-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.kyc-status-box .kyc-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.kyc-status-box .kyc-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── Deposit Instructions Box ─────────────────────────────────────────────── */

.instructions-box {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.instructions-box h4 {
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.instructions-box p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.instructions-box .whatsapp-cta {
    margin-top: var(--space-md);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── User Info Display ────────────────────────────────────────────────────── */

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

.user-info .user-avatar {
    width: 36px;
    height: 36px;
    background-color: var(--bg-elevated);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.user-info .user-details .user-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}

.user-info .user-details .user-email {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ── Mobile Sidebar Toggle ────────────────────────────────────────────────── */

.sidebar-toggle {
    display: none;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 850;
}

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

/* ── Action Buttons in Tables ─────────────────────────────────────────────── */

.action-group {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

/* ── Misc Utilities ───────────────────────────────────────────────────────── */

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

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

.text-sm {
    font-size: 0.8125rem;
}

.text-xs {
    font-size: 0.75rem;
}

.no-data {
    text-align: center;
    padding: var(--space-lg);
    color: var(--text-dim);
    font-size: 0.875rem;
}

.divider {
    height: 1px;
    background-color: var(--border-light);
    margin: var(--space-md) 0;
}

/* ── Scrollbar ────────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First Approach for Kenyan Users on Various Devices
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: inline-block;
    }

    .admin-chat-layout {
        grid-template-columns: 200px 1fr;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-xl: 3rem;
    }

    .navbar-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background-color: var(--charcoal-black);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-sm);
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .navbar-links.open {
        transform: translateY(0);
    }

    .navbar-links a {
        width: 100%;
        padding: 0.75rem 0;
    }

    .navbar-links a::after {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-actions {
        gap: 0.5rem;
    }

    .navbar-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg);
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .stat-item .stat-value {
        font-size: 1.75rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .auth-card {
        padding: var(--space-lg) var(--space-md);
    }

    .dashboard-main {
        padding: var(--space-sm);
    }

    .dashboard-header h1 {
        font-size: 1.375rem;
    }

    .balance-card .balance-amount {
        font-size: 2rem;
    }

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

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

    .table-wrap {
        font-size: 0.8125rem;
    }

    table th,
    table td {
        padding: 0.5rem 0.625rem;
    }

    .chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-window {
        width: calc(100vw - 2rem);
    }

    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 48px;
        height: 48px;
    }

    .admin-chat-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .admin-chat-list {
        max-height: 200px;
    }

    .admin-chat-panel {
        min-height: 400px;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .navbar-brand .navbar-logo {
        height: calc(var(--nav-height) - 20px);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .tagline {
        font-size: 0.9375rem;
    }

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

    .stat-item .stat-value {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .card {
        padding: var(--space-sm);
    }

    .action-group {
        flex-direction: column;
    }

    .action-group .btn {
        width: 100%;
    }
}

/* Print */
@media print {
    .navbar,
    .dashboard-sidebar,
    .chat-widget,
    .whatsapp-float,
    .sidebar-toggle {
        display: none;
    }

    .dashboard-main {
        margin-left: 0;
    }
}
