.nai-story-section {
    padding: 22px 0;
    background: linear-gradient(135deg, #fbf6ef 0%, #f5efe4 100%);
    position: relative;
    overflow: hidden;
}

.nai-story-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(47, 82, 51, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.nai-story-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.nai-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
}

/* ---- Visual side (now on right) ---- */
.nai-story-visual {
    position: relative;
}

.nai-story-img-frame {
    border-radius: 100px 28px 28px 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(46, 82, 51, 0.3);
    position: relative;
}

.nai-story-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(31, 42, 32, 0.15) 100%);
}

.nai-story-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.nai-story-img-frame:hover .nai-story-img {
    transform: scale(1.05);
}

.nai-story-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: linear-gradient(135deg, #ee7d34 0%, #e26a1f 100%);
    color: #fff;
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 20px 40px -12px rgba(238, 125, 52, 0.6);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nai-story-badge-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nai-story-badge-label {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.95;
}

.nai-story-dot-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(#2f5233 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.35;
    z-index: -1;
}

/* ---- Content side ---- */
.nai-story-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ee7d34;
    margin-bottom: 14px;
    position: relative;
    padding-left: 34px;
}

.nai-story-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: #ee7d34;
}

.nai-story-title {
    font-size: 39px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2a20;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
}

.nai-story-title-accent {
    color: #2f5233;
}

.nai-story-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #55605a;
   
}

.nai-story-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

.nai-story-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nai-story-feature:hover {
    background: #fff;
    transform: translateX(6px);
    box-shadow: 0 12px 30px -14px rgba(46, 82, 51, 0.25);
}

.nai-story-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef3ea 0%, #dce8d6 100%);
    color: #2f5233;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.nai-story-feature:hover .nai-story-feature-icon {
    background: linear-gradient(135deg, #2f5233 0%, #244228 100%);
    color: #fff;
    transform: rotate(-6deg);
}

.nai-story-feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2a20;
    margin: 0 0 4px;
}

.nai-story-feature-text p {
    font-size: 14.5px;
    color: #6b756f;
    margin: 0;
}

.nai-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2f5233 0%, #244228 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 12px 28px -12px rgba(47, 82, 51, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nai-story-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -12px rgba(47, 82, 51, 0.7);
    color: #fff;
}

.nai-story-btn i {
    transition: transform 0.25s ease;
}

.nai-story-btn:hover i {
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .nai-story-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .nai-story-content {
        order: 2;
    }

    .nai-story-visual {
        order: 1;
    }

    .nai-story-img {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .nai-story-section {
        padding: 70px 0;
    }

    .nai-story-title {
        font-size: 32px;
    }

    .nai-story-badge {
        right: 16px;
        bottom: -20px;
        padding: 16px 18px;
    }

    .nai-story-badge-num {
        font-size: 24px;
    }
}

    .myHeroSwiper {
        width: 100%;
        aspect-ratio: 1920 / 700;
        /* replace with your actual export size */
        height: auto;
    }

    .myHeroSwiper .swiper-slide {
        height: 100%;
        position: relative;
    }

    .myHeroSwiper .hero-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* safe now, since ratio matches */
        object-position: center;
        display: block;
    }

    @media (max-width: 767px) {
        .myHeroSwiper {
            aspect-ratio: 375 / 500;
            /* replace with your mobile export ratio */
        }
    }
