@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --nl-dark-grey: #5e5957;
    --nl-green: #61874c;
    --accent-grey: rgba(231, 230, 230, 0.93);
    --accent-orange: #EF8F5B;
    --font-primary: 'Poppins', sans-serif;
    --spacing-base: 8px;
    --text-white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--nl-dark-grey);
    line-height: 1.5;
    background-color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Shared / Utility Classes --- */
.section-h2 {
    color: var(--nl-dark-grey);
    font-family: var(--font-primary);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.96px;
    margin: 0;
}

.section-h2.light {
    color: var(--accent-grey);
}

.subtext-large {
    color: var(--nl-dark-grey);
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.subtext-large.light {
    color: var(--accent-grey);
}

.label-orange-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.label-orange-text {
    color: var(--accent-orange);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.label-orange-line {
    height: 1.5px;
    background-color: var(--accent-orange);
    border-radius: 1px;
}

.app-screen-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0px 46px 46px rgba(0, 0, 0, 0.14);
}

.app-screen-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-base {
    border-radius: 76px;
    padding: 0px 15px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    display: inline-block;
}

.pill-grey {
    border: 1px solid var(--nl-dark-grey);
    background: rgba(94, 89, 87, 0.16);
    color: var(--nl-dark-grey);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.02);
}

.pill-green {
    background-color: rgba(97, 135, 76, 0.16);
    border: 1px solid var(--nl-green);
    color: var(--nl-green);
}

.text-center {
    text-align: center;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    height: 791px;
    padding: 250px 24px 150px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    /* Updated gradient to match the faded look in screenshot */
    background: linear-gradient(
        to top, rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.75) 30%,
        rgba(255, 255, 255, 0.9) 60%,
        rgba(255, 255, 255, 0.97) 80%,
        #ffffff 100%
    );
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Center the logo */
    align-items: flex-start;
    padding-top: 0;
    width: 100%;
}

.logo-wrapper {
    position: relative;
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Create the flag/banner shape */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-bottom: 20px;
}

.logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.hero-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    gap: 16px;
}

.hero-headline {
    color: var(--nl-dark-grey);
    text-align: center;
    font-family: Poppins;
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 73px;
    /* 117.742% */
    letter-spacing: -1.24px;
}

.hero-subtext-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-subtext-1,
.hero-subtext-2 {
    margin: 0;
}

.hero-subtext-1 {
    color: var(--nl-dark-grey);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 150% */
}

.hero-subtext-2 {
    color: var(--nl-dark-grey);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.hero-pill-wrapper {
    margin-top: 24px;
}

.hero-pill {
    background-color: rgba(97, 135, 76, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 52px;
    padding: 14px 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pill p {
    margin-bottom: 0;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.hero-actions {
    margin-top: 32px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    padding-bottom: 20px;
    opacity: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

.scroll-text {
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-arrows {
    position: relative;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-chevron {
    position: absolute;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.scroll-chevron-1 {
    animation: chevronSlide 2s ease-in-out infinite;
}

.scroll-chevron-2 {
    animation: chevronSlide 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes chevronSlide {
    0% {
        transform: translateY(-15px) scale(0.6);
        opacity: 0;
    }
    50% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(15px) scale(0.6);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--nl-green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0px 8px 20px rgba(97, 135, 76, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary span {
    color: var(--accent-grey, rgba(231, 230, 230, 0.93));
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.btn-icon-wrapper {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(231, 230, 230, 0.93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-right {
    width: 29px;
    height: 29px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 24px rgba(97, 135, 76, 0.4);
}

.leaf-decoration {
    position: absolute;
    z-index: 2;
    /* Foreground */
    pointer-events: none;
}

.leaf-1 {
    top: 54%;
    right: -195px;
    width: 480px;
    transform: translateY(-50%) rotate(0deg);
}

.leaf-2 {
    top: 54%;
    left: -34px;
    width: 520px;
    transform: translateY(-50%) rotate(0deg);
}

/* --- Status Bubbles --- */
.status-bubble {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nl-dark-grey);
    white-space: nowrap;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bubble-1 {
    top: -20px;
    left: -180px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 120px;
    right: -200px;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 180px;
    left: -220px;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1200px) {
    .status-bubble {
        display: none;
    }
}

/* --- Features Section 1 --- */
.features-section-1 {
    position: relative;
    background-color: rgba(255, 255, 255, 0.93);
    padding: 80px 0;
    overflow: hidden;

    background-image: url("assets/Blueprint.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.features-bg-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 935px;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.vector-line {
    width: 1px;
    height: 100%;
}

.vector-line img {
    height: 100%;
    width: 1px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-image-group {
    position: relative;
    width: 576px;
    height: 560px;
}

.screen-bg {
    position: absolute;
    width: 514px;
    height: 495px;
    background-color: var(--nl-green);
    border-radius: 32px;
    transform: rotate(-7.6deg);
    top: 65px;
    left: 17px;
    z-index: 1;
}

.screen-img-wrapper {
    position: absolute;
    width: 498px;
    height: 496px;
    top: 57px;
    left: 57px;
    z-index: 2;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    color: var(--nl-dark-grey, #5E5957);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.features-tags {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* --- How It Works Sections --- */
.how-it-works-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section.homeowners {
    background-color: var(--nl-green);
}

.how-it-works-section.dreamers {
    background-color: #5f7d4e;
}

.how-it-works-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.how-it-works-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 60px;
}

.how-it-works-text-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-subgroup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-highlight {
    color: var(--accent-grey, rgba(231, 230, 230, 0.93));
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.text-body-bold {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--accent-grey);
    margin-bottom: 0;
}

.text-body-light {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--accent-grey);
    margin-bottom: 0;
}

.how-it-works-image {
    width: 560px;
    height: 536px;
    flex-shrink: 0;
}

.how-it-works-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dreamers Reverse Layout */
.dreamers .how-it-works-container {
    flex-direction: row;
}

/* Leaf Decoration for Dreamers */
.how-it-works-leaf {
    position: absolute;
    right: -8%;
    top: 65%;
    transform: translateY(-50%);
    width: 300px;
    pointer-events: none;
}

@media (max-width: 1024px) {

    .how-it-works-container,
    .dreamers .how-it-works-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .how-it-works-image {
        width: 100%;
        max-width: 560px;
        height: auto;
        aspect-ratio: 560 / 536;
    }

    .features-heading-light {
        font-size: 36px;
        line-height: 44px;
    }
}

/* --- Features Section 7 --- */
/* --- Features Section 7 --- */
.features-section-7 {
    padding: 80px 0 80px 0;
    /* Adjusted bottom padding to match design */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    top: -89px;
    left: 50%;
    transform: translateX(-50%);
    width: 1673px;
    height: 734px;
    z-index: 0;
    pointer-events: none;
}

.blueprint-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.05;
    /* Decreased opacity for an even more subtle look */
}

.features-section-7 .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
    /* Added gap between title and grid matching design */
}

.features-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    /* Adjusted gap to 24px to ensure 3 cards fit in 1200px container (1152px content width) */
    justify-content: center;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--accent-grey);
    border-radius: 24px;
    padding: 20px;
    width: 368px;
    height: 136px;
    display: flex;
    align-items: center;
    gap: 24px;
    /* Adjusted gap to match design */
    box-shadow: 0px 99px 39px rgba(0, 0, 0, 0.01), 0px 55px 33px rgba(0, 0, 0, 0.03), 0px 25px 25px rgba(0, 0, 0, 0.04), 0px 6px 14px rgba(0, 0, 0, 0.05);
}

.card-icon-wrapper {
    width: 92px;
    height: 96px;
    background-color: var(--nl-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* --- Features Section 9 --- */
.features-section-9 {
    background-color: var(--accent-grey);
    padding: 80px 0;
}

.intro-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    text-align: center;
}

.mt-10 {
    margin-top: 40px;
}

.pill-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.features-split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.features-image-left {
    position: relative;
    width: 576px;
    height: 560px;
}

.screen-bg-green {
    position: absolute;
    width: 514px;
    height: 495px;
    background-color: var(--nl-green);
    border-radius: 32px;
    transform: rotate(-7.6deg);
    top: 34px;
    left: 0;
}

.screen-img-wrapper-2 {
    position: absolute;
    width: 498px;
    height: 496px;
    top: 23px;
    left: 57px;
}

.features-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subsection-text {
    font-size: 16px;
    line-height: 30px;
    color: var(--nl-dark-grey);
    margin-bottom: 0;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--nl-dark-grey, #5E5957);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.check-icon {
    width: 24px;
    height: 24px;
}

.closing-text {
    color: var(--NL-dark-grey, #5E5957);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

/* --- Stats Section 4 --- */
.stats-section-4 {
    background-color: var(--nl-dark-grey);
    padding: 128px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.stats-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.stats-decoration-group {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    width: max-content;
}

.stats-banner-icon {
    height: 180px;
    width: auto;
}

.stats-banner-text {
    height: 120px;
    width: auto;
}

.stats-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .stats-section-4 {
        padding: 80px 24px;
    }

    .stats-title {
        font-size: 32px;
        line-height: 40px;
    }

    .stats-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

/* --- CTA Section 13 --- */
.cta13-section {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    overflow: hidden;
}

.cta13-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cta13-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta13-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(94, 89, 87, 0.75);
}

.cta13-content-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.cta13-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    color: var(--accent-grey);
    max-width: 800px;
}

.cta13-benefits-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
    white-space: nowrap;
}

.cta13-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px;
    background-color: #61874c;
    border: 1px solid var(--nl-green);
    border-radius: 76px;
    height: 41px;
}

.benefit-check {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta13-benefit-item span {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-grey);
    white-space: nowrap;
}

.cta13-form-card {
    background: #fff;
    border-radius: 22px;
    /* padding: 40px; */
    width: 100%;
    max-width: 610px;
    box-shadow: 0px 116px 33px 0px rgba(14, 50, 53, 0.00), 0px 74px 30px 0px rgba(14, 50, 53, 0.01), 0px 42px 25px 0px rgba(14, 50, 53, 0.04), 0px 19px 19px 0px rgba(14, 50, 53, 0.07), 0px 5px 10px 0px rgba(14, 50, 53, 0.08);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.form-group label {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: var(--nl-dark-grey);
    line-height: 24px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 58px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(98, 98, 98, 0.26);
    background: #fff;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: var(--nl-dark-grey);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(94, 89, 87, 0.50);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.form-group select {
    /* appearance: none; - Removing custom appearance to show default arrow since custom icon is removed */
    /* -webkit-appearance: none; */
    cursor: pointer;
    color: rgba(94, 89, 87, 0.50);
    /* Default placeholder color */
}

/* Change color when valid option selected - requires JS or valid pseudo class if required */
.form-group select:valid {
    color: var(--nl-dark-grey);
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-icon img {
    width: 100%;
    height: auto;
    transform: scaleY(-1);
}

.cta13-submit-btn {
    width: 100%;
    height: 68px;
    border-radius: 12px;
    background: var(--nl-green);
    border: none;
    color: #fff;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 79px 22px 0px rgba(58, 95, 37, 0.01),
        0px 50px 20px 0px rgba(58, 95, 37, 0.05),
        0px 28px 17px 0px rgba(58, 95, 37, 0.18),
        0px 13px 13px 0px rgba(58, 95, 37, 0.3),
        0px 3px 7px 0px rgba(58, 95, 37, 0.34);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.cta13-submit-btn:hover {
    background-color: #537341;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta13-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .cta13-subtext {
        font-size: 18px;
        line-height: 28px;
    }

    .cta13-form-card {
        padding: 0px;
    }

    .cta13-benefits-list {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Footer --- */
.main-footer {
    background-color: var(--nl-green);
    color: #fff;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 64px;
    width: 100%;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.footer-col-main {
    flex: 1 0 0;
    min-width: 256px;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logo-composite {
    width: 262px;
    height: 169px;
    position: relative;
    overflow: hidden;
}

.logo-part-a {
    /* position: absolute; */
    top: 0.23%;
    left: 33.29%;
    /* width: 36.09%;
    /* 100% - 30.62% - 33.29% */
    /* height: 59.35%; */
    /* 100% - 0.23% - 40.42% */
    object-fit: contain;
}

.logo-part-b {
    position: absolute;
    top: 70.18%;
    left: 0;
    width: 99.8%;
    /* 100% - 0.2% - 0% */
    height: 12.49%;
    /* 100% - 70.18% - 17.33% */
    object-fit: contain;
}

.footer-heading {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-contact {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
}

.light-text {
    font-weight: 300;
    color: var(--accent-grey);
    line-height: 20px;
}

.email-link {
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 20px;
}

.footer-col-info {
    max-width: 494px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    height: 232px;
}

.footer-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--accent-grey);
}

.footer-text p {
    margin-bottom: 18px;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    background-color: var(--nl-dark-grey);
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom .container {
    max-width: 1200px;
    text-align: center;
    padding: 0 24px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}

@media (max-width: 1024px) {
    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-info {
        height: auto;
    }
}

/* Responsive adjustments */

/* CTA Benefits - stack at 1080px */
@media (max-width: 1080px) {
    .cta13-benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Footer center content */
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col-main {
        align-items: center;
    }

    .footer-col-info {
        align-items: center;
        text-align: center;
        height: auto;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* Tablet - Features Section 1 fix */
@media (max-width: 900px) {
    .features-image-group {
        width: 100%;
        height: auto;
        max-width: 450px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .screen-bg {
        display: none;
    }

    .screen-img-wrapper {
        position: relative;
        width: 100%;
        max-width: 350px;
        height: auto;
        top: 0;
        left: 0;
    }

    .features-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .features-content {
        min-width: unset;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .features-split-layout {
        flex-direction: column;
    }

    .features-image-left {
        width: 100%;
        height: auto;
        max-width: 450px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .screen-bg-green {
        display: none;
    }

    .screen-img-wrapper-2 {
        position: relative;
        width: 100%;
        max-width: 350px;
        height: auto;
        top: 0;
        left: 0;
    }

    .hero-headline {
        font-size: 42px;
        line-height: 1.2;
    }

    .section-h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .how-it-works-content {
        padding: 0 20px;
    }

    .feature-card {
        width: 100%;
        max-width: 368px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 16px 60px 16px;
    }

    .logo-wrapper {
        width: 200px;
    }

    .logo-img {
        width: 140px;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.64px;
    }

    .hero-subtext-1 {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-subtext-2 {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-pill {
        padding: 10px 20px;
        border-radius: 40px;
    }

    .hero-pill p {
        font-size: 14px;
        line-height: 22px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 16px;
    }

    .btn-primary span {
        font-size: 16px;
    }

    .leaf-decoration {
        display: none;
    }

    /* Section Headings */
    .section-h2 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.56px;
    }

    .subtext-large {
        font-size: 16px;
        line-height: 24px;
    }

    /* Features Section 1 */
    .features-section-1 {
        padding: 60px 0;
    }

    .features-container {
        gap: 40px;
    }

    .features-image-group {
        max-width: 100%;
    }

    .feature-text {
        font-size: 16px;
        line-height: 24px;
    }

    .feature-list {
        gap: 24px;
    }

    /* How It Works */
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-container {
        gap: 30px;
    }

    .how-it-works-content {
        padding: 0;
    }

    .text-highlight {
        font-size: 16px;
        line-height: 24px;
    }

    .how-it-works-leaf {
        display: none;
    }

    /* Features Section 7 */
    .features-section-7 {
        padding: 60px 0;
    }

    .features-section-7 .container {
        gap: 40px;
    }

    .features-grid-row {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 100px;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-text {
        font-size: 14px;
        line-height: 22px;
    }

    /* Features Section 9 */
    .features-section-9 {
        padding: 60px 0;
    }

    .intro-block {
        margin-bottom: 40px;
    }

    .pill-group {
        gap: 8px;
    }

    .pill-base {
        font-size: 14px;
        padding: 0 12px;
    }

    .features-split-layout {
        gap: 40px;
    }

    .check-item {
        font-size: 16px;
        line-height: 24px;
    }

    .check-list {
        gap: 16px;
    }

    /* Stats Section */
    .stats-section-4 {
        padding: 60px 16px;
    }

    .stats-decoration-group {
        display: none;
    }

    /* CTA Section */
    .cta13-section {
        padding: 60px 16px;
        min-height: auto;
    }

    .cta13-content-container {
        gap: 30px;
    }

    .cta13-form-card {
        padding: 0px;
        gap: 24px;
    }

    .cta13-submit-btn {
        height: 56px;
        font-size: 16px;
    }

    .form-group input,
    .form-group select {
        height: 50px;
        font-size: 14px;
    }

    /* Footer */
    .main-footer {
        padding-top: 40px;
    }

    .footer-container {
        padding-bottom: 40px;
    }

    .footer-columns {
        gap: 30px;
    }

    .logo-composite {
        width: 180px;
        height: 120px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-bottom {
        height: auto;
        padding: 20px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
        line-height: 34px;
    }

    .section-h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-pill {
        padding: 8px 16px;
    }

    .hero-pill p {
        font-size: 13px;
        line-height: 20px;
    }

    .cta13-benefits-list {
        flex-wrap: wrap;
        white-space: normal;
    }

    .cta13-benefit-item {
        height: auto;
        padding: 6px 10px;
    }

    .cta13-benefit-item span {
        font-size: 13px;
    }
}

/* ================================
   ANIMATIONS & EFFECTS
   ================================ */

/* --- Page Loading Animation --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--nl-green) 0%, #4a6b3a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin-top: 30px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: loaderTextFade 2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderTextFade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(-10deg) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
}

/* --- Stagger Animation Delays --- */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* --- Hero Section Animations --- */
.hero-text-content {
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-headline {
    animation: heroHeadlineReveal 1.2s cubic-bezier(0.5, 0, 0, 1) 0.4s both;
}

.hero-subtext-group {
    animation: heroFadeIn 1s ease-out 0.7s both;
}

.hero-pill-wrapper {
    animation: heroPillBounce 1s ease-out 1s both;
}

.hero-actions {
    animation: heroFadeIn 1s ease-out 1.2s both;
}

.scroll-indicator {
    animation: heroFadeIn 1s ease-out 1.4s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroHeadlineReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroPillBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    60% {
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Leaf Parallax Animation --- */
.leaf-decoration {
    transition: transform 0.3s ease-out;
}

.leaf-1 {
    animation: leafFloat1 8s ease-in-out infinite;
}

.leaf-2 {
    animation: leafFloat2 10s ease-in-out infinite;
}

@keyframes leafFloat1 {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    25% {
        transform: translateY(calc(-50% - 15px)) rotate(2deg);
    }

    75% {
        transform: translateY(calc(-50% + 10px)) rotate(-2deg);
    }
}

@keyframes leafFloat2 {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    33% {
        transform: translateY(calc(-50% + 12px)) rotate(-3deg);
    }

    66% {
        transform: translateY(calc(-50% - 18px)) rotate(3deg);
    }
}

/* --- Enhanced Button Animations --- */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 15px 30px rgba(97, 135, 76, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary .icon-right {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover .icon-right {
    transform: translateX(5px);
}

/* --- Feature Card Animations --- */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--nl-green);
}

.feature-card .card-icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.3s ease;
}

.feature-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card .card-icon img {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .card-icon img {
    transform: scale(1.15);
}

/* --- Feature Item Animations --- */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item .feature-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* --- App Screen Card Animations --- */
.app-screen-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease;
}

.app-screen-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0px 60px 60px rgba(0, 0, 0, 0.18);
}

/* --- Pill Animations --- */
.pill-base {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.pill-green:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(97, 135, 76, 0.3);
    background-color: rgba(97, 135, 76, 0.25);
}

.pill-grey:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(94, 89, 87, 0.2);
}

/* --- Check Item Animations --- */
.check-item {
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateX(8px);
}

.check-item .check-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.check-item:hover .check-icon {
    transform: scale(1.2);
}

/* --- CTA Benefit Item Animations --- */
.cta13-benefit-item {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.cta13-benefit-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 10px 25px rgba(97, 135, 76, 0.4);
    background-color: #5a7d45;
}

/* --- Form Input Animations --- */
.form-group input,
.form-group select {
    transition: border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--nl-green);
    box-shadow: 0 0 0 4px rgba(97, 135, 76, 0.15);
    transform: translateY(-2px);
}

.form-group label {
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--nl-green);
}

/* --- CTA Submit Button Animation --- */
.cta13-submit-btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.cta13-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.cta13-submit-btn:hover::before {
    left: 100%;
}

.cta13-submit-btn:hover {
    background-color: #537341;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 20px 40px rgba(58, 95, 37, 0.4);
}

.cta13-submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* --- Navigation Scroll Effect --- */
.hero-nav {
    transition: background-color 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease;
}

.hero-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-nav.scrolled .logo-wrapper {
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

/* --- Footer Link Animations --- */
.email-link {
    position: relative;
    transition: color 0.3s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

/* --- Label Orange Line Animation --- */
.label-orange-line {
    transform-origin: left;
    animation: lineExpand 0.8s ease-out forwards;
    transform: scaleX(0);
}

.reveal.active .label-orange-line,
.label-orange-line.animate {
    animation: lineExpand 0.8s ease-out 0.3s forwards;
}

@keyframes lineExpand {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* --- Text Gradient Animation --- */
.text-gradient-animate {
    background: linear-gradient(90deg, var(--nl-green), var(--accent-orange), var(--nl-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
    to {
        background-position: 200% center;
    }
}

/* --- Counter Animation --- */
.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* --- Cursor Glow Effect --- */
.glow-cursor {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 135, 76, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-cursor.active {
    opacity: 1;
}

/* --- Magnetic Button Effect --- */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Section Background Parallax --- */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* --- Smooth Section Transitions --- */
section {
    position: relative;
}

/* --- Image Lazy Load Animation --- */
img.lazy-load {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img.lazy-load.loaded {
    opacity: 1;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nl-green), var(--accent-orange));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--nl-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(97, 135, 76, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #537341;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(97, 135, 76, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* --- Ripple Effect --- */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Shake Animation (for errors) --- */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s ease;
}

/* --- Success Animation --- */
@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-pop {
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* --- Typing Cursor --- */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--nl-green);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ================================ */
/* === NEW PREMIUM EFFECTS === */
/* ================================ */

/* --- Shimmer Text Effect --- */
.shimmer-text {
    background: linear-gradient(120deg,
            var(--nl-dark-grey) 0%,
            var(--nl-dark-grey) 40%,
            var(--nl-green) 50%,
            var(--nl-dark-grey) 60%,
            var(--nl-dark-grey) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* --- Gradient Text Animation --- */
.gradient-text {
    background: linear-gradient(90deg,
            var(--nl-green),
            var(--accent-orange),
            var(--nl-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* --- Floating Particles Container --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(97, 135, 76, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatParticle 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 24s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 23s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }

    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* --- Glowing Button Effect --- */
.glow-btn {
    position: relative;
    z-index: 1;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-btn:hover::after {
    opacity: 0.6;
}

/* --- Pulse Animation --- */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(97, 135, 76, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(97, 135, 76, 0);
    }
}

/* --- Animated Border Gradient --- */
.gradient-border {
    position: relative;
    background: #fff;
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--nl-green), var(--accent-orange), var(--nl-green), var(--accent-orange));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: borderGradient 6s ease infinite;
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: calc(inherit - 2px);
    z-index: -1;
}

@keyframes borderGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* --- Typewriter Effect --- */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--nl-green);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCaret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--nl-green);
    }
}

/* --- Floating Animation for Cards --- */
.float-hover {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease;
}

.float-hover:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* --- Smooth Underline Effect --- */
.underline-hover {
    position: relative;
    display: inline-block;
}

.underline-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nl-green), var(--accent-orange));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.underline-hover:hover::after {
    width: 100%;
}

/* --- Scale Up on Hover --- */
.scale-up {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-up:hover {
    transform: scale(1.05);
}

/* --- Rotate on Hover --- */
.rotate-hover {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotate-hover:hover {
    transform: rotate(5deg);
}

/* --- Image Shine Effect --- */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.shine-effect:hover::before {
    left: 150%;
}

/* --- Animated Background Gradient --- */
.animated-bg {
    background: linear-gradient(-45deg, #61874c, #5f7d4e, #4a6b3a, #61874c);
    background-size: 400% 400%;
    animation: bgGradient 15s ease infinite;
}

@keyframes bgGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Blur In Animation --- */
.blur-in {
    animation: blurIn 1s ease-out forwards;
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

/* --- Bounce In Animation --- */
.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Slide Up Fade In Animation --- */
.slide-up-fade {
    animation: slideUpFade 0.8s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 3D Card Tilt Effect --- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-inner {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

/* --- Morphing Shape Animation --- */
.morph-shape {
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%;
    }

    75% {
        border-radius: 60% 30% 60% 40% / 70% 50% 40% 60%;
    }
}

/* --- Ripple Click Effect --- */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Enhanced Hero Section Effects --- */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(97, 135, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(239, 143, 91, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* --- Smooth Icon Rotation --- */
.feature-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

/* --- Enhanced App Screen Card Effect --- */
.app-screen-card {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.6s ease;
}

.app-screen-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 60px 80px rgba(0, 0, 0, 0.2);
}

/* --- Pill Hover Effect --- */
.pill-base {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.pill-base:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- Form Input Focus Animation --- */
.form-group.focused label {
    color: var(--nl-green);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(97, 135, 76, 0.2);
    border-color: var(--nl-green);
}

/* --- Section Divider Wave --- */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .wave-path {
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25px);
    }
}

/* --- Subtle Text Shadow on Hover --- */
.text-glow:hover {
    text-shadow: 0 0 20px rgba(97, 135, 76, 0.3);
}

/* --- Smooth Label Animation --- */
.label-orange-line {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.label-orange-line.animate {
    transform: scaleX(1);
}

/* --- Enhanced Navigation Scroll Effect --- */
.hero-nav {
    transition: background-color 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

.hero-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .page-loader {
        display: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-rotate {
        opacity: 1;
        transform: none;
    }
}