/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    background: #f4f6f3;
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #2d2d2d;
    line-height: 1.5;
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    background: #ffffff;

    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.05);
}

.container img {
    width: 100%;
    display: block;
    height: auto;
}

/* =========================
   CTA BUTTON PACKAGE
========================= */

.package-cta {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;

    margin: 22px 0 20px;
}

.cta-btn {
    width: 100%;
    max-width: 520px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #0c8f43;
    color: #ffffff;

    padding: 10px 10px;

    font-size: 17px;
    font-weight: 700;
    text-decoration: none;

    border-radius: 999px;

    border: 2px solid #19b35c;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition: all 0.25s ease;
}

.cta-btn svg {
    flex-shrink: 0;
}

.cta-btn:hover {
    transform: translateY(-2px);

    background: #0aa14a;

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18),
        0 0 18px rgba(25, 179, 92, 0.25);
}

.cta-btn:active {
    transform: scale(0.98);
}


/* =========================
   SPACING ANTAR PACKAGE
========================= */

.package-section {
    margin-bottom: 0px;
}



/* =========================
   FORM WRAPPER
========================= */

.form-wrapper {

    padding: 28px 18px;

    background:
        linear-gradient(180deg,
            #f3f8e8 0%,
            #eef7df 100%);
}

/* =========================
   FORM CARD
========================= */

.form-card {

    background: #ffffff;

    border-radius: 28px;

    padding: 34px 24px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08);

    border:
        3px solid #dceca9;

    overflow: hidden;

    position: relative;
}

/* =========================
   TOP ACCENT
========================= */

.form-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 10px;

    background:
        linear-gradient(90deg,
            #008a2e 0%,
            #4fc44f 35%,
            #8fe66f 60%,
            #f5f100 80%,
            #f0bb35 100%);
}

/* =========================
   BADGE
========================= */

.form-badge {

    display: inline-block;

    background: #f5f100;

    color: #2f3b00;

    font-size: 14px;
    font-weight: 800;

    padding: 10px 18px;

    border-radius: 999px;

    margin-bottom: 18px;

    letter-spacing: 0.5px;
}

/* =========================
   TITLE
========================= */

.form-title {

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;

    color: #116528;

    margin-bottom: 14px;
}

/* =========================
   SUBTITLE
========================= */

.form-subtitle {

    font-size: 18px;
    line-height: 1.7;

    color: #4d5b4f;

    margin-bottom: 28px;
}

/* =========================
   GROUP
========================= */

.loops-group {

    margin-bottom: 22px;
}

/* =========================
   LABEL
========================= */

.loops-group label {

    display: block;

    font-size: 18px;
    font-weight: 700;

    color: #245132;

    margin-bottom: 10px;
}

/* =========================
   INPUT
========================= */

.loops-group input {

    width: 100%;
    height: 68px;

    border:
        2px solid #cde2af;

    border-radius: 18px;

    padding: 0 20px;

    background: #fbfff5;

    font-size: 20px;
    color: #1f1f1f;

    transition: all 0.25s ease;

    outline: none;
}

.loops-group input::placeholder {

    color: #8a9685;

    font-size: 18px;
}

.loops-group input:focus {

    border-color: #67c23a;

    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(103, 194, 58, 0.15);
}

/* =========================
   BUTTON SUBMIT
========================= */

.loops-submit {

    width: 100%;
    height: 76px;

    border: none;
    border-radius: 20px;

    background:
        linear-gradient(180deg,
            #8fe66f 0%,
            #49c143 100%);

    color: #ffffff;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: all 0.2s ease;

    box-shadow:
        0 12px 24px rgba(73, 193, 67, 0.28);
}

.loops-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 30px rgba(73, 193, 67, 0.34);
}

.loops-submit:active {

    transform:
        translateY(2px);
}

/* =========================
   TRUST BOX
========================= */

.trust-box {

    margin-top: 22px;

    background: #f7fbef;

    border:
        2px solid #dceca9;

    border-radius: 18px;

    padding: 16px 18px;
}

.trust-item {

    font-size: 16px;
    color: #35503d;

    margin-bottom: 8px;
}

.trust-item:last-child {
    margin-bottom: 0;
}

/* =========================
   WA BUTTON
========================= */
/*
.btn-wa {

    width: 100%;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;

    background: #ffffff;

    border:
        2px solid #25d366;

    border-radius: 18px;

    text-decoration: none;

    color: #1e9e4c;

    font-size: 22px;
    font-weight: 700;

    transition: all 0.2s ease;
}

.btn-wa:hover {

    background: #25d366;

    color: #ffffff;

    transform:
        translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .form-wrapper {

        padding: 18px 14px;
    }

    .form-card {

        padding: 28px 18px;

        border-radius: 22px;
    }

    .form-title {

        font-size: 28px;
    }

    .form-subtitle {

        font-size: 16px;
    }

    .loops-group label {

        font-size: 16px;
    }

    .loops-group input {

        height: 60px;

        font-size: 18px;

        border-radius: 16px;
    }

    .loops-group input::placeholder {

        font-size: 16px;
    }

    .loops-submit {

        height: 68px;

        font-size: 20px;

        border-radius: 18px;
    }

    .btn-wa {

        height: 62px;

        font-size: 19px;
    }

    .trust-item {

        font-size: 14px;
    }
}