/* =========================================
   landing.css - Specific to index.html
   ========================================= */

/* --- HERO SECTION --- */
.hero { max-width: 900px; margin: 0 auto; padding: 80px 24px 60px; text-align: center; }
.hero-label { display: inline-block; background: #eff6ff; color: var(--primary); font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 { font-size: clamp(48px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; color: var(--dark); }
.hero p { font-size: clamp(18px, 2vw, 22px); color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }

.social-proof { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stars { color: #fbbf24; font-size: 20px; letter-spacing: 2px; }
.social-proof span { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* --- ZIG-ZAG FEATURE SECTION --- */
.features { padding: 80px 24px; background: var(--bg-light); border-top: 1px solid var(--border); }
.feature-row { max-width: var(--max-width); margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feat-text { order: 2; }
.feature-row.reverse .feat-visual { order: 1; }

.feat-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.feat-text p { font-size: 18px; color: var(--text-muted); margin-bottom: 24px; }

.feat-visual { background: white; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mock-ui { width: 80%; height: 70%; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-light); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* --- THE TRAP (DARK SECTION) --- */
.trap-section { background: var(--dark); color: white; padding: 100px 24px; text-align: center; }
.trap-content { max-width: 800px; margin: 0 auto; }
.trap-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 24px; }
.trap-content p { font-size: 20px; color: #94a3b8; margin-bottom: 40px; line-height: 1.7; }

/* --- MARQUEE --- */
.marquee-container { overflow: hidden; padding: 30px 0; background: white; border-bottom: 1px solid var(--border); white-space: nowrap; display: flex; }
.marquee-content { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-item { font-size: 18px; font-weight: 700; color: var(--dark); padding: 0 40px; display: inline-flex; align-items: center; gap: 12px; }
.marquee-item::after { content: "•"; color: var(--primary); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- USE CASES --- */
.use-cases { padding: 100px 24px; max-width: var(--max-width); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 36px; font-weight: 800; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uc-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: all 0.2s; }
.uc-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1); }
.uc-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.uc-card p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }

/* --- BOTTOM CTA --- */
.bottom-cta { background: #eff6ff; padding: 100px 24px; text-align: center; border-top: 1px solid #dbeafe; }
.bottom-cta h2 { font-size: 48px; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.bottom-cta p { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; }

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feat-text { order: 1; }
  .feature-row.reverse .feat-visual { order: 2; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-large { width: 100%; }
  
  footer { padding: 50px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; margin-bottom: 40px; }
  .footer-grid .footer-col:first-child { grid-column: span 2; margin-bottom: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}