.home-hero {
    font-family: 'Syne', sans-serif;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1f0f 0%, #1a2f1a 40%, #0d1f0d 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    font-family: 'DM Sans', sans-serif;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
    transition: all 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(34, 197, 94, 0.45);
    color: #fff;
}

.hero-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Floating cards */
.hero-float {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    padding-right: 4%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.float-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatIn 0.8s ease-out both;
}

.float-card:nth-child(1) {
    animation-delay: 0.1s;
}

.float-card:nth-child(2) {
    animation-delay: 0.25s;
}

.float-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.float-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.float-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.float-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

/* Products Section */
.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.product-card-img {
    height: 200px;
    background: linear-gradient(135deg, #f8faf8, #f0f7f0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(22, 163, 74, 0.9);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Why us section */
.why-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #f0faf2 100%);
    border-top: 1px solid #e8f5e8;
    border-bottom: 1px solid #e8f5e8;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e5f0e5;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(22, 163, 74, 0.12);
    border-color: #bbf7d0;
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
}

.why-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.why-card p {
    font-family: 'DM Sans', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* CTA bottom */
.cta-bottom {
    background: linear-gradient(135deg, #0f1f0f 0%, #1a3a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}

.cta-bottom-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Stats bar */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #16a34a;
    line-height: 1;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: #9ca3af;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero-float {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}