/* =========================================================
   FARMNOVA AI
   HOW IT WORKS — PAGE STYLES
   ========================================================= */


/* =========================================================
   PAGE VARIABLES
   ========================================================= */

.how-it-works-page {
    --hiw-green: #2f8f3a;
    --hiw-green-dark: #21732b;
    --hiw-green-deep: #185b22;
    --hiw-green-light: #eaf7eb;
    --hiw-green-soft: #f4fbf4;

    --hiw-orange: #f5a623;
    --hiw-text: #171918;
    --hiw-text-soft: #626a64;
    --hiw-border: #e4ebe5;

    --hiw-white: #ffffff;
    --hiw-background: #f7fcf7;

    --hiw-radius-sm: 12px;
    --hiw-radius-md: 22px;
    --hiw-radius-lg: 32px;

    --hiw-shadow-sm:
        0 8px 25px rgba(38, 94, 46, 0.06);

    --hiw-shadow-md:
        0 18px 50px rgba(38, 94, 46, 0.10);

    --hiw-transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);

    width: 100%;
    overflow: hidden;
    color: var(--hiw-text);
    background: var(--hiw-background);
}


/* =========================================================
   COMMON CONTAINERS
   ========================================================= */

.how-it-works-hero__container,
.farmnova-journey__container,
.farmnova-foundation__container,
.farmnova-intelligence__container,
.farmnova-philosophy__container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.how-it-works-hero {
    position: relative;
    padding: 85px 0 105px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(99, 190, 104, 0.12),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #f5fcf5 0%,
            #f8fdf8 100%
        );
}


.how-it-works-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;

    top: -260px;
    left: -180px;

    border-radius: 50%;

    background: rgba(74, 166, 81, 0.06);

    pointer-events: none;
}


.how-it-works-hero::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    bottom: -170px;

    border-radius: 50%;

    background: rgba(245, 166, 35, 0.05);

    pointer-events: none;
}


.how-it-works-eyebrow {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 21px;

    border: 1px solid rgba(47, 143, 58, 0.08);
    border-radius: 50px;

    background: #eaf7eb;

    color: var(--hiw-green-dark);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.01em;

    box-shadow:
        0 8px 25px rgba(47, 143, 58, 0.07);

    animation: hiwFadeDown 0.7s ease both;
}


.how-it-works-eyebrow__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color: var(--hiw-green);
}


.how-it-works-hero__title {
    position: relative;
    z-index: 1;

    max-width: 950px;

    margin: 35px auto 0;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.03;

    font-weight: 800;
    letter-spacing: -0.045em;

    animation: hiwFadeUp 0.8s 0.1s ease both;
}


.how-it-works-hero__title span {
    display: block;
    color: var(--hiw-green);
}


.how-it-works-hero__description {
    position: relative;
    z-index: 1;

    max-width: 850px;

    margin: 30px auto 0;

    color: var(--hiw-text-soft);

    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.7;

    animation: hiwFadeUp 0.8s 0.2s ease both;
}


/* =========================================================
   COMMON SECTION HEADING
   ========================================================= */

.farmnova-section-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}


.farmnova-section-heading__label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--hiw-green);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.farmnova-section-heading h2 {
    margin: 0;

    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}


.farmnova-section-heading h2 span {
    color: var(--hiw-green);
}


.farmnova-section-heading p {
    max-width: 700px;

    margin: 22px auto 0;

    color: var(--hiw-text-soft);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   FARMNOVA JOURNEY
   ========================================================= */

.farmnova-journey {
    position: relative;

    padding: 110px 0 125px;

    background: #ffffff;
}


.farmnova-journey__timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   JOURNEY CONNECTOR
   ========================================================= */

.journey-connector {
    display: none;
}


/* =========================================================
   JOURNEY CARD
   ========================================================= */

.journey-step {
    position: relative;

    min-height: 480px;

    padding: 70px 32px 36px;

    border: 1px solid var(--hiw-border);
    border-radius: var(--hiw-radius-lg);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfefb 100%
        );

    box-shadow: var(--hiw-shadow-sm);

    overflow: visible;

    transition:
        transform var(--hiw-transition),
        box-shadow var(--hiw-transition),
        border-color var(--hiw-transition);
}


.journey-step:hover {
    transform: translateY(-10px);

    border-color:
        rgba(47, 143, 58, 0.22);

    box-shadow: var(--hiw-shadow-md);
}


/* =========================================================
   STEP NUMBER
   ========================================================= */

.journey-step__number {
    position: absolute;

    top: -34px;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    transform: translateX(-50%);

    border: 5px solid #ffffff;
    border-radius: 50%;

    background: var(--hiw-green);

    color: #ffffff;

    font-size: 19px;
    font-weight: 800;

    box-shadow:
        0 12px 28px rgba(47, 143, 58, 0.22);

    z-index: 4;
}


.journey-step--03 .journey-step__number {
    background: #55b75e;
}


.journey-step--04 .journey-step__number {
    background: var(--hiw-orange);
}


/* =========================================================
   STEP ICON
   ========================================================= */

.journey-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    margin: 0 auto 35px;

    border-radius: 25px;

    background: var(--hiw-green-light);

    color: var(--hiw-green);

    font-size: 36px;

    transition:
        transform var(--hiw-transition),
        background var(--hiw-transition),
        color var(--hiw-transition);
}


.journey-step:hover .journey-step__icon {
    transform:
        translateY(-5px)
        rotate(-3deg);

    background: var(--hiw-green);

    color: #ffffff;
}


.journey-step--04:hover .journey-step__icon {
    background: var(--hiw-orange);
}


/* =========================================================
   STEP CONTENT
   ========================================================= */

.journey-step__content {
    text-align: center;
}


.journey-step__label {
    display: block;

    margin-bottom: 12px;

    color: var(--hiw-green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.journey-step h3 {
    margin: 0;

    font-size: 27px;
    line-height: 1.2;

    letter-spacing: -0.025em;
}


.journey-step p {
    margin: 22px 0 0;

    color: var(--hiw-text-soft);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   STEP TAGS
   ========================================================= */

.journey-step__tags {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;

    margin-top: 28px;
}


.journey-step__tags span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 12px;

    border: 1px solid #e1ebe2;
    border-radius: 50px;

    background: #f7fbf7;

    color: #4c574f;

    font-size: 12px;
    font-weight: 700;

    transition:
        background var(--hiw-transition),
        color var(--hiw-transition),
        transform var(--hiw-transition);
}


.journey-step__tags span i {
    color: var(--hiw-green);
}


.journey-step__tags span:hover {
    transform: translateY(-2px);

    background: var(--hiw-green-light);

    color: var(--hiw-green-dark);
}


/* =========================================================
   FOUNDATION SECTION
   ========================================================= */

.farmnova-foundation {
    position: relative;

    padding: 130px 0;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(47, 143, 58, 0.08),
            transparent 32%
        ),
        #f4faf4;
}


.farmnova-foundation__container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: center;
}


/* =========================================================
   FOUNDATION VISUAL
   ========================================================= */

.farmnova-foundation__visual {
    position: relative;

    width: min(520px, 100%);
    aspect-ratio: 1;

    margin: 0 auto;
}


.foundation-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px dashed
        rgba(47, 143, 58, 0.25);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    animation:
        foundationOrbit 18s linear infinite;
}


.foundation-orbit--outer {
    width: 96%;
    height: 96%;
}


.foundation-orbit--middle {
    width: 70%;
    height: 70%;

    animation-duration: 14s;
    animation-direction: reverse;
}


.foundation-orbit--inner {
    width: 46%;
    height: 46%;

    animation-duration: 10s;
}


.foundation-center {
    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%);

    border: 1px solid
        rgba(47, 143, 58, 0.15);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #eaf7eb
        );

    box-shadow:
        0 25px 60px
        rgba(47, 143, 58, 0.15);

    text-align: center;

    z-index: 3;
}


.foundation-center__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 10px;

    border-radius: 18px;

    background: var(--hiw-green);

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 10px 25px
        rgba(47, 143, 58, 0.25);
}


.foundation-center strong {
    font-size: 20px;
}


.foundation-center span {
    margin-top: 4px;

    color: var(--hiw-text-soft);

    font-size: 12px;
}


/* =========================================================
   FOUNDATION NODES
   ========================================================= */

.foundation-node {
    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 7px;

    width: 100px;
    height: 100px;

    border: 1px solid
        rgba(47, 143, 58, 0.12);

    border-radius: 26px;

    background: #ffffff;

    color: var(--hiw-green);

    box-shadow:
        0 12px 30px
        rgba(47, 143, 58, 0.10);

    font-size: 24px;

    z-index: 5;

    animation:
        foundationFloat 4s ease-in-out infinite;
}


.foundation-node span {
    color: var(--hiw-text);

    font-size: 12px;
    font-weight: 800;
}


.foundation-node--farmer {
    top: 8%;
    left: 4%;
}


.foundation-node--farm {
    top: 7%;
    right: 4%;

    animation-delay: -1.2s;
}


.foundation-node--upi {
    right: 50%;
    bottom: 3%;

    transform: translateX(50%);

    animation-delay: -2.2s;
}


/* =========================================================
   FOUNDATION CONTENT
   ========================================================= */

.farmnova-foundation__content {
    max-width: 620px;
}


.farmnova-foundation__content
.farmnova-section-heading__label {
    margin-bottom: 15px;
}


.farmnova-foundation__content h2 {
    margin: 0;

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1.08;

    letter-spacing: -0.04em;
}


.farmnova-foundation__content h2 span {
    color: var(--hiw-green);
}


.farmnova-foundation__content > p {
    margin: 23px 0 0;

    color: var(--hiw-text-soft);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   FOUNDATION POINTS
   ========================================================= */

.foundation-points {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 35px;
}


.foundation-point {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 17px;

    border: 1px solid
        rgba(47, 143, 58, 0.10);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.7);

    transition:
        transform var(--hiw-transition),
        box-shadow var(--hiw-transition);
}


.foundation-point:hover {
    transform: translateX(6px);

    box-shadow:
        0 12px 30px
        rgba(47, 143, 58, 0.08);
}


.foundation-point__icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    background: var(--hiw-green-light);

    color: var(--hiw-green);

    font-size: 18px;
}


.foundation-point div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.foundation-point strong {
    font-size: 15px;
}


.foundation-point span {
    color: var(--hiw-text-soft);

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   INTELLIGENCE SECTION
   ========================================================= */

.farmnova-intelligence {
    padding: 125px 0;

    background: #ffffff;
}


.intelligence-loop {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 40px 30px;

    border: 1px solid var(--hiw-border);

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fcf8
        );

    box-shadow:
        0 20px 55px
        rgba(35, 88, 43, 0.07);
}


/* =========================================================
   INTELLIGENCE ITEM
   ========================================================= */

.intelligence-loop__item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 190px;
    min-height: 170px;

    padding: 20px;

    border: 1px solid
        var(--hiw-border);

    border-radius: 25px;

    background: #ffffff;

    text-align: center;

    transition:
        transform var(--hiw-transition),
        border-color var(--hiw-transition),
        box-shadow var(--hiw-transition);
}


.intelligence-loop__item:hover {
    transform: translateY(-7px);

    border-color:
        rgba(47, 143, 58, 0.25);

    box-shadow:
        0 15px 35px
        rgba(47, 143, 58, 0.09);
}


.intelligence-loop__item--active {
    border-color:
        rgba(47, 143, 58, 0.30);

    background:
        linear-gradient(
            145deg,
            #f0faef,
            #ffffff
        );
}


.intelligence-loop__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 15px;

    border-radius: 19px;

    background: var(--hiw-green-light);

    color: var(--hiw-green);

    font-size: 23px;
}


.intelligence-loop__item strong {
    font-size: 15px;
}


.intelligence-loop__item span {
    margin-top: 6px;

    color: var(--hiw-text-soft);

    font-size: 12px;
}


.intelligence-loop__arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 35px;
    height: 35px;

    color: var(--hiw-green);

    font-size: 18px;

    animation:
        arrowPulse 2s ease-in-out infinite;
}


/* =========================================================
   PHILOSOPHY / CTA
   ========================================================= */

.farmnova-philosophy {
    position: relative;

    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #1d6827 0%,
            #2f8f3a 55%,
            #3b9e45 100%
        );

    color: #ffffff;

    overflow: hidden;
}


.farmnova-philosophy::before,
.farmnova-philosophy::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(255, 255, 255, 0.10);

    pointer-events: none;
}


.farmnova-philosophy::before {
    width: 650px;
    height: 650px;

    top: -430px;
    right: -180px;
}


.farmnova-philosophy::after {
    width: 480px;
    height: 480px;

    bottom: -340px;
    left: -150px;
}


.farmnova-philosophy__container {
    position: relative;

    z-index: 2;

    text-align: center;
}


.farmnova-philosophy__badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 18px;

    border: 1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.10);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.farmnova-philosophy h2 {
    max-width: 1000px;

    margin: 28px auto 0;

    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -0.04em;
}


.farmnova-philosophy h2 span {
    display: block;

    color: #d8f2da;
}


.farmnova-philosophy p {
    max-width: 780px;

    margin: 28px auto 0;

    color: rgba(255, 255, 255, 0.80);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.farmnova-philosophy__actions {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 38px;
}


.farmnova-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 24px;

    border-radius: 15px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform var(--hiw-transition),
        box-shadow var(--hiw-transition),
        background var(--hiw-transition);
}


.farmnova-button i {
    transition:
        transform var(--hiw-transition);
}


.farmnova-button:hover {
    transform: translateY(-4px);
}


.farmnova-button:hover i {
    transform: translateX(4px);
}


.farmnova-button--primary {
    background: #ffffff;

    color: var(--hiw-green-dark);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.12);
}


.farmnova-button--primary:hover {
    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.17);
}


.farmnova-button--secondary {
    border: 1px solid
        rgba(255, 255, 255, 0.30);

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;
}


.farmnova-button--secondary:hover {
    background:
        rgba(255, 255, 255, 0.15);
}


/* =========================================================
   ANIMATION KEYFRAMES
   ========================================================= */

@keyframes hiwFadeUp {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes hiwFadeDown {

    from {
        opacity: 0;

        transform:
            translateY(-15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes foundationOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes foundationFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -9px;
    }

}


@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.45;

        transform:
            translateX(0);
    }

    50% {
        opacity: 1;

        transform:
            translateX(4px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .how-it-works-hero__container,
    .farmnova-journey__container,
    .farmnova-foundation__container,
    .farmnova-intelligence__container,
    .farmnova-philosophy__container {
        width: min(
            100%,
            calc(100% - 50px)
        );
    }


    .farmnova-journey__timeline {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 65px;
    }


    .journey-step {
        min-height: 440px;
    }


    .farmnova-foundation__container {
        gap: 55px;
    }


    .intelligence-loop {
        flex-wrap: wrap;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .how-it-works-hero__container,
    .farmnova-journey__container,
    .farmnova-foundation__container,
    .farmnova-intelligence__container,
    .farmnova-philosophy__container {
        width: calc(100% - 32px);
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .how-it-works-hero {
        padding: 65px 0 75px;
    }


    .how-it-works-eyebrow {
        font-size: 13px;

        padding: 10px 15px;
    }


    .how-it-works-hero__title {
        margin-top: 25px;

        font-size:
            clamp(40px, 12vw, 58px);
    }


    .how-it-works-hero__description {
        margin-top: 22px;

        font-size: 16px;

        line-height: 1.65;
    }


    /* -----------------------------------------------------
       SECTION HEADING
    ----------------------------------------------------- */

    .farmnova-section-heading {
        margin-bottom: 60px;
    }


    .farmnova-section-heading h2 {
        font-size: 38px;
    }


    .farmnova-section-heading p {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       JOURNEY
    ----------------------------------------------------- */

    .farmnova-journey {
        padding: 85px 0;
    }


    .farmnova-journey__timeline {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    .journey-step {
        min-height: auto;

        padding:
            65px 24px 30px;

        border-radius: 26px;
    }


    .journey-step__number {
        width: 64px;
        height: 64px;

        top: -32px;

        font-size: 17px;
    }


    .journey-step__icon {
        width: 80px;
        height: 80px;

        margin-bottom: 28px;

        border-radius: 22px;

        font-size: 30px;
    }


    .journey-step h3 {
        font-size: 24px;
    }


    .journey-step p {
        font-size: 15px;
    }


    .journey-step__tags {
        margin-top: 23px;
    }


    /*
       Mobile timeline connector
    */

    .journey-connector {
        position: relative;

        display: block;

        width: 3px;
        height: 55px;

        margin: 0 auto;

        background:
            linear-gradient(
                180deg,
                var(--hiw-green),
                rgba(47, 143, 58, 0.15)
            );
    }


    .journey-connector::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -2px;

        width: 9px;
        height: 9px;

        transform: translateX(-50%)
            rotate(45deg);

        border-right: 3px solid
            var(--hiw-green);

        border-bottom: 3px solid
            var(--hiw-green);

        background: transparent;
    }


    /* -----------------------------------------------------
       FOUNDATION
    ----------------------------------------------------- */

    .farmnova-foundation {
        padding: 90px 0;
    }


    .farmnova-foundation__container {
        display: flex;

        flex-direction: column;

        gap: 70px;
    }


    .farmnova-foundation__visual {
        width: min(
            100%,
            400px
        );
    }


    .foundation-center {
        width: 145px;
        height: 145px;
    }


    .foundation-center__icon {
        width: 45px;
        height: 45px;

        font-size: 20px;
    }


    .foundation-center strong {
        font-size: 16px;
    }


    .foundation-center span {
        font-size: 10px;
    }


    .foundation-node {
        width: 78px;
        height: 78px;

        border-radius: 20px;

        font-size: 18px;
    }


    .foundation-node span {
        font-size: 10px;
    }


    .foundation-node--farmer {
        left: 0;
    }


    .foundation-node--farm {
        right: 0;
    }


    .farmnova-foundation__content h2 {
        font-size: 40px;
    }


    .farmnova-foundation__content > p {
        font-size: 15px;
    }


    .foundation-point {
        align-items: flex-start;

        padding: 14px;
    }


    .foundation-point__icon {
        width: 44px;
        height: 44px;
    }


    /* -----------------------------------------------------
       INTELLIGENCE
    ----------------------------------------------------- */

    .farmnova-intelligence {
        padding: 90px 0;
    }


    .intelligence-loop {
        flex-direction: column;

        gap: 10px;

        padding: 25px 18px;

        border-radius: 28px;
    }


    .intelligence-loop__item {
        width: 100%;

        min-height: 145px;
    }


    .intelligence-loop__arrow {
        transform:
            rotate(90deg);
    }


    .intelligence-loop__arrow {
        animation-name:
            arrowPulseVertical;
    }


    /* -----------------------------------------------------
       PHILOSOPHY
    ----------------------------------------------------- */

    .farmnova-philosophy {
        padding: 90px 0;
    }


    .farmnova-philosophy h2 {
        font-size: 38px;
    }


    .farmnova-philosophy p {
        font-size: 15px;

        line-height: 1.7;
    }


    .farmnova-philosophy__actions {
        flex-direction: column;

        width: 100%;
    }


    .farmnova-button {
        width: 100%;
    }

}


/* =========================================================
   MOBILE ARROW ANIMATION
   ========================================================= */

@keyframes arrowPulseVertical {

    0%,
    100% {
        opacity: 0.45;

        transform:
            rotate(90deg)
            translateX(0);
    }

    50% {
        opacity: 1;

        transform:
            rotate(90deg)
            translateX(4px);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .how-it-works-hero__title {
        font-size: 39px;
    }


    .farmnova-section-heading h2 {
        font-size: 34px;
    }


    .farmnova-foundation__visual {
        transform: scale(0.90);
    }


    .farmnova-foundation__content h2 {
        font-size: 35px;
    }


    .journey-step {
        padding-left: 20px;
        padding-right: 20px;
    }


    .journey-step h3 {
        font-size: 22px;
    }


    .journey-step__tags span {
        font-size: 11px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .how-it-works-page *,
    .how-it-works-page *::before,
    .how-it-works-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}