/* HERO */
.hero {
    background: linear-gradient(90deg, #036A6F 0%, #043359 50%, #036A6F 100%);
    box-shadow: 0 4px 4px 0 #60A699;
    padding: 48px 24px 56px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.badge-text {
    font-size: 32px;
    font-weight: 700;
    color: #F0C06E;
    letter-spacing: 2px;
    font-family: "Nunito Sans";
}
.hero h2 {
    font-family: "Nunito Sans";
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin: 0 auto 12px;
    line-height: 1.3;
}
.hero p {
    font-family: "Nunito Sans";
    font-size: 18px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge img {
    width: 40px;
    height: 40px;
}

/* MAIN */
.main {
    max-width: 1000px;
    margin: -24px auto 0;
    padding: 0 24px 48px;
    position: relative;
    z-index: 1;
    font-family: "Nunito Sans";
}
 
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    font-family: "Nunito Sans";
}
 
/* BENEFITS CARD */
.benefits-card {
    background: white;
    border: 2px solid #036A6F;
    border-radius: 10px;
    padding: 28px 24px;
    margin-top: 80px;
}
.benefits-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #E7964F;
    margin-bottom: 8px;
    margin-top: 0;
    
}
.benefits-lead {
    font-size: 16px;
    color: #043259;
    margin-bottom: 20px;
    line-height: 1.5;
}
.benefit {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
    color: #043259;
    font-weight: 600;
}


.benefit:last-child { 
    margin-bottom: 0; 
}

.benefit-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.benefit-icon.teal { 
    background: #CAE1DD; 


}


.benefit h3 {
    font-size: 16px;
    font-weight: 600;
    color: #043259;
    margin-bottom: 3px;
    margin-top: 0;
}


.benefit p {
    font-size: 14px;
    color: #043259;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 0;
}

.benefit img {
    width: 20px;
    height: 20px;
}

/* FORM CARD */
.form-card {
    background: white;
    border: 2px solid #036A6F;
    border-radius: 10px;
    padding: 28px 24px;
    margin-top: 80px;
}

.form-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #043259;
    margin-bottom: 8px;
    text-align: center;
    margin-top: 0;
}
.form-lead {
    font-size: 16px;
    font-family: "Nunito Sans";
    color: #043259;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #043259;
    margin-bottom: 5px;
}
.required {
    color: #E7964F;
    font-weight: bold;
}

.form-group input {
    background: rgba(176, 217, 205, 0.35);
    width: 100%;
    border: 1px solid #60A699;
    padding: 8px 40px 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Nunito Sans';
    color: #043259;
    outline: none;
    box-sizing: border-box;

}


.form-group input:focus {
    border: 2px solid #60A699;
    background: rgba(176, 217, 205, 0.50);
}


.form-group input::placeholder { 
    color: #aab8c5; 
}

.btn-primary {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background: #043259;
    color: white;
    font-family: "Nunito Sans";
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    margin: 16px auto 0;
    box-sizing: border-box;
    margin-top: 28px;
}

.btn-primary:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.field-error-text {
    font-size: 12px;
    color: #E56163;
    margin: 4px 0 10px 0;
}

.code-link {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #043259;
    font-size: 14px;
}

.code-link a { 
    color: #036A6F; 
    text-decoration: none; 
    
}
 
/* SUCCESS NEED TO CHECK */
.success {
    text-align: center;
    padding: 20px 0;
}
.success-check {
    width: 56px; height: 56px;
    background: var(--teal-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--teal);
    margin: 0 auto 16px;
}
.success h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.success p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.success-email { font-weight: 700; color: var(--teal); }
.success a { color: var(--teal); text-decoration: none; }

/* NOTIFY */
.notify {
    border-radius: 5px;
    background: rgba(176, 217, 205, 0.35);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 36px 24px;
}
.notify-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.notify h3 {
    color: #036A6F;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}
.notify p {
    font-size: 16px;
    color: #043259;
    margin-bottom: 20px;
    line-height: 1.5;
}


#notifyForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.notify-input {
    width: 100%;
    max-width: 360px;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Nunito Sans';
    background: white;
    color: #043259;
    outline: none;
    text-align: center;
    border: none;
}



.notify-input:focus { 
    border: 2px solid #036A6F; 
    background: white; 
    
}

.notify-input::placeholder { 
    color: #aab8c5; 
}


.btn-notify {
    padding: 12px 24px;
    background: #043259;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Nunito Sans';
    cursor: pointer;
    margin-top: 8px;

}

.btn-notify:hover { 
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.notify-error {
    color: #E56163;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}


.notify-ok {
    color: #036A6F;
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
}

/*Overlays and Pop-ups in styles.css */


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    display: none;
}

.overlay.show {
    display: flex !important;
}

.popup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    font-family: "Nunito Sans";
    color: #043259;
    display: none;
    z-index: 10000;
    /*transform: translate(-50%, -50%);*/
    
}

.popup.show {
    display: block !important;
}

.popup-success {
    border: 1px solid #60A699;
    box-shadow: 0 4px 6px 2px #60A699;
}

.popup-error {
    border: 1px solid #FF4D4D;
    box-shadow: 0 2px 2px 2px #FF4D4D;
}

.popup-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #043259;
}

.popup-message {
    font-family: "Nunito Sans";
    color: #043259;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    text-align: center;
    align-items: center;
    position: relative;
    justify-content: center;
}

.popup-message div:nth-child(1) {
    font-size: 24px;
    font-weight: 600px;
    margin: 15px 0;
}

.popup-message div:nth-child(2) {
    font-size: 16px;
    color: #043259;
}

.msg-head {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.popup-message button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background: #043259;
    color: white;
    font-family: "Nunito Sans";
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    margin: 16px auto 0;
    box-sizing: border-box;
    margin-top: 28px;
}

.popup-message button:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.disclaimer-text {
    color: #043259;
    font-size: 12px;
    font-family: "Nunito Sans";
    text-align: center;

}

/* TABLET (820px) */
@media (max-width: 820px) {
    .badge-text { 
        font-size: 24px; 
    }

    .hero { 
        padding: 36px 20px 44px; 
    }

    .hero h2 { 
        font-size: 20px; 
    }

    .hero p { 
        font-size: 16px; 
    }

    .main { 
        padding: 0 0 40px; 
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .benefits-card,
    .form-card {
        margin-top: 40px;
    }
}

/* MOBILE (480px) */
@media (max-width: 480px) {
    .badge-text { font-size: 20px; }
    .hero-badge img { width: 28px; height: 28px; }

    .hero { padding: 28px 16px 36px; }

    .hero h2 { 
        font-size: 16px; 
    }

    .hero p { 
        font-size: 12px;
        max-width: 300px; 
    }

    .main { padding: 0 12px 32px; }

    .benefits-card,
    .form-card {
        padding: 20px 16px;
        width: 85%;
    }

    .form-card {
        margin-top: 20px;
    }

    .benefits-card h2 {
        text-align: center;
    }

    .benefits-card h2,
    .form-card h2 { 
        font-size: 16px; 
    }

    .benefits-lead,
    .form-lead { 
        font-size: 14px; 
    }

    .benefits-lead {
        text-align: center;
    }

    .benefit h3 { font-size: 14px; }
    .benefit p { font-size: 13px; }

    .notify { padding: 28px 16px; }
    .notify h3 { 
        font-size: 18px; 
    }

    .notify p { 
        font-size: 14px; 
        margin-top: 0;
        margin-bottom: 10px;
    }

    .notify-input { 
        max-width: 90%; 
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btn-primary, .btn-notify {
        padding: 8px 16px;
        font-size: 13px;
    }
}