/* Firooze marketing site shared stylesheet.
   Matches the app's turquoise + warm-cream palette so users hitting
   the web first feel continuity when they install the app. */

:root {
  --teal:        #2D9098;
  --teal-dark:   #1B6E76;
  --teal-light:  #C8F5F8;
  --cream:       #FBF3ED;
  --cream-dark:  #E7CDBA;
  --text:        #1A2A2C;
  --text-muted:  #6B7775;
  --border:      #E5DAD0;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; display: block; }

/* ── Header ── */
.site-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.nav a {
  margin-left: 24px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

/* ── Hero ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-copy h1 .accent { color: var(--teal); }
.hero-copy p.lead {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease;
}
.badge:hover {
  transform: translateY(-2px);
  color: #fff;
}
.badge.disabled {
  background: var(--cream-dark);
  color: var(--text-muted);
  pointer-events: none;
}
.badge .small { font-size: 11px; opacity: 0.8; display: block; line-height: 1.2; }
.badge .big { font-size: 17px; font-weight: 700; line-height: 1.2; }
.badge svg { width: 28px; height: 28px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(45, 144, 152, 0.25);
}

/* ── Value props ── */
.values {
  background: #fff;
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.values h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value-card {
  text-align: left;
}
.value-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.value-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ── How it works ── */
.how {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.how h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 60px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-step {
  text-align: center;
}
.how-step .num {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ── CTA strip ── */
.cta-strip {
  background: var(--teal);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
}
.cta-strip h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.cta-strip p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
}
.cta-strip .badges { justify-content: center; }
.cta-strip .badge {
  background: #fff;
  color: var(--text);
}

/* ── Content pages (privacy / terms / support) ── */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.content h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.content .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}
.content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}
.content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}
.content p, .content ul {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.content ul {
  padding-left: 24px;
}
.content ul li {
  margin-bottom: 6px;
}
.content strong { color: var(--teal-dark); }

/* ── Footer ── */
.site-footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.site-footer .links {
  margin-bottom: 12px;
}
.site-footer .links a {
  margin: 0 12px;
  color: var(--text-muted);
}
.site-footer .links a:hover { color: var(--teal); }

/* ── Responsive ── */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 80px;
    gap: 48px;
  }
  .hero-copy h1 { font-size: 40px; }
  .hero-copy p.lead { font-size: 17px; }
  .values-grid, .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .values, .how, .cta-strip { padding: 60px 24px; }
  .values h2, .how h2 { font-size: 30px; }
  .cta-strip h2 { font-size: 28px; }
  .nav a { display: none; }
  .hero-img { max-width: 340px; }
}
