/* ============================================================
   Focuva Landing Page — Zapier Design System (Modern)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #201515;
  background: #fffefb;
  line-height: 1.6;
}

a {
  color: #ff4f00;
  text-decoration: underline;
}

a:hover {
  color: #e64700;
}

/* ---- Nav Bar ---- */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 192, 177, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 32px;
  width: auto;
}

.nav-name {
  font-size: 20px;
  font-weight: 700;
  color: #201515;
  letter-spacing: -0.5px;
}

.nav-cta {
  background: #201515;
  color: #fffefb;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.nav-cta:hover {
  background: #2f2a26;
  color: #fffefb;
  text-decoration: none;
}

/* ---- Hero ---- */
.hero {
  padding: 80px 24px 64px;
  background: #fffefb;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ff4f00;
}

.hero h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #201515;
}

.hero .tagline {
  font-size: 20px;
  color: #605d52;
  line-height: 30px;
  letter-spacing: -0.2px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  background: #ff4f00;
  color: #fffefb;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.15s;
  text-decoration: none;
}

.cta-btn:hover {
  background: #e64700;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fffefb;
}

.cta-btn-secondary {
  display: inline-block;
  background: #fffefb;
  color: #201515;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #201515;
  transition: all 0.15s;
  text-decoration: none;
}

.cta-btn-secondary:hover {
  background: #201515;
  color: #fffefb;
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #939084;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ---- Section ---- */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ff4f00;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  color: #201515;
  letter-spacing: 0;
  line-height: 48px;
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.15s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card:nth-child(1) { background: #ff4f00; color: #fffefb; }
.feature-card:nth-child(2) { background: #201515; color: #fffefb; }
.feature-card:nth-child(3) { background: #f8f4f0; color: #201515; }
.feature-card:nth-child(4) { background: #f8f4f0; color: #201515; }
.feature-card:nth-child(5) { background: #201515; color: #fffefb; }
.feature-card:nth-child(6) { background: #ff4f00; color: #fffefb; }

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: inherit;
  letter-spacing: -0.5px;
}

.feature-card p {
  font-size: 16px;
  color: inherit;
  opacity: 0.8;
  line-height: 24px;
}

/* ---- Privacy Section ---- */
.privacy-section {
  background: #f8f4f0;
}

.privacy-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.privacy-inner h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #201515;
  letter-spacing: 0;
  line-height: 48px;
}

.privacy-inner p {
  font-size: 18px;
  color: #605d52;
  max-width: 600px;
  margin: 0 auto;
  line-height: 27px;
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #201515;
  letter-spacing: 0;
  line-height: 44px;
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 48px 24px;
  font-size: 16px;
  background: #201515;
}

.footer p {
  color: rgba(248, 244, 240, 0.6);
}

.footer a {
  color: #ff4f00;
  font-weight: 600;
}

.footer-credit {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(248, 244, 240, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero .tagline {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero .tagline {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-illustration {
    max-width: 360px;
  }

  .section h2,
  .privacy-inner h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .cta-section h2 {
    font-size: 28px;
    line-height: 32px;
  }

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

  .hero,
  .section,
  .privacy-inner,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
