.about-section{
    background:#fff;
}

/* Judul Utama Section - Lebih proporsional */
.section-title{
    font-size:32px;
    font-weight:700;
    color:#111827;
}

/* Deskripsi Section - Lebih nyaman dibaca */
.section-description{
    max-width:900px;
    margin:auto;
    color:#4B5563;
    font-size:16px;
    line-height:1.7;
}

.feature-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-color:#2563EB;
}

/* Ukuran Icon - Disesuaikan sedikit agar tidak terlalu dominan */
.feature-icon{
    width:65px;
    height:65px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#EEF4FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#2563EB;
}

.feature-box h4{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
    min-height:auto; /* Dihapus min-height 60px agar jaraknya rapat jika teks pendek */
}

.feature-box p{
    color:#6B7280;
    line-height:1.7;
    font-size:15px;
    margin:0;
}

/*==================================
Feature Section
===================================*/

.feature-section{
    padding:80px 0;
    background:#f8fafc;
}

.feature-image{
    max-width:100%;
}

.feature-heading{
    font-size:26px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.feature-text{
    color:#4b5563;
    font-size:15px;
    line-height:1.7;
    margin-bottom:30px;
}

.benefit-item{
    display:flex;
    align-items:center;
    padding:14px 18px;
    margin-bottom:18px;
    background:#ffffff;
    border-radius:12px;
    border:1px solid #e5e7eb;
    transition:.3s;
}

.benefit-item:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-color:#2563EB;
}

.benefit-item i{
    font-size:20px;
    color:#2563EB;
    margin-right:12px;
}

.benefit-item span{
    color:#374151;
    font-size:15px;
    font-weight:500;
}

/*======================================
Order Section
=======================================*/

.order-section{
    padding:80px 0;
    background:#fff;
}

.timeline-item{
    display:flex;
    margin-bottom:35px;
}

.timeline-number{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:#2563EB;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    margin-right:20px;
}

.timeline-content h4{
    font-size:18px;
    color:#111827;
    margin-bottom:8px;
}

.timeline-content p{
    margin:0;
    color:#6B7280;
    font-size:15px;
    line-height:1.7;
}

.platform-card{
    background:#f8fafc;
    border-radius:18px;
    padding:35px;
    border:1px solid #e5e7eb;
}

.platform-card h3{
    text-align:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
}

.platform-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.platform-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:18px;
    text-align:center;
    transition:.3s;
    font-weight:500;
    font-size:15px;
}

.platform-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.platform-item i{
    display:block;
    font-size:28px;
    margin-bottom:10px;
    color:#2563EB;
}

/*==================================
FAQ
===================================*/

.faq-section{
    padding:80px 0;
    background:#f8fafc;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.custom-faq .accordion-button{
    background:#fff;
    padding:20px 24px;
    font-size:16px;
    font-weight:600;
    color:#111827;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#2563EB;
    color:#fff;
}

.custom-faq .accordion-button::after{
    filter:brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.custom-faq .accordion-body{
    background:#fff;
    color:#6B7280;
    font-size:15px;
    line-height:1.7;
    padding:20px 24px;
}

/*==================================
CTA SECTION
===================================*/

.cta-section{
    padding:90px 0;
    background:#ffffff;
}

.cta-box{
    background:linear-gradient(135deg,#2563EB,#1D4ED8);
    border-radius:24px;
    padding:50px; /* Dikurangi sedikit dari 60px agar lebih compact */
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-120px;
    top:-120px;
}

.cta-box::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-60px;
    bottom:-60px;
}

.cta-box>*{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.cta-box h2{
    font-size:32px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
    margin-top:15px;
}

.cta-box p{
    color:rgba(255,255,255,.92);
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
}

.cta-box .btn{
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    padding:12px 28px;
    font-size:15px;
}

.cta-box .btn-light{
    color:#2563EB;
}

.cta-box .btn:hover{
    transform:translateY(-4px);
}