.hero {
    min-height: 640px;
    position: relative;
    overflow: hidden;
    background: #0f2e55;
}
.hero-slides, .hero-slide {
    position: absolute;
    inset: 0;
}
.hero-slide {
    display: flex;
    align-items: center;
    padding-top: 86px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .55s ease, transform .8s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 34, 66, .90), rgba(10, 34, 66, .58), rgba(10, 34, 66, .16)),
        linear-gradient(180deg, rgba(10,34,66,.06), rgba(10,34,66,.42));
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    color: white;
}
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.03;
    margin: 14px 0 18px;
    max-width: 760px;
    letter-spacing: -.05em;
}
.hero p {
    max-width: 650px;
    font-size: 1.18rem;
    line-height: 1.65;
    color: rgba(255,255,255,.90);
    margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-actions .secondary { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.45); }
.hero-slider-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.hero-slider-btn.prev { left: 24px; }
.hero-slider-btn.next { right: 24px; }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.hero-dot.active {
    width: 30px;
    background: var(--orange);
}

.category-compact-section {
    padding-top: 46px;
    padding-bottom: 16px;
}
.category-title-row {
    align-items: end;
    margin-bottom: 18px;
}
.category-title-row small {
    color: var(--muted);
    font-weight: 750;
}
.category-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
}
.category-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px 18px;
    scroll-snap-type: x proximity;
}
.category-track::-webkit-scrollbar { display: none; }
.category-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 24px rgba(15, 46, 85, .08);
    font-size: 1.6rem;
    font-weight: 900;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.category-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 46, 85, .13);
    background: #f8fbff;
}
.category-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }

.recommendation-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.recommendation-row a {
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(15, 46, 85, .07);
    border-radius: 20px;
    padding: 22px 16px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-dark);
    transition: transform .2s ease, box-shadow .2s ease;
}
.recommendation-row a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (max-width: 1100px) {
    .recommendation-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .hero { min-height: 680px; }
    .hero-slide { padding-top: 84px; }
    .hero-slider-btn { display: none; }
    .category-compact-section { padding-top: 34px; }
    .category-title-row { align-items: flex-start; }
    .category-title-row small { display: none; }
    .category-carousel {
        grid-template-columns: 1fr;
    }
    .category-arrow { display: none; }
    .category-track {
        padding: 4px 0 14px;
        gap: 10px;
    }
    .recommendation-row { grid-template-columns: 1fr; }
}
