/* ===== HERO SECTION (merged Hero + About) ===== */
.hero-section {
    display: flex;
    align-items: center;
    min-height: unset;
    gap: 0;
    padding: 0;
    position: relative;
    background:
        radial-gradient(circle at 15% 85%, #ffe2b066 5%, transparent 30%),
        radial-gradient(circle at 90% 10%, #4361ee22 8%, transparent 35%),
        #f6f8ff;
}

@media (max-width: 1023px) {
    .hero-section {
        flex-direction: column;
        min-height: unset;
    }
}

/* ── LEFT: Image column ── */
.hero-image-col {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3.5rem 2rem;
}

@media (max-width: 1023px) {
    .hero-image-col {
        flex: none;
        width: 100%;
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

/* Outer decorative ring */
.hero-image-frame {
    position: relative;
    width: min(22rem, 85vw);
    height: min(22rem, 85vw);
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #4361ee, #7b9df8 50%, #c8deff);
    box-shadow:
        0 0 0 12px rgba(67, 97, 238, 0.08),
        0 16px 48px rgba(67, 97, 238, 0.18);
}

/* Inner white ring gap */
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
}

/* The photo itself — circular crop */
.hero-img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    display: block;
    z-index: 1;
}

/* Decorative accent dot clusters */
.hero-image-frame::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: radial-gradient(circle, #4361ee44 0%, transparent 70%);
    z-index: -1;
}

/* Social pill — sits below the circle */
.hero-social-bar {
    margin-top: 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 0.5rem 1.75rem;
    display: inline-flex;
    gap: 0.25rem;
    box-shadow: 0 2px 16px rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(67, 97, 238, 0.12);
}

/* ── RIGHT: Content column ── */
.hero-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3rem 3rem 4rem;
    gap: 0;
}

@media (max-width: 1279px) {
    .hero-content-col {
        padding: 3rem 2rem;
    }
}

@media (max-width: 1023px) {
    .hero-content-col {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
}

/* Name / tagline */
.hero-greeting {
    font-size: 1rem;
    font-weight: 500;
    color: var(--picto-primary, #4361ee);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-name {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--gray-900, #111827);
}

.hero-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--picto-primary, #4361ee);
    margin-bottom: 1.5rem;
}

/* Description paragraphs */
.hero-desc {
    font-size: 1rem;
    color: var(--gray-600, #4b5563);
    line-height: 1.75;
    margin-bottom: 0.75rem;
    max-width: 38rem;
}

@media (max-width: 1023px) {
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 0.75rem;
    margin: 1.75rem 0 2rem;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .hero-stats {
        justify-content: center;
    }
}

.hero-stat-item {
    background: #eef1fd;
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 6rem;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--picto-primary, #4361ee);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500, #6b7280);
    margin-top: 0.125rem;
}

/* CTA buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .hero-buttons {
        justify-content: center;
    }
}