/* ============================================================
   HERO.CSS
============================================================ */

#hero-vbees {
    background: var(--navy);
    min-height: 94vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Grid background pattern */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        linear-gradient(var(--amber) 1px, transparent 1px),
        linear-gradient(90deg, var(--amber) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glow blobs */
.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(254, 153, 39, .16) 0%, transparent 68%);
    top: -140px;
    right: -100px;
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(51, 79, 144, .28) 0%, transparent 68%);
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

/* Layout */
.hero-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 24px 80px;
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-visual {
    flex: 0 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(254, 153, 39, .13);
    border: 1px solid rgba(254, 153, 39, .28);
    color: var(--amber);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeUp .55s ease both;
}

/* Title */
.hero-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 5.5vw, 66px);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
    animation: fadeUp .6s .08s ease both;
}

.hero-title .amber {
    color: var(--amber);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 500px;
    animation: fadeUp .6s .16s ease both;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    color: #fff;
    font-weight: 600;
    font-size: clamp(15px, 1.6vw, 17px);
    margin-bottom: 32px;
    max-width: 560px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .18);
    animation: fadeUp .6s .18s ease both;
}

.hero-highlight span {
    display: block;
}

/* Pills row */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
    animation: fadeUp .6s .24s ease both;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #CBD5E1;
    border-radius: 100px;
    padding: 7px 15px;
    font-size: 12.5px;
    font-weight: 500;
    transition: border-color .2s, background .2s;
}

.hero-pill:hover {
    border-color: rgba(254, 153, 39, .4);
    background: rgba(254, 153, 39, .07);
}

.hero-pill i {
    color: var(--amber);
    font-size: 11px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .32s ease both;
}

.hero-btns .btn {
    padding: 14px 28px;
    font-size: 14px;
}

/* ── Phone Mockups ── */
.hero-phones {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    position: relative;
}

.phone-wrap {
    border-radius: 44px;
    overflow: hidden;
    background: #0F172A;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .48),
        0 0 0 1.5px rgba(255, 255, 255, .08),
        inset 0 0 0 1.5px rgba(255, 255, 255, .03);
    position: relative;
    flex-shrink: 0;
}

.phone-wrap.main,
.phone-wrap.side {
    width: 224px;
    animation: float 3.5s ease-in-out infinite;
}

.phone-wrap.main {
    z-index: 2;
    transform: translateY(-18px);
}

.phone-wrap.side {
    opacity: .95;
    transform: translate(-16px, 24px);
    animation-delay: .8s;
}

/* .phone-screen {
    background: linear-gradient(160deg, #1B2A4B 0%, #111C34 100%);
    padding: 0;
    min-height: 448px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
} */
.phone-screen {
    background: linear-gradient(160deg, #1B2A4B 0%, #111C34 100%);
    padding: 0;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}


.phone-notch {
    width: 68px;
    height: 6px;
    background: #0F172A;
    border-radius: 0 0 999px 999px;
    margin: 0 auto 12px;
}

/* .screen-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
    background: #020617;
} */

.screen-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    height: 0;              /* forces flex child to shrink into parent */
    /* border-radius: 28px; */
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
    background: #020617;
}

.screen-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

/* 

.screen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    display: block;
    object-fit: cover;
} */
/* Dashboard screen */
.p-header {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.p-welcome {
    font-size: 9.5px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.p-banner {
    width: 100%;
    height: 76px;
    background: linear-gradient(135deg, var(--navy2) 0%, #1E3A8A 100%);
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-banner i {
    color: var(--amber);
    font-size: 26px;
}

.p-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.p-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.p-icon-box {
    width: 26px;
    height: 26px;
    background: rgba(254, 153, 39, .14);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-icon-box i {
    color: var(--amber);
    font-size: 9px;
}

.p-icon-lbl {
    font-size: 6.5px;
    color: var(--text-soft);
}

.p-card {
    background: rgba(255, 255, 255, .06);
    border-radius: 9px;
    padding: 9px 10px;
    margin-bottom: 10px;
}

.p-card-title {
    font-size: 8px;
    color: #CBD5E1;
    font-weight: 600;
    margin-bottom: 7px;
}

.p-avatars {
    display: flex;
    gap: 5px;
}

.p-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7.5px;
    font-weight: 700;
    color: #fff;
}

.p-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.p-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.p-nav-item i {
    font-size: 11px;
    color: #475569;
}

.p-nav-item span {
    font-size: 5.5px;
    color: #475569;
}

.p-nav-item.active i {
    color: var(--amber);
}

.p-nav-item.active span {
    color: var(--amber);
}

/* Login screen */
.login-screen {
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 410px;
}

.login-logo {
    width: 44px;
    height: 44px;
    background: var(--amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 19px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 14px;
}

.login-welcome {
    font-size: 13px;
    color: var(--amber);
    font-weight: 700;
    font-family: 'Karla', sans-serif;
    margin-bottom: 18px;
}

.login-field {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 7px;
    padding: 8px 11px;
    margin-bottom: 9px;
    font-size: 8.5px;
    color: #64748B;
}

.login-btn-mock {
    width: 100%;
    background: var(--amber);
    border-radius: 7px;
    padding: 9px;
    font-size: 9px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-top: 4px;
    margin-bottom: 13px;
}

.login-links {
    font-size: 7.5px;
    color: #64748B;
    text-align: center;
    line-height: 2.2;
}

.login-links span {
    color: var(--amber);
}

.login-footer {
    margin-top: auto;
    font-size: 6.5px;
    color: #475569;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1060px) {
    .phone-wrap.main {
        width: 188px;
    }

    .phone-wrap.side {
        width: 165px;
    }
}

@media (max-width: 860px) {
    .hero-content {
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 64px 20px 56px;
    }
}

@media (max-width: 480px) {
    #hero-vbees {
        min-height: auto;
    }

    .hero-content {
        padding: 52px 16px 48px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-pills {
        gap: 8px;
    }

    .hero-pill {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .hero-btns .btn {
        padding: 13px 20px;
        font-size: 13px;
    }
}