/* ================= BASE ================= */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

.why-container {
    max-width: 1330px;
    margin: auto;
    padding: 0 20px;
}

/* ================= BRAND GRADIENT HERO ================= */

.why-hero {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg,
            #FFF3ED 0%,
            /* very light peach */
            #FFD7C2 20%,
            /* soft peach */
            #FFB48A 40%,
            /* warm orange */
            #FA5921 65%,
            /* brand main */
            #E84C14 85%,
            /* deeper brand */
            #D8430F 100%
            /* darkest accent */
        );
    overflow: hidden;
}

/* Soft overlay for readability */
.why-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.why-hero .why-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-hero h1 {
    font-size: 38px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

.why-hero p {
    font-size: 15px;
    max-width: 720px;
    margin: auto;
    color: #2b2b2b;
    font-weight: 600;
}

.why-hero {
    background-size: 200% 200%;
    animation: brandFlow 12s ease infinite;
}

@keyframes brandFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




/* ================= GRID ================= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ================= CARDS ================= */
.why-card {

    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.why-card.highlight {
    border-color: #FA5921;
}

.why-card h3 {
    margin-bottom: 14px;
}

.why-card ul {
    list-style: none;
    padding: 0;
}

.why-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.why-card i {
    color: #FA5921;
}

/* ================= WHAT YOU GET ================= */

.why-section {
    padding: 60px 0;
}

.why-container {
    max-width: 1330px;
    margin: auto;
    padding: 0 20px;
}

.why-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

/* Card */
.feature-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(250, 89, 33, 0.18);
}

/* Icon wrapper */
.feature-box i {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #FFF3ED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FA5921;
    font-size: 22px;
}

/* Title */
.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Text */
.feature-box p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
    .why-container h2 {
        font-size: 22px;
    }

    .feature-box {
        padding: 22px 18px;
    }
}


/* ================= GOAL ================= */
.goal-text {
    max-width: 800px;
    font-size: 16px;
    color: #e5e7eb;
}



/* ================= CTA ================= */
.why-cta {
    background: #FA5921;
    color: #000;
    text-align: center;
    padding: 60px 0;
}

.cta-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.why-lottie {
    width: 100%;
    max-width: 420px;
    height: auto;
}

@media (max-width: 768px) {
    .why-lottie {
        max-width: 320px;
        margin: 20px auto 0;
        display: block;
    }
}

.why-section {
    padding: 18px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.why-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    text-align: justify;
}

.why-image {
    display: flex;
    justify-content: flex-end;
}

.why-lottie {
    width: 100%;
    max-width: 420px;
}

/* Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        justify-content: center;
    }

    .why-lottie {
        max-width: 320px;
        margin-top: 20px;
    }
}