/* ═══════════════════════════════════════════════════════════════════════════
   MODERN GLASSMORPHISM THEME - Premium UI Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES & DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    --font-sans: 'Manrope', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Manrope', 'Inter', sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', sans-serif;
    --font-body: 'Manrope', 'Inter', sans-serif;

    /* Academic Light & Premium Color Palette */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.15);
    --secondary: #64748b;
    --accent: #4f46e5;
    --success: #10b981;
    --dark-bg: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-card: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);

    /* Gradients */
    --gradient-premium: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --gradient-purple-pink: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-soft: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --gradient-text: linear-gradient(to right, #0f172a, #334155);

    /* Transitions & Shadows */
    --transition-premium: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM EXTENSIONS
   ───────────────────────────────────────────────────────────────────────────── */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.04),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: var(--transition-premium);
}

.crystal-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(60px);
    border: 0.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-premium);
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    /* Fixed height for rows to maintain grid shape */
    gap: 1.5rem;
    width: 100%;
}

.bento-card {
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
}

.bento-lg {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-md {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-sm {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-md-wide {
    grid-column: span 8;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: auto;
    }

    .bento-lg,
    .bento-md,
    .bento-sm,
    .bento-md-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Marquee / Infinite Scroll */
.marquee-container {
    overflow: hidden;
    padding: 2rem 0;
    user-select: none;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Three.js Hero Container */
#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: #ffffff;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* Updated Mesh & Floating Orbs for Ultra Premium */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.floating-layer {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 20s infinite alternate;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--accent));
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLOBAL PREMIUM UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.font-heading {
    font-family: var(--font-heading);
}

.fw-black {
    font-weight: 900;
}

.text-slate {
    color: var(--p-slate);
}

.text-slate-400 {
    color: var(--p-slate-400);
}

.bg-premium-dark {
    background: var(--p-slate);
    color: white;
}

.bg-gradient-premium {
    background: var(--gradient-premium);
    color: white;
}

.shadow-premium {
    box-shadow: var(--shadow-premium);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Premium Navbar */
.navbar-premium {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.navbar-premium .navbar-nav .nav-link {
    font-weight: 600;
    color: #1f2937;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.navbar-premium .nav-link.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    position: relative;
}

.navbar-premium .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient {
    background: var(--gradient-purple-pink);
    color: white;
    border: none;
    box-shadow: var(--shadow-neon-purple);
    transition: var(--transition-premium);
}

.btn-gradient:hover {
    transform: translateY(-1px) scale(1.01);
    color: white;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.25);
}

.btn-ghost {
    background: rgba(99, 102, 241, 0.08);
    color: #312e81;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-ghost:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #1f2937;
}

/* Bento Grid System - Consolidated */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    width: 100%;
}

.bento-card {
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.bento-lg {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-md {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-sm {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-md-wide {
    grid-column: span 8;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-lg,
    .bento-md,
    .bento-sm,
    .bento-md-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    background: var(--gradient-glow);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--p-slate);
}

.bento-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Trust Marquee */
.trust-marquee {
    background: var(--light);
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Workflow Steps */
.workflow-step {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    transition: var(--transition-premium);
}

.workflow-step:hover {
    background: var(--gradient-glow);
    transform: translateX(10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
    font-family: var(--font-heading);
    margin-bottom: -1.5rem;
}

/* Grand CTA */
.grand-cta {
    position: relative;
    padding: 100px 0;
    background: var(--p-slate);
    border-radius: var(--radius-3xl);
    margin-top: 100px;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
    color: white;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARDS - Glass Effect
   ───────────────────────────────────────────────────────────────────────────── */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(99, 102, 241, 0.2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   AUTH PAGES - Premium Glass Design
   ───────────────────────────────────────────────────────────────────────────── */
.auth-layout {
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.auth-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 40% at 30% 30%, rgba(99, 102, 241, 0.4), transparent),
        radial-gradient(ellipse 35% 35% at 70% 70%, rgba(168, 85, 247, 0.35), transparent),
        radial-gradient(ellipse 30% 30% at 80% 20%, rgba(236, 72, 153, 0.25), transparent);
    animation: authBgFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes authBgFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }
}

/* Floating Orbs */
.auth-layout::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-3xl);
    padding: 3rem;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.auth-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1), transparent 40%);
    pointer-events: none;
}

.auth-brand {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.auth-card h4,
.auth-card p {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.auth-card .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.auth-card .form-label {
    color: rgba(255, 255, 255, 0.9);
}

.auth-card .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.auth-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25), var(--shadow-glow);
}

.auth-card .input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Input group icons should always be visible */
.auth-card .input-group-text i {
    color: rgba(255, 255, 255, 0.8) !important;
}

.auth-card a {
    color: var(--primary-light);
}

.auth-card a:hover {
    color: var(--accent-light);
}

/* Sidebar removal - styles deleted */

/* ==========================================================================
   Legacy Design Sections (Hero, Problem, Process, Stats, UseCases, CTA)
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────────
   GLOBAL PREMIUM UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    --p-indigo: #4f46e5;
    --p-amber: #f59e0b;
    --p-slate: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --aura-blue: rgba(99, 102, 241, 0.1);
    --aura-amber: rgba(245, 158, 11, 0.08);
}

.section-padding {
    padding: 120px 0;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM HERO SECTION (Expanded)
   ───────────────────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 98vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 0% 0%, #0f172a 0%, #1e293b 100%);
    color: white;
    overflow: hidden;
}

.hero-aura {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.aura-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, var(--aura-blue) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse-aura 10s ease-in-out infinite;
}

.aura-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, var(--aura-amber) 0%, transparent 70%);
    filter: blur(120px);
    animation: pulse-aura 12s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-aura {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.premium-badge i {
    font-size: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-premium {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Responsive font size */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #0f172a;
}

.hero-title-premium .text-gradient {
    background: linear-gradient(135deg, #6366f1 10%, #a855f7 60%, #ec4899 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 560px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-premium-main {
    background: #0f172a;
    color: #ffffff !important;
    padding: 1.1rem 2.8rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.btn-premium-main:hover {
    background: #1e293b;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #0f172a !important;
    padding: 1.1rem 2.4rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium-outline:hover {
    background: #ffffff;
    border-color: #0f172a;
    transform: translateY(-3px);
}

/* Premium Visual Composition */
.hero-visual-premium {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
}

.card-main {
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    top: 30%;
    left: 20%;
    border-radius: 50%;
    animation-delay: 3s;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 5s ease-in-out infinite;
}

.hero-card-1 {
    bottom: 25%;
    left: 5%;
    animation-delay: 0.5s;
}

.hero-card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--warning);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: transparent;
}

.problem-card {
    text-align: left;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.problem-icon.time {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.problem-icon.error {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.problem-icon.complex {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.problem-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works Section */
.how-section {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--warning) 50%, var(--success) 100%);
    border-radius: 2px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-icon::after {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.step-1 .step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.step-2 .step-icon {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
}

.step-3 .step-icon {
    background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.stat-card-legacy {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--warning);
    margin-bottom: 1rem;
}

.stat-number-lg {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-lg {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Use Cases Section */
.usecases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.usecase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.usecase-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.usecase-card:nth-child(1) .usecase-avatar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.usecase-card:nth-child(2) .usecase-avatar {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
}

.usecase-card:nth-child(3) .usecase-avatar {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.usecase-tools {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.usecase-tools span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg-light);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.usecase-tools span i {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badge i {
    font-size: 1.25rem;
    color: var(--success);
}

/* Animations Wrapper */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

@media (max-width: 991.98px) {
    .landing-hero {
        border-radius: 28px;
        padding: 2rem;
    }

    .hero-shapes {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;

        .process-timeline {
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        .process-timeline::before {
            display: none;
        }
    }

    @media (max-width: 768px) {

        .hero-buttons,
        .cta-buttons {
            flex-direction: column;
        }

        .hero-title {
            font-size: 2rem;
        }

        .cta-box {
            padding: 2.5rem 1.5rem;
        }

        .trust-badges {
            flex-direction: column;
            gap: 1rem;
        }
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   NAVBAR - Modern Sticky & Blur
   ───────────────────────────────────────────────────────────────────────────── */
    .navbar {
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar.scrolled {
        padding: 0.5rem 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }

    .navbar::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   FORM CONTROLS - Glow Focus
   ───────────────────────────────────────────────────────────────────────────── */
    .form-control,
    .form-select {
        border-radius: var(--radius-lg);
        padding: 0.65rem 0.875rem;
        border: 2px solid rgba(226, 232, 240, 0.8);
        background: rgba(255, 255, 255, 0.9);
        transition: all var(--transition-base);
        font-size: 0.9rem;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), var(--shadow-glow);
        outline: none;
    }

    .form-label {
        font-weight: 600;
        color: var(--dark-light);
        margin-bottom: 0.5rem;
        display: block;
        font-size: 0.85rem;
    }

    .input-group-text {
        border-radius: var(--radius-lg);
        border: 2px solid rgba(226, 232, 240, 0.8);
        background: rgba(248, 250, 252, 0.9);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   CATEGORY SECTIONS - Glass Cards
   ───────────────────────────────────────────────────────────────────────────── */
    .category-section {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border-radius: 1.25rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255, 255, 255, 0.6);
        position: relative;
        overflow: hidden;
        transition: all var(--transition-base);
    }

    .category-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    }

    .category-section:hover {
        box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.08);
    }

    .category-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(99, 102, 241, 0.1);
    }

    .category-icon {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-xl);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        transition: all var(--transition-bounce);
    }

    .category-section:hover .category-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .category-info h3 {
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 0.25rem;
        letter-spacing: -0.02em;
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .category-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Bulk Action Button */
    .bulk-action-btn {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white !important;
        padding: 0.85rem 1.75rem;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.25s ease;
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
        border: none;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .bulk-action-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   TOOL ITEMS - Client Port
   ───────────────────────────────────────────────────────────────────────────── */
    .tool-item {
        border-radius: 0.875rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 1rem !important;
        transition: all 0.25s ease;
        margin-bottom: 0.65rem;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
        position: relative;
        overflow: hidden;
    }

    .tool-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
        transform: scaleY(0);
        transition: transform 0.25s ease;
        border-radius: 0 4px 4px 0;
    }

    .tool-item:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        transform: translateX(8px);
    }

    .tool-item:hover::before {
        transform: scaleY(1);
    }

    .tool-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        color: white;
        flex-shrink: 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
    }

    .tool-item-icon::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: inherit;
        background: inherit;
        filter: blur(12px);
        opacity: 0.4;
        z-index: -1;
    }

    .tool-item:hover .tool-item-icon {
        transform: scale(1.1) rotate(-8deg);
    }

    .tool-item-content {
        margin-left: 0.75rem;
    }

    .tool-item-content h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: var(--text-main);
        line-height: 1.3;
    }

    .tool-item-content p {
        font-size: 0.8rem;
        color: var(--text-muted);
        line-height: 1.4;
        margin-bottom: 0;
    }

    .tool-badge-credit {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success);
        padding: 0.6rem 1.1rem;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 0.8rem;
        border: 1px solid rgba(16, 185, 129, 0.2);
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
    }

    .tool-item:hover .tool-badge-credit {
        background: var(--success);
        color: white;
        border-color: var(--success);
    }

    .tool-start-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(241, 245, 249, 0.8);
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        font-size: 1.25rem;
    }

    .tool-item:hover .tool-start-btn {
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
        color: white;
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   STAT CARDS - Premium Glassmorphism
   ───────────────────────────────────────────────────────────────────────────── */
    .stat-card {
        border-radius: var(--radius-2xl);
        padding: 2rem;
        transition: all var(--transition-base);
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl), var(--shadow-glow);
    }

    .stat-card.premium {
        background: var(--gradient-primary);
        color: white;
        border: none;
        box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.3);
    }

    .stat-card.premium::before {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .stat-card.premium::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
        pointer-events: none;
    }

    .stat-card.premium:hover {
        box-shadow: var(--shadow-2xl), 0 0 80px rgba(99, 102, 241, 0.4);
    }

    .stat-card.premium .stat-card-label {
        color: rgba(255, 255, 255, 0.85);
    }

    .stat-card.premium .stat-card-value {
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .stat-card.premium .bg-icon {
        position: absolute;
        right: -25px;
        bottom: -25px;
        font-size: 9rem;
        opacity: 0.15;
        transform: rotate(-15deg);
        pointer-events: none;
        transition: transform var(--transition-slow);
    }

    .stat-card.premium:hover .bg-icon {
        transform: rotate(-20deg) scale(1.1);
    }

    .stat-card-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1.1rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stat-card-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        transition: transform var(--transition-bounce);
    }

    .stat-card:hover .stat-card-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .stat-card-value {
        font-size: 2.25rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 0.5rem;
        letter-spacing: -0.03em;
    }

    .stat-card-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray);
        margin-bottom: 0;
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   QUICK ACTION CARDS
   ───────────────────────────────────────────────────────────────────────────── */
    .quick-action-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border-radius: var(--radius-xl);
        padding: 1.5rem;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: all var(--transition-base);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .quick-action-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-base);
    }

    .quick-action-card:hover {
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: var(--shadow-xl), var(--shadow-glow);
        transform: translateY(-5px);
    }

    .quick-action-card:hover::before {
        opacity: 0.03;
    }

    .quick-action-icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-lg);
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-right: 1.25rem;
        flex-shrink: 0;
        transition: all var(--transition-bounce);
        position: relative;
        z-index: 1;
    }

    .quick-action-card:hover .quick-action-icon {
        background: var(--gradient-primary);
        color: var(--white);
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    }

    .quick-action-info {
        position: relative;
        z-index: 1;
    }

    .quick-action-info h6 {
        font-weight: 700;
        margin-bottom: 0.2rem;
        color: var(--dark);
        font-size: 1rem;
    }

    .quick-action-info p {
        font-size: 0.8rem;
        color: var(--gray);
        margin-bottom: 0;
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   TABLES - Enhanced Style
   ───────────────────────────────────────────────────────────────────────────── */
    .table {
        background: transparent;
    }

    .table thead th {
        background: rgba(248, 250, 252, 0.8);
        border-bottom: 2px solid rgba(99, 102, 241, 0.1);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--gray);
        padding: 1rem;
    }

    .table tbody tr {
        transition: all var(--transition-base);
    }

    .table tbody tr:hover {
        background: rgba(99, 102, 241, 0.03);
    }

    .table tbody td {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        vertical-align: middle;
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   BADGES - Modern Style
   ───────────────────────────────────────────────────────────────────────────── */
    .badge {
        font-weight: 600;
        padding: 0.5rem 0.9rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   ALERTS - Glass Style
   ───────────────────────────────────────────────────────────────────────────── */
    .alert {
        border-radius: var(--radius-lg);
        border: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .alert-warning {
        background: rgba(251, 191, 36, 0.15);
        color: #92400e;
        border: 1px solid rgba(251, 191, 36, 0.3);
    }

    .alert-danger {
        background: rgba(239, 68, 68, 0.1);
        color: #991b1b;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .alert-success {
        background: rgba(16, 185, 129, 0.1);
        color: #065f46;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   DROPDOWN - Glass Style
   ───────────────────────────────────────────────────────────────────────────── */
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        padding: 0.5rem;
    }

    .dropdown-item {
        border-radius: var(--radius-md);
        padding: 0.6rem 1rem;
        transition: all var(--transition-fast);
    }

    .dropdown-item:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary);
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────────────── */
    @media (max-width: 768px) {
        .stat-card-value {
            font-size: 1.75rem;
        }

        .category-section {
            padding: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .tool-item {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
            padding: 0.875rem !important;
        }

        .tool-item-icon {
            margin: 0 auto;
        }

        .tool-item:hover {
            transform: translateY(-4px);
        }

        .tool-item::before {
            display: none;
        }

        .auth-card {
            padding: 2rem;
        }
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
    @keyframes float {
        0% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }

        50% {
            transform: translateY(-20px) rotate(var(--rotation, 0deg));
        }

        100% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }
    }

    @keyframes float-inverted {
        0% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }

        50% {
            transform: translateY(20px) rotate(var(--rotation, 0deg));
        }

        100% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }
    }

    /* ─────────────────────────────────────────────────────────────────────────────
   UTILITIES & ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
    .fw-black {
        font-weight: 900 !important;
    }

    .text-slate {
        color: var(--p-slate) !important;
    }

    .text-slate-400 {
        color: #94a3b8 !important;
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-width {
        animation: grow-width 1.5s ease-out forwards;
    }

    @keyframes grow-width {
        from {
            width: 0;
        }
    }

    /* Bento Hover Enhancements */
    .b-hover-glass::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .b-hover-glass:hover::after {
        opacity: 1;
    }

    /* Workflow Steps */
    .workflow-step:hover {
        border-left-color: var(--p-indigo);
    }

    .workflow-step:hover .step-number {
        opacity: 0.3;
        color: var(--p-indigo);
    }
}

/* Journey Node Enhancements - Global */
.journey-node {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 2px solid transparent !important;
}

.journey-node:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.1) !important;
}

.rotate-layout .col-lg-3:nth-child(even) .journey-node {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .rotate-layout .col-lg-3:nth-child(even) .journey-node {
        margin-top: 0;
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CATEGORY SECTIONS - Glass Cards (New Report Page)
   ───────────────────────────────────────────────────────────────────────────── */
.category-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.category-section:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 60px rgba(37, 99, 235, 0.08);
}

.category-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-section:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.category-info h3 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    font-size: 1.25rem;
    line-height: 1.3;
}

.category-info p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Bulk Action Button */
.bulk-action-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.bulk-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bulk-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
    color: white !important;
}

.bulk-action-btn:hover::before {
    left: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TOOL ITEMS - Premium Hover Effects
   ───────────────────────────────────────────────────────────────────────────── */
.tool-item {
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem !important;
    transition: all 0.3s ease;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 40px rgba(37, 99, 235, 0.12);
    transform: translateX(8px);
    color: inherit;
}

.tool-item:hover::before {
    transform: scaleY(1);
}

.tool-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.tool-item-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0.4;
    z-index: -1;
}

.tool-item:hover .tool-item-icon {
    transform: scale(1.1) rotate(-8deg);
}

.tool-item-content {
    margin-left: 0.75rem;
}

.tool-item-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
    line-height: 1.3;
}

.tool-item-content p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

.tool-badge-credit {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tool-item:hover .tool-badge-credit {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.tool-start-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(241, 245, 249, 0.8);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.25rem;
}

.tool-item:hover .tool-start-btn {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

/* Fade In Animation for category sections */
.category-section.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}