:root {
    --color-primary: #2e7d32;
    --color-primary-light: #66bb6a;
    --color-primary-dark: #1b5e20;
    --color-accent: #ff9800;
    --color-accent-light: #ffb74d;
    --color-water: #4fc3f7;
    --color-fruit: #ff7043;
    --color-leaf: #81c784;
    --color-bg: #faf8f5;
    --color-bg-warm: #f5f0e8;
    --color-text: #2c3e2d;
    --color-text-light: #5a6b5c;
    --color-white: #ffffff;
    --font-main: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== ORGANIC BLOBS (Floating Background) ========== */
.blob {
    position: fixed;
    border-radius: var(--radius-blob);
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-leaf), transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-light), transparent 70%);
    bottom: 10%;
    left: -150px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-water), transparent 70%);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-fruit), transparent 70%);
    bottom: -50px;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { transform: translate(30px, -30px) scale(1.05); border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
    50% { transform: translate(-20px, 20px) scale(0.95); border-radius: 30% 70% 40% 60% / 70% 40% 60% 30%; }
    75% { transform: translate(15px, 15px) scale(1.02); border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%; }
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    transition: all 0.4s var(--transition-smooth);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
}

.nav-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 64px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-organic {
    display: inline-block;
    color: var(--color-primary);
    position: relative;
}

.text-organic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 30%;
    background: rgba(129, 199, 132, 0.25);
    border-radius: 50%;
    z-index: -1;
    animation: organicUnderline 4s ease-in-out infinite;
}

@keyframes organicUnderline {
    0%, 100% { transform: scaleX(1) scaleY(1); border-radius: 50%; }
    50% { transform: scaleX(1.05) scaleY(0.9); border-radius: 40% 60% 55% 45%; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(46, 125, 50, 0.05);
    transform: translateY(-3px);
}

/* Hero Visual - Food Orbit */
.hero-visual {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
}

.food-orbit {
    width: 100%;
    height: 100%;
    position: relative;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
}

.center-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-leaf));
    border-radius: var(--radius-blob);
    animation: centerBreathe 6s ease-in-out infinite;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    z-index: 3;
}

@keyframes centerBreathe {
    0%, 100% { transform: scale(1); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { transform: scale(1.08); border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: orbitRotate 20s linear infinite;
}

.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-2 { top: 15%; right: 0; animation-delay: -3.3s; }
.orbit-3 { bottom: 15%; right: 0; animation-delay: -6.6s; }
.orbit-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -10s; }
.orbit-5 { bottom: 15%; left: 0; animation-delay: -13.3s; }
.orbit-6 { top: 15%; left: 0; animation-delay: -16.6s; }

@keyframes orbitRotate {
    0% { transform: translateX(-50%) rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg) translateX(180px) rotate(-360deg); }
}

.orbit-2, .orbit-3, .orbit-5, .orbit-6 {
    animation-name: orbitRotateAlt;
}

@keyframes orbitRotateAlt {
    0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

/* ========== SECTIONS COMMON ========== */
section {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(46, 125, 50, 0.08);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

/* ========== FEATURES ========== */
.features {
    background: var(--color-bg-warm);
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    padding-top: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-blob {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.5s var(--transition-smooth);
}

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

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--color-bg);
    padding-bottom: 100px;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 0;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.step-content p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.step-visual {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    position: relative;
}

.step-blob {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-blob);
    opacity: 0.6;
    animation: stepBreathe 5s ease-in-out infinite;
}

.step-blob-1 { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
.step-blob-2 { background: linear-gradient(135deg, #fff3e0, #ffcc80); animation-delay: -1.6s; }
.step-blob-3 { background: linear-gradient(135deg, #e3f2fd, #90caf9); animation-delay: -3.3s; }

@keyframes stepBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.step-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary-light), transparent);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.4;
}

/* ========== STATS ========== */
.stats {
    position: relative;
    padding: 100px 32px;
    overflow: hidden;
}

.stats-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03), rgba(255, 152, 0, 0.03));
    border-radius: 40px;
    margin: 0 32px;
}

.stats-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-blob {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.25);
    animation: statBlob 8s ease-in-out infinite;
}

@keyframes statBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
    50% { border-radius: 30% 70% 40% 60% / 70% 40% 60% 30%; }
    75% { border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%; }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== CTA ========== */
.cta {
    position: relative;
    padding: 100px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08), transparent 70%);
    border-radius: var(--radius-blob);
    filter: blur(40px);
    animation: ctaBlobPulse 8s ease-in-out infinite;
}

@keyframes ctaBlobPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.35);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(46, 125, 50, 0.45);
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    background: var(--color-bg-warm);
    padding: 60px 32px 32px;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    font-weight: 800;
    border-radius: 50%;
    font-size: 0.9rem;
}

.footer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.footer-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.7;
}

/* ========== REVEAL ANIMATIONS ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 32px 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        flex: 0 0 300px;
        height: 300px;
        width: 100%;
    }
    
    .orbit-center {
        width: 100px;
        height: 100px;
    }
    
    .orbit-item {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    @keyframes orbitRotate {
        0% { transform: translateX(-50%) rotate(0deg) translateX(130px) rotate(0deg); }
        100% { transform: translateX(-50%) rotate(360deg) translateX(130px) rotate(-360deg); }
    }
    
    @keyframes orbitRotateAlt {
        0% { transform: rotate(0deg) translateX(130px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(130px) rotate(-360deg); }
    }
    
    .step {
        flex-direction: column !important;
        text-align: center;
        gap: 24px;
    }
    
    .step-visual {
        width: 120px;
        height: 120px;
    }
    
    .stats-content {
        gap: 32px;
    }
    
    .stat-blob {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 12px 20px;
    }
    
    .nav-name {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        flex: 0 0 250px;
        height: 250px;
    }
    
    @keyframes orbitRotate {
        0% { transform: translateX(-50%) rotate(0deg) translateX(100px) rotate(0deg); }
        100% { transform: translateX(-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    
    @keyframes orbitRotateAlt {
        0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    
    section {
        padding: 60px 20px;
    }
    
    .features {
        border-radius: 24px 24px 0 0;
        padding-top: 80px;
    }
    
    .feature-card {
        padding: 28px 20px;
    }
    
    .cta-blob {
        width: 300px;
        height: 300px;
    }
    
    .blob {
        opacity: 0.2;
        filter: blur(60px);
    }
}
