@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:wght@400;500&display=swap');

:root {
    --primary-green-dark: #124733;
    --primary-green-core: #37BF7D;
    --primary-green-700: #18B269;
    --primary-green-500: #5FCC93;
    --primary-green-300: #AFE5BE;
    --secondary-lime-400: #B2E67A;
    --secondary-lime-200: #D9F3BC;
    --secondary-lime-100: #ECF9DE;
    --secondary-pale-300: #E6F6E8;
    --secondary-pale-100: #F3FAF3;
    --neutral-50: #FFFFFF;
    --neutral-100: #DCDEDC;
    --neutral-200: #CACDCA;
    --neutral-300: #A7ACA7;
    --neutral-400: #848B84;
    --neutral-500: #626862;
    --neutral-600: #414541;
    --neutral-800: #1F211F;
    --neutral-900: #101110;
    --black: #22282B;
    --small-text: #909DA2;
}

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

body {
    font-family: 'Figtree', sans-serif;
    color: var(--neutral-900);
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    background: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.text-center { text-align: center; }

.text-white { color: white; }
.text-green { color: var(--primary-green-core); }
.text-lime { color: var(--secondary-lime-400); }
.text-lime-dark { color: #8ad13c; } 
.bg-white { background-color: white; }
.bg-pale-green { background-color: var(--secondary-pale-300); }
.bg-lime-pale { background-color: var(--secondary-lime-100); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.2s;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--secondary-lime-400);
    color: var(--neutral-900);
}

.btn-primary.dark {
    color: white;
}

/* Hero Section */
.hero {
    height: 760px;
    background-color: var(--primary-green-core);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-bg {
    background-color: var(--primary-green-dark);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-lines {
    position: absolute;
    top: -326px;
    left: -168px;
    width: 1775px;
    height: 1533px;
    pointer-events: none;
}

.hori-lines {
    position: absolute;
    width: 1533px;
    height: 1775px;
    top: 0;
    left: 0;
    transform: rotate(270deg);
    transform-origin: center;
}

.verti-lines {
    position: absolute;
    top: 183px;
    left: 121px;
    width: 1533px;
    height: 1167px;
}

.hero-content {
    position: absolute;
    top: 200px;
    left: 144px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    z-index: 10;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    position: relative;
}

.hero-title h1 {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Highlight wrapper - inline styling for "Funding" */
.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title .highlight {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 60px;
    color: var(--secondary-lime-400);
    position: relative;
    z-index: 2;
}

/* Underline decoration behind "Funding" */
.highlight-underline {
    position: absolute;
    bottom: 12px;
    left: -5px;
    right: -5px;
    height: 20px;
    background-color: var(--secondary-lime-400);
    opacity: 0.25;
    z-index: 1;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neutral-100);
    font-weight: 400;
    margin-top: 8px;
}

.hero-form {
    display: flex;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(238, 238, 238, 0.3);
    border-radius: 12px;
    width: 491px;
}

.hero-input-wrapper {
    flex: 1;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    border: 1px solid #d2f0d6;
    padding: 0 12px;
}

.hero-input-prefix {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral-600);
    margin-right: 4px;
}

.hero-input {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 16px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    outline: none;
    background: transparent;
}

.hero-input.has-prefix {
    padding-left: 0;
}

.hero-input::placeholder {
    color: var(--neutral-400);
}

/* Decorative Images Hero */
.hero-shape1 {
    position: absolute;
    top: -150px;
    right: -30%;
    bottom: -20%;
    left: 35%;
    z-index: 1;
    opacity: 0.9;
}

.hero-shape1 img {
    width: 100%;
    height: 100%;
}

.hero-shape2 {
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 700px;
    pointer-events: none;
    z-index: 1;
}

/* Shape in lower left corner of hero - 3x bigger, centered in corner */
.hero-shape3 {
    position: absolute;
    bottom: -400px;
    left: -500px;
    width: 1500px;
    height: 1200px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    transform: rotate(180deg);
}

.hero-shape3 img {
    width: 100%;
    height: 100%;
}

/* Photo Group - Exact Figma positions */
.hero-photo-group {
    position: absolute;
    left: 894px;
    top: 142px;
    pointer-events: none;
    width: 400px;
    height: 560px;
    z-index: 5;
}

/* Main masked image at top - pill shape with squared bottom-right corner */
.hero-masked-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 399px;
    height: 153px;
    border-radius: 0 77px 0 77px;
    overflow: hidden;
}

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

/* Photo card 1 - girl in white shirt (no mirroring) */
.photo-card-1 {
    position: absolute;
    top: 174px;
    left: 0;
    width: 200px;
    height: 114px;
    overflow: hidden;
    z-index: 3;
}

.photo-card-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

/* Photo card 2 - smiling boy with beard (no mirroring) */
.photo-card-2 {
    position: absolute;
    top: 310px;
    left: 0;
    width: 200px;
    height: 157px;
    overflow: hidden;
    z-index: 3;
}

.photo-card-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

/* Lime green shape at bottom left */
.lime-shape {
    position: absolute;
    top: 456px;
    left: 0;
    width: 200px;
    height: 99px;
    z-index: 2;
}

.lime-shape img {
    width: 100%;
    height: 100%;
}

/* Tall rounded shape on the right */
.tall-shape {
    position: absolute;
    top: 174px;
    left: 217px;
    width: 183px;
    height: 284px;
    overflow: hidden;
    z-index: 2;
}

.tall-shape img {
    width: 100%;
    height: 100%;
}

/* Circular photo at bottom right */
.ellipse-deco {
    position: absolute;
    top: 405px;
    left: 230px;
    width: 158px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 4;
}

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

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 144px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.logo {
    width: 153px;
    height: 32px;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* "Funds" text - positioned on the LEFT (slightly shorter height) */
.logo-group-text {
    position: absolute;
    left: 0;
    top: 5%;
    bottom: 5%;
    right: 43.8%;
}

.logo-group-text img {
    width: 100%;
    height: 100%;
    display: block;
}

/* "hub" icon/text - positioned on the RIGHT */
.logo-group-icon {
    position: absolute;
    left: 57.02%;
    top: 14.9%;
    bottom: 5.94%;
    right: 0;
}

.logo-group-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-links {
    display: flex;
    gap: 56px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    color: var(--neutral-100);
    font-weight: 600;
    cursor: pointer;
}

.nav-link.active {
    color: white;
}

.nav-item-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
}

/* Section General */
.section {
    padding: 100px 144px;
    width: 100%;
    position: relative;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--neutral-900);
}

.section-header p {
    font-size: 16px;
    color: var(--neutral-800);
}

/* How it works */
.how-it-works {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    width: 1152px;
}

.step-item {
    width: 312px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid var(--primary-green-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #52b070;
}

.step-item h3 {
    font-size: 24px;
    color: var(--neutral-900);
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    color: var(--neutral-500);
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary-pale-300);
    padding: 100px 144px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.stat-divider {
    width: 1px;
    background-color: var(--primary-green-700);
    height: 100%;
    min-height: 80px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 24px;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0,0,0,0.87);
}

.stat-label {
    font-size: 20px;
    color: var(--neutral-500);
}

.stats-deco-1 {
    position: absolute;
    top: -23px;
    left: -478px;
    width: 956px;
    height: 201px;
    transform: scaleY(-1);
}

.stats-deco-2 {
    position: absolute;
    top: -80px;
    left: 1394px;
    width: 92px;
    height: 519px;
}


/* Image Grid */
.image-grid-section {
    padding: 100px 144px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.img-card-large {
    width: 747px;
    height: 312px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Aligns content to bottom, but image covers */
}

.img-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.img-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(102,102,102,0) 39%, #101010 120%);
}

.img-card-text {
    position: absolute;
    bottom: 20px;
    left: 20px; /* Adjusted generic positioning */
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
}

.info-card {
    flex: 1;
    height: 312px;
    border-radius: 24px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.info-card.bg-green { background-color: var(--primary-green-300); }
.info-card.bg-lime { background-color: var(--secondary-lime-200); }

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    color: var(--neutral-600);
}

/* Solutions */
.solutions-section {
    background-color: var(--secondary-lime-100);
    padding: 100px 144px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 1152px;
    z-index: 2;
}

.solution-card {
    width: 368px;
    height: 290px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-icon {
    width: 32px;
    height: 32px;
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
}

.solution-content p {
    font-size: 16px;
    color: var(--neutral-500);
}

.solution-apply {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    height: 32px;
    width: 88px;
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    cursor: pointer;
}

.solution-apply img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.solutions-deco-1 {
    position: absolute;
    top: -17px;
    left: 774px;
    width: 787px;
    height: 193px;
}

.solutions-deco-2 {
    position: absolute;
    top: 654px;
    left: -93px;
    width: 387px;
    height: 330px;
    transform: scaleY(-1) rotate(180deg);
}

/* Testimonials */
.testimonials-section {
    height: auto;
    min-height: 581px;
    position: relative;
    overflow: hidden;
    padding: 100px 144px;
}

.testimonials-bg-shape {
    position: absolute;
    width: 1335px;
    height: 1409px;
    top: -253px;
    left: -241px;
    opacity: 0.6;
    z-index: 0;
}

/* Carousel Wrapper */
.testimonial-carousel-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
}

.testimonial-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    width: 368px;
    min-width: 368px;
    padding: 32px;
    background: white;
    border: 1px solid var(--secondary-lime-100);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h5 {
    font-size: 20px;
    color: #22282b;
}

.user-details p {
    font-size: 14px;
    color: #909da2;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.carousel-progress {
    flex: 1;
    max-width: 800px;
    height: 4px;
    background-color: var(--secondary-pale-300);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.carousel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-green-500);
    border-radius: 10px;
    transition: left 0.3s ease;
    width: 20%;
}

.carousel-arrows {
    display: flex;
    gap: 16px;
}

.carousel-arrow {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
    opacity: 0.7;
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    opacity: 0.3;
}

.carousel-arrow img {
    width: 32px;
    height: 32px;
}

.carousel-prev img {
    transform: rotate(180deg);
}

/* FAQ */
.faq-section {
    background-color: var(--secondary-pale-300);
    padding: 80px 144px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    padding: 32px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 1px 1px 34px 0px rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.faq-question h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    flex: 1;
    margin: 0;
}

.faq-chevron {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-green-dark);
    padding: 76px 100px;
    color: white;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Column 1: Logo + Disclaimer */
.footer-col-1 {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 100px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    height: 32px;
}

.footer-logo-text-bold {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
}

.footer-logo-text-light {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--secondary-lime-400);
    font-style: italic;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--neutral-200);
    line-height: 1.5;
    margin: 0;
}

/* Column 2: Menu + Subscribe + Legal */
.footer-col-2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    gap: 56px;
}

.footer-nav a,
.footer-nav .nav-item-dropdown span {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.footer-nav .nav-item-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscribe-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 16px;
}

.subscribe-input {
    flex: 1;
    max-width: 300px;
    background: var(--secondary-pale-100);
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    color: var(--neutral-300);
    font-size: 16px;
}

.subscribe-btn {
    background-color: var(--secondary-lime-400) !important;
    color: white !important;
}

.footer-legal {
    display: flex;
    gap: 40px;
    margin-top: 12px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--neutral-200);
    text-decoration: none;
}

/* Column 3: Contact Info */
.footer-col-3 {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    color: var(--neutral-300);
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-green-dark);
    z-index: 150;
    flex-direction: column;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-links a,
.mobile-nav-links .nav-item-dropdown {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 40px;
}

.mobile-nav-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   Breakpoint: max-width 768px (tablet and mobile)
   Based on Figma mobile design: 390px width
   ======================================== */

@media (max-width: 768px) {
    /* ========================================
       GLOBAL MOBILE OVERRIDES
       ======================================== */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    /* ========================================
       HERO SECTION - MOBILE (Figma: 390x955)
       ======================================== */
    .hero {
        height: auto;
        min-height: 955px;
        width: 100%;
        background-color: var(--primary-green-dark);
        padding-bottom: 40px;
        /* Make .hero the flex container if possible, but .hero-bg wraps content. */
    }

    .hero-bg {
        height: auto;
        min-height: 100%; /* Ensure it covers hero min-height */
        width: 100%;
        position: relative; /* Flow within hero */
        top: auto;
        left: auto;
        z-index: 0;
        display: flex;
        flex-direction: column;
        padding-top: 0; /* Header is absolute, we handle spacing via margins on first item */
    }

    .header {
        padding: 16px;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .nav-links,
    .header .btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    .logo {
        width: 115px;
        height: 24px;
    }

    .hero-content {
        position: relative;
        top: auto;
        margin-top: 40px; /* Gap between images and text */
        left: auto;
        right: auto;
        width: 100%;
        padding: 0 16px;
        gap: 40px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 10;
        order: 2; /* Content after images */
    }

    .hero-title {
        gap: 16px;
        width: 100%;
    }


    .hero-title h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero-title .highlight {
        font-size: 32px;
    }

    .highlight-underline {
        bottom: 8px;
        height: 14px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
        color: var(--neutral-100);
        max-width: 280px;
    }

    /* Hero Form */
    .hero-form {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid #eeeeee;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .hero-input-wrapper {
        width: 100%;
        height: 40px;
    }

    .hero-input {
        padding: 16px 12px;
        font-size: 16px;
        height: 100%;
    }

    .hero-form .btn {
        width: 100%;
        padding: 8px 22px;
        height: 40px;
        border-radius: 8px;
    }

    /* Hero Images - Absolute positioning for mobile */
    .hero-photo-group {
        position: relative;
        left: auto;
        top: auto;
        width: 358px;
        height: 500px;
        margin: 80px auto 0; /* Top margin to clear absolute header */
        z-index: 1;
        display: block;
        order: 1; /* Images first */
    }

    /* 
       Based on Figma:
       Top: Masked Image (358x137)
       Top left: Rectangle 723 (179x102) -> Top 156
       Top right (Tall): Subtract1 (164x254) -> Top 156, Left 194
       Bottom left: Rectangle 725 (179x140) -> Top 277
       Bottom (Masked): Subtract (179x89) -> Top 408
       Ellipse: 141x134 -> Top 362, Left 206
    */

    .hero-masked-img {
        display: block;
        width: 358px;
        height: 137px;
        top: 0;
        left: 0;
        border-radius: 0 68px 0 68px; /* Estimated based on look */
    }

    .photo-card-1 {
        width: 179px;
        height: 102px;
        top: 156px;
        left: 0;
        border-radius: 0;        
    }

    .photo-card-1 img {
        -webkit-transform: scaleX(-1);
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        transform: scaleX(-1);        
    }

    .tall-shape {
        width: 164px;
        height: 254px;
        top: 156px;
        left: 194px;
        border-radius: 0;
    }

    .photo-card-2 {
        width: 179px;
        height: 140px;
        top: 277px;
        left: 0;
        border-radius: 0;
    }

    .photo-card-2 img {
        -webkit-transform: scaleX(-1);
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        transform: scaleX(-1);        
    }

    .ellipse-deco {
        width: 141px;
        height: 134px;
        top: 362px;
        left: 206px;
        border-radius: 0;
        background: none;
    }
    
    .ellipse-deco img {
        border-radius: 0;
    }

    .lime-shape {
        width: 179px;
        height: 89px;
        top: 408px;
        left: 0;
    }

    .hero-shape1 {
        position: absolute;
        top: 0px;
        left: 35%;
        width: 670px;
        height: 600px;
        z-index: 1;
        opacity: 0.9;
    }
    .hero-shape2 {
        position: absolute;
        bottom: -850px;
        left: -400px;
        width: 900px;
        height: 900px;
        pointer-events: none;
        z-index: 1;
        opacity: 0.9;
    }
    .hero-shape3 {
        display: none;
    }

    /* ========================================
       SECTIONS - GENERAL MOBILE
       ======================================== */
    .section {
        padding: 80px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 16px;
    }

    /* ========================================
       HOW IT WORKS
       ======================================== */
    .how-it-works {
        padding: 80px 16px;
        gap: 40px;
    }

    .steps-grid {
        flex-direction: column;
        width: 100%;
        gap: 54px;
    }

    .step-item {
        width: 100%;
        gap: 32px;
    }

    .step-circle {
        width: 64px;
        height: 64px;
        font-size: 32px;
        border-radius: 16px;
    }

    .step-item h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .step-item h3 br {
        display: none;
    }

    .step-item p {
        font-size: 16px;
        color: var(--neutral-500);
    }

    /* ========================================
       STATS SECTION
       ======================================== */
    .stats-section {
        padding: 80px 16px;
        gap: 40px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 0;
    }

    .stat-item {
        padding: 12px 24px;
        width: 100%;
        gap: 8px;
    }
    
    /* Center stats on mobile per visual check, although Figma might say left. 
       Let's check Figma... Figma alignment seems Left for text. 
    */
    .stat-item {
        align-items: flex-start;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stats-deco-1 {
        position: absolute;
        top: -50px;
        left: -758px;
        width: 956px;
        height: 201px;
    }
    .stats-deco-2 {
        position: absolute;
        top: 300px;
        left: 450px;
        width: 120px;
        height: 492px;
        /* top: -50px; */
        /* left: -758px; */
       transform: rotate(61deg);
       transform-origin: top left;
    }

    /* ========================================
       IMAGE GRID
       ======================================== */
    .image-grid-section {
        padding: 80px 16px;
        gap: 24px;
    }

    .image-row {
        flex-direction: column;
        gap: 24px;
    }

    .img-card-large {
        width: 100%;
        height: 312px;
        border-radius: 24px;
    }

    .img-card-text {
        font-size: 24px;
        left: 20px !important;
        bottom: 20px !important;
        width: auto;
    }

    .info-card {
        width: 100%;
        height: 242px;
        padding: 20px;
        border-radius: 24px;
        justify-content: center; /* Check vertical align */
    }

    .info-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .info-card p {
        font-size: 16px;
    }

    /* ========================================
       SOLUTIONS
       ======================================== */
    .solutions-section {
        padding: 80px 16px;
        gap: 32px;
    }

    .solutions-grid {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .solution-card {
        width: 100%;
        height: auto;
        padding: 24px;
        gap: 24px;
    }

    .solution-content h4 {
        font-size: 20px;
    }

    .solutions-deco-1,
    .solutions-deco-2 {
        display: none;
    }

    /* ========================================
       TESTIMONIALS
       ======================================== */
    .testimonials-section {
        padding: 80px 16px;
        height: auto;
        min-height: auto;
        background-color: white;
    }

    .testimonials-bg-shape {
        display: none;
    }
    
    /* Testimonial Carousel - Mobile */
    .testimonial-carousel-wrapper {
        margin-top: 32px;
        overflow: hidden;
    }
    
    .testimonial-carousel {
        gap: 16px;
    }
    
    .testimonial-card {
        width: 300px;
        min-width: 300px;
        padding: 24px;
    }
    
    /* Carousel Controls - Mobile */
    .carousel-controls {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
        align-items: stretch;
    }
    
    .carousel-progress {
        max-width: 100%;
        width: 100%;
        flex: none;
        height: 4px;
    }
    
    .carousel-arrows {
        justify-content: center;
    }

    /* ========================================
       FAQ
       ======================================== */
    .faq-section {
        padding: 80px 16px;
        gap: 40px;
    }
    
    .faq-list {
        gap: 16px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-question h5 {
        font-size: 20px;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
        padding: 24px 16px;
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        width: 100%;
        padding: 0;
    }

    /* Reorder columns: Logo (1), Contact (3), Menu/Sub (2) ? 
       Figma shows: Logo, Divider, Contact, Divider, Menu, Divider, Subscribe, Terms.
    */
    .footer-col-1 { order: 1; }
    .footer-col-3 { order: 2; padding-left: 0; gap: 24px; margin-top: 20px; }
    .footer-col-2 { order: 3; padding: 0; margin-top: 20px; }

    .footer-disclaimer {
        font-size: 12px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-input {
        max-width: 100%;
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
    
    /* Dividers in footer */
    .footer-col-1::after,
    .footer-col-3::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: #88d9a9;
        margin-top: 20px;
    }
    
    .footer-nav::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: #88d9a9;
        margin-top: 20px;
        margin-bottom: 28px;
    }
}
