.hero-slider {
    position: relative;
    overflow: hidden;
    background: #f3f5f7;
    user-select: none;
}
.hero-track {
    display: flex;
    width: 100%;
    transition: transform .6s ease;
    will-change: transform;
}
.hero-slide {
    position: relative;
    min-width: 100%;
    height: clamp(260px, 52vw, 560px);
    background: #e8ecef;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    max-width: min(44ch, 520px);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-content h2 {
    margin: 0 0 .6rem;
    font-size: clamp(28px, 3.6vw, 56px);
    line-height: 1.08;
    font-weight: 700;
}
.hero-content p {
    margin: 0 0 1.2rem;
    font-size: clamp(14px, 1.4vw, 18px);
}
.hero-cta {
    display: inline-block;
    background: #f4a62a;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    padding: .8rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    font-size: 36px;
    color: #333;
    cursor: pointer;
    z-index: 2;
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-dots {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 18px;
    display: flex; gap: 10px;
    z-index: 2;
}
.hero-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}
.hero-dots button[aria-selected="true"] {
    background: #fff;
}
