:root {
    --primary: #2C5F2D;
    --primary-light: #97BC62;
    --secondary: #FF6B35;
    --dark: #1A1A1A;
    --gray: #4A4A4A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.serif {
    font-family: 'DM Serif Display', serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.features {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.pricing {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f8fff9 0%, var(--white) 100%);
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.price-detail {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .nav-links {
        display: none;
    }
}


.btn-signup:hover {
    background-color: #1a2e0a !important;
}






.nav-links {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.nav-links a {
    white-space: nowrap !important;
    font-size: 0.95rem;
}



.nav-container {
    height: 100%;
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 70px;
}


/* Prevent navbar vertical shift - use exact positioning */
#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}


    padding-top: 70px !important;
}

/* ========================================
   NAVBAR - UNIFIED STYLES (DO NOT DUPLICATE)
   ======================================== */

/* Fixed navbar */
#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
}

/* Container */
.nav-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
}

/* Logo */
.logo {
    white-space: nowrap !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

/* Nav links container */
.nav-links {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
}

.nav-links a {
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    color: var(--gray) !important;
    font-weight: 500 !important;
    transition: color 0.3s !important;
}

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

/* Sign up button */
.btn-signup {
    background-color: #2d5016 !important;
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 4px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    min-width: 90px !important;
    text-align: center !important;
    font-weight: 500 !important;
}

.btn-signup:hover {
    background-color: #1a2e0a !important;
    color: white !important;
}

/* Body padding for fixed navbar */
body {
    padding-top: 70px !important;
}

/* ======================================== */

/* ========================================
   NAVBAR - UNIFIED STYLES (DO NOT DUPLICATE)
   ======================================== */

/* Fixed navbar */
#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
}

/* Container */
.nav-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
}

/* Logo */
.logo {
    white-space: nowrap !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

/* Nav links container */
.nav-links {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
}

.nav-links a {
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    color: var(--gray) !important;
    font-weight: 500 !important;
    transition: color 0.3s !important;
}

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

/* Sign up button */
.btn-signup {
    background-color: #2d5016 !important;
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 4px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    min-width: 90px !important;
    text-align: center !important;
    font-weight: 500 !important;
}

.btn-signup:hover {
    background-color: #1a2e0a !important;
    color: white !important;
}

/* Body padding for fixed navbar */
body {
    padding-top: 70px !important;
}

/* ======================================== */
