/* =========================================================
   NECTAFRESH - REQUEST SAMPLE PAGE
   ========================================================= */

.request-sample-page {
    --rs-green: #3f8d25;
    --rs-dark: #174d25;
    --rs-light: #f3f8ef;
    --rs-border: #dce7d8;
    --rs-text: #243126;
    --rs-muted: #687268;
    background: #fff;
    color: var(--rs-text);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rs-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.rs-hero {
    position: relative;
    overflow: hidden;
    padding: 75px 0 85px;
    background:
        linear-gradient(
            135deg,
            #f3f9ef 0%,
            #ffffff 55%,
            #eef7e9 100%
        );
}

.rs-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background:
        radial-gradient(
            circle at 8% 65%,
            rgba(111, 163, 68, .18),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 15%,
            rgba(95, 153, 65, .12),
            transparent 30%
        );
}

.rs-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 55px;
    align-items: center;
}


/* =========================================================
   INTRO
   ========================================================= */

.rs-intro {
    padding: 20px 0;
}

.rs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid #b8d5a8;
    border-radius: 50px;
    background: rgba(255,255,255,.72);
    color: var(--rs-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
}

.rs-leaf {
    font-size: 13px;
}

.rs-intro h1 {
    margin: 22px 0 18px;
    color: var(--rs-dark);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -2px;
}

.rs-intro h1 span {
    color: var(--rs-green);
}

.rs-lead {
    max-width: 520px;
    margin: 0 0 35px;
    color: #59645b;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.rs-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 35px;
}

.rs-benefit {
    padding: 5px 14px;
    text-align: center;
    border-right: 1px solid #d6e3d1;
}

.rs-benefit:last-child {
    border-right: 0;
}

.rs-benefit-icon {
    width: 43px;
    height: 43px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #76a95f;
    border-radius: 50%;
    color: var(--rs-green);
    font-size: 18px;
}

.rs-benefit strong,
.rs-benefit span {
    display: block;
}

.rs-benefit strong {
    color: var(--rs-dark);
    font-size: 12px;
    line-height: 1.3;
}

.rs-benefit span {
    margin-top: 2px;
    color: #657064;
    font-size: 11px;
}


/* =========================================================
   PRODUCT VISUAL
   ========================================================= */

.rs-product-visual {
    position: relative;
    width: 100%;
    height: 330px;
    margin-top: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* Soft green glow */

.rs-rice-glow {
    position: absolute;
    left: 50%;
    bottom: 15px;

    width: 470px;
    height: 250px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(111,168,78,.22) 0%,
            rgba(111,168,78,.10) 40%,
            transparent 72%
        );

    filter: blur(8px);

    z-index: -1;
}


/* Common product image */

.rs-product-image {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 0;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.rs-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: transparent;

    filter:
        drop-shadow(
            0 14px 20px rgba(42,63,37,.14)
        );
}


/* =========================================================
   LIQUID GLUCOSE
   ========================================================= */

.rs-product-image-left {
    left: 3%;
    bottom: 20px;

    width: 125px;
    height: 220px;

    transform: rotate(-5deg);

    z-index: 2;
}


/* =========================================================
   RICE PROTEIN - MAIN PRODUCT
   ========================================================= */

.rs-product-image-center {
    left: 50%;
    bottom: 10px;

    width: 165px;
    height: 270px;

    transform: translateX(-50%);

    z-index: 5;
}


/* =========================================================
   MALTODEXTRIN
   ========================================================= */

.rs-product-image-right {
    right: 5%;
    bottom: 25px;

    width: 145px;
    height: 220px;

    transform: rotate(5deg);

    z-index: 3;
}


/* =========================================================
   RICE BOWL
   ========================================================= */

.rs-product-image-bowl {
    right: 0;
    bottom: 5px;

    width: 100px;
    height: 100px;

    z-index: 10;
}

.rs-product-image-bowl img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 15px 18px rgba(42,57,38,.17)
        );
}


/* =========================================================
   HOVER
   ========================================================= */

.rs-product-visual:hover
.rs-product-image-left {
    transform:
        rotate(-7deg)
        translateX(-5px)
        translateY(-4px);
}

.rs-product-visual:hover
.rs-product-image-center {
    transform:
        translateX(-50%)
        translateY(-7px);
}

.rs-product-visual:hover
.rs-product-image-right {
    transform:
        rotate(7deg)
        translateX(5px)
        translateY(-4px);
}

.rs-product-visual:hover
.rs-product-image-bowl {
    transform:
        translateY(-6px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .rs-product-visual {
        height: 270px;

        transform: scale(.82);
        transform-origin: center;

        margin-top: -10px;
        margin-bottom: -30px;
    }

    .rs-product-image-left {
        left: 0;

        width: 100px;
        height: 190px;
    }

    .rs-product-image-center {
        width: 135px;
        height: 225px;
    }

    .rs-product-image-right {
        right: 0;

        width: 110px;
        height: 190px;
    }

    .rs-product-image-bowl {
        right: -5px;

        width: 85px;
        height: 85px;
    }
}


@media (max-width: 400px) {

    .rs-product-visual {
        transform: scale(.70);

        margin-left: -40px;
        margin-right: -40px;
    }

}
/* =========================================================
   FORM CARD
   ========================================================= */

.rs-form-wrap {
    position: relative;
    padding: 34px 35px 25px;
    border: 1px solid rgba(219,229,216,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow:
        0 20px 60px rgba(35, 69, 32, .12);
}

.rs-form-header {
    text-align: center;
    margin-bottom: 23px;
}

.rs-form-header h2 {
    margin: 0;
    color: var(--rs-dark);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 800;
}

.rs-form-header p {
    max-width: 480px;
    margin: 12px auto 0;
    color: #747c73;
    font-size: 13px;
    line-height: 1.5;
}

.rs-form-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px auto 0;
}

.rs-form-decoration span {
    width: 42px;
    height: 1px;
    background: #a9c799;
}

.rs-form-decoration b {
    color: var(--rs-green);
    font-size: 13px;
}


/* =========================================================
   FORM
   ========================================================= */

.rs-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rs-field {
    margin-bottom: 15px;
}

.rs-field label {
    display: block;
    margin-bottom: 7px;
    color: #344039;
    font-size: 12px;
    font-weight: 700;
}

.rs-field label span {
    color: #cf4c3d;
}

.rs-field input,
.rs-field select,
.rs-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d6ded3;
    border-radius: 7px;
    background: #fff;
    color: #273229;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.rs-field input,
.rs-field select {
    height: 43px;
    padding: 0 12px;
}

.rs-field textarea {
    min-height: 88px;
    padding: 12px;
    resize: vertical;
    line-height: 1.5;
}

.rs-field input::placeholder,
.rs-field textarea::placeholder {
    color: #9aa19b;
}

.rs-field input:focus,
.rs-field select:focus,
.rs-field textarea:focus {
    border-color: #78a960;
    box-shadow: 0 0 0 3px rgba(87, 142, 63, .10);
}

.rs-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 2px 0 15px;
    color: #687168;
    font-size: 11px;
    line-height: 1.5;
    cursor: pointer;
}

.rs-checkbox input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--rs-green);
}

.rs-submit {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(
        135deg,
        #4b982c,
        #357d22
    );
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(57, 126, 35, .2);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.rs-submit span {
    margin-right: 7px;
}

.rs-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(57, 126, 35, .27);
}

.rs-privacy-note {
    margin: 10px 0 0;
    color: #8a918a;
    font-size: 10px;
    text-align: center;
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.rs-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================================
   FORM MESSAGES
   ========================================================= */

.rs-message {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 10px;
    text-align: center;
}

.rs-success {
    background: #edf8e9;
    border: 1px solid #b9d9ad;
}

.rs-error {
    background: #fff2f0;
    border: 1px solid #e9b8b1;
    color: #9c3d31;
}

.rs-message-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #4b982c;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

.rs-message h3 {
    margin: 0 0 8px;
    color: var(--rs-dark);
    font-size: 22px;
}

.rs-message p {
    margin: 0 auto 15px;
    color: #697269;
    font-size: 13px;
    line-height: 1.6;
}

.rs-message a {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 5px;
    background: var(--rs-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   WHY SECTION
   ========================================================= */

.rs-why {
    padding: 25px 0;
    background: #fff;
}

.rs-section-heading {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.rs-section-heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--rs-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rs-section-heading h2 {
    margin: 0;
    color: var(--rs-dark);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.rs-section-heading h2 strong {
    color: var(--rs-green);
}

.rs-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 13px auto;
}

.rs-heading-line i {
    display: block;
    width: 45px;
    height: 1px;
    background: #9fc28e;
}

.rs-heading-line b {
    color: var(--rs-green);
    font-size: 12px;
}

.rs-section-heading p {
    margin: 0;
    color: #737b73;
    font-size: 14px;
}

.rs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.rs-why-card {
    padding: 35px 25px;
    border: 1px solid #e1e9de;
    border-radius: 13px;
    background: #f8fbf6;
    text-align: center;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.rs-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(40, 76, 37, .09);
}

.rs-circle-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8ab376;
    border-radius: 50%;
    color: var(--rs-green);
    font-size: 25px;
}

.rs-why-card h3 {
    margin: 0 0 10px;
    color: var(--rs-dark);
    font-size: 17px;
}

.rs-why-card p {
    margin: 0;
    color: #6e776e;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   GLOBAL CTA - FINAL VERSION
   ========================================================= */

.rs-global-cta {
    padding: 0 0 80px;
}

.rs-global-content {
    position: relative;
    min-height: 300px;

    display: grid;
    grid-template-columns: 31% 43% 26%;
    align-items: stretch;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            105deg,
            #edf6e7 0%,
            #f5f9f1 48%,
            #f8fbf5 100%
        );

    box-shadow:
        0 10px 35px rgba(39, 82, 34, 0.06);
}


/* =========================================================
   LEFT - RICE IMAGE
   ========================================================= */

.rs-global-image {
    position: relative;

    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: transparent;
}


/*
   White background of rice-bowl PNG visually blends
   into the CTA background.
*/

.rs-global-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    mix-blend-mode: multiply;

    opacity: 0.92;

    transform: scale(1.04);

    filter:
        contrast(1.02)
        saturate(1.05);

    transition:
        transform .45s ease,
        opacity .45s ease;
}

.rs-global-content:hover .rs-global-image img {
    transform: scale(1.08);
    opacity: 0.96;
}


/*
   Soft fade between rice image and content.
*/

.rs-global-image::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 80px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239,247,233,.9)
        );

    pointer-events: none;
}


/* =========================================================
   TEXT CONTENT
   ========================================================= */

.rs-global-text {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 38px 25px;
}

.rs-cta-label {
    display: block;

    margin-bottom: 11px;

    color: #3f8d25;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.rs-global-text h2 {
    margin: 0 0 15px;

    color: #174d25;

    font-size: clamp(27px, 2.7vw, 35px);

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.7px;
}

.rs-global-text h2 strong {
    color: #3f8d25;
}

.rs-global-text p {
    max-width: 560px;

    margin: 0 0 23px;

    color: #657166;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.rs-cta-button {
    width: fit-content;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 14px 22px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #44962a,
            #378523
        );

    color: #fff !important;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
        0 8px 20px rgba(63,141,37,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.rs-cta-button span {
    font-size: 17px;
    line-height: 1;
}

.rs-cta-button:hover {
    background:
        linear-gradient(
            135deg,
            #174d25,
            #2d7020
        );

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(23,77,37,.22);
}


/* =========================================================
   GLOBAL MAP AREA
   ========================================================= */

.rs-world-map {
    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            rgba(129,185,91,.20) 0%,
            rgba(129,185,91,.10) 35%,
            transparent 72%
        );
}


/*
   Large soft green glow behind map
*/

.rs-world-map::before {
    content: "";

    position: absolute;

    width: 290px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(111,172,72,.24),
            rgba(111,172,72,.10) 42%,
            transparent 72%
        );

    filter: blur(5px);

    pointer-events: none;
}


/*
   Actual Global.png
*/

.rs-world-map img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 350px;

    height: auto;

    display: block;

    object-fit: contain;

    /*
       Make the map more visible.
    */

    opacity: 0.90;

    filter:
        brightness(1.04)
        contrast(1.12)
        saturate(0.75);

    /*
       Slightly enlarge map.
    */

    transform: scale(1.12);

    transition:
        transform .45s ease,
        opacity .45s ease,
        filter .45s ease;
}

.rs-global-content:hover .rs-world-map img {
    transform: scale(1.17);

    opacity: 1;

    filter:
        brightness(1.05)
        contrast(1.15)
        saturate(0.9);
}


/* =========================================================
   MAP EDGE FADE
   ========================================================= */

.rs-world-map::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(246,250,242,.30),
            transparent 20%,
            transparent 80%,
            rgba(246,250,242,.25)
        );
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .rs-global-content {
        grid-template-columns: 32% 43% 25%;
    }

    .rs-global-text {
        padding: 30px 20px;
    }

    .rs-global-text h2 {
        font-size: 28px;
    }

    .rs-world-map img {
        max-width: 300px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .rs-global-content {
        grid-template-columns: 38% 62%;
    }

    .rs-world-map {
        display: none;
    }

    .rs-global-text {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .rs-global-content {
        grid-template-columns: 1fr;
    }

    .rs-global-image {
        min-height: 220px;
        height: 220px;
    }

    .rs-global-image img {
        width: 90%;
        height: 220px;

        transform: scale(1.03);
    }

    .rs-global-image::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 70px;

        background:
            linear-gradient(
                0deg,
                rgba(239,247,233,.95),
                transparent
            );
    }

    .rs-global-text {
        padding: 25px 25px 35px;
    }

    .rs-global-text h2 {
        font-size: 27px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rs-global-cta {
        padding-bottom: 50px;
    }

    .rs-global-content {
        border-radius: 15px;
    }

    .rs-global-image {
        min-height: 185px;
        height: 185px;
    }

    .rs-global-image img {
        height: 185px;
    }

    .rs-global-text {
        padding: 25px 20px 30px;
    }

    .rs-global-text h2 {
        font-size: 23px;
        line-height: 1.25;
    }

    .rs-global-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .rs-cta-button {
        padding: 12px 17px;
        font-size: 12px;
    }

}