/* ==========================================================================
   Future Minds Academy — Design System v2.0
   SINGLE SOURCE OF TRUTH for all styling
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */
:root {
    /* — Brand Colors — Professional Academy */
    --fm-deep-navy: #0f1724;
    --fm-dark-panel: #182230;
    --fm-secondary-panel: #1e2e42;
    --fm-accent: #4a7db5;
    --fm-accent-light: #6a9cd4;
    --fm-bronze: #c49a52;
    --fm-bronze-light: #d4b07a;
    --fm-white: #ffffff;
    --fm-muted-text: #a0aec0;
    --fm-soft-muted: #718096;
    --fm-success: #48a87c;
    --fm-warning: #d4a040;
    --fm-danger: #c45a5a;
    --fm-whatsapp: #25D366;

    /* — Glass Effects — */
    --fm-glass-bg: rgba(24, 34, 48, 0.6);
    --fm-glass-border: rgba(74, 125, 181, 0.12);
    --fm-glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    --fm-glass-hover-border: rgba(74, 125, 181, 0.3);

    /* — Spacing Scale — */
    --fm-space-1: 0.25rem;
    --fm-space-2: 0.5rem;
    --fm-space-3: 0.75rem;
    --fm-space-4: 1rem;
    --fm-space-6: 1.5rem;
    --fm-space-8: 2rem;
    --fm-space-12: 3rem;
    --fm-space-16: 4rem;

    /* — Border Radius — */
    --fm-radius-sm: 6px;
    --fm-radius-md: 8px;
    --fm-radius-lg: 12px;
    --fm-radius-xl: 16px;
    --fm-radius-full: 50%;

    /* — Shadows — */
    --fm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --fm-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --fm-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --fm-shadow-glow-accent: 0 8px 25px rgba(74, 125, 181, 0.2);
    --fm-shadow-glow-bronze: 0 8px 25px rgba(196, 154, 82, 0.2);

    /* — Typography — */
    --fm-font-primary: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --fm-font-size-xs: 0.75rem;
    --fm-font-size-sm: 0.875rem;
    --fm-font-size-base: 1rem;
    --fm-font-size-lg: 1.125rem;
    --fm-font-size-xl: 1.25rem;
    --fm-font-size-2xl: 1.5rem;
    --fm-font-size-3xl: 2rem;
    --fm-font-size-4xl: 2.5rem;

    /* — Z-Index Scale — */
    --fm-z-dropdown: 100;
    --fm-z-sticky: 200;
    --fm-z-navbar: 500;
    --fm-z-sidebar: 600;
    --fm-z-modal: 700;
    --fm-z-toast: 800;
    --fm-z-whatsapp: 900;

    /* — Transitions — */
    --fm-transition-fast: 0.15s ease;
    --fm-transition-base: 0.3s ease;
    --fm-transition-slow: 0.5s ease;
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--fm-font-primary);
    background: var(--fm-deep-navy);
    color: var(--fm-white);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(0, 183, 255, 0.25);
    color: var(--fm-white);
}

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

a:not(.fm-btn):hover {
    color: var(--fm-accent);
}

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

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

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   3. LAYOUT CLASSES
   ========================================================================== */
.fm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--fm-space-4);
}

.fm-section {
    padding: var(--fm-space-16) 0;
}

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

.fm-grid {
    display: grid;
    gap: var(--fm-space-6);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .fm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .fm-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fm-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fm-space-6);
}

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

.fm-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fm-space-6);
}

@media (min-width: 768px) {
    .fm-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fm-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fm-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fm-space-6);
}

@media (min-width: 640px) {
    .fm-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fm-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

/* ==========================================================================
   4. GLASS CARDS
   ========================================================================== */
.fm-card {
    background: var(--fm-dark-panel);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
    padding: var(--fm-space-6);
    transition: transform var(--fm-transition-base), box-shadow var(--fm-transition-base), border-color var(--fm-transition-base);
}

.fm-card-glass {
    background: var(--fm-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
    padding: var(--fm-space-6);
    box-shadow: var(--fm-glass-shadow);
    transition: transform var(--fm-transition-base), box-shadow var(--fm-transition-base), border-color var(--fm-transition-base);
}

.fm-card:hover,
.fm-card-glass:hover {
    transform: translateY(-2px);
}

.fm-card-hover {
    cursor: pointer;
}

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

.fm-card-course {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.fm-card-course .fm-card-body {
    padding: var(--fm-space-6);
}

.fm-card-course .fm-card-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--fm-secondary-panel);
}

.fm-card-course.featured {
    border-color: rgba(247, 183, 49, 0.3);
}

.fm-card-course.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--fm-bronze), transparent, var(--fm-bronze));
    border-radius: calc(var(--fm-radius-lg) + 2px);
    z-index: -1;
    opacity: 0.3;
}

.fm-card-stat {
    display: flex;
    align-items: center;
    gap: var(--fm-space-6);
}

.fm-card-stat .fm-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--fm-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(247, 183, 49, 0.1);
    color: var(--fm-bronze);
}

.fm-card-stat .fm-stat-value {
    font-size: var(--fm-font-size-2xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fm-bronze);
}

.fm-card-stat .fm-stat-label {
    font-size: var(--fm-font-size-sm);
    color: var(--fm-soft-muted);
    font-weight: 500;
}

.fm-card-audience {
    text-align: center;
    padding: var(--fm-space-8) var(--fm-space-6);
}

.fm-card-audience .fm-audience-icon {
    font-size: 2.5rem;
    margin-bottom: var(--fm-space-4);
}

.fm-card-audience .fm-audience-title {
    font-size: var(--fm-font-size-lg);
    font-weight: 600;
    margin-bottom: var(--fm-space-2);
}

.fm-card-audience .fm-audience-desc {
    font-size: var(--fm-font-size-sm);
    color: var(--fm-muted-text);
}

.fm-card-offer {
    border: 1px solid rgba(247, 183, 49, 0.3);
    text-align: center;
    padding: var(--fm-space-8);
}

.fm-card-offer .fm-offer-price {
    font-size: var(--fm-font-size-3xl);
    font-weight: 700;
    color: var(--fm-bronze);
    margin-bottom: var(--fm-space-4);
}

.fm-card-offer .fm-offer-cta {
    margin-top: var(--fm-space-6);
}

/* ==========================================================================
   5. BUTTONS SYSTEM
   ========================================================================== */
.fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fm-space-2);
    padding: var(--fm-space-3) 1.75rem;
    font-size: var(--fm-font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--fm-radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--fm-transition-base);
    font-family: var(--fm-font-primary);
}

.fm-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.fm-btn-primary {
    background: var(--fm-accent);
    color: var(--fm-white);
    border-color: transparent;
}

.fm-btn-primary:hover {
    background: var(--fm-accent-light);
    box-shadow: var(--fm-shadow-md);
    transform: translateY(-2px);
}

.fm-btn-gold {
    background: var(--fm-bronze);
    color: var(--fm-deep-navy);
    border-color: transparent;
}

.fm-btn-gold:hover {
    background: var(--fm-bronze-light);
    box-shadow: var(--fm-shadow-md);
    transform: translateY(-2px);
}

.fm-btn-primary:hover {
    box-shadow: var(--fm-shadow-glow-accent);
    transform: translateY(-2px);
}

.fm-btn-gold {
    background: linear-gradient(135deg, var(--fm-bronze), #e0a800);
    color: var(--fm-deep-navy);
    border-color: transparent;
}

.fm-btn-gold:hover {
    box-shadow: var(--fm-shadow-glow-bronze);
    transform: translateY(-2px);
}

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

.fm-btn-outline:hover {
    background: rgba(74, 125, 181, 0.08);
    border-color: var(--fm-accent-light);
    color: var(--fm-accent-light);
}

.fm-btn-outline:hover {
    background: rgba(0, 183, 255, 0.1);
    border-color: var(--fm-accent-light);
    color: var(--fm-accent-light);
}

.fm-btn-whatsapp {
    background: var(--fm-whatsapp);
    color: var(--fm-white);
    border-color: transparent;
}

.fm-btn-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

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

.fm-btn-ghost:hover {
    color: var(--fm-white);
    background: rgba(255, 255, 255, 0.05);
}

.fm-btn-sm {
    padding: var(--fm-space-2) var(--fm-space-4);
    font-size: var(--fm-font-size-xs);
}

.fm-btn-sm svg {
    width: 14px;
    height: 14px;
}

.fm-btn-lg {
    padding: var(--fm-space-4) var(--fm-space-8);
    font-size: var(--fm-font-size-lg);
}

.fm-btn-lg svg {
    width: 22px;
    height: 22px;
}

.fm-btn-block {
    width: 100%;
    display: flex;
}

.fm-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fm-radius-full);
}

.fm-btn-icon svg {
    width: 18px;
    height: 18px;
}

.fm-btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.fm-btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: fm-spin 0.6s linear infinite;
    margin-left: var(--fm-space-2);
}

.fm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   6. TYPOGRAPHY
   ========================================================================== */
.fm-h1 {
    font-size: var(--fm-font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--fm-space-4);
}

.fm-h2 {
    font-size: var(--fm-font-size-3xl);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 var(--fm-space-3);
}

.fm-h3 {
    font-size: var(--fm-font-size-xl);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 var(--fm-space-2);
}

.fm-h4 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 var(--fm-space-2);
}

.fm-body {
    font-size: var(--fm-font-size-base);
    line-height: 1.7;
}

.fm-body-sm {
    font-size: var(--fm-font-size-sm);
    line-height: 1.6;
}

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

.fm-text-gradient {
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.fm-glow-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--fm-accent), var(--fm-accent-light));
    border-radius: 2px;
    margin: var(--fm-space-4) auto;
}

/* ==========================================================================
   7. SECTION TITLES
   ========================================================================== */
.fm-section-title {
    font-size: var(--fm-font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--fm-space-2);
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fm-section-subtitle {
    font-size: var(--fm-font-size-base);
    color: var(--fm-muted-text);
    max-width: 700px;
    margin: 0 auto var(--fm-space-8);
    text-align: center;
    line-height: 1.7;
}

/* ==========================================================================
   8. FORM ELEMENTS
   ========================================================================== */
.fm-form-group {
    margin-bottom: 1.25rem;
}

.fm-label {
    display: block;
    color: var(--fm-muted-text);
    font-weight: 500;
    margin-bottom: var(--fm-space-2);
    font-size: 0.95rem;
}

.fm-input,
.fm-select,
.fm-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-md);
    color: var(--fm-white);
    font-size: var(--fm-font-size-sm);
    transition: all var(--fm-transition-fast);
    outline: none;
}

.fm-input:focus,
.fm-select:focus,
.fm-textarea:focus {
    border-color: var(--fm-accent);
    box-shadow: 0 0 0 3px rgba(0, 183, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.fm-input::placeholder,
.fm-textarea::placeholder {
    color: var(--fm-soft-muted);
}

.fm-input.error {
    border-color: var(--fm-danger);
}

.fm-input.success {
    border-color: var(--fm-success);
}

.fm-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8c7d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.fm-checkbox {
    display: inline-flex;
    align-items: center;
    gap: var(--fm-space-2);
    cursor: pointer;
    font-size: var(--fm-font-size-sm);
}

.fm-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--fm-bronze);
    cursor: pointer;
}

.fm-radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--fm-space-2);
}

.fm-radio-group label {
    display: inline-flex;
    align-items: center;
    gap: var(--fm-space-2);
    cursor: pointer;
    font-size: var(--fm-font-size-sm);
}

.fm-radio-group input[type="radio"] {
    accent-color: var(--fm-accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fm-form-error {
    font-size: var(--fm-font-size-xs);
    color: var(--fm-danger);
    margin-top: var(--fm-space-1);
}

.fm-form-success {
    font-size: var(--fm-font-size-xs);
    color: var(--fm-success);
    margin-top: var(--fm-space-1);
}

.fm-form-hint {
    font-size: var(--fm-font-size-xs);
    color: var(--fm-soft-muted);
    margin-top: var(--fm-space-1);
}

.fm-input-icon {
    position: relative;
}

.fm-input-icon .fm-input {
    padding-left: 40px;
}

.fm-input-icon .fm-input-icon-svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--fm-soft-muted);
    pointer-events: none;
}

.fm-phone-input {
    display: flex;
    gap: 0;
}

.fm-phone-input .fm-phone-prefix {
    display: flex;
    align-items: center;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fm-glass-border);
    border-right: none;
    border-radius: var(--fm-radius-md) 0 0 var(--fm-radius-md);
    color: var(--fm-muted-text);
    font-size: var(--fm-font-size-sm);
    font-weight: 500;
    white-space: nowrap;
}

.fm-phone-input .fm-input {
    border-radius: 0 var(--fm-radius-md) var(--fm-radius-md) 0;
}

/* ==========================================================================
   9. STATUS BADGES
   ========================================================================== */
.fm-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--fm-font-size-xs);
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

.fm-badge-blue {
    background: rgba(74, 125, 181, 0.12);
    color: var(--fm-accent);
}

.fm-badge-green {
    background: rgba(72, 168, 124, 0.12);
    color: var(--fm-success);
}

.fm-badge-bronze {
    background: rgba(196, 154, 82, 0.12);
    color: var(--fm-bronze);
}

.fm-badge-orange {
    background: rgba(255, 193, 7, 0.12);
    color: var(--fm-warning);
}

.fm-badge-red {
    background: rgba(255, 107, 107, 0.12);
    color: var(--fm-danger);
}

.fm-badge-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.fm-badge-gray {
    background: rgba(127, 147, 170, 0.12);
    color: var(--fm-soft-muted);
}

.fm-badge-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fm-white);
}

/* ==========================================================================
   10. PROGRESS BARS
   ========================================================================== */
.fm-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--fm-radius-full);
    overflow: hidden;
}

.fm-progress-bar {
    height: 100%;
    border-radius: var(--fm-radius-full);
    transition: width 0.5s ease;
    width: 0%;
}

.fm-progress-bar-blue {
    background: linear-gradient(90deg, var(--fm-accent), var(--fm-accent-light));
}

.fm-progress-bar-gold {
    background: linear-gradient(90deg, var(--fm-bronze), #e0a800);
}

.fm-progress-bar-green {
    background: linear-gradient(90deg, var(--fm-success), #20c997);
}

.fm-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: var(--fm-font-size-xs);
    color: var(--fm-muted-text);
    margin-bottom: var(--fm-space-1);
}

/* ==========================================================================
   11. NAVIGATION
   ========================================================================== */
.fm-nav-link {
    display: inline-flex;
    align-items: center;
    gap: var(--fm-space-2);
    padding: var(--fm-space-2) var(--fm-space-3);
    font-size: var(--fm-font-size-sm);
    font-weight: 500;
    color: var(--fm-muted-text);
    border-radius: var(--fm-radius-md);
    transition: all var(--fm-transition-fast);
}

.fm-nav-link:hover {
    color: var(--fm-white);
    background: rgba(255, 255, 255, 0.05);
}

.fm-nav-link.active {
    color: var(--fm-accent);
    background: rgba(0, 183, 255, 0.1);
}

/* ==========================================================================
   12. HERO AREA
   ========================================================================== */
.fm-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(74, 125, 181, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 154, 82, 0.04) 0%, transparent 50%);
    padding: var(--fm-space-16) var(--fm-space-4);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.fm-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--fm-space-6);
}

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

.fm-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fm-space-4);
    flex-wrap: wrap;
}

/* ==========================================================================
   13. TABLE STYLES (Admin)
   ========================================================================== */
.fm-table {
    width: 100%;
    border-collapse: collapse;
}

.fm-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: var(--fm-font-size-xs);
    font-weight: 600;
    color: var(--fm-soft-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--fm-glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.fm-table tbody td {
    padding: 12px 16px;
    font-size: var(--fm-font-size-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

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

.fm-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.fm-table-responsive {
    overflow-x: auto;
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
}

/* ==========================================================================
   14. ADMIN SIDEBAR
   ========================================================================== */
.fm-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--fm-dark-panel);
    border-right: 1px solid var(--fm-glass-border);
    z-index: var(--fm-z-sidebar);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: width var(--fm-transition-base), transform var(--fm-transition-base);
}

.fm-sidebar::-webkit-scrollbar {
    width: 4px;
}

.fm-sidebar::-webkit-scrollbar-thumb {
    background: var(--fm-glass-border);
    border-radius: 2px;
}

.fm-sidebar-header {
    padding: var(--fm-space-6);
    border-bottom: 1px solid var(--fm-glass-border);
    display: flex;
    align-items: center;
    gap: var(--fm-space-3);
    flex-shrink: 0;
    min-height: 72px;
}

.fm-sidebar-header .fm-sidebar-logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    border-radius: var(--fm-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fm-font-size-xs);
    color: var(--fm-deep-navy);
    flex-shrink: 0;
}

.fm-sidebar-header .fm-sidebar-logo-text {
    font-size: var(--fm-font-size-base);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

.fm-sidebar-nav {
    flex: 1;
    padding: var(--fm-space-4) var(--fm-space-3);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fm-sidebar-section {
    font-size: var(--fm-font-size-xs);
    color: var(--fm-soft-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--fm-space-4) var(--fm-space-3) var(--fm-space-2);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

.fm-sidebar-item {
    border-radius: var(--fm-radius-md);
    transition: background var(--fm-transition-fast);
}

.fm-sidebar-item.active {
    background: rgba(0, 183, 255, 0.1);
}

.fm-sidebar-link {
    display: flex;
    align-items: center;
    gap: var(--fm-space-3);
    padding: 10px 12px;
    font-size: var(--fm-font-size-sm);
    font-weight: 500;
    color: var(--fm-muted-text);
    border-radius: var(--fm-radius-md);
    transition: all var(--fm-transition-fast);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.fm-sidebar-link:hover {
    color: var(--fm-white);
    background: rgba(255, 255, 255, 0.03);
}

.fm-sidebar-item.active .fm-sidebar-link {
    color: var(--fm-accent);
}

.fm-sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fm-sidebar-link .fm-sidebar-link-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fm-sidebar-footer {
    padding: var(--fm-space-4) var(--fm-space-3);
    border-top: 1px solid var(--fm-glass-border);
    flex-shrink: 0;
}

/* Collapsed Sidebar */
.fm-sidebar.collapsed {
    width: 64px;
}

.fm-sidebar.collapsed .fm-sidebar-header {
    justify-content: center;
    padding: var(--fm-space-4) var(--fm-space-2);
}

.fm-sidebar.collapsed .fm-sidebar-logo-text,
.fm-sidebar.collapsed .fm-sidebar-link-text,
.fm-sidebar.collapsed .fm-sidebar-section {
    display: none;
}

.fm-sidebar.collapsed .fm-sidebar-link {
    justify-content: center;
    padding: 10px;
}

/* ==========================================================================
   15. ADMIN TOPBAR
   ========================================================================== */
.fm-topbar {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    height: 64px;
    background: var(--fm-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fm-glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--fm-space-6);
    z-index: var(--fm-z-sticky);
    transition: left var(--fm-transition-base);
}

.fm-sidebar.collapsed ~ .fm-topbar {
    left: 64px;
}

.fm-topbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fm-white);
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
}

.fm-topbar-toggle svg {
    width: 22px;
    height: 22px;
}

.fm-topbar-title {
    font-size: var(--fm-font-size-lg);
    font-weight: 600;
}

.fm-topbar-right {
    display: flex;
    align-items: center;
    gap: var(--fm-space-4);
    margin-left: auto;
}

.fm-topbar-right .fm-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--fm-radius-full);
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fm-font-size-sm);
    color: var(--fm-deep-navy);
}

/* ==========================================================================
   16. ADMIN CONTENT AREA
   ========================================================================== */
.fm-admin-body {
    overflow: hidden;
    min-height: 100vh;
}

.fm-admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.fm-admin-main {
    margin-left: 260px;
    padding-top: 64px;
    min-height: 100vh;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--fm-transition-base);
}

.fm-sidebar.collapsed ~ .fm-main-wrapper .fm-admin-main,
.fm-sidebar.collapsed + .fm-admin-main {
    margin-left: 64px;
}

.fm-admin-content {
    flex: 1;
    padding: var(--fm-space-6);
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.fm-footer {
    background: var(--fm-dark-panel);
    border-top: 1px solid var(--fm-glass-border);
    padding: var(--fm-space-12) 0 var(--fm-space-8);
}

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

@media (min-width: 640px) {
    .fm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fm-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.fm-footer-section h4 {
    font-size: var(--fm-font-size-sm);
    font-weight: 600;
    color: var(--fm-white);
    margin-bottom: var(--fm-space-4);
}

.fm-footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--fm-space-2);
}

.fm-footer-link {
    font-size: var(--fm-font-size-sm);
    color: var(--fm-muted-text);
    transition: color var(--fm-transition-fast);
}

.fm-footer-link:hover {
    color: var(--fm-accent);
}

.fm-footer-bottom {
    margin-top: var(--fm-space-8);
    padding-top: var(--fm-space-6);
    border-top: 1px solid var(--fm-glass-border);
    text-align: center;
    font-size: var(--fm-font-size-sm);
    color: var(--fm-soft-muted);
}

/* ==========================================================================
   18. RESPONSIVE UTILITIES
   ========================================================================== */
.fm-hidden-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .fm-hidden-mobile {
        display: revert !important;
    }
}

.fm-hidden-desktop {
    display: revert !important;
}

@media (min-width: 768px) {
    .fm-hidden-desktop {
        display: none !important;
    }
}

/* .fm-mobile-menu styles are now in fm-header-hero.css */

.fm-mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--fm-z-navbar);
    background: var(--fm-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--fm-glass-border);
    padding: var(--fm-space-2) 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.fm-mobile-bottom-nav .fm-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    color: var(--fm-soft-muted);
    font-size: 0.6875rem;
    font-weight: 500;
    text-decoration: none;
    padding: var(--fm-space-1) 0;
    transition: color var(--fm-transition-fast);
}

.fm-mobile-bottom-nav .fm-mobile-nav-item:hover,
.fm-mobile-bottom-nav .fm-mobile-nav-item.active {
    color: var(--fm-bronze);
}

.fm-mobile-bottom-nav .fm-mobile-nav-item svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 768px) {
    .fm-mobile-bottom-nav {
        display: none;
    }
}

/* ==========================================================================
   19. UTILITY CLASSES
   ========================================================================== */
/* Margin Top */
.fm-mt-1 { margin-top: var(--fm-space-1); }
.fm-mt-2 { margin-top: var(--fm-space-2); }
.fm-mt-3 { margin-top: var(--fm-space-3); }
.fm-mt-4 { margin-top: var(--fm-space-4); }
.fm-mt-6 { margin-top: var(--fm-space-6); }
.fm-mt-8 { margin-top: var(--fm-space-8); }

/* Margin Bottom */
.fm-mb-1 { margin-bottom: var(--fm-space-1); }
.fm-mb-2 { margin-bottom: var(--fm-space-2); }
.fm-mb-3 { margin-bottom: var(--fm-space-3); }
.fm-mb-4 { margin-bottom: var(--fm-space-4); }
.fm-mb-6 { margin-bottom: var(--fm-space-6); }
.fm-mb-8 { margin-bottom: var(--fm-space-8); }

/* Padding */
.fm-p-4 { padding: var(--fm-space-4); }
.fm-p-6 { padding: var(--fm-space-6); }
.fm-p-8 { padding: var(--fm-space-8); }

/* Gap */
.fm-gap-2 { gap: var(--fm-space-2); }
.fm-gap-4 { gap: var(--fm-space-4); }
.fm-gap-6 { gap: var(--fm-space-6); }
.fm-gap-8 { gap: var(--fm-space-8); }

/* Flex */
.fm-flex { display: flex; }
.fm-flex-col { flex-direction: column; }
.fm-flex-wrap { flex-wrap: wrap; }
.fm-items-center { align-items: center; }
.fm-items-start { align-items: flex-start; }
.fm-justify-center { justify-content: center; }
.fm-justify-between { justify-content: space-between; }

/* Text */
.fm-text-left { text-align: left; }
.fm-text-center { text-align: center; }
.fm-text-right { text-align: right; }
.fm-text-danger { color: #ff4444; }
.fm-text-error { color: #ff6b6b; }
.fm-text-success { color: #10B981; }

/* Max width utilities */
.fm-max-w-xs { max-width: 20rem; }
.fm-max-w-sm { max-width: 24rem; }
.fm-max-w-md { max-width: 28rem; }
.fm-max-w-lg { max-width: 32rem; }
.fm-max-w-xl { max-width: 36rem; }
.fm-max-w-2xl { max-width: 42rem; }
.fm-max-w-3xl { max-width: 48rem; }
.fm-max-w-4xl { max-width: 56rem; }
.fm-max-w-5xl { max-width: 64rem; }
.fm-max-w-6xl { max-width: 72rem; }
.fm-max-w-full { max-width: 100%; }

/* Width utilities */
.fm-w-full { width: 100%; }
.fm-min-h-screen { min-height: 100vh; }

/* Radius */
.fm-rounded { border-radius: var(--fm-radius-md); }
.fm-rounded-lg { border-radius: var(--fm-radius-lg); }

/* ==========================================================================
   20. ACCORDION / FAQ
   ========================================================================== */
.fm-accordion {
    display: flex;
    flex-direction: column;
}

.fm-accordion-item {
    border-bottom: 1px solid var(--fm-glass-border);
}

.fm-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--fm-space-4) 0;
    font-size: var(--fm-font-size-base);
    font-weight: 600;
    color: var(--fm-white);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--fm-transition-fast);
}

.fm-accordion-header:hover {
    color: var(--fm-accent);
}

.fm-accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--fm-accent);
    transition: transform var(--fm-transition-base);
}

.fm-accordion-item.open .fm-accordion-icon {
    transform: rotate(180deg);
}

.fm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--fm-transition-base), padding var(--fm-transition-base);
    padding: 0;
}

.fm-accordion-item.open .fm-accordion-content {
    max-height: 600px;
    padding-bottom: var(--fm-space-4);
}

.fm-accordion-content p {
    font-size: var(--fm-font-size-sm);
    color: var(--fm-muted-text);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   21. PAGE HEADER
   ========================================================================== */
.fm-page-header {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 183, 255, 0.06) 0%, transparent 60%);
    padding-top: 8rem;
    padding-bottom: var(--fm-space-12);
    text-align: center;
    overflow: hidden;
}

.fm-page-header-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.08) 0%, transparent 60%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ==========================================================================
   22. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.fm-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--fm-z-whatsapp);
    width: 56px;
    height: 56px;
    background: var(--fm-whatsapp);
    border-radius: var(--fm-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--fm-transition-base);
    cursor: pointer;
    color: var(--fm-white);
    text-decoration: none;
}

.fm-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

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

/* ==========================================================================
   23. TOAST / ALERT MESSAGES
   ========================================================================== */
.fm-alert {
    padding: var(--fm-space-4);
    border-radius: var(--fm-radius-md);
    margin-bottom: var(--fm-space-4);
    font-size: var(--fm-font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--fm-space-3);
    line-height: 1.5;
}

.fm-alert-success {
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.2);
    color: var(--fm-success);
}

.fm-alert-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: var(--fm-danger);
}

.fm-alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--fm-warning);
}

.fm-alert-info {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.2);
    color: var(--fm-accent);
}

/* ==========================================================================
   24. STEP / PROGRESS WIZARD
   ========================================================================== */
.fm-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--fm-space-8);
}

.fm-wizard-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--fm-radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid var(--fm-glass-border);
    font-size: var(--fm-font-size-sm);
    font-weight: 600;
    color: var(--fm-soft-muted);
    flex-shrink: 0;
    transition: all var(--fm-transition-base);
    position: relative;
}

.fm-wizard-step.active {
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    border-color: transparent;
    color: var(--fm-deep-navy);
    box-shadow: var(--fm-shadow-glow-accent);
}

.fm-wizard-step.completed {
    background: var(--fm-bronze);
    border-color: var(--fm-bronze);
    color: var(--fm-deep-navy);
}

.fm-wizard-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    transition: background var(--fm-transition-base);
}

.fm-wizard-line.completed {
    background: var(--fm-bronze);
}

/* ==========================================================================
   25. OPTION / SELECTION CARDS
   ========================================================================== */
.fm-option-card {
    padding: var(--fm-space-6);
    background: var(--fm-dark-panel);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--fm-transition-base);
}

.fm-option-card:hover {
    border-color: rgba(0, 183, 255, 0.3);
    transform: translateY(-2px);
}

.fm-option-card.selected {
    border-color: var(--fm-accent);
    box-shadow: var(--fm-shadow-glow-accent);
    background: rgba(0, 183, 255, 0.05);
}

.fm-option-card .fm-option-icon {
    font-size: 2.5rem;
    margin-bottom: var(--fm-space-3);
}

.fm-option-card .fm-option-title {
    font-size: var(--fm-font-size-base);
    font-weight: 600;
    margin-bottom: var(--fm-space-1);
}

.fm-option-card .fm-option-desc {
    font-size: var(--fm-font-size-sm);
    color: var(--fm-muted-text);
}

/* ==========================================================================
   26. CAMPAIGN / LAUNCH PAGE SPECIFIC
   ========================================================================== */
.fm-campaign-hero {
    padding: var(--fm-space-16) var(--fm-space-4);
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 183, 255, 0.05), rgba(247, 183, 49, 0.05));
    position: relative;
    overflow: hidden;
}

.fm-campaign-form {
    max-width: 560px;
    margin: var(--fm-space-8) auto;
}

.fm-campaign-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fm-space-8);
    flex-wrap: wrap;
    padding: var(--fm-space-8) 0;
    color: var(--fm-muted-text);
    font-size: var(--fm-font-size-sm);
}

.fm-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--fm-space-4);
    background: var(--fm-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--fm-glass-border);
    z-index: var(--fm-z-sticky);
    display: none;
}

@media (max-width: 480px) {
    .fm-sticky-cta {
        display: block;
    }
}

/* ==========================================================================
   27. AUTH / LOGIN PAGE
   ========================================================================== */
.fm-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fm-space-4);
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 183, 255, 0.04) 0%, transparent 60%);
}

.fm-auth-card {
    background: var(--fm-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-xl);
    box-shadow: var(--fm-glass-shadow);
    padding: var(--fm-space-8);
    width: 100%;
    max-width: 420px;
}

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

.fm-auth-logo .fm-auth-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
    border-radius: var(--fm-radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fm-font-size-base);
    color: var(--fm-deep-navy);
    margin-bottom: var(--fm-space-3);
}

.fm-auth-logo h1 {
    font-size: var(--fm-font-size-xl);
    font-weight: 700;
    margin: 0;
}

.fm-auth-card .fm-form-group:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   28. EMPTY STATES
   ========================================================================== */
.fm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--fm-space-16) var(--fm-space-4);
}

.fm-empty-icon {
    font-size: 3rem;
    margin-bottom: var(--fm-space-4);
    opacity: 0.4;
}

.fm-empty-icon svg {
    width: 64px;
    height: 64px;
    color: var(--fm-soft-muted);
}

.fm-empty-text {
    font-size: var(--fm-font-size-base);
    color: var(--fm-muted-text);
    max-width: 320px;
    margin-bottom: var(--fm-space-6);
    line-height: 1.6;
}

.fm-empty-action {
    margin-top: var(--fm-space-2);
}

/* ==========================================================================
   29. LOADING STATES
   ========================================================================== */
.fm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fm-space-12);
}

.fm-loading::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.06);
    border-top-color: var(--fm-accent);
    border-radius: 50%;
    animation: fm-spin 0.6s linear infinite;
}

.fm-skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: fm-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--fm-radius-md);
}

.fm-skeleton-card {
    padding: var(--fm-space-6);
    background: var(--fm-dark-panel);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
}

.fm-skeleton-card .fm-skeleton {
    height: 16px;
    margin-bottom: var(--fm-space-3);
    width: 80%;
}

.fm-skeleton-card .fm-skeleton:last-child {
    width: 60%;
}

.fm-skeleton-line {
    height: 12px;
    width: 100%;
    margin-bottom: var(--fm-space-2);
}

.fm-skeleton-line:last-child {
    width: 70%;
}

/* ==========================================================================
   30. PWA INSTALL BANNER
   ========================================================================== */
.fm-pwa-banner {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    width: calc(100% - 32px);
    background: var(--fm-dark-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fm-glass-border);
    border-radius: var(--fm-radius-lg);
    padding: var(--fm-space-6);
    box-shadow: var(--fm-shadow-lg);
    z-index: var(--fm-z-modal);
    display: none;
}

.fm-pwa-banner.show {
    display: block;
    animation: fm-slideUp 0.4s ease;
}

.fm-pwa-banner .fm-pwa-banner-header {
    display: flex;
    align-items: center;
    gap: var(--fm-space-3);
    margin-bottom: var(--fm-space-3);
}

.fm-pwa-banner .fm-pwa-banner-title {
    font-weight: 600;
    font-size: var(--fm-font-size-sm);
}

.fm-pwa-banner .fm-pwa-banner-text {
    font-size: var(--fm-font-size-xs);
    color: var(--fm-muted-text);
    margin-bottom: var(--fm-space-4);
    line-height: 1.5;
}

.fm-pwa-banner .fm-pwa-banner-actions {
    display: flex;
    gap: var(--fm-space-2);
}

.fm-pwa-banner-btn {
    flex: 1;
}

/* ==========================================================================
   31. SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

/* ==========================================================================
   32. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fm-fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fm-slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fm-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fm-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

/* ==========================================================================
   33. MEDIA QUERIES
   ========================================================================== */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .fm-h1 {
        font-size: var(--fm-font-size-3xl);
    }

    .fm-h2 {
        font-size: var(--fm-font-size-2xl);
    }

    .fm-h3 {
        font-size: var(--fm-font-size-lg);
    }

    .fm-section {
        padding: var(--fm-space-8) 0;
    }

.fm-section-title {
    font-size: var(--fm-font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--fm-space-2);
    color: var(--fm-white);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    background: none;
}

    .fm-hero {
        min-height: auto;
        padding: var(--fm-space-12) var(--fm-space-4);
    }

    .fm-hero-title {
        font-size: 2.5rem;
    }

    .fm-hero-subtitle {
        font-size: var(--fm-font-size-base);
    }

    .fm-page-header {
        padding-top: 6rem;
        padding-bottom: var(--fm-space-8);
    }

    /* Sidebar becomes overlay */
    .fm-sidebar {
        transform: translateX(-100%);
    }

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

    .fm-sidebar.collapsed {
        width: 260px;
        transform: translateX(-100%);
    }

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

    .fm-sidebar.collapsed .fm-sidebar-logo-text,
    .fm-sidebar.collapsed .fm-sidebar-link-text,
    .fm-sidebar.collapsed .fm-sidebar-section {
        display: inline;
    }

    .fm-sidebar.collapsed .fm-sidebar-link {
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .fm-sidebar.collapsed .fm-sidebar-header {
        justify-content: flex-start;
        padding: var(--fm-space-6);
    }

    .fm-topbar {
        left: 0;
    }

    .fm-topbar-toggle {
        display: flex;
    }

    .fm-admin-main {
        margin-left: 0;
    }

    .fm-admin-content {
        padding: var(--fm-space-4);
    }

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

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

    .fm-wizard {
        gap: 0;
    }

    .fm-wizard-line {
        width: 32px;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .fm-section {
        padding: 2.5rem 0;
    }

    .fm-section-title {
        font-size: 1.8rem;
    }

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

    .fm-hero-title {
        font-size: 1.75rem;
    }

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

    .fm-hero-actions .fm-btn {
        width: 100%;
    }

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

    .fm-card-glass {
        padding: var(--fm-space-4);
    }

    .fm-btn {
        padding: var(--fm-space-3) var(--fm-space-4);
        font-size: var(--fm-font-size-sm);
    }

    .fm-page-header {
        padding-top: 5rem;
        padding-bottom: var(--fm-space-6);
    }

    .fm-auth-card {
        padding: var(--fm-space-6);
    }

    .fm-empty {
        padding: var(--fm-space-8) var(--fm-space-4);
    }

    .fm-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .fm-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .fm-pwa-banner {
        bottom: 72px;
    }

    .fm-sticky-cta {
        padding: var(--fm-space-3);
    }

    .fm-wizard-step {
        width: 32px;
        height: 32px;
        font-size: var(--fm-font-size-xs);
    }

    .fm-wizard-line {
        width: 20px;
    }
}
