/* home.css — index.html */
header {
  background: white;
  border-bottom: 1px solid var(--slate-200);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 22px; font-weight: 700; color: var(--teal-hover); }
.privacy-badge { font-size: 13px; color: var(--slate-500); }

.hero { max-width: 900px; margin: 0 auto; padding: 48px 24px 32px; text-align: center; }
.hero h1 { font-size: clamp(28px, 5vw, 42px); margin: 0 0 12px; color: var(--slate-900); }
.hero p { font-size: 17px; color: var(--slate-700); margin: 0 0 24px; }
.privacy-line {
  display: inline-block;
  background: #ECFDF5;
  color: #047857;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.stats { display: flex; justify-content: center; gap: 32px; margin: 24px 0; color: var(--slate-500); font-size: 14px; }
.stats strong { color: var(--slate-900); }

.grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1); }
.card-icon { width: 36px; height: 36px; background: var(--slate-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.card h3 { font-size: 16px; margin: 0 0 4px; font-weight: 600; }
.card p { font-size: 13px; color: var(--slate-500); margin: 0; }
.card.featured { background: linear-gradient(135deg, #14B8A6, #0F766E); color: white; border-color: transparent; }
.card.featured h3, .card.featured p { color: white; }
.card.featured .card-icon { background: rgba(255,255,255,0.2); }
.card.featured .badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px; }

/* Language grid on home */
.lang-link {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-decoration: none;
  color: var(--slate-900);
  font-size: 14px;
  transition: border-color .15s;
  display: block;
}
.lang-link:hover { border-color: var(--teal); }
.lang-link strong { display: block; margin-bottom: 2px; }
.lang-link span { color: var(--slate-500); font-size: 13px; }

/* Home FAQ */
.home-faqs { display: grid; gap: 10px; }
.home-faq {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0;
}
.home-faq summary {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.home-faq p { padding: 0 16px 14px; color: #334155; font-size: 14px; line-height: 1.7; margin: 0; }

/* Lang section heading */
.lang-section-heading {
  border-top: 1px solid var(--slate-200);
  padding-top: 48px;
  margin-top: 16px;
}
.lang-section-heading h2 { font-size: 22px; font-weight: 700; color: var(--slate-900); margin: 0 0 12px; }
.lang-section-heading p { color: var(--slate-500); font-size: 15px; line-height: 1.7; margin: 0 0 24px; }
.lang-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 40px;
}
