
/* Hero Section Styles */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    width: 100%;
}

.hero-grid h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-grid p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: 0;
}

.hero-grid .hero-buttons {
    justify-content: flex-start;
    margin-top: 0;
    gap: 1.5rem;
}

.hero-grid .hero-buttons .btn {
    margin-left: 0 !important;
}

.dashboard-ui {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    z-index: 2;
    text-align: left;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease, border-color 0.8s ease;
    cursor: pointer;
}

.dashboard-ui:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 40px 80px rgba(103, 61, 230, 0.12);
    border-color: rgba(103, 61, 230, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    background: rgba(103, 61, 230, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-box.primary {
    background: rgba(103, 61, 230, 0.05);
    border: 1px solid rgba(103, 61, 230, 0.1);
}

.stat-box.secondary {
    background: rgba(98, 155, 182, 0.05);
    border: 1px solid rgba(98, 155, 182, 0.1);
}

.dashboard-workflow {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.workflow-node {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.workflow-line {
    height: 2px;
    flex-grow: 1;
    margin: 0 10px;
    opacity: 0.5;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--glass-border);
    z-index: 3;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease;
}

.floating-badge:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
