/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --saffron: #FF6B35;
  --saffron-dark: #E55A2B;
  --saffron-light: #FF8C42;
  --ink: #1A1A2E;
  --slate: #6B7280;
  --snow: #FAFAF8;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --green: #22C55E;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--saffron); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── Layout ──────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--slate); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--saffron); text-decoration: none; }

.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--saffron-dark); text-decoration: none !important; }

/* ── Hero ────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--snow) 100%);
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--saffron); }

.hero p {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 32px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.badge:hover { transform: translateY(-2px); text-decoration: none; color: var(--white); }
.badge svg { width: 22px; height: 22px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.stat { text-align: center; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--saffron); }
.stat-label { font-size: 0.85rem; color: var(--slate); margin-top: 4px; }

/* ── Features ────────────────────────────────── */
.features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--slate);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--cream);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ── Languages ───────────────────────────────── */
.languages {
  padding: 64px 0;
  background: var(--cream);
  text-align: center;
}

.lang-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.lang-chip {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: var(--white);
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--saffron) !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); text-decoration: none !important; }

/* ── Footer ──────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-tagline {
  color: var(--slate);
  font-size: 0.9rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--slate); font-size: 0.9rem; }
.footer-links a:hover { color: var(--saffron); }

.footer-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  color: var(--slate);
  font-size: 0.85rem;
}

/* ── Legal Pages ─────────────────────────────── */
.legal {
  padding: 120px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul { padding-left: 24px; }
.legal li { margin-bottom: 8px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .stat-value { font-size: 1.4rem; }
  .section-title { font-size: 1.7rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer .container { flex-direction: column; }
}
