cd /var/POAi/CrewAiFlow/cf2/apps/bdcrops

cat > css/style.css << 'CSSEOF'
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-light: #f0fdf4;
    --dark: #1a1a1a;
    --gray: #64748b;
    --gray-light: #e5e5e5;
    --bg-light: #f8fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-light); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--green); }
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--gray); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.btn-outline { padding: 0.5rem 1rem; border: 1px solid var(--gray-light); border-radius: 8px; color: var(--gray); font-weight: 500; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-primary { padding: 0.75rem 1.5rem; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; border: none; border-radius: 8px; font-weight: 600; box-shadow: 0 2px 8px rgba(34,197,94,0.2); transition: all 0.2s; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(34,197,94,0.3); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }

.hero { background: linear-gradient(135deg, var(--green-light) 0%, #dcfce7 100%); padding: 8rem 2rem 6rem; margin-top: 70px; }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--dark), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.2rem; color: var(--gray); margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-video { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; max-width: 560px; }

.features, .demos, .how, .audience, .problem, .cta-section { padding: 6rem 2rem; }
.problem { background: #fff7ed; }
.features { background: #fff; }
.demos { background: var(--bg-light); }
.how { background: #fff; }
.audience { background: var(--bg-light); }

.features-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 2.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.section-subtitle { font-size: 1.2rem; color: var(--gray); max-width: 720px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.feature-card { background: #fff; border: 1px solid var(--gray-light); border-radius: 12px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark)); transform: scaleX(0); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray); }

.demos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.demo-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s; }
.demo-card:hover { transform: translateY(-4px); }
.demo-card img { width: 100%; height: 220px; object-fit: cover; }
.demo-caption { padding: 1.25rem; }
.demo-caption h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.demo-caption p { color: var(--gray); font-size: 0.95rem; }
.demo-caption span { color: var(--green); font-weight: 600; font-size: 0.85rem; }

.demo-video-wrap { background: #000; border-radius: 16px; padding: 1rem; max-width: 900px; margin: 3rem auto 0; }
.demo-video-wrap h3 { color: #fff; text-align: center; padding: 1rem 0; font-size: 1.3rem; }
.demo-video-wrap video { width: 100%; border-radius: 8px; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card { text-align: center; padding: 2rem 1rem; }
.step-num { width: 56px; height: 56px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1rem; }
.step-card h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--gray); font-size: 0.95rem; }

.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.audience-card { background: #fff; border-radius: 12px; padding: 1.75rem; text-align: center; font-size: 2.5rem; border: 1px solid var(--gray-light); }
.audience-card h4 { font-size: 1.15rem; margin: 0.75rem 0 0.5rem; color: var(--dark); }
.audience-card p { font-size: 0.95rem; color: var(--gray); }

.stats { background: linear-gradient(135deg, var(--green), var(--green-dark)); padding: 4rem 2rem; color: #fff; }
.stats-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.stat-item p { font-size: 1rem; opacity: 0.95; }

.cta-section { background: var(--bg-light); }
.cta-container { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-container h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 1rem; }
.cta-container p { font-size: 1.15rem; color: var(--gray); margin-bottom: 2rem; }

.pilot-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pilot-form input, .pilot-form textarea { padding: 0.85rem 1rem; border: 1px solid var(--gray-light); border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color 0.2s; }
.pilot-form input:focus, .pilot-form textarea:focus { outline: none; border-color: var(--green); }
.pilot-form button { margin-top: 0.5rem; }
.form-note { margin-top: 1rem; font-size: 0.9rem; color: var(--gray); }

.footer { background: var(--dark); color: #fff; padding: 4rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.footer-section h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; color: var(--green); }
.footer-section p, .footer-section a { color: #94a3b8; display: block; margin-bottom: 0.5rem; transition: color 0.2s; font-size: 0.95rem; }
.footer-section a:hover { color: var(--green); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #333; text-align: center; color: #94a3b8; font-size: 0.9rem; }
.footer-bottom p { margin-bottom: 0.3rem; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero { padding: 6rem 1.5rem 4rem; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-cta { justify-content: center; }
    .features, .demos, .how, .audience, .cta-section { padding: 4rem 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .nav-cta .btn-outline { display: none; }
}

@media (max-width: 500px) {
    .hero-content h1 { font-size: 1.8rem; }
    .stat-item h3 { font-size: 2rem; }
    .features-grid, .demos-grid, .audience-grid { grid-template-columns: 1fr; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeUp 0.7s ease forwards; }
CSSEOF

echo "✅ style.css created ($(wc -l < css/style.css) lines)"
ls -lh css/

/* ============ BANNER SLIDER ============ */
.banner-slider {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 16 / 10;
    background: #f0fdf4;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.dot.active {
    background: var(--green);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--green-light);
}
