/* --- 1. Variables & Global --- */
:root {
    --primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%); /* Emerald Gradient */
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); /* Amber/Gold Gradient */
    --text-main: #111827;
    --text-soft: #4b5563;
    --bg-soft: #f0fdf4; /* Very light green tint */
    --white: #ffffff;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.about-page-wrapper {
    overflow-x: hidden;
}

/* --- 2. Hero Section (Dark & Vibrant) --- */
.hero-section {
    position: relative;
    background: #022c22; /* Very Dark Green */
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;
}

/* Abstract Background Shapes */
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    background: linear-gradient(to right, #ffffff, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary-glow {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

/* --- 3. Story Section --- */
.story-section {
    padding: 80px 20px;
    background: var(--bg-soft);
}

.story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #064e3b;
}

.story-text p {
    color: var(--text-soft);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    font-weight: 500;
    color: #111827;
    font-size: 1.05rem;
}

/* Visual Card (Glassmorphism) */
.story-visual {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=1000&auto=format&fit=crop') center/cover no-repeat;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.glass-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    animation: float 4s ease-in-out infinite;
}

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

.icon-floating { font-size: 2rem; background: #d1fae5; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.stat-floating span { display: block; font-size: 0.8rem; color: #6b7280; }
.stat-floating strong { display: block; font-size: 1.5rem; color: #059669; }

/* --- 4. Features Section --- */
.features-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 2.2rem; font-weight: 800; color: #111827; margin: 0 0 10px 0; }
.section-header p { font-size: 1.1rem; color: #6b7280; }

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.08);
    border-color: #d1fae5;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

/* Specific Card Colors */
.card-harvest .card-icon-wrapper { background: var(--primary-gradient); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }
.card-activity .card-icon-wrapper { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.card-report .card-icon-wrapper { background: var(--accent-gradient); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3); }

.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px 0; color: #111827; }
.feature-card p { color: #6b7280; line-height: 1.6; margin: 0; }

/* --- 5. Footer --- */
.modern-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-brand h3 { font-size: 1.5rem; font-weight: 800; color: #111827; margin: 0 0 5px 0; }
.footer-brand span { color: #059669; }
.footer-brand p { color: #9ca3af; margin-bottom: 30px; }
.footer-copy { color: #d1d5db; font-size: 0.9rem; }

/* Mobile Tweaks */
@media (max-width: 768px) {
    .gradient-text { font-size: 2.5rem; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .glass-card { left: 50%; transform: translateX(-50%); bottom: -20px; width: 80%; }
    @keyframes float { 0% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } 100% { transform: translateX(-50%) translateY(0); } }
}