﻿.hero-section {
    position: relative;
    min-height: calc(100vh - 55px);
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 173, 239, 0.12), transparent 28%), radial-gradient(circle at bottom right, rgba(255, 170, 0, 0.10), transparent 24%), linear-gradient(180deg, #ece6df 0%, #e5ddd4 100%);
    padding: 3rem 0 3.75rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.38rem 0.82rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(0, 173, 239, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.25);
    color: #1f2937;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.15rem, 4.35vw, 3.85rem);
    line-height: 1.05;
    font-weight: 300;
    color: #1f1f25;
    margin-bottom: 0.95rem;
}

.hero-brand {
    font-weight: 700;
    background: linear-gradient(90deg, #ff9f1c 0%, #00adef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 720px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 1.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 0.78rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    min-width: 154px;
    transition: all 0.2s ease-in-out;
}

.hero-btn-primary {
    background: linear-gradient(90deg, #ff9f1c 0%, #ffb347 100%);
    color: #111827;
    border: none;
}

    .hero-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(255, 159, 28, 0.25);
        color: #111827;
    }

.hero-btn-secondary {
    background: rgba(255,255,255,0.55);
    color: #1f2937;
    border: 1px solid rgba(31, 41, 55, 0.12);
    backdrop-filter: blur(8px);
}

    .hero-btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.75);
        color: #111827;
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stat-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 18px;
    padding: 1rem 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero-stat-number {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.35rem;
}

.hero-stat-label {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

.hero-panel {
    position: relative;
    background: rgba(34, 34, 42, 0.92);
    border-radius: 22px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.hero-panel-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-panel-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
}

.hero-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}

.hero-panel-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mock-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0.9rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(0, 173, 239, 0.18));
}

.mock-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.45rem;
}

.mock-value {
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.5;
    font-weight: 500;
}

.feature-card {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 18px;
    padding: 1.15rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9f1c 0%, #00adef 100%);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}

.feature-text {
    color: #5b6472;
    line-height: 1.55;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0 4rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

