/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.hero-label {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hover Zoom Effect */
.hero-left:hover .hero-img-wrap {
    transform: scale(1.05);
}

.hero-right:hover .hero-img-wrap {
    transform: scale(1.05);
}

/* Center Overlay */
.hero-center-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    height: 125%;
    clip-path: polygon(0 0, 100% 0, 50% 85%);
    background: url('../../images/hero-bg.png') no-repeat center top;
    background-size: cover;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 15vh;
    padding-bottom: 2rem;
}

.hero-center-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Hero Sun Graphic */
.hero-sun {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    max-width: 60vw;
    max-height: 60vw;
    max-width: 60vw;
    max-height: 60vw;
    background: linear-gradient(to top, #ff9a5e, #ffc988);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 166, 0, 0.4);
    z-index: -1;
    opacity: 0.8;
}

/* =========================================
   5. FEATURED SETUPS
   ========================================= */
.setup-slider-wrapper {
    margin-top: 60px;
    position: relative;
}

.setup-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.setup-slide.active {
    display: block;
    opacity: 1;
}

.setup-grid {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.setup-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    box-shadow: var(--shadow-strong);
    position: relative;
    height: auto;
    min-height: 500px;
}

.setup-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.setup-details-float {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 380px;
    max-width: 90%;
    /* Prevent overflow on small screens */
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.video-thumb-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.checklist-item input {
    margin-right: 10px;
    accent-color: var(--primary);
    transform: scale(1.2);
}

.checklist-item a {
    color: var(--secondary);
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   6. ROADMAPS
   ========================================= */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.roadmap-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    top: 0;
}

.roadmap-card:hover {
    top: -10px;
    box-shadow: var(--shadow-hover);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fefefe 0%, #f1f1f1 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* =========================================
   7. LIFESTYLE
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
}

.bento-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.item-large {
    grid-row: span 2;
}

/* =========================================
   8. DIGITAL TOOLS
   ========================================= */
.digital-tools {
    background: var(--dark-bg);
    color: white;
    background: var(--dark-bg);
    color: white;
    padding-bottom: 8rem;
    overflow: hidden;
    position: relative;
}

.digital-tools::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: 0.3s;
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.tool-card h3 {
    color: white;
    font-size: 1.4rem;
}

.tool-card h3 span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 5px;
}

/* =========================================
   RESPONSIVE (FRONT PAGE)
   ========================================= */

@media (max-width: 1024px) {
    .hero-center-overlay {
        width: 100%;
        clip-path: none;
        background: rgba(255, 255, 255, 0.9);
        height: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 20px;
        max-width: 90%;
    }

    .hero-split-bg {
        position: absolute;
    }

    .setup-details-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -50px;
        z-index: 10;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .item-large {
        grid-column: span 2;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        display: block;
        padding-bottom: 50px;
    }

    .hero-split-bg {
        position: relative;
        height: 300px;
    }

    .hero-center-overlay {
        position: relative;
        top: -50px;
        margin-bottom: -50px;
        clip-path: none;
        transform: none;
        left: 0;
        width: 100%;
        background: white;
    }

    .setup-visual {
        height: 300px;
    }

    .setup-details-float {
        width: 100%;
        margin-top: 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .item-large {
        grid-column: span 1;
    }
}