/* ── Hero Section ── */
:root {
    --orange: #3db2f9;
    --orange-light: #1a8ed1;

    --white-70: rgba(30,30,40,0.7);
    --white-40: rgba(30,30,40,0.4);
}   

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-image: url(../images/Hero-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,248,255,0.92) 0%, rgba(245,248,255,0.80) 50%, rgba(245,248,255,0.60) 100%);
    z-index: 1;
}

.main-hero {
    padding-top: 2rem;
    background: #f0f4fa;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0 0 35% 0;
    background-image: radial-gradient(circle, rgba(61,178,249,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 2;
    pointer-events: none;
}

.hero-body {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
        padding: 100px 28px 41px;
}

.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    background: rgba(61,178,249,0.10);
    border: 1px solid rgba(61,178,249,0.35);
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px #3db2f9;
    animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.85); }
}

.label-text {
    font-family: "Urbanist", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--orange-light);
}

.hero-headline {
   
    font-size: clamp(40px, 6.5vw, 72px);
    font-weight: 800;
    color: #0d1117;
    line-height: 1.08;
    letter-spacing: -1.5px;
    max-width: 820px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #1a8ed1, #3db2f9, #6ecbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 400;
    color: #4a5568;
    max-width: 590px;
    line-height: 1.72;
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease 0.2s both;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    background: #0d1117;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fadeUp 0.6s ease 0.3s both;
}

.ced-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    border-radius: 100px;
    background: transparent;
    color: #4a5568;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.18);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
    animation: fadeUp 0.6s ease 0.35s both;
}

.btn-hero-ghost:hover {
    border-color: rgba(0,0,0,0.45);
    color: #0d1117;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.1);
    color: #fff;
}

.btn-hero-cta .cta-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ecbff, #3db2f9, #1a8ed1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-hero-cta .cta-arrow svg {
    width: 10px;
    height: 10px;
    fill: white;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 64px;
    animation: fadeUp 0.6s ease 0.45s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 52px;
}

.hero-stat-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.10);
}

.hero-stat-number {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #0d1117;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hero-stat-number span { color: var(--orange-light); }

.hero-stat-label {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #4a5568;
    letter-spacing: 0.3px;
    text-align: center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61,178,249,0.35), transparent);
    z-index: 5;
    animation: heroScan 6s ease-in-out infinite;
}

@keyframes heroScan {
    0%   { top: 0; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.3; }
    100% { top: 65%; opacity: 0; }
}

@media (max-width: 768px) {
    .hero-stat-item  { padding: 0 24px; }
    .hero-stat-number { font-size: 26px; }
    .hero-headline   { letter-spacing: -0.8px; }
}
