/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.kit-name {
    color: #c6f6d5;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 4rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="2" height="2" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sustainability-badge {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: #1a202c;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

.impact-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.lead-magnet-offer {
    background: rgba(255,255,255,0.98);
    color: #2d3748;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
    border: 3px solid #ffd700;
}

.lead-magnet-offer:hover {
    transform: translateY(-5px);
}

.offer-badge {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-magnet-offer h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.email-form input {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.4);
}

.farmer-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 1rem;
    font-style: italic;
}

.promise-icon {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    font-size: 0.9rem;
}

.profit-up {
    top: 15%;
    right: -15%;
    color: #d69e2e;
    animation-delay: 0s;
}

.sustainability {
    bottom: 40%;
    left: -15%;
    color: #38a169;
    animation-delay: 1s;
}

.market-demand {
    top: 60%;
    right: -10%;
    color: #3182ce;
    animation-delay: 2s;
}

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

.trend-icon {
    font-size: 1.2rem;
}

/* Problem/Opportunity Section */
.problem-opportunity {
    padding: 5rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

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

.opportunity-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #38a169;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opportunity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.opportunity-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stat-highlight {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Crops Preview Section */
.crops-preview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 2rem;
}

.crops-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.crop-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #38a169;
}

.crop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.crop-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.crop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.crop-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.profit-indicator {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Social Proof Section */
.social-proof {
    background: white;
    padding: 5rem 2rem;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.testimonial {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #38a169;
}

.farmer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.farmer-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.farmer-details h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.farmer-details span {
    color: #4a5568;
    font-size: 0.9rem;
}

.result-badge {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.testimonial p {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.pricing-card {
    background: white;
    color: #2d3748;
    padding: 3rem;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 3px solid #ffd700;
    text-align: left;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    color: #38a169;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #38a169;
}

.period {
    font-size: 1.2rem;
    color: #4a5568;
}

.value-prop {
    color: #e53e3e;
    font-weight: 600;
    text-decoration: line-through;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.feature-category ul {
    list-style: none;
    padding-left: 1rem;
}

.feature-category li {
    padding: 0.3rem 0;
    position: relative;
    color: #4a5568;
}

.feature-category li::before {
    content: '✓';
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.cta-button.premium {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.button-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: normal;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
}

.template-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568;
}

.template-info small {
    color: #a0aec0;
    font-size: 0.8rem;
}

.disclaimer {
    margin-top: 1rem;
    text-align: center;
}

.disclaimer small {
    color: #6b7280;
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .impact-stats {
        justify-content: center;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .crops-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
    }
    
    .farmer-info {
        flex-wrap: wrap;
    }
    
    .result-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .cta-button {
    background: #a0aec0;
    cursor: not-allowed;
}

/* Animations */
@keyframes growIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.opportunity-card,
.crop-card,
.testimonial {
    animation: growIn 0.6s ease-out;
}

