/* ===============================
   Global helpers
================================ */
.home section {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* ===============================
   Hero section
================================ */
.home-hero {
  background: linear-gradient(135deg, #1f2933, #0f172a);
  border-radius: 24px;
  padding: 80px 40px;
  color: #ffffff;
  text-align: center;
}

.home-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.home-hero .subtitle {
  font-size: 18px;
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto 32px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #f59e0b;
  color: #111827;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

/* ===============================
   Feature section
================================ */
.home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-features .feature {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.home-features h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ===============================
   Country note
================================ */
.home-country {
  background: #f8fafc;
  border-left: 5px solid #38bdf8;
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 15px;
}

/* ===============================
   Mobile
================================ */
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 34px;
  }

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