/* ===================================
   IWEBLAB HOMEPAGE CUSTOM STYLES
   Inspired by Hostiko Layout 94
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- HERO --- */
.iw-hero {
    background: linear-gradient(135deg, #031041 0%, #0a1e5e 50%, #142a6e 100%);
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.iw-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41,77,240,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.iw-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FCB827;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.iw-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.iw-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 520px;
}
.iw-hero-btn {
    display: inline-block;
    background: #294DF0;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.iw-hero-btn:hover {
    background: #1a3ad4;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41,77,240,0.35);
}
.iw-hero-img {
    max-width: 100%;
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@media (max-width: 991px) {
    .iw-hero { padding: 60px 0 50px; }
    .iw-hero-title { font-size: 36px; }
}
@media (max-width: 575px) {
    .iw-hero-title { font-size: 28px; }
    .iw-hero-text { font-size: 15px; }
}

/* --- SECTION LABELS --- */
.iw-section-label {
    display: inline-block;
    color: #294DF0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.iw-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #031041;
    margin-bottom: 12px;
}
.iw-section-text {
    font-size: 16px;
    color: #666;
    max-width: 560px;
}
.iw-features .iw-section-text {
    margin: 0 auto;
}

/* --- FEATURES --- */
.iw-features {
    padding: 80px 0;
    background: #fff;
}
.iw-feature-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.iw-feature-card:hover {
    border-color: #294DF0;
    box-shadow: 0 10px 40px rgba(41,77,240,0.1);
    transform: translateY(-5px);
}
.iw-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e8ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #294DF0;
}
.iw-feature-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #031041;
    margin-bottom: 10px;
}
.iw-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* --- STATISTICS --- */
.iw-stats {
    padding: 70px 0;
    background: linear-gradient(135deg, #031041 0%, #0a1e5e 100%);
    color: #fff;
}
.iw-stat-item i {
    font-size: 36px;
    color: #FCB827;
    margin-bottom: 15px;
}
.iw-stat-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}
.iw-stat-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* --- FAQ --- */
.iw-faq {
    padding: 80px 0;
    background: #f8f9fc;
}
.iw-accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #eef0f5;
    overflow: hidden;
    transition: all 0.3s ease;
}
.iw-accordion-item:hover {
    border-color: #d0d5e5;
}
.iw-accordion-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #031041;
    transition: all 0.3s ease;
}
.iw-accordion-header:hover {
    color: #294DF0;
}
.iw-accordion-header i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #294DF0;
}
.iw-accordion-header:not(.collapsed) i {
    transform: rotate(180deg);
}
.iw-accordion-body {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* --- CTA --- */
.iw-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #294DF0 0%, #1a3ad4 100%);
    color: #fff;
}
.iw-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.iw-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}
.iw-cta-btn {
    display: inline-block;
    background: #fff;
    color: #294DF0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.iw-cta-btn:hover {
    background: #031041;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .iw-section-title { font-size: 28px; }
    .iw-features, .iw-faq { padding: 50px 0; }
    .iw-stats { padding: 50px 0; }
    .iw-cta { padding: 50px 0; }
    .iw-cta h2 { font-size: 28px; }
}
