/* ===========================================================
   HERO.CSS
   People & Culture at Work Enterprise Edition
   =========================================================== */

/* ===========================================================
   HERO SECTION
=========================================================== */

.hero{

    position:relative;

    overflow:hidden;

    min-height:92vh;

    display:flex;

    align-items:center;

    padding:120px 0 90px;

    isolation:isolate;

    background:
        radial-gradient(circle at top left,
            rgba(58,172,193,.12),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(243,127,43,.14),
            transparent 40%),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfc 100%
        );

}

/* ===========================================================
   BACKGROUND
=========================================================== */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),

        linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);

    background-size:40px 40px;

    opacity:.45;

    z-index:-3;

}

.hero::after{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    left:-320px;

    top:-340px;

    border-radius:50%;

    background:

        radial-gradient(circle,
            rgba(58,172,193,.18),
            transparent 70%);

    filter:blur(60px);

    z-index:-2;

}

/* ===========================================================
   FLOATING SHAPES
=========================================================== */

.hero-shape{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

    filter:blur(28px);

    animation:floatShape 12s ease-in-out infinite;

}

.hero-shape-1{

    width:320px;

    height:320px;

    top:-90px;

    left:-100px;

    background:rgba(58,172,193,.18);

}

.hero-shape-2{

    width:220px;

    height:220px;

    right:-70px;

    bottom:40px;

    background:rgba(243,127,43,.18);

    animation-delay:2s;

}

.hero-shape-3{

    width:150px;

    height:150px;

    right:16%;

    top:22%;

    background:rgba(118,209,226,.20);

    animation-delay:4s;

}

@keyframes floatShape{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-22px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================================================
   HERO LAYOUT
=========================================================== */

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

/* ===========================================================
   LEFT SIDE
=========================================================== */

.hero-content{

    position:relative;

    z-index:5;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

    background:#ffffff;

    border:1px solid rgba(58,172,193,.25);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    font-weight:700;

    color:var(--primary-blue);

}

.hero-badge::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--primary-orange);

}

.hero h1{

    max-width:760px;

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:28px;

    color:#122B3A;

}

.hero h1 span{

    display:block;

    color:var(--primary-orange);

}

.hero-description{

    max-width:650px;

    font-size:1.2rem;

    line-height:1.85;

    color:#5E7281;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:42px;

}
/* ===========================================================
   HERO BUTTONS
=========================================================== */

.hero-buttons .btn{

    min-width:210px;

    justify-content:center;

    font-size:1rem;

    font-weight:700;

    padding:16px 28px;

    border-radius:14px;

    transition:all .35s ease;

}

.hero-buttons .btn-primary{

    box-shadow:0 18px 35px rgba(243,127,43,.25);

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 28px 50px rgba(243,127,43,.35);

}

.hero-buttons .btn-secondary{

    background:#ffffff;

    border:2px solid rgba(58,172,193,.20);

}

.hero-buttons .btn-secondary:hover{

    transform:translateY(-4px);

}

/* ===========================================================
   TRUST BADGES
=========================================================== */

.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 18px;

    background:#ffffff;

    border-radius:14px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 12px 25px rgba(0,0,0,.05);

}

.trust-icon{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary-orange);

    color:#ffffff;

    font-weight:700;

}

/* ===========================================================
   RIGHT COLUMN
=========================================================== */

.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-illustration{

    width:100%;

    max-width:560px;

    position:relative;

    z-index:3;

}

.hero-illustration img{

    width:100%;

    display:block;

}

/* ===========================================================
   FLOATING KPI CARDS
=========================================================== */

.floating-card{

    position:absolute;

    display:flex;

    gap:16px;

    align-items:center;

    padding:18px 22px;

    min-width:220px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.55);

    border-radius:20px;

    box-shadow:0 22px 50px rgba(0,0,0,.10);

    animation:floatCard 6s ease-in-out infinite;

    z-index:5;

}

.floating-card-1{

    top:40px;

    left:-40px;

}

.floating-card-2{

    right:-30px;

    top:180px;

    animation-delay:2s;

}

.floating-card-3{

    left:40px;

    bottom:-10px;

    animation-delay:4s;

}

.card-icon{

    width:54px;

    height:54px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--primary-orange),
        #ffb357
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:1.35rem;

}

.card-content h3{

    margin:0;

    font-size:1.35rem;

    font-weight:800;

    color:#173B4B;

}

.card-content p{

    margin-top:4px;

    color:#677786;

    font-size:.92rem;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================================================
   HERO BOTTOM
=========================================================== */

.hero-bottom{

    margin-top:70px;

}

.trusted-by{

    text-align:center;

    font-size:.95rem;

    color:#6C7D8A;

    margin-bottom:28px;

    font-weight:600;

}

.company-logos{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

.company-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:18px;

    background:#ffffff;

    border-radius:16px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    font-weight:700;

    color:#5C6F7A;

    transition:all .3s ease;

}

.company-logo:hover{

    transform:translateY(-6px);

}

/* ===========================================================
   SCROLL INDICATOR
=========================================================== */

.scroll-indicator{

    position:absolute;

    bottom:22px;

    left:50%;

    transform:translateX(-50%);

    animation:bounceArrow 2.5s infinite;

}

@keyframes bounceArrow{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,10px);

    }

}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media (max-width:1100px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .hero-description{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-trust{

        justify-content:center;

    }

    .company-logos{

        grid-template-columns:repeat(3,1fr);

    }

    .floating-card{

        display:none;

    }

}

@media (max-width:768px){

    .hero{

        min-height:auto;

        padding:90px 0 70px;

    }

    .hero h1{

        font-size:2.5rem;

        letter-spacing:-1px;

    }

    .hero-description{

        font-size:1.05rem;

        line-height:1.75;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .company-logos{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:480px){

    .hero{

        padding:80px 0 60px;

    }

    .hero-badge{

        font-size:.82rem;

    }

    .hero h1{

        font-size:2.1rem;

    }

    .company-logos{

        grid-template-columns:1fr;

    }

}