/* ============================================
   Apna Staff — Website Styles
   Font: Quicksand (Google Fonts)
   Primary: #0965F2
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #0F172A;
  background-color: #F8FAFC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0965F2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* --- Header --- */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0F172A;
}

.logo-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo-link span {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #64748B;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0965F2;
  text-decoration: none;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #053BA8, #0965F2);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 24px 72px;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.92;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-btn--app-store {
  background: #FFFFFF;
  color: #0F172A;
}

.cta-btn--play-store {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* --- Features --- */
.features {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
}

.features h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0F172A;
}

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

.feature-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F172A;
}

.feature-card p {
  font-size: 0.9rem;
  color: #64748B;
  font-weight: 500;
}

/* --- Footer --- */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-company {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- Content Pages (Privacy, Contact) --- */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F172A;
}

.page-content .subtitle {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #0F172A;
}

.page-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #0F172A;
}

.page-content p {
  margin-bottom: 12px;
  font-weight: 500;
}

.page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  margin-bottom: 6px;
  font-weight: 500;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.page-content th,
.page-content td {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 10px 14px;
  text-align: left;
}

.page-content th {
  background: #F0F4FF;
  color: #0F172A;
  font-weight: 700;
}

.page-content strong {
  font-weight: 700;
}

/* --- Contact Page --- */
.contact-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  text-align: center;
  max-width: 480px;
  margin: 32px auto 0;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0965F2;
  margin-top: 8px;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-icon {
    width: 72px;
    height: 72px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .page-content {
    padding: 32px 16px 48px;
  }

  .contact-card {
    padding: 28px 20px;
  }
}
