* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 55px;
    width: auto;
    display: block;
}

.btn-top,
.btn-main,
.btn-card {
    display: inline-block;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-top:hover,
.btn-main:hover,
.btn-card:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #111827;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 30px;
}

.job-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
    margin-bottom: 25px;
    color: #111827;
}

.item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.item strong {
    display: block;
    color: #16a34a;
    margin-bottom: 5px;
}

.section {
    padding: 80px 0;
}

.section.light {
    background: #f9fafb;
}

.title {
    text-align: center;
    margin-bottom: 45px;
}

.title h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 10px;
}

.title p {
    color: #6b7280;
}

.feature-grid,
.job-grid,
.process {
    display: grid;
    gap: 25px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.step,
.faq-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card h3,
.step h3,
.faq-item h3 {
    margin-bottom: 10px;
    color: #111827;
}

.feature-card p,
.step p,
.faq-item p {
    color: #6b7280;
}

.job-grid {
    grid-template-columns: repeat(4, 1fr);
}

.job-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.process {
    grid-template-columns: repeat(4, 1fr);
}

.step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    margin-bottom: 18px;
}

.cta-section {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 28px;
}

.cta-section .btn-main {
    background: #ffffff;
    color: #16a34a;
}

footer {
    background: #111827;
    color: #ffffff;
    padding: 35px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-wa {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 200;
}

@media (max-width: 992px) {
    .hero-grid,
    .feature-grid,
    .job-grid,
    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    header .container,
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-grid,
    .feature-grid,
    .job-grid,
    .process {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .title h2 {
        font-size: 28px;
    }

    .btn-top {
        padding: 11px 18px;
        font-size: 14px;
    }
}