/**
 * Polyglot Pages Theme — Hero Section
 * Nasaon Digital Agency — Midnight Blue + Coral
 */

.pp-hero {
    background: var(--pp-primary);
    padding: 56px 24px 64px;
    position: relative;
    overflow: hidden;
}
.pp-hero::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 70px solid rgba(232,87,58,0.08);
    pointer-events: none;
}
.pp-hero::after {
    content: '';
    position: absolute;
    right: 80px; top: 80px;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 35px solid rgba(232,87,58,0.05);
    pointer-events: none;
}
.pp-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.pp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,87,58,0.15);
    border: 0.5px solid rgba(232,87,58,0.4);
    color: #f07a62;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--pp-radius-pill);
    margin-bottom: 18px;
    font-weight: 600;
}
.pp-hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pp-accent);
}
.pp-hero__title {
    font-family: var(--pp-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    max-width: 620px;
    margin-bottom: 14px;
}
.pp-hero__desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 28px;
}
.pp-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.pp-hero__stat-num {
    display: block;
    font-family: var(--pp-font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pp-accent);
    line-height: 1;
    margin-bottom: 3px;
}
.pp-hero__stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pp-hero-stripe {
    height: 3px;
    background: linear-gradient(to right, var(--pp-accent), #f07a62, transparent);
}
