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

        :root {
            --primary: #4a7c59;
            --primary-dark: #3a5f45;
            --accent: #e8a87c;
            --text-dark: #1a1a1a;
            --text-light: #f5f5f5;
            --bg-light: #fafaf8;
            --bg-cream: #f5f3ed;
        }

        body {
            font-family: 'Darker Grotesque', -apple-system, sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(232, 168, 124, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3rem, 8vw, 7rem);
            color: var(--text-light);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        .hero h1 em, h2 .em {
            font-style: italic;
            color: var(--accent);
        }
        .hero .logo {
					width: 50%;
					max-width: 15em;
					display: block;
					margin-right: auto;
					margin-left: auto;
				}
        .hero .hi {
					width: 80%;
					max-width: 30em;
					display: block;
					transform: rotate(-5deg);
					margin-right: auto;
					margin-left: auto;
					margin-bottom: 1em;
				}

        .hero p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: rgba(255, 255, 255, 0.85);
            max-width: 650px;
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-family: 'Darker Grotesque', sans-serif;
            letter-spacing: 0.3px;
        }

        .btn-primary {
            background: var(--text-light);
            color: var(--primary-dark);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Features Section */
        .features {
            padding: 8rem 2rem;
            background: var(--bg-cream);
        }

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

        .feature-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .feature-card p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            padding: 8rem 2rem;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .section-title p {
            font-size: 1.3rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps {
            max-width: 900px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            gap: 2rem;
            margin-bottom: 4rem;
            align-items: flex-start;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }

        .step-number {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .step-content h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .step-content p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.7;
        }

        /* CTA Section */
        .final-cta {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 30% 20%, rgba(232, 168, 124, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .final-cta p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1.5rem;
            }

            .cta-group {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .features {
                padding: 4rem 1.5rem;
            }

            .how-it-works {
                padding: 4rem 1.5rem;
            }

            .step {
                flex-direction: column;
            }

            .final-cta {
                padding: 4rem 1.5rem;
            }
        }