/* HERO */
.why-hero {
    padding: 140px 60px;
    background:
        radial-gradient(circle at top right, rgba(255,122,24,.35), transparent 40%),
        linear-gradient(135deg, #10263f, #0b1c2d);
    color: #fff;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: auto;
    animation: fadeUp 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    background: rgba(255,255,255,.1);
    margin-bottom: 22px;
}

.why-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
}

.why-hero p {
    font-size: 18px;
    line-height: 1.9;
    opacity: .9;
}

/* ================= SPLIT WHY ================= */
.split-layout {
    padding: 120px 60px;
    background: #ffffff;
}

.why-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 80px;
}

/* LEFT */
.why-left {
    position: sticky;
    top: 120px;
    align-self: start;
}

.why-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff7a18;
    margin-bottom: 16px;
    display: inline-block;
}

.why-left h2 {
    font-size: 40px;
    margin-bottom: 22px;
}

.why-lead {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 22px;
}

.why-desc {
    font-size: 15.5px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 32px;
}

/* highlight tags */
.why-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.why-highlight span {
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ffb347,#ff7a18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* RIGHT */
.why-right {
    display: grid;
    gap: 42px;
}

/* item */
.why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 26px;
    align-items: flex-start;
}

.why-item h3 {
    font-size: 18.5px;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

/* icon */
.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ffb347,#ff7a18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(255,122,24,.45);
}

/* responsive */
@media (max-width: 900px) {
    .why-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-left {
        position: relative;
        top: auto;
    }
}


/* ACHIEVEMENT */
.why-achievement {
    padding: 120px 60px;
    text-align: center;
    background: #fff;
}

.why-achievement h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

.why-achievement span { color:#ff7a18; }

.achievement-grid {
    max-width: 1000px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 34px;
}

.achievement-card {
    padding: 46px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg,#10263f,#0b1c2d);
    color:#fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    transition:.35s;
    animation: popUp .9s ease forwards;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.count {
    font-size: 46px;
    font-weight: 800;
    color:#ffb347;
    margin-bottom:8px;
}

/* CLOSING */
.why-closing {
    padding: 130px 60px;
    background:
        radial-gradient(circle at bottom left, rgba(255,122,24,.35), transparent 45%),
        linear-gradient(135deg,#0b1c2d,#10263f);
    color:#fff;
    text-align:center;
}

.why-closing h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.why-closing p {
    max-width: 820px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    opacity:.9;
    margin-bottom:36px;
}

.btn-main {
    padding:16px 44px;
    border-radius:40px;
    background: linear-gradient(135deg,#ffb347,#ff7a18);
    color:#fff;
    font-weight:700;
}

/* ANIMATION */
@keyframes fadeUp {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:none;}
}

@keyframes popUp {
    from {opacity:0; transform:translateY(20px) scale(.95);}
    to {opacity:1; transform:none;}
}

/* RESPONSIVE */
@media (max-width:768px){
    .why-hero,
    .why-reasons,
    .why-achievement,
    .why-closing {
        padding: 90px 26px;
    }
}
