/* =========================================================
   SS SRAWUNG SINERGI
   PRODUCTION FINAL
   ========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --blue: #0757d9;
    --blue-dark: #043b91;

    --yellow: #f7c928;
    --green: #168a4a;
    --red: #e5483f;

    --black: #0b1220;
    --white: #ffffff;

    --gray-50: #f7f9fc;
    --gray-100: #eef2f7;
    --gray-200: #dce3ed;
    --gray-500: #667085;
    --gray-700: #344054;

    --radius: 28px;

    --ease: cubic-bezier(.2,.8,.2,1);

    --shadow:
    0 30px 80px rgba(11,18,32,.12);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--black);
    color: var(--black);
    overflow: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}


/* =========================================================
   SCROLL CONTAINER
========================================================= */

.snap-container {

    width: 100vw;

    height: 100svh;

    overflow-y: auto;
    overflow-x: hidden;

    scroll-snap-type: y mandatory;

    overscroll-behavior-y: contain;

    scrollbar-width: none;

    scroll-behavior: smooth;
}

.snap-container::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   FULL PAGE
========================================================= */

.page-section {

    position: relative;

    width: 100%;

    min-width: 100vw;

    height: 100svh;

    min-height: 100svh;

    max-height: 100svh;

    overflow: hidden;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    isolation: isolate;
}


/* =========================================================
   LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    background: var(--blue);

    color: white;

    transition:
    opacity .7s var(--ease),
    visibility .7s;
}

.page-loader.loaded {

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {

    display: flex;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 72px;
    font-weight: 800;

    letter-spacing: -8px;

    margin-left: -8px;

    animation: loaderLogo 1.2s var(--ease) infinite alternate;
}

.loader-line {

    width: 130px;
    height: 2px;

    background: rgba(255,255,255,.25);

    margin-top: 24px;

    overflow: hidden;
}

.loader-line span {

    display: block;

    width: 40%;

    height: 100%;

    background: white;

    animation: loaderLine 1.1s var(--ease) infinite;
}

.page-loader small {

    margin-top: 16px;

    font-size: 9px;

    letter-spacing: 4px;
    opacity: .7;
}


/* =========================================================
   PROGRESS
========================================================= */

.scroll-progress {

    position: fixed;

    left: 0;
    top: 0;

    z-index: 1000;

    width: 3px;
    height: 100%;

    background: rgba(255,255,255,.08);
}

.scroll-progress span {

    display: block;

    width: 100%;
    height: 12.5%;

    background: var(--yellow);

    transform-origin: top;

    transition: height .2s linear;
}

/* =========================================================
   SS STORY PROGRESS
========================================================= */

.story-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    z-index: 99999;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.08);

    pointer-events: none;
}


.story-progress span {

    display: block;

    width: 0%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #1769ff 0%,
        #ffd400 25%,
        #18b968 50%,
        #ef3b3b 75%,
        #1769ff 100%
    );

    background-size: 300% 100%;

    animation:
    ssStoryGradient 5s linear infinite;

    border-radius: 0 999px 999px 0;

    transition: width 0.15s ease-out;

    box-shadow:
    0 0 8px rgba(255,255,255,.25);
}


@keyframes ssStoryGradient {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }

}

/* =========================================================
   SS FLOATING STORY NAVIGATION
   BALANCED • COMPACT • PREMIUM
========================================================= */

.section-nav {

    position: fixed;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 9990;

    display: flex;
    align-items: center;
    justify-content: center;

    /*
     * UKURAN MENGIKUTI ISI
     */
    width: max-content;
    max-width: calc(100vw - 24px);

    gap: 5px;
    padding: 6px 8px;

    /*
     * DARK TRANSPARENT GLASS
     */
    background: rgba(0, 0, 0, .58);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /*
     * BORDER
     */
    border: 1px solid rgba(255,255,255,.28);

    border-radius: 999px;

    /*
     * DEPTH
     */
    box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    0 3px 10px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.16);

    isolation: isolate;

    user-select: none;
}


/* =========================================================
   NAV DOT
========================================================= */

.nav-dot {

    position: relative;

    width: 30px;
    height: 30px;

    /*
     * UKURAN TETAP
     * Supaya semua icon memiliki ruang yang sama
     */
    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 0;
    outline: 0;

    border-radius: 50%;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;

    /*
     * NON ACTIVE
     */
    background: rgba(255,255,255,.08);

    color: rgba(255,255,255,.75);

    transition:
    background .35s var(--ease),
    color .35s var(--ease),
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}


/* =========================================================
   ICON
========================================================= */

.nav-dot i {

    display: block;

    font-size: 11px;

    line-height: 1;

    color: rgba(255,255,255,.82);

    transition:
    color .35s var(--ease),
    transform .35s var(--ease);
}


/* =========================================================
   HOVER
========================================================= */

.nav-dot:hover {

    background: rgba(255,255,255,.16);

    transform: translateY(-1px);

    box-shadow:
    0 3px 10px rgba(0,0,0,.22);
}


.nav-dot:hover i {

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================================
   ACTIVE
========================================================= */

.nav-dot.active {

    background: var(--yellow);

    color: #111111;

    transform: scale(1.05);

    box-shadow:
    0 0 0 1px rgba(255,255,255,.25),
    0 0 14px rgba(247,201,40,.55),
    0 3px 10px rgba(0,0,0,.25);
}


/* =========================================================
   ACTIVE ICON
========================================================= */

.nav-dot.active i {

    color: #111111;

    transform: scale(1.08);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .section-nav {
        top: 16px;
        gap: 5px;
        padding: 6px 8px;
        max-width: calc(100vw - 16px);
    }

    .nav-dot {
        width: 29px;
        height: 29px;
        flex: 0 0 29px;
    }

    .nav-dot i {
        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .section-nav {

        gap: 5px;
        padding: 6px 8px;

    }


    .nav-dot {

        width: 27px;
        height: 27px;

        flex: 0 0 27px;

    }


    .nav-dot i {

        font-size: 9px;

    }

}


/* =========================================================
   GENERAL
========================================================= */

.eyebrow {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--white);

    margin-bottom: 18px;
}

.eyebrow::before {

    content: "";

    width: 24px;
    height: 2px;

    background: currentColor;
}

.eyebrow.blue {
    color: var(--blue);
}

.eyebrow.yellow {
    color: var(--yellow);
}

.eyebrow.red {
    color: var(--red);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    color: white;

    background:
    linear-gradient(
        110deg,
        rgba(4,59,145,.96),
        rgba(7,87,217,.84)
    );
}

.hero-bg {

    position: absolute;
    inset: 0;

    z-index: -3;

    background-image:
    url("../img/srawungsinergihero.png");

    background-size: cover;
    background-position: center;

    opacity: .45;

    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-section::after {

    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
    radial-gradient(
        circle at 75% 25%,
        rgba(247,201,40,.25),
        transparent 30%
    );
}

.noise {

    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .06;

    background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-content {

    width: min(1180px, calc(100% - 140px));

    height: 100%;

    margin: auto;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 40px 0;
}

.brand-lockup {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 48px;
}

.hero-logo {

   width: 72px;
   height: 72px;

   object-fit: contain;

   border-radius: 18px;
   background: #ffffff;
}

.brand-lockup h1 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 38px;

    line-height: 1;
}

.brand-lockup .eyebrow {

    margin: 0 0 5px;
}

.hero-label {

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255,255,255,.7);

    margin-bottom: 20px;
}

.hero-label span {

    width: 30px;
    height: 2px;

    background: var(--yellow);
}

.hero-copy h2 {

    max-width: 880px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(46px, 6vw, 84px);

    line-height: .98;

    letter-spacing: -5px;

    font-weight: 500;
}

.hero-copy h2 strong {

    display: block;

    color: var(--yellow);

    font-weight: 800;
}

.hero-copy p {

    max-width: 620px;

    margin-top: 26px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,.78);
}

.hero-actions {

    display: flex;

    gap: 12px;

    margin-top: 38px;
}

.btn {

    min-height: 52px;

    padding: 0 22px;

    border-radius: 100px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 13px;

    font-weight: 700;

    transition:
    transform .3s var(--ease),
    background .3s,
    color .3s;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-light {

    background: white;
    color: var(--blue);
}

.btn-outline-light {

    color: white;

    border: 1px solid rgba(255,255,255,.35);
}

/* =========================================================
   HERO SCROLL HINT
========================================================= */

.hero-scroll-hint {

    position: absolute;

    left: 50%;
    bottom: 48px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255,255,255,.55);

    white-space: nowrap;

    pointer-events: none;

    animation: scrollHintFloat 2.5s ease-in-out infinite;
}


/* =========================================================
   SCROLL LINE
========================================================= */

.hero-scroll-line {

    position: relative;

    width: 28px;
    height: 1px;

    overflow: hidden;

    background: rgba(255,255,255,.25);
}


.hero-scroll-line::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 10px;
    height: 100%;

    background: var(--yellow);

    animation: scrollLineMove 1.8s ease-in-out infinite;
}


/* =========================================================
   ARROW
========================================================= */

.hero-scroll-hint i {

    font-size: 8px;

    color: var(--yellow);

    animation: scrollArrowMove 1.8s ease-in-out infinite;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes scrollHintFloat {

    0%,
    100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}


@keyframes scrollLineMove {

    0% {
        transform: translateX(-15px);
    }

    50% {
        transform: translateX(28px);
    }

    100% {
        transform: translateX(28px);
    }
}


@keyframes scrollArrowMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.hero-bottom {

    position: absolute;

    left: 70px;
    right: 70px;
    bottom: 28px;

    display: flex;
    justify-content: space-between;

    font-size: 8px;

    letter-spacing: 3px;

    color: rgba(255,255,255,.45);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--gray-50);

    display: flex;
    align-items: center;

    padding: 70px;
}

.about-layout {

    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.about-heading h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(55px, 7vw, 100px);

    line-height: .86;

    letter-spacing: -7px;
}

.about-heading h2 span {

    color: var(--blue);
}

.about-heading .lead {

    margin-top: 30px;

    font-size: 18px;

    color: var(--gray-500);
}

.about-content {

    max-width: 590px;
}

.about-content > p {

    font-size: 16px;

    line-height: 1.75;

    color: var(--gray-500);

    margin-bottom: 17px;
}

.about-content strong {
    color: var(--black);
}

.about-values {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--gray-200);

    margin-top: 32px;
}

.value-item {

    padding: 18px 10px 0 0;
}

.value-item strong {

    display: block;

    font-size: 12px;

    color: var(--blue);

    margin-bottom: 7px;
}

.value-item span {

    font-size: 14px;

    color: var(--gray-700);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: white;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 60px 70px;
}

.products-header {

    width: min(1180px, 100%);

    margin: 0 auto 35px;

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;
}

.products-header h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(38px, 4.2vw, 62px);

    line-height: .95;

    letter-spacing: -4px;
}

.products-header h2 strong {

    color: var(--blue);
}

.products-header > p {

    max-width: 390px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.6;
}

.product-grid {

    width: min(1180px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 22px;

    min-height: 0;

    flex: 1;
}

.product-card {

    min-height: 0;

    border-radius: var(--radius);

    overflow: hidden;

    color: white;

    display: grid;

    grid-template-columns: 1fr 1fr;

    box-shadow: var(--shadow);

    transition:
    transform .5s var(--ease);
}

.product-card:hover {

    transform: translateY(-8px);
}

.product-blue {
    background: var(--blue);
}

.product-green {
    background: var(--green);
}

.product-image {

    position: relative;

    min-height: 0;

    overflow: hidden;
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
    transform .7s var(--ease);
}

.product-card:hover img {

    transform: scale(1.06);
}

.image-number {

    position: absolute;

    left: 20px;
    top: 20px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    font-size: 11px;

    font-weight: 700;
}

.product-info {

    padding: 30px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.product-tag {

    font-size: 10px;

    letter-spacing: 2px;

    opacity: .7;

    margin-bottom: 10px;
}

.product-info h3 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(28px, 3vw, 43px);

    line-height: .95;

    letter-spacing: -2px;
}

.product-info p {

    font-size: 12px;

    line-height: 1.6;

    color: rgba(255,255,255,.75);

    margin-top: 18px;
}

.product-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    font-size: 11px;

    font-weight: 700;
}

.product-link i {

    transition: transform .3s;
}

.product-link:hover i {

    transform: translateX(5px);
}


/* =========================================================
   SACK
========================================================= */

.sack-section {

    display: grid;

    grid-template-columns: 43% 57%;

    background: var(--gray-100);
}

.split-image {

    position: relative;

    height: 100%;

    overflow: hidden;

    background: var(--gray-200);
}

.split-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s var(--ease);
}

.sack-section:hover .split-image img {

    transform: scale(1.035);
}

.image-caption {

    position: absolute;

    left: 30px;
    bottom: 30px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-shadow: 0 2px 15px rgba(0,0,0,.3);
}

.image-caption span {

    font-size: 8px;

    color: var(--yellow);
}

.split-content {

    padding: 60px 8vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.split-content h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(45px, 5.5vw, 76px);

    line-height: .9;

    letter-spacing: -5px;
}

.split-content h2 strong {

    color: var(--blue);
}

.large-text {

    max-width: 530px;

    margin-top: 25px;

    font-size: 17px;

    line-height: 1.65;

    color: var(--gray-500);
}

.feature-list {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    max-width: 520px;

    margin-top: 30px;

    border-top: 1px solid var(--gray-200);
}

.feature-list div {

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 15px 0;

    font-size: 14px;

    color: var(--gray-700);

    border-bottom: 1px solid var(--gray-200);
}

.feature-list i {

    color: var(--blue);

    width: 18px;
}

.mini-note {

    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 24px;
}

.mini-note strong {

    font-size: 8px;

    letter-spacing: 2px;

    color: var(--blue);
}

.mini-note span {

    font-size: 12px;

    color: var(--gray-500);
}


/* =========================================================
   PLANTING
========================================================= */

.planting-section {

    color: white;

    display: flex;
    align-items: center;

    background: #183a2a;
}

.planting-bg {

    position: absolute;
    inset: 0;

    z-index: -3;
}

.planting-bg img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: slowZoom 20s ease-in-out infinite alternate;
}

.planting-overlay {

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
    linear-gradient(
        90deg,
        rgba(7,30,19,.95) 0%,
        rgba(7,30,19,.65) 48%,
        rgba(7,30,19,.2) 100%
    );
}

.planting-content {

    width: min(1180px, calc(100% - 140px));

    margin: auto;
}

.planting-content h2 {

    max-width: 800px;

    font-family: "Plus Jakarta Sans";

    font-size: clamp(48px, 6vw, 82px);

    line-height: .92;

    letter-spacing: -5px;
}

.planting-content h2 strong {

    color: var(--yellow);
}

.planting-content > p {

    max-width: 560px;

    margin-top: 25px;

    color: rgba(255,255,255,.72);

    line-height: 1.7;

    font-size: 15px;
}

.development-flow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 40px;
}

.flow-item {

    display: flex;
    flex-direction: column;

    gap: 6px;

    min-width: 85px;
}

.flow-item span {

    font-size: 12px;

    color: var(--yellow);

    font-weight: 700;
}

.flow-item strong {

    font-size: 11px;

    letter-spacing: 1px;
}

.development-flow > i {

    color: rgba(255,255,255,.35);

    font-size: 10px;
}


/* =========================================================
   BUSINESS
========================================================= */

.business-section {

    background: var(--gray-50);

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 60px 70px;
}

.business-top {

    width: min(1180px,100%);

    margin: 0 auto 38px;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 40px;
}

.business-top .eyebrow {
    grid-column: 1 / -1;
}

.business-top h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(40px, 5vw, 67px);

    line-height: .92;

    letter-spacing: -4px;
}

.business-top h2 strong {

    color: var(--red);
}

.business-top p {

    align-self: end;

    max-width: 460px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.7;
}

.business-cards {

    width: min(1180px,100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.business-card {

    position: relative;

    min-height: 240px;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 22px;

    padding: 26px;

    transition:
    transform .4s var(--ease),
    box-shadow .4s;
}

.business-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.business-card.highlight {

    background: var(--blue);

    color: white;

    border-color: var(--blue);
}

.business-card > span {

    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 11px;

    color: var(--gray-500);
}

.business-card.highlight > span {

    color: rgba(255,255,255,.5);
}

.business-card > i {

    font-size: 26px;

    color: var(--blue);

    margin-top: 32px;

    margin-bottom: 20px;
}

.business-card.highlight > i {

    color: var(--yellow);
}

.business-card h3 {

    font-family: "Plus Jakarta Sans";

    font-size: 22px;

    margin-bottom: 10px;
}

.business-card p {

    font-size: 12px;

    line-height: 1.6;

    color: var(--gray-500);
}

.business-card.highlight p {

    color: rgba(255,255,255,.7);
}

.business-quote {

    text-align: center;

    margin-top: 25px;

    font-family: "Plus Jakarta Sans";

    font-size: 13px;

    font-weight: 700;

    color: var(--gray-500);

    letter-spacing: .5px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 70px;
}

.process-heading {

    width: min(1180px,100%);

    margin: 0 auto 40px;
}

.process-heading h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(43px,5vw,68px);

    line-height: .9;

    letter-spacing: -5px;
}

.process-heading h2 strong {

    color: var(--green);
}

.process-timeline {

    width: min(1180px,100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;
}

.process-item {

    position: relative;

    padding: 25px;

    border-top: 2px solid var(--gray-200);

    transition:
    border-color .3s,
    transform .3s;
}

.process-item:hover {

    border-color: var(--green);

    transform: translateY(-5px);
}

.process-icon {

    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--gray-100);

    color: var(--green);

    margin-bottom: 20px;
    font-size: 24px;
}

.process-item > span {

    font-size: 13px;
    font-weight:bold;

    color: var(--gray-500);

    letter-spacing: 2px;
}

.process-item h3 {

    font-family: "Plus Jakarta Sans";

    font-size: 23px;

    margin-top: 10px;
}

.process-item p {

    margin-top: 10px;

    color: var(--gray-500);

    font-size: 12px;

    line-height: 1.6;
}

.process-bottom {

    width: min(1180px,100%);

    margin: 35px auto 0;

    padding-top: 15px;

    border-top: 1px solid var(--gray-200);

    text-align: right;

    font-size: 8px;

    color: var(--gray-500);

    letter-spacing: 3px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--blue);

    color: white;

    display: flex;
    align-items: center;

    justify-content: center;

    text-align: center;
}

.contact-bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: .2;

    pointer-events: none;
}

.shape-one {

    width: 500px;
    height: 500px;

    background: var(--yellow);

    top: -250px;
    right: -150px;

    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-two {

    width: 400px;
    height: 400px;

    background: var(--green);

    bottom: -230px;
    left: -150px;

    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

.contact-content {

    width: min(850px, calc(100% - 100px));

    position: relative;
    z-index: 2;
}

.contact-content h2 {

    font-family: "Plus Jakarta Sans";

    font-size: clamp(45px, 6vw, 78px);

    line-height: .9;

    letter-spacing: -5px;
}

.contact-content h2 strong {

    color: var(--yellow);
}

.contact-content > p {

    max-width: 550px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.7);

    line-height: 1.7;

    font-size: 14px;
}

.contact-actions {

    max-width: 650px;

    margin: 35px auto 0;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;
}

.contact-btn {

    min-height: 76px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    text-align: left;

    gap: 14px;

    border-radius: 17px;

    background: rgba(255,255,255,.1);

    border: 1px solid rgba(255,255,255,.16);

    backdrop-filter: blur(12px);

    transition:
    transform .3s,
    background .3s;
}

.contact-btn:hover {

    transform: translateY(-5px);

    background: rgba(255,255,255,.17);
}

.contact-btn > i:first-child {

    font-size: 24px;

    width: 32px;

    text-align: center;
}

.contact-btn.whatsapp > i:first-child {

    color: #62e6a0;
}

.contact-btn.email > i:first-child {

    color: var(--yellow);
}

.contact-btn div {

    flex: 1;
}

.contact-btn small {

    display: block;

    font-size: 7px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.5);

    margin-bottom: 5px;
}

.contact-btn strong {

    font-size: 12px;
}

.contact-btn > i:last-child {

    font-size: 10px;

    color: rgba(255,255,255,.4);
}

.social-links {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 25px;
}

.social-links a {

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);

    color: white;

    font-size: 12px;

    transition:
    background .3s,
    transform .3s;
}

.social-links a:hover {

    background: var(--yellow);

    color: var(--black);

    transform: translateY(-4px);
}

.contact-footer {

    position: absolute;

    left: 50px;
    right: 50px;
    bottom: 25px;

    display: flex;

    justify-content: space-between;

    font-size: 7px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.4);
}


/* =========================================================
   FLOATING CTA
========================================================= */

.floating-cta {

    position: fixed;

    z-index: 1100;

    right: 15px;
    bottom: 40px;
}

.floating-main {

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--black);

    box-shadow:
    0 12px 30px rgba(0,0,0,.2);

    transition:
    transform .4s var(--ease);
}

.floating-main:hover {

    transform: scale(1.08);
}

.floating-cta.open .floating-main {

    transform: rotate(45deg);
}

.floating-options {

    position: absolute;

    right: 5px;
    bottom: 65px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    opacity: 0;

    pointer-events: none;

    transform: translateY(15px);

    transition:
    opacity .3s,
    transform .3s var(--ease);
}

.floating-cta.open .floating-options {

    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);
}

.float-option {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    box-shadow:
    0 8px 20px rgba(0,0,0,.18);

    transition:
    transform .25s;
}

.float-option:hover {

    transform: scale(1.1);
}

.float-option.info {

    background: var(--red);
}

.float-option.whatsapp {
    background: rgb(29, 185, 84);
}

.float-option.fb {
    background: rgb(24, 119, 242);
}

.float-option.ig {
    background: rgb(225, 48, 108);
}

.float-option.tiktok {
    background: rgb(0, 0, 0);
}

.float-option.email {
    background: rgb(234, 67, 53);
}

.float-option.maps {
    background: rgb(52, 168, 83);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
    translateY(35px);

    transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}

.page-section.visible .reveal {

    opacity: 1;

    transform:
    translateY(0);
}

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .24s;
}

.reveal-delay-3 {
    transition-delay: .36s;
}

.reveal-delay-4 {
    transition-delay: .48s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes loaderLogo {

    from {
        transform: scale(.95);
        opacity: .6;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes loaderLine {

    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(300%);
    }
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes slowZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

@keyframes floatShape {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(30px,25px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-content,
    .planting-content {

        width: calc(100% - 100px);
    }

    .about-layout {

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .product-grid {

        gap: 12px;
    }

    .product-card {

        grid-template-columns: 1fr;
    }

    .product-image {

        min-height: 42%;
    }

    .product-info {

        padding: 22px;
    }

    .sack-section {

        grid-template-columns: 38% 62%;
    }

    .split-content {

        padding: 40px;
    }

    .business-section,
    .process-section,
    .products-section {

        padding-left: 50px;
        padding-right: 50px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .page-section {

        min-height: 100svh;
        height: 100svh;
        max-height: 100svh;
    }

    .section-nav {

        gap: 5px;
        padding: 6px 8px;
    }

    .nav-dot {

        width: 20px;
        height: 20px;
    }

    .scroll-progress {

        width: 2px;
    }


    /* HERO */

    .hero-content {

        width: calc(100% - 55px);

        padding: 25px 0;
    }

    .hero-logo {

        width: 54px;
        height: 54px;
    }

    .brand-lockup {

        margin-bottom: 32px;
    }

    .brand-lockup h1 {

        font-size: 30px;
    }

    .hero-copy h2 {

        font-size: clamp(41px, 12vw, 62px);

        letter-spacing: -3px;
    }

    .hero-copy p {

        font-size: 13px;

        line-height: 1.55;

        max-width: 430px;

        margin-top: 18px;
    }

    .hero-actions {

        margin-top: 24px;
    }

    .btn {

        min-height: 46px;

        padding: 0 17px;

        font-size: 11px;
    }

    .hero-side-text {

        display: none;
    }

    .hero-bottom {

        left: 25px;
        right: 25px;

        bottom: 18px;
    }


    /* ABOUT */

    .about-section {

        padding: 45px 30px;
    }


    .about-layout {

        display: flex;
        flex-direction: column;

        justify-content: center;

        gap: 22px;
    }

    .about-heading h2 {

        font-size: 62px;

        letter-spacing: -5px;
    }

    .about-heading .lead {

        margin-top: 14px;

        font-size: 14px;
    }

    .about-content > p {

        font-size: 12px;

        line-height: 1.55;

        margin-bottom: 10px;
    }

    .about-values {

        margin-top: 16px;
    }

    .value-item {

        padding-top: 10px;
    }

    .value-item span {

        font-size: 9px;
    }


    /* PRODUCTS */

    .products-section {

        padding: 40px 25px;
    }

    .products-header {

        display: block;

        margin-bottom: 18px;
    }

    .products-header h2 {

        font-size: 38px;

        letter-spacing: -3px;
    }

    .products-header > p {

        display: none;
    }

    .product-grid {

        grid-template-columns: 1fr;

        gap: 10px;

        flex: 1;
    }

    .product-card {

        min-height: 0;

        grid-template-columns: 40% 60%;

        border-radius: 19px;
    }

    .product-image {

        height: 100%;
        min-height: 0;
    }

    .product-info {

        padding: 17px;
    }

    .product-info h3 {

        font-size: 24px;
    }

    .product-info p {

        font-size: 9px;

        margin-top: 10px;
    }

    .product-link {

        margin-top: 12px;

        font-size: 9px;
    }

    .product-tag {

        margin-bottom: 8px;
    }


    /* SACK */

    .sack-section {

        display: block;
    }

    .split-image {

        height: 40%;
    }

    .split-content {

        height: 60%;

        padding: 25px 30px;

        justify-content: center;
    }

    .split-content h2 {

        font-size: 43px;

        letter-spacing: -3px;
    }

    .large-text {

        font-size: 11px;

        margin-top: 12px;

        line-height: 1.45;
    }

    .feature-list {

        margin-top: 13px;
    }

    .feature-list div {

        padding: 8px 0;

        font-size: 9px;
    }

    .mini-note {

        margin-top: 10px;
    }

    .mini-note span {

        font-size: 9px;
    }


    /* PLANTING */

    .planting-content {

        width: calc(100% - 55px);
    }

    .planting-content h2 {

        font-size: 45px;

        letter-spacing: -3px;
    }

    .planting-content > p {

        font-size: 11px;

        line-height: 1.5;

        margin-top: 16px;
    }

    .development-flow {

        gap: 8px;

        margin-top: 25px;
    }

    .flow-item {

        min-width: 55px;
    }

    .flow-item strong {

        font-size: 7px;
    }

    .development-flow > i {

        font-size: 7px;
    }


    /* BUSINESS */

    .business-section {

        padding: 35px 25px;
    }

    .business-top {

        display: block;

        margin-bottom: 15px;
    }

    .business-top h2 {

        font-size: 39px;

        letter-spacing: -3px;
    }

    .business-top p {

        display: none;
    }

    .business-cards {

        grid-template-columns: repeat(3,1fr);

        gap: 7px;
    }

    .business-card {

        min-height: 0;

        height: 230px;

        padding: 13px;

        border-radius: 14px;
    }

    .business-card > i {

        font-size: 15px;

        margin-top: 27px;

        margin-bottom: 12px;
    }

    .business-card h3 {

        font-size: 14px;
    }

    .business-card p {

        font-size: 8px;

        line-height: 1.45;
    }

    .business-quote {

        margin-top: 15px;

        font-size: 10px;
    }


    /* PROCESS */

    .process-section {

        padding: 35px 25px;
    }

    .process-heading {

        margin-bottom: 18px;
    }

    .process-heading h2 {

        font-size: 40px;

        letter-spacing: -3px;
    }

    .process-timeline {

        grid-template-columns: repeat(2,1fr);

        gap: 8px;
    }

    .process-item {

        padding: 15px;

        border-top-width: 1px;
    }

    .process-icon {

        width: 35px;
        height: 35px;

        border-radius: 10px;

        margin-bottom: 10px;

        font-size: 12px;
    }

    .process-item h3 {

        font-size: 15px;

        margin-top: 6px;
    }

    .process-item p {

        font-size: 8px;

        margin-top: 6px;

        line-height: 1.4;
    }

    .process-bottom {

        margin-top: 15px;

        font-size: 6px;
    }


    /* CONTACT */

    .contact-content {

        width: calc(100% - 55px);
    }

    .contact-content h2 {

        font-size: 43px;

        letter-spacing: -3px;
    }

    .contact-content > p {

        font-size: 11px;

        line-height: 1.5;

        margin-top: 16px;
    }

    .contact-actions {

        grid-template-columns: 1fr;

        gap: 7px;

        margin-top: 22px;
    }

    .contact-btn {

        min-height: 58px;

        padding: 10px 13px;

        border-radius: 13px;
    }

    .contact-btn > i:first-child {

        font-size: 18px;
    }

    .contact-btn small {

        font-size: 6px;
    }

    .contact-btn strong {

        font-size: 10px;
    }

    .social-links {

        margin-top: 15px;
    }

    .social-links a {

        width: 30px;
        height: 30px;

        font-size: 10px;
    }

    .contact-footer {

        left: 25px;
        right: 25px;

        bottom: 15px;

        font-size: 5px;
    }

    .floating-cta {

        right: 15px;
        bottom: 40px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }
}


/* =========================================================
   MOBILE — FLOATING STORY NAV
========================================================= */

@media (max-width: 768px) {

    .section-nav {

        top: 16px;

        left: 50%;

        transform: translateX(-50%);

        max-width: calc(100vw - 20px);

        gap: 5px;
        padding: 6px 8px;
        border-radius: 999px;

    }


    /* =====================================================
       NAV BUTTON
    ===================================================== */

    .nav-dot {

        width: 32px;
        height: 30px;

        flex: 0 0 32px;

    }


    /* =====================================================
       NUMBER
    ===================================================== */

    .nav-dot span {

        display: block;

        font-size: 9px;

        font-weight: 700;

        letter-spacing: .5px;

        line-height: 1;

        opacity: 1;

        visibility: visible;

        color: #FFFFFF;

        text-shadow:
        0 1px 3px rgba(0,0,0,.5);

    }


    /* =====================================================
       ACTIVE
    ===================================================== */

    .nav-dot.active {

        background: #F7C928;

    }


    .nav-dot.active span {

        color: #111111;

        text-shadow: none;

    }

}