/* =========================================================
   WRENOVA GLOBAL PVT. LTD.
   MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   01. BRAND
   ========================================================= */

:root {

    --wr-green: #0A8F3E;

    --wr-light-green: #95C12B;

    --wr-lime: #DEDC00;

    --wr-black: #1C1B17;

    --wr-white: #FFFFFF;

    --wr-cream: #F5F6F0;

    --wr-soft-green: #E9F1E4;

    --wr-border:
        rgba(28, 27, 23, 0.14);

}


/* =========================================================
   02. RESET
   ========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background:
        var(--wr-cream);

    color:
        var(--wr-black);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    display: block;

    max-width: 100%;

}


button,
input,
textarea {

    font: inherit;

}


/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.wr-container {

    width:
        min(
            94%,
            1540px
        );

    margin:
        0 auto;

}


/* =========================================================
   04. HERO
   ========================================================= */

.wr-hero {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 82% 40%,
            rgba(149, 193, 43, 0.18),
            transparent 25%
        ),

        radial-gradient(
            circle at 60% 88%,
            rgba(10, 143, 62, 0.08),
            transparent 28%
        ),

        var(--wr-cream);

}


/* =========================================================
   05. BACKGROUND MONOGRAM
   ========================================================= */

.wr-hero-monogram {

    position: absolute;

    width: 700px;

    height: 700px;

    top: 45%;

    left: 72%;

    transform:
        translate(
            -50%,
            -50%
        );

    pointer-events: none;

    z-index: 0;

    opacity: 0.1;

}


.wr-hero-monogram img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


/* =========================================================
   06. HERO TOP
   ========================================================= */

.wr-hero-top {

    position: relative;

    z-index: 10;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.wr-hero-logo {

    width: 245px;

}


.wr-hero-logo img {

    width: 100%;

}


.wr-top-note {

    display: flex;

    align-items: center;

    gap: 18px;

}


.wr-top-note span {

    width: 60px;

    height: 1px;

    background:
        var(--wr-green);

}


.wr-top-note p {

    max-width: 150px;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.6;

    letter-spacing: 2.2px;

}


/* =========================================================
   07. HERO MAIN
   ========================================================= */

.wr-hero-main {

    position: relative;

    z-index: 5;

    min-height:
        calc(
            100vh - 210px
        );

    display: grid;

    grid-template-columns:
        0.82fr 1.18fr;

    align-items: center;

}


/* =========================================================
   08. LEFT CONTENT
   ========================================================= */

.wr-hero-content {

    position: relative;

    z-index: 20;

    padding:
        30px 0
        80px;

}


/* EYEBROW */

.wr-hero-eyebrow {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 30px;

}


.eyebrow-line {

    width: 36px;

    height: 1px;

    margin-top: 7px;

    flex-shrink: 0;

    background:
        var(--wr-green);

}


.wr-hero-eyebrow p {

    max-width: 190px;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.65;

    letter-spacing: 2.3px;

}


/* =========================================================
   09. TITLE
   ========================================================= */

.wr-hero-title {

    position: relative;

    z-index: 5;

    font-size:
        clamp(
            62px,
            6vw,
            112px
        );

    line-height: 0.86;

    letter-spacing:
        -0.075em;

    font-weight: 800;

}


.hero-title-line {

    display: block;

}


.hero-title-green {

    color:
        var(--wr-green);

}


/* =========================================================
   10. DESCRIPTION
   ========================================================= */

.wr-hero-description {

    max-width: 470px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.65;

    color:
        rgba(
            28,
            27,
            23,
            0.68
        );

}


/* =========================================================
   11. BUTTON
   ========================================================= */

.wr-hero-actions {

    margin-top: 35px;

}


.wr-main-button {

    display: inline-flex;

    align-items: center;

    gap: 26px;

    padding:
        10px
        10px
        10px
        27px;

    border-radius:
        999px;

    background:
        var(--wr-green);

    color:
        var(--wr-white);

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.wr-main-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(10, 143, 62, 0.18);

}


.wr-button-arrow {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--wr-lime);

    color:
        var(--wr-black);

    font-size: 18px;

}


/* =========================================================
   12. MINI STATEMENT
   ========================================================= */

.wr-mini-statement {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 70px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.6;

}


.mini-line {

    width: 45px;

    height: 1px;

    background:
        var(--wr-black);

}


/* =========================================================
   13. CONTAINER VISUAL
   ========================================================= */

.wr-container-visual {

    position: relative;

    height: 680px;

    z-index: 10;

}


/* =========================================================
   14. CONTAINER IMAGE
   ========================================================= */

.wr-container-image-wrap {

    position: absolute;

    width: 112%;
    /* right: -12%; */
    left: 15%;
    bottom: 30%;

    z-index: 5;

}


.wr-container-image {

    width: 70%;

    height: auto;

    filter:
        drop-shadow(
            0 40px 30px
            rgba(28, 27, 23, 0.18)
        );

}


/* =========================================================
   15. ORBIT
   ========================================================= */

.wr-container-orbit {

    position: absolute;

    width: 570px;

    height: 570px;

    border-radius: 50%;

    right: 6%;

    top: 4%;

    border:
        1px solid
        rgba(10, 143, 62, 0.16);

}


.wr-container-orbit::before {

    content: "";

    position: absolute;

    inset: 55px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(10, 143, 62, 0.16);

}


/* =========================================================
   16. FLOATING DOT
   ========================================================= */

.wr-container-dot {

    position: absolute;

    right: 10%;

    top: 18%;

    width: 11px;

    height: 11px;

    border-radius: 50%;

    background:
        var(--wr-lime);

    box-shadow:
        0 0 0 8px
        rgba(222, 220, 0, 0.12);

}


/* =========================================================
   17. CONTAINER LABEL
   ========================================================= */

.wr-container-label {

    position: absolute;

    z-index: 15;

    right: 2%;

    top: 21%;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        14px 18px;

    background:
        rgba(255, 255, 255, 0.9);

    border:
        1px solid
        rgba(28, 27, 23, 0.08);

    border-radius: 12px;

    box-shadow:
        0 20px 40px
        rgba(28, 27, 23, 0.07);

}


.label-number {

    width: 33px;

    height: 33px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--wr-lime);

    font-size: 10px;

    font-weight: 800;

}


.wr-container-label small {

    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    letter-spacing: 1.5px;

    color:
        rgba(28, 27, 23, 0.48);

}


.wr-container-label strong {

    display: block;

    font-size: 10px;

    letter-spacing: 0.6px;

}


/* =========================================================
   18. HERO BOTTOM
   ========================================================= */

.wr-hero-bottom {

    position: relative;

    z-index: 30;

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        var(--wr-border);

}


.wr-bottom-left {

    display: flex;

    align-items: center;

    gap: 16px;

}


.bottom-line {

    width: 50px;

    height: 1px;

    background:
        var(--wr-green);

}


.wr-bottom-left p {

    max-width: 190px;

    font-size: 8px;

    font-weight: 700;

    line-height: 1.6;

    letter-spacing: 1.8px;

}


/* =========================================================
   19. SCROLL BUTTON
   ========================================================= */

.wr-scroll {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.wr-scroll-icon {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(28, 27, 23, 0.45);

    border-radius: 999px;

}


/* =========================================================
   20. PLACEHOLDER
   ========================================================= */

.wr-placeholder-section {

    min-height: 60vh;

    display: flex;

    align-items: center;

    padding:
        100px 0;

    background:
        var(--wr-white);

}


.wr-placeholder-section span {

    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color:
        var(--wr-green);

}


.wr-placeholder-section h2 {

    font-size:
        clamp(
            50px,
            7vw,
            100px
        );

    letter-spacing: -5px;

}

/* =========================================================
   CONTACT SECTION
   ========================================================= */

.wr-contact-section {

    position: relative;

    padding:
        150px 0;

    background:
        #F6F7F2;

}


/* =========================================================
   CONTACT LAYOUT
   ========================================================= */

.wr-contact-layout {

    display: grid;

    grid-template-columns:
        0.82fr
        1.18fr;

    gap: 90px;

    align-items: center;

}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.wr-contact-intro {

    max-width: 580px;

}


.wr-contact-heading {

    margin-top: 18px;

    font-size:
        clamp(
            58px,
            5.4vw,
            92px
        );

    line-height: 0.92;

    letter-spacing:
        -0.06em;

}


.wr-contact-heading span {

    display: block;

    color:
        var(--wr-green);

}


.wr-contact-description {

    max-width: 500px;

    margin-top: 32px;

    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(28, 27, 23, 0.64);

}


/* =========================================================
   CONTACT META
   ========================================================= */

.wr-contact-meta {

    display: grid;

    gap: 12px;

    margin-top: 55px;

}


.wr-contact-meta-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding:
        15px 0;

    border-bottom:
        1px solid
        rgba(28, 27, 23, 0.1);

}


.wr-contact-meta-number {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--wr-soft-green);

    color:
        var(--wr-green);

    font-size: 10px;

    font-weight: 800;

}


.wr-contact-meta-item small {

    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    letter-spacing: 1.7px;

    color:
        rgba(28, 27, 23, 0.4);

}


.wr-contact-meta-item strong {

    font-size: 14px;

}



/* =========================================================
   FORM CARD
   ========================================================= */

.wr-contact-card {

    position: relative;

    overflow: hidden;

    padding:
        55px;

    border-radius: 30px;

    background:
        var(--wr-green);

    color:
        var(--wr-white);

    box-shadow:
        0 35px 80px
        rgba(10, 143, 62, 0.18);

}


/* MONOGRAM */

.wr-contact-card-mark {

    position: absolute;

    width: 420px;
    height: 420px;

    right: -120px;
    bottom: -150px;

    opacity: 0.05;

    pointer-events: none;

}


.wr-contact-card-mark img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);

}


/* =========================================================
   CARD HEAD
   ========================================================= */

.wr-contact-card-head {

    position: relative;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 48px;

}


.wr-contact-card-head span {

    display: block;

    margin-bottom: 12px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2.6px;

    color:
        var(--wr-lime);

}


.wr-contact-card-head h3 {

    max-width: 460px;

    font-size:
        clamp(
            35px,
            3vw,
            52px
        );

    line-height: 1;

    letter-spacing:
        -0.045em;

}


.wr-contact-card-index {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid !important;

    place-items: center;

    margin: 0 !important;

    border:
        1px solid
        rgba(255,255,255,0.2);

    border-radius: 50%;

    color:
        var(--wr-white) !important;

}



/* =========================================================
   FORM
   ========================================================= */

.wr-contact-form {

    position: relative;

    z-index: 3;

    display: grid;

    gap: 24px;

}


.wr-form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}



/* =========================================================
   FLOATING FIELD
   ========================================================= */

.wr-field {

    position: relative;

}


.wr-field input,
.wr-field textarea {

    width: 100%;

    border:
        1px solid
        rgba(255,255,255,0.18);

    border-radius: 14px;

    outline: none;

    background:
        rgba(255,255,255,0.07);

    color:
        var(--wr-white);

    transition:
        border-color 0.25s ease,
        background 0.25s ease;

}


.wr-field input {

    height: 64px;

    padding:
        22px 17px
        8px;

}


.wr-field textarea {

    min-height: 145px;

    resize: vertical;

    padding:
        27px 17px
        15px;

}


.wr-field label {

    position: absolute;

    left: 17px;
    top: 22px;

    font-size: 13px;

    color:
        rgba(255,255,255,0.62);

    pointer-events: none;

    transition:
        all 0.22s ease;

}


/* FOCUS */

.wr-field input:focus,
.wr-field textarea:focus {

    border-color:
        var(--wr-lime);

    background:
        rgba(255,255,255,0.1);

}


/* FLOATING LABEL */

.wr-field input:focus + label,
.wr-field input:not(:placeholder-shown) + label,
.wr-field textarea:focus + label,
.wr-field textarea:not(:placeholder-shown) + label {

    top: 9px;

    font-size: 9px;

    letter-spacing: 1px;

    color:
        var(--wr-lime);

}



/* =========================================================
   SUBMIT AREA
   ========================================================= */

.wr-contact-form-footer {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 5px;

}


.wr-contact-submit {

    display: inline-flex;

    align-items: center;

    gap: 26px;

    padding:
        9px
        9px
        9px
        24px;

    border: none;

    border-radius: 999px;

    background:
        var(--wr-white);

    color:
        var(--wr-black);

    cursor: pointer;

    font-weight: 700;

    transition:
        transform 0.28s ease;

}


.wr-contact-submit:hover {

    transform:
        translateY(-3px);

}


.wr-contact-submit:disabled {

    opacity: 0.6;

    cursor: not-allowed;

}


.wr-contact-submit-icon {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--wr-lime);

    color:
        var(--wr-black);

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.wr-contact-submit:hover
.wr-contact-submit-icon {

    transform:
        rotate(45deg);

}


/* =========================================================
   FORM STATUS
   ========================================================= */

.wr-form-status {

    max-width: 300px;

    font-size: 12px;

    line-height: 1.5;

}


.wr-form-status.success {

    color:
        var(--wr-lime);

}


.wr-form-status.error {

    color:
        #FFD7D7;

}



/* =========================================================
   COMING SOON
   ========================================================= */

.wr-coming-soon {

    position: relative;

    overflow: hidden;

    padding:
        130px 0;

    background:
        var(--wr-green);

    color:
        var(--wr-white);

}


/* =========================================================
   LARGE BACKGROUND WORD
   ========================================================= */

.wr-coming-bg-word {

    position: absolute;

    left: 50%;
    top: 47%;

    transform:
        translate(
            -50%,
            -50%
        );

    font-size:
        clamp(
            170px,
            25vw,
            410px
        );

    font-weight: 900;

    letter-spacing:
        -0.09em;

    white-space: nowrap;

    color:
        rgba(
            255,
            255,
            255,
            0.025
        );

    pointer-events: none;

}


/* =========================================================
   MONOGRAM
   ========================================================= */

.wr-coming-monogram {

    position: absolute;

    width: 520px;
    height: 520px;

    right: -140px;
    bottom: -190px;

    opacity: 0.045;

    pointer-events: none;

}


.wr-coming-monogram img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);

}


/* =========================================================
   ORBITS
   ========================================================= */

.wr-coming-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    pointer-events: none;

}


.wr-coming-orbit-one {

    width: 480px;
    height: 480px;

    left: -250px;
    top: -230px;

}


.wr-coming-orbit-two {

    width: 250px;
    height: 250px;

    left: -100px;
    top: -80px;

}


/* =========================================================
   INNER
   ========================================================= */

.wr-coming-inner {

    position: relative;

    z-index: 5;

    max-width: 1050px;

    text-align: center;

}


/* =========================================================
   KICKER
   ========================================================= */

.wr-coming-kicker {

    display: block;

    margin-bottom: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color:
        var(--wr-lime);

}


/* =========================================================
   TITLE
   ========================================================= */

.wr-coming-inner h2 {

    font-size:
        clamp(
            62px,
            7vw,
            112px
        );

    line-height: 0.88;

    letter-spacing:
        -0.065em;

    font-weight: 800;

}


.wr-coming-inner h2 span {

    display: block;

    color:
        var(--wr-lime);

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.wr-coming-description {

    max-width: 650px;

    margin:
        32px auto 0;

    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

}


/* =========================================================
   COUNTDOWN
   ========================================================= */

.wr-countdown {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 65px;

}


/* COUNT ITEM */

.wr-countdown-item {

    position: relative;

    width: 155px;
    height: 155px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

    backdrop-filter:
        blur(4px);

}


/* INNER RING */

.wr-countdown-item::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            222,
            220,
            0,
            0.18
        );

}


/* NUMBER */

.wr-countdown-number {

    position: relative;

    z-index: 2;

    font-size:
        clamp(
            42px,
            4vw,
            62px
        );

    line-height: 1;

    font-weight: 800;

    letter-spacing:
        -0.05em;

    color:
        var(--wr-white);

}


/* LABEL */

.wr-countdown-label {

    position: relative;

    z-index: 2;

    margin-top: 10px;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        var(--wr-lime);

}


/* COLON */

.wr-countdown-divider {

    font-size: 32px;

    font-weight: 700;

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

}


/* =========================================================
   BOTTOM CONCEPT LINE
   ========================================================= */

.wr-coming-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 60px;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2.4px;

    color:
        rgba(
            255,
            255,
            255,
            0.52
        );

}


.wr-coming-bottom i {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--wr-lime);

}



/* =========================================================
   WRENOVA FOOTER
   ========================================================= */

.wr-footer {

    position: relative;

    overflow: hidden;

    padding:
        75px 0
        30px;

    background:
        #151713;

    color:
        var(--wr-white);

}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.wr-footer-main {

    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 90px;

    align-items: start;

}


/* =========================================================
   BRAND
   ========================================================= */

.wr-footer-brand {

    max-width: 430px;

}


.wr-footer-logo {

    width: 250px;

    height: auto;

}


.wr-footer-brand p {

    max-width: 390px;

    margin-top: 28px;

    font-size: 15px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.55);

}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.wr-footer-contact {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr
        1.35fr;

    gap: 24px;

}


/* =========================================================
   CONTACT ITEM
   ========================================================= */

.wr-footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    min-width: 0;

}


/* =========================================================
   ICON
   ========================================================= */

.wr-footer-icon {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    background:
        rgba(255, 255, 255, 0.04);

}


.wr-footer-icon svg {

    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        var(--wr-lime);

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

.wr-footer-label {

    display: block;

    margin-bottom: 10px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        rgba(255, 255, 255, 0.42);

}


.wr-footer-contact-item a,
.wr-footer-contact-item p {

    display: block;

    font-size: 13px;

    line-height: 1.65;

    color:
        rgba(255, 255, 255, 0.78);

    word-break: break-word;

}


.wr-footer-contact-item a {

    transition:
        color 0.25s ease;

}


.wr-footer-contact-item a:hover {

    color:
        var(--wr-lime);

}


/* =========================================================
   DIVIDER
   ========================================================= */

.wr-footer-divider {

    width: 100%;

    height: 1px;

    margin:
        60px 0 28px;

    background:
        rgba(255, 255, 255, 0.10);

}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.wr-footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.wr-footer-bottom > p {

    font-size: 10px;

    color:
        rgba(255, 255, 255, 0.42);

}


/* =========================================================
   FOOTER BOTTOM RIGHT
   ========================================================= */

.wr-footer-bottom-right {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        rgba(255, 255, 255, 0.42);

}


.wr-footer-bottom-right i {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--wr-lime);

}

/* =========================================================
   WHY WRENOVA
   ========================================================= */

.wr-why-section {

    padding:
        130px 0;

    background:
        #EEF3E9;

}


/* =========================================================
   HEADING
   ========================================================= */

.wr-why-heading {

    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 50px;

    align-items: start;

}


.wr-why-heading-left {

    min-width: 360px;

}


.wr-why-heading-left
.wr-section-kicker {

    margin-bottom: 16px;

}


.wr-why-heading-left h2 {

    font-size:
        clamp(
            42px,
            4vw,
            68px
        );

    line-height: 0.95;

    letter-spacing:
        -0.05em;

}


.wr-why-heading-left h2 span {

    display: block;

    color:
        var(--wr-green);

}


.wr-why-heading-line {

    height: 1px;

    margin-top: 14px;

    background:
        rgba(
            10,
            143,
            62,
            0.35
        );

}


/* =========================================================
   MAIN BOX
   ========================================================= */

.wr-why-box {

    margin-top: 55px;

    padding:
        70px 60px
        55px;

    border:
        1px solid
        rgba(
            10,
            143,
            62,
            0.24
        );

    border-radius:
        0 24px 24px 24px;

    background:
        rgba(
            255,
            255,
            255,
            0.25
        );

}


/* =========================================================
   INTRO
   ========================================================= */

.wr-why-intro {

    max-width: 920px;

    margin:
        0 auto;

    text-align: center;

}


.wr-why-intro p {

    margin-bottom: 18px;

    font-size: 17px;

    line-height: 1.75;

    color:
        rgba(
            28,
            27,
            23,
            0.74
        );

}


.wr-why-intro strong {

    display: block;

    margin-top: 34px;

    font-size:
        clamp(
            20px,
            2vw,
            28px
        );

    line-height: 1.4;

    color:
        var(--wr-black);

}


/* =========================================================
   VALUES
   ========================================================= */

.wr-why-values {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 30px;

    margin-top: 90px;

}


/* =========================================================
   ITEM
   ========================================================= */

.wr-why-item {

    text-align: center;

}


/* ICON */

.wr-why-icon {

    width: 95px;

    height: 95px;

    margin:
        0 auto
        22px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.wr-why-icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


/* TITLE */

.wr-why-item h3 {

    min-height: 58px;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;

}


.wr-why-item h3 span {

    display: block;

}


/* TEXT */

.wr-why-item p {

    max-width: 190px;

    margin:
        10px auto 0;

    font-size: 13px;

    line-height: 1.5;

    color:
        rgba(
            28,
            27,
            23,
            0.68
        );

}

/* =========================================================
   MINIMAL CTA
   ========================================================= */

.wr-mini-cta {

    padding:
        95px 0;

    background:
        var(--wr-cream);

}


/* =========================================================
   CTA BOX
   ========================================================= */

.wr-mini-cta-box {

    position: relative;

    min-height: 410px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(10, 143, 62, 0.18);

    border-radius: 28px;

    background:

        radial-gradient(
            circle at 50% 55%,
            rgba(149, 193, 43, 0.08),
            transparent 36%
        ),

        linear-gradient(
            135deg,
            #F3F6ED,
            #EEF4E8
        );

}


/* =========================================================
   LEFT MONOGRAM
   ========================================================= */

.wr-mini-cta-mark {

    position: absolute;

    width: 410px;
    height: 410px;

    left: -105px;
    bottom: -135px;

    opacity: 0.09;

    pointer-events: none;

}


.wr-mini-cta-mark img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


/* =========================================================
   RIGHT CIRCLES
   ========================================================= */

.wr-mini-cta-circle {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(10, 143, 62, 0.18);

    pointer-events: none;

}


.wr-mini-cta-circle-one {

    width: 440px;
    height: 440px;

    right: -260px;
    top: -70px;

}


.wr-mini-cta-circle-two {

    width: 340px;
    height: 340px;

    right: -210px;
    top: -20px;

}


.wr-mini-cta-circle-three {

    width: 245px;
    height: 245px;

    right: -165px;
    top: 28px;

}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.wr-mini-cta-content {

    position: relative;

    z-index: 5;

    width: min(
        760px,
        74%
    );

    text-align: center;

}


/* =========================================================
   KICKER
   ========================================================= */

.wr-mini-cta-kicker {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 23px;

}


.wr-mini-cta-kicker span {

    width: 55px;
    height: 1px;

    background:
        rgba(10, 143, 62, 0.45);

}


.wr-mini-cta-kicker p {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color:
        rgba(28, 27, 23, 0.6);

}


/* =========================================================
   TITLE
   ========================================================= */

.wr-mini-cta-content h2 {

    font-size:
        clamp(
            46px,
            5vw,
            78px
        );

    line-height: 0.97;

    letter-spacing:
        -0.055em;

    font-weight: 800;

}


.wr-mini-cta-content h2 strong {

    display: block;

    color:
        var(--wr-green);

    font-weight: 800;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.wr-mini-cta-text {

    max-width: 670px;

    margin:
        25px auto 0;

    font-size: 16px;

    line-height: 1.65;

    color:
        rgba(28, 27, 23, 0.65);

}


/* =========================================================
   BUTTON
   ========================================================= */

.wr-mini-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 22px;

    margin-top: 30px;

    padding:
        9px
        9px
        9px
        25px;

    border-radius: 999px;

    background:
        var(--wr-green);

    color:
        var(--wr-white);

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;

}


.wr-mini-cta-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 36px
        rgba(10, 143, 62, 0.18);

}


.wr-mini-cta-arrow {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--wr-lime);

    color:
        var(--wr-black);

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.wr-mini-cta-button:hover
.wr-mini-cta-arrow {

    transform:
        rotate(45deg);

}


/* =========================================================
   SMALL RIGHT COPY
   ========================================================= */

.wr-mini-cta-side {

    position: absolute;

    right: 45px;
    bottom: 38px;

    z-index: 4;

    display: flex;

    flex-direction: column;

    gap: 5px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        rgba(10, 143, 62, 0.55);

}


.wr-mini-cta-side i {

    width: 42px;

    height: 1px;

    margin-top: 10px;

    background:
        rgba(10, 143, 62, 0.5);

}