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

:root {
    --primary-green: #2D5016;
    --secondary-green: #4A7C25;
    --accent-green: #5FA832;
    --light-green: #E8F5E0;
    --white: #FFFFFF;
    --off-white: #F9F7F4;
    --charcoal: #2C2C2C;
    --gray-light: #E5E5E5;
    --gray-medium: #999999;
    --text-dark: #1A1A1A;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 37, 0.3);
}

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

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.2);
}

.hero-image-placeholder img.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Removed blockchain-visual animation as we're using real image */

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: var(--white);
}

.problem-section h2 {
    color: var(--charcoal);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.problem-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-green);
    box-shadow: 0 8px 20px rgba(74, 124, 37, 0.15);
}

.problem-icon {
    margin-bottom: 1rem;
    color: var(--secondary-green);
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

.problem-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.problem-closing {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-green);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--secondary-green);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

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

.feature-card p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234A7C25' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

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

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--charcoal);
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.technology-section h2 {
    color: var(--white);
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.pillar {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.pillar h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.pillar ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pillar li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pillar li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-green);
}

.badge {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.tech-stack {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--light-green);
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: left;
}

.pricing-table thead {
    background-color: var(--primary-green);
    color: var(--white);
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table .highlight {
    background-color: #E8F5E0;
    color: var(--primary-green);
    font-weight: 600;
}

.pricing-box {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-box .small {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--light-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    margin-bottom: 1rem;
    color: var(--secondary-green);
}

.testimonial-avatar svg {
    width: 64px;
    height: 64px;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-details {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--light-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--charcoal);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

.cta-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    color: var(--charcoal);
}

.cta-form h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form input,
.cta-form select {
    padding: 14px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-label input {
    width: auto;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.cta-actions h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-actions .btn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-actions .btn:hover {
    background-color: var(--white);
    color: var(--secondary-green);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-company {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: var(--light-green);
}

.footer-col h4 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Success Message Styling */
.success-message {
    text-align: center;
    padding: 40px;
    background-color: #E8F5E0;
    border-radius: 12px;
}

.success-message h3 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

/* Skip to Content Link (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Loading State */
.btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 18pt; }
    h3 { font-size: 14pt; }
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .problem-grid,
    .features-grid,
    .trust-pillars,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

    .problem-section,
    .solution-section,
    .how-it-works,
    .technology-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.25rem;
    }


}
