.hero-wrap {
    padding: 2.5rem 0 1.5rem;
}
.hero-card {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px rgba(31, 31, 36, 0.12);
    aspect-ratio: 3 / 1;
}
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(248, 248, 252, 0.92), rgba(241, 241, 246, 0.6));
    z-index: 1;
}
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel img {
    height: 100%;
}
.hero-carousel img {
    width: 100%;
    object-fit: cover;
}
.hero-carousel .carousel-indicators {
    bottom: 16px;
    margin-bottom: 0;
}
.hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #f1b7c3;
    opacity: 1;
    border: 0;
}
.hero-carousel .carousel-indicators .active {
    background-color: var(--c-primary);
}
.hero-content {
    max-width: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-title {
    color: var(--c-primary);
    font-weight: 700;
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    line-height: 1.2;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.hero-stat {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--c-muted);
}
.hero-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--c-ink);
    letter-spacing: 0;
}
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lead-block {
    font-size: 1.225rem;
    color: #2f2f37;
    line-height: 1.7;
    padding: 0 1rem;
}
.section-panel {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(31, 31, 36, 0.08);
}
.section-title {
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.section-text {
    color: #2f2f37;
    line-height: 1.7;
    font-size: 0.95rem;
}
.image-panel {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 22px rgba(31, 31, 36, 0.12);
}
.image-panel.ratio-3x2 {
    aspect-ratio: 3 / 2;
}
.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-button {
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.2rem;
}
.webinar-section {
    padding-top: 0.5rem;
}
.webinar-carousel .carousel-item {
    padding: 0.5rem 0;
}
.webinar-card {
    border: 1px solid #f1c5cf;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(31, 31, 36, 0.08);
    width: 100%;
}
.webinar-thumb {
    background: #f4f3f8;
    aspect-ratio: 3 / 4;
}
.webinar-meta {
    font-size: 0.75rem;
    color: var(--c-muted);
}
.webinar-carousel .carousel-indicators {
    position: static;
    margin: 1rem 0 0;
}
.webinar-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #f1b7c3;
    opacity: 1;
    border: 0;
}
.webinar-carousel .carousel-indicators .active {
    background-color: var(--c-primary);
}
.soft-section {
    padding: 2rem 0 0;
}
@media (max-width: 991px) {
    .hero-stats {
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
    .hero-card {
        aspect-ratio: 2 / 3;
    }
}
@media (min-width: 768px) {
    .hero-content {
        max-width: 60%;
    }
}
