/* Newsletter Page — All styles scoped with .nl- prefix */
/* Base styles */
body {
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    -webkit-font-smoothing: antialiased;
}



.nl-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ──────────────────────────────────────────────
   Hero
─────────────────────────────────────────────── */

.nl-hero {
    display: flex;
    align-items: center;
    min-height: 800px;
    height: auto;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.nl-hero__inner {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nl-hero__title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
}

.nl-hero__description {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 39.2px;
    margin: 0;
}

.nl-hero__button {
    display: inline-flex;
    padding: 16px 38px 16px 39px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: #2E9F6E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.nl-hero__button:hover {
    background: #268a5e;
}

/* ──────────────────────────────────────────────
   Intro
─────────────────────────────────────────────── */

.nl-intro {
    padding: 100px 0 40px 0;
    background: #fff;
}

.nl-intro .nl-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nl-intro__title {
    color: #483285;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 60px;
    margin: 0;
    font-weight: 700;
}

.nl-intro__title-bold  { font-weight: 700; }
.nl-intro__title-plain { font-weight: 400; }

.nl-intro__description {
    color: #474747;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 29.4px;
    margin: 0;
}

.nl-intro__description h2,
.nl-intro__description h3,
.nl-intro__description h4 {
    color: #483285;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 40px 0 20px;
}

.nl-intro__description h2 { font-size: 36px; line-height: 46px; }
.nl-intro__description h3 { font-size: 28px; line-height: 38px; }
.nl-intro__description h4 { font-size: 24px; line-height: 34px; }

.nl-intro__description a {
    color: #483285;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nl-intro__description a:hover,
.nl-intro__description a:focus {
    opacity: 0.85;
    text-decoration: underline;
}

/* ──────────────────────────────────────────────
   What to Expect
─────────────────────────────────────────────── */

.nl-expect {
    max-width: 1280px;
    margin: 0 auto;
}

.nl-expect .nl-container {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 56px 56px 56px 56px;
    background: #F9F9F9;
    margin-bottom: 100px;
}

.nl-expect__title {
    color: #483285;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
}

.nl-expect__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nl-expect__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.nl-expect__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    min-height: 262px;
}

.nl-expect__card:nth-child(1)::before { background: #005178; }
.nl-expect__card:nth-child(2)::before { background: #45A24F; }
.nl-expect__card:nth-child(3)::before { background: #7F3483; }

.nl-expect__card-content {
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.nl-expect__card-title {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
}

.nl-expect__card-description {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 29.4px;
    margin: 0;
}

/* ──────────────────────────────────────────────
   Designed For
─────────────────────────────────────────────── */

.nl-designed-for {
    padding: 0 0 100px 0;
    background: #fff;
}

.nl-designed-for__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.nl-designed-for__image {
    flex: 0 0 296px;
}

.nl-designed-for__image img {
    width: 296px;
    height: 296px;
    object-fit: cover;
    display: block;
}

.nl-designed-for__content {
    flex: 1;
    min-width: 300px;
}

.nl-designed-for__title {
    color: #483285;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 56px;
    margin: 0 0 40px 0;
}

.nl-designed-for__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nl-designed-for__point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nl-designed-for__check {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2E9F6E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-designed-for__check svg {
    width: 22px;
    height: 22px;
    display: block;
}

.nl-designed-for__point-text {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 29.4px;
    margin: 0;
}

/* ──────────────────────────────────────────────
   Experience
─────────────────────────────────────────────── */

.nl-experience {
    width: 100%;
    background: linear-gradient(0deg, #C5D3E7 0%, #C5D3E7 100%);
    padding: 100px 0;
}

.nl-experience .nl-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nl-subscribe .nl-container {
    max-width: 880px;
}

.nl-experience__title {
    color: #3860A5;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin: 0;
}

.nl-experience__description {
    color: #191919;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.2px;
    margin: 0;
}

.nl-experience__button {
    display: inline-flex;
    padding: 16px 38px 16px 39px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: #2E9F6E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.nl-experience__button:hover {
    background: #268a5e;
}

/* ──────────────────────────────────────────────
   Subscribe / Form Section
─────────────────────────────────────────────── */

.nl-subscribe {
    padding: 100px 0;
    background-color: #0B5FA5;
    background-size: cover;
    background-position: center;
}

.nl-subscribe__card {
    background: #fff;
    padding: 50px;
}

.nl-subscribe__title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-style: normal;
    line-height: 45px;
    color: #483285;
    margin: 0 0 4px 0;
}

.nl-subscribe__title-bold  { font-weight: 700; }
.nl-subscribe__title-plain { font-weight: 400; }

.nl-subscribe__note {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25.2px;
    margin: 0 0 28px 0;
}

.nl-subscribe__required {
    color: #F60;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25.2px;
}

.nl-subscribe__error {
    padding: 14px 18px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c00;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.nl-subscribe__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.nl-subscribe__group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.nl-subscribe__group--half {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
}

.nl-subscribe__group label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #191919;
}

.nl-subscribe__group input,
.nl-subscribe__group select {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    color: #191919;
    background: #E8ECF0;
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
    transition: border-color 0.15s ease;
}

.nl-subscribe__group input{
    font-size: 16px;
    padding: 16px 20px;
}
.nl-subscribe__group select {
    font-size: 18px;
    font-weight: 500;
    padding: 11px 20px;
}

.nl-subscribe__group input:focus,
.nl-subscribe__group select:focus {
    outline: none;
    border-color: #0B5FA5;
}

.nl-subscribe__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cg clip-path='url(%23clip0_23_3353)'%3E%3Cpath d='M1.41406 1.41504L5.99902 6L10.5841 1.41504' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_23_3353'%3E%3Crect width='12' height='6.99958' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) center;
    padding-right: 42px;
    cursor: pointer;
}

.nl-subscribe__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* reCAPTCHA + Submit — horizontal alignment */
.nl-subscribe__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0 24px 0;
}

.nl-subscribe__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    background: #45a24f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nl-subscribe__submit:hover   { background: #0A3A70; }
.nl-subscribe__submit:disabled { opacity: 0.7; cursor: not-allowed; }

.nl-subscribe__btn-loader {
    display: inline-flex;
    align-items: center;
}

.nl-subscribe__legal {
    margin-top: 24px;
    color: #474747;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.nl-subscribe__legal a {
    color: #483285;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nl-subscribe__legal a:hover,
.nl-subscribe__legal a:focus {
    opacity: 0.85;
    text-decoration: underline;
}

.nl-subscribe__thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 80px 56px;
    text-align: center;
}

.nl-subscribe__thankyou h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2E9F6E;
    margin: 0;
}

.nl-subscribe__btn-text{
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
}

.nl-subscribe__thankyou p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #474747;
    margin: 0;
}

/* ──────────────────────────────────────────────
   Mobile — layout and spacing only
   No font sizes changed anywhere below
─────────────────────────────────────────────── */

@media (max-width: 1024px) {

    /* Shared container padding */
    .nl-container {
        padding: 0 24px;
    }

    /* Expect cards: 2 columns on tablet */
    .nl-expect__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Designed-for: reduce side gap */
    .nl-designed-for__inner {
        gap: 48px;
    }
}

@media (max-width: 768px) {

    /* Container padding */
    .nl-container {
        padding: 35px 24px;
    }

    /* Paragraph font size */
    .nl-container p {
        font-size: 21px;
    }


    /* Hero */
    .nl-hero {
        min-height: 0;
        padding: 24px 0;
    }

    .nl-hero__inner {
        gap: 24px;
    }

    .nl-hero__button {
        align-self: stretch;
        text-align: center;
    }

    /* Intro */
    .nl-intro {
        padding: 64px 0 32px;
    }

    .nl-intro .nl-container {
        gap: 24px;
    }

    /* Expect */
    .nl-expect .nl-container {
        gap: 40px;
        padding: 40px 20px;
        margin-bottom: 64px;
    }

    .nl-expect__cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nl-expect__card {
        min-height: 0;
    }

    /* Designed-for */
    .nl-designed-for {
        padding: 64px 0;
    }

    .nl-designed-for__inner {
        flex-direction: column;
        gap: 40px;
    }

    .nl-designed-for__image {
        flex: 0 0 auto;
        width: 100%;
    }

    .nl-designed-for__image img {
        width: 100%;
        height: auto;
    }

    .nl-designed-for__content {
        min-width: 0;
        width: 100%;
    }

    .nl-designed-for__title {
        margin: 0 0 28px 0;
    }

    /* Experience */
    .nl-experience {
        padding: 64px 0;
    }

    .nl-experience .nl-container {
        gap: 28px;
    }

    .nl-experience__button {
        align-self: stretch;
        text-align: center;
    }

    /* Subscribe / Form */
    .nl-subscribe {
        padding: 64px 0;
    }

    .nl-subscribe__card {
        padding: 36px 24px;
    }

    .nl-subscribe__row {
        flex-direction: column;
        gap: 16px;
    }

    .nl-subscribe__group,
    .nl-subscribe__group--half {
        flex: 1 1 100%;
        min-width: 0;
    }

    .nl-subscribe__submit {
        width: 100%;
    }

    .nl-subscribe__thankyou {
        padding: 56px 24px;
    }
}