:root {
    --primary-color: #2D4A22;      /* Deep forest green */
    --primary-light: #4A7A38;      /* Leaf green */
    --accent-color: #E27D60;       /* Earthy terracotta */
    --bg-color: #F8F5F0;           /* Soft off-white, warm */
    --text-dark: #1A2615;          /* Very dark green-black for text */
    --text-light: #5A6357;         /* Soft grey-green for secondary text */
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Utilities */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 74, 34, 0.2);
}

.secondary-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 74, 34, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.leaf-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 8px;
}

.highlight {
    color: var(--accent-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-cta {
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 5% 60px;
    gap: 40px;
}

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

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.italic {
    font-style: italic;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    color: var(--primary-light);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px 100px 20px 100px;
    box-shadow: 0 20px 40px rgba(45, 74, 34, 0.15);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 250px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.small-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 10px;
}

.author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Services */
.services {
    padding: 100px 5%;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(45, 74, 34, 0.1);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 74, 34, 0.1);
}

.card.premium {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.card.premium:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 74, 34, 0.2);
}

.card.premium p {
    color: rgba(255,255,255,0.8);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.card ul li::before {
    content: "🌱";
    position: absolute;
    left: 0;
    top: 0;
}

.card-btn {
    display: block;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.card-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.premium-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.premium-btn:hover {
    background: var(--white);
    color: var(--accent-color);
    border-color: var(--white);
}

.other-services {
    text-align: center;
}

.other-services h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.pill-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(74, 122, 56, 0.1);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background: var(--bg-color);
}

.hiw-content {
    flex: 1;
}

.hiw-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.step-text p {
    color: var(--text-light);
}

.hiw-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hiw-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.testimonials h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.user {
    display: flex;
    flex-direction: column;
}

.user strong {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.user span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Blog Section */
.blog {
    padding: 100px 5%;
    background: var(--white);
}

.blog-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: var(--transition);
    border: 1px solid rgba(45, 74, 34, 0.1);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(45, 74, 34, 0.1);
}

.post-content {
    padding: 30px;
}

.category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.blog-post h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.brand h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.brand p {
    color: rgba(255,255,255,0.6);
}

.contact-info h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .trust-badges {
        justify-content: center;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        animation: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .how-it-works {
        flex-direction: column-reverse;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 3%;
    }
    .logo {
        font-size: 1.15rem;
    }
    .leaf-icon {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
