 /* ---------- RESET & BASE ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1e4d2b;
            --primary-light: #2e7d3a;
            --primary-dark: #0f2f1a;
            --accent: #0da321;
            --accent-light: #e3d2a8;
            --cream: #f8f5ed;
            --white: #ffffff;
            --gray: #6b7a6f;
            --light-gray: #eaece8;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
            --radius: 20px;
            --radius-sm: 10px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream);
            color: #1e2a21;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-pad {
            padding: 80px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(13, 163, 33, 0.12);
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.8rem;
            line-height: 1.15;
            color: var(--primary-dark);
            margin-bottom: 18px;
        }

        .section-title span {
            color: var(--accent);
        }

        .section-sub {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 580px;
            line-height: 1.7;
        }

        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(30, 77, 43, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(30, 77, 43, 0.4);
            background: var(--primary-light);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            box-shadow: none;
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 8px 28px rgba(30, 77, 43, 0.3);
        }
        .btn-accent {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(13, 163, 33, 0.35);
        }
        .btn-accent:hover {
            background: #0b8a1c;
            box-shadow: 0 8px 28px rgba(13, 163, 33, 0.45);
            transform: translateY(-3px);
        }

        /* ---------- HEADER / NAV ---------- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            padding: 10px 0;
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo img {
            height: 56px;
            width: auto;
            object-fit: contain;
        }
        .logo-icon {
            width: 46px;
            height: 46px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(30, 77, 43, 0.2);
            flex-shrink: 0;
        }
        .logo-text {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .logo-text small {
            display: block;
            font-weight: 400;
            font-size: 0.65rem;
            letter-spacing: 1.5px;
            color: var(--gray);
            text-transform: uppercase;
        }
        .logo-text span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--primary-dark);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a:hover {
            color: var(--primary-light);
        }

        .nav-cta {
            padding: 10px 26px;
            border-radius: 60px;
            background: var(--primary);
            color: var(--white) !important;
            font-weight: 600;
            transition: var(--transition);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 77, 43, 0.3);
            color: var(--white) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }
        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: var(--primary-dark);
            border-radius: 4px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ---------- HERO ---------- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background: linear-gradient(165deg, #f8f5ed 0%, #eef0e9 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(13, 163, 33, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 77, 43, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30, 77, 43, 0.08);
            padding: 6px 18px 6px 12px;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .hero-content .badge .dot {
            width: 8px;
            height: 8px;
            background: #4caf50;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 3.8rem;
            line-height: 1.08;
            color: var(--primary-dark);
            margin-bottom: 18px;
        }
        .hero-content h1 span {
            color: var(--accent);
            position: relative;
        }
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(13, 163, 33, 0.2);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        .hero-stats .stat h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            font-weight: 700;
        }
        .hero-stats .stat p {
            font-size: 0.85rem;
            color: var(--gray);
            margin: 0;
            font-weight: 500;
        }

        .hero-image {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .hero-image .img-wrapper {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1/1;
            background: linear-gradient(145deg, #e8ebe4, #d6dcd0);
            border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 80px rgba(30, 77, 43, 0.12);
            position: relative;
            overflow: hidden;
        }
        .hero-image .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .hero-image .img-wrapper .plant-icon {
            font-size: 10rem;
            opacity: 0.5;
            filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.06));
        }
        .hero-image .img-wrapper .floating-tag {
            position: absolute;
            background: var(--white);
            padding: 10px 18px;
            border-radius: 60px;
            box-shadow: var(--shadow);
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: float 6s ease-in-out infinite;
        }
        .hero-image .img-wrapper .floating-tag:nth-child(2) {
            top: 8%;
            right: -4%;
            animation-delay: 0s;
        }
        .hero-image .img-wrapper .floating-tag:nth-child(3) {
            bottom: 16%;
            left: -8%;
            animation-delay: 2s;
        }
        .hero-image .img-wrapper .floating-tag:nth-child(4) {
            bottom: 6%;
            right: -2%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        /* Small image preview cards */
        .hero-image .preview-cards {
            display: flex;
            gap: 16px;
            width: 100%;
            max-width: 480px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-image .preview-cards .card {
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-dark);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .hero-image .preview-cards .card img {
            width: 32px;
            height: 32px;
            object-fit: cover;
            border-radius: 6px;
        }
        .hero-image .preview-cards .card span {
            white-space: nowrap;
        }

        /* ---------- ABOUT / GRAMIN SATHI ---------- */
        .about {
            background: var(--white);
        }
        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .about-image {
            background: linear-gradient(145deg, #eef0e9, #e2e7dd);
            border-radius: var(--radius);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-image .about-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: var(--primary-dark);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .about-content .section-title {
            font-size: 2.4rem;
        }
        .about-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }
        .about-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--primary-dark);
        }
        .about-features li .check {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* ---------- PRODUCTS SECTION ---------- */
        .products {
            background: var(--cream);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .product-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px 28px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .product-card .product-img {
            width: 100%;
            max-width: 200px;
            aspect-ratio: 1/1;
            border-radius: var(--radius-sm);
            overflow: hidden;
            margin-bottom: 16px;
            background: #f0f2ee;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-card .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }
        .product-card .product-sub {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .product-card p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 10px;
            flex: 1;
        }
        .product-card .product-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
            background: var(--primary);
            padding: 4px 14px;
            border-radius: 50px;
            margin-top: 4px;
        }
        .product-card .product-tag.green {
            background: var(--accent);
        }
        .product-card .product-tag.gold {
            background: #c8a86e;
            color: var(--primary-dark);
        }

        /* ---------- SOCIAL INITIATIVES ---------- */
        .social {
            background: var(--white);
        }
        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .social-card {
            background: var(--cream);
            padding: 32px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid transparent;
            text-align: center;
        }
        .social-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .social-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 12px;
            display: block;
            border: 3px solid var(--accent-light);
        }
        .social-card .icon {
            font-size: 3rem;
            margin-bottom: 12px;
            display: block;
        }
        .social-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }
        .social-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ---------- LOCATIONS ---------- */
        .locations {
            background: var(--cream);
        }
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .location-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 28px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            text-align: center;
        }
        .location-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .location-card .icon {
            font-size: 3rem;
            margin-bottom: 12px;
            display: block;
        }
        .location-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 6px;
        }
        .location-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .location-card .tag {
            display: inline-block;
            margin-top: 14px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            background: rgba(13, 163, 33, 0.10);
            padding: 4px 16px;
            border-radius: 50px;
        }

        /* ---------- HEALTH CARD SHOWCASE ---------- */
        .healthcard-showcase {
            background: var(--white);
            padding: 60px 0;
        }
        .healthcard-showcase .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            justify-content: center;
        }
        .healthcard-showcase .card-image {
            flex: 0 0 320px;
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            overflow: hidden;
            background: #f0f2ee;
        }
        .healthcard-showcase .card-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .healthcard-showcase .card-info {
            flex: 1;
            min-width: 280px;
        }
        .healthcard-showcase .card-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }
        .healthcard-showcase .card-info h2 span {
            color: var(--accent);
        }
        .healthcard-showcase .card-info p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .healthcard-showcase .card-info .highlight {
            background: rgba(13, 163, 33, 0.08);
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--accent);
            font-weight: 500;
        }

        /* ---------- PROGRAM / IMPACT ---------- */
        .program {
            background: var(--cream);
        }
        .program-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .program-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: var(--transition);
            border: 1px solid transparent;
            box-shadow: var(--shadow);
        }
        .program-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .program-card .step {
            font-size: 2.6rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: var(--accent);
            opacity: 0.6;
            line-height: 1;
            margin-bottom: 6px;
        }
        .program-card h4 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }
        .program-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ---------- IMPACT ---------- */
        .impact {
            background: var(--primary-dark);
            color: var(--white);
            padding: 70px 0;
        }
        .impact .section-title {
            color: var(--white);
        }
        .impact .section-sub {
            color: rgba(255, 255, 255, 0.7);
        }
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .impact-item {
            text-align: center;
            padding: 24px 16px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition);
        }
        .impact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.02);
        }
        .impact-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: var(--accent);
            font-weight: 700;
        }
        .impact-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 4px;
        }

        /* ---------- CTA ---------- */
        .cta-section {
            background: linear-gradient(145deg, #f8f5ed, #eef0e9);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section .section-title {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .section-sub {
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 32px;
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        /* ---------- FOOTER ---------- */
        footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 24px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        footer h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
        }
        footer .footer-brand .logo-text {
            color: var(--white);
        }
        footer .footer-brand .logo-text small {
            color: rgba(255, 255, 255, 0.5);
        }
        footer .footer-brand img {
            max-height: 70px;
            width: auto;
            border-radius: 12px;
            margin-bottom: 8px;
        }
        footer .footer-brand p {
            margin-top: 12px;
            font-size: 0.9rem;
            max-width: 280px;
            line-height: 1.7;
        }
        footer ul li {
            margin-bottom: 8px;
        }
        footer ul li a {
            font-size: 0.9rem;
            transition: var(--transition);
        }
        footer ul li a:hover {
            color: var(--accent);
        }
        footer .socials {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }
        footer .socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        footer .socials a:hover {
            background: var(--accent);
            color: var(--primary-dark);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.6;
        }
        .footer-bottom span {
            color: var(--accent);
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-image .img-wrapper {
                max-width: 400px;
            }
            .hero-content h1 {
                font-size: 3rem;
            }
            .about .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-features {
                justify-items: center;
            }
            .about-content .section-sub {
                margin-left: auto;
                margin-right: auto;
            }
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .program-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .healthcard-showcase .container {
                flex-direction: column;
                text-align: center;
            }
            .healthcard-showcase .card-info {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 80px 32px 32px;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.06);
                transition: var(--transition);
                gap: 20px;
                align-items: flex-start;
            }
            .nav-links.open {
                right: 0;
            }
            .hamburger {
                display: flex;
                z-index: 1001;
            }
            .nav-cta {
                width: 100%;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }
            .hero-image .img-wrapper {
                max-width: 300px;
            }
            .hero-image .img-wrapper .plant-icon {
                font-size: 6rem;
            }
            .hero-image .img-wrapper .floating-tag {
                font-size: 0.65rem;
                padding: 6px 12px;
            }
            .hero-image .img-wrapper .floating-tag:nth-child(2) {
                top: 2%;
                right: -2%;
            }
            .hero-image .img-wrapper .floating-tag:nth-child(3) {
                bottom: 10%;
                left: -6%;
            }
            .hero-image .img-wrapper .floating-tag:nth-child(4) {
                display: none;
            }
            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }
            .hero-image .preview-cards .card {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
            .hero-image .preview-cards .card img {
                width: 24px;
                height: 24px;
            }

            .section-title {
                font-size: 2rem;
            }
            .locations-grid {
                grid-template-columns: 1fr;
            }
            .program-grid {
                grid-template-columns: 1fr;
            }
            .impact-grid {
                grid-template-columns: 1fr 1fr;
            }
            .social-grid {
                grid-template-columns: 1fr;
            }
            .products-grid {
                grid-template-columns: 1fr 1fr;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .about-image .about-badge {
                font-size: 0.75rem;
                padding: 8px 16px;
                bottom: 16px;
                left: 16px;
            }
            .healthcard-showcase .card-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 320px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }
            .impact-grid {
                grid-template-columns: 1fr;
            }
            .impact-item h3 {
                font-size: 2rem;
            }
            .section-pad {
                padding: 56px 0;
            }
            .social-grid {
                grid-template-columns: 1fr;
            }
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ---------- ANIMATIONS ---------- */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 {
            transition-delay: 0.1s;
        }
        .delay-2 {
            transition-delay: 0.2s;
        }
        .delay-3 {
            transition-delay: 0.3s;
        }
        .delay-4 {
            transition-delay: 0.4s;
        }