:root {
    --home-heading: #101828;
    --home-muted: #667085;
    --home-border: #eaecf0;
    --home-bg-soft: #f8f9fc;
    --home-accent: #ff7a1a;
    --home-accent-dark: #f25f00;
    --home-surface: #ffffff;
}

.minimal-section {
    padding: 28px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.section-header > div {
    flex: 1 1 280px;
}

.section-eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--home-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.section-heading {
    font-size: clamp(1.45rem, 1.1rem + 1vw, 2rem);
    font-weight: 700;
    color: var(--home-heading);
    margin: 0;
}

.section-subtitle {
    color: var(--home-muted);
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.section-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--home-accent);
    text-decoration: none;
    padding: 8px 0;
}

.section-action span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 122, 26, 0.1);
    align-items: center;
    justify-content: center;
    color: var(--home-accent);
    transition: transform 0.2s ease;
}

.section-action:hover span {
    transform: translateX(2px);
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.discover-card {
    border-radius: 18px;
    padding: 18px;
    background: var(--discover-bg, #fff);
    border: 1px solid var(--discover-border, var(--home-border));
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: var(--home-heading);
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    color: var(--home-heading);
}

.discover-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.discover-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discover-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.discover-meta {
    font-size: 0.85rem;
    color: var(--home-muted);
    margin: 2px 0 0;
}

.hero-section {
    padding: 16px 0 8px;
}

.hero-shell {
    position: relative;
    border-radius: 32px;
    background: linear-gradient(120deg, #101828, #182642 65%, #fefefe 65%);
    padding: 48px;
    overflow: hidden;
    min-height: 320px;
}

.hero-slider {
    position: relative;
    min-height: 280px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 32px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(2rem, 1.4rem + 1.4vw, 2.8rem);
    margin-bottom: 12px;
    color: #fff;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: #fff;
    color: #101828;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.hero-media {
    background: var(--home-surface);
    border-radius: 28px;
    padding: 16px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-navigation {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.campaign-section {
    background: var(--home-bg-soft);
    border-radius: 28px;
    padding: 32px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.campaign-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.campaign-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.campaign-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.campaign-tag {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: var(--home-muted);
    text-transform: uppercase;
}

.campaign-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.campaign-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--home-accent);
    font-weight: 600;
    text-decoration: none;
}

.campaign-action svg {
    width: 18px;
    height: 18px;
}

.section-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tabs .nav {
    background: #fff;
    border-radius: 999px;
    padding: 4px;
    border: 1px solid var(--home-border);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.section-tabs .nav::-webkit-scrollbar {
    display: none;
}

.section-tabs .nav-link {
    border: none;
    border-radius: 999px !important;
    padding: 8px 18px;
    font-weight: 500;
    color: var(--home-muted);
    text-transform: none;
    white-space: nowrap;
}

.section-tabs .nav-link.active {
    background: var(--home-accent);
    color: #fff;
}

.section-tabs .nav-link:not(.active):hover {
    background: rgba(255, 122, 26, 0.08);
    color: var(--home-accent);
}

.carousel-shell {
    position: relative;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.market-card,
.brand-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 20px;
    scroll-snap-align: start;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--home-heading);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-card:hover,
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.market-card img,
.brand-card img {
    max-height: 60px;
    object-fit: contain;
}

.market-card p,
.brand-card p {
    margin: 0;
    color: var(--home-muted);
}

.market-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--home-muted);
    font-size: 0.9rem;
}

.market-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(22, 163, 74, 0.12);
    color: #137a39;
    font-weight: 600;
    font-size: 0.85rem;
}

.carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--home-border);
    background: #fff;
    color: var(--home-heading);
    cursor: pointer;
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

@media (max-width: 991px) {
    .campaign-section {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .minimal-section {
        padding: 20px 0;
    }

    .discover-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-shell {
        padding: 28px;
        background: linear-gradient(180deg, #101828, #182642 60%, #fefefe 60%);
        border-radius: 24px;
    }

    .hero-navigation {
        position: static;
        margin-top: 12px;
    }

    .hero-dots {
        position: static;
        transform: none;
        justify-content: flex-start;
        margin-top: 16px;
    }

    .campaign-card img {
        height: 150px;
    }
}
