/* ==========================================================
   AWAP Front Page — full stylesheet
   Path: assets/css/awap-front.css
   Scope: .awap-front wrapper
   ========================================================== */

/* ---------- General wrapper ---------- */
.awap-front {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
.awap-front h1,
.awap-front h2,
.awap-front h3 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.awap-front p { line-height: 1.5; margin-bottom: 14px; }

/* ---------- Hero Section ---------- */
.awap-front .hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.awap-front .hero h1 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.awap-front .hero p { font-size: clamp(16px, 2vw, 20px); margin-bottom: 20px; }
.awap-front .hero .btn {
  display: inline-block;
  background: #fff;
  color: #1d4ed8;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.awap-front .hero .btn:hover { background: #f1f5f9; color: #0f172a; }

/* ---------- Feature Grid ---------- */
.awap-front .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.awap-front .feature {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: box-shadow .2s, transform .1s;
}
.awap-front .feature:hover { box-shadow: 0 6px 16px rgba(0,0,0,.06); transform: translateY(-2px); }
.awap-front .feature .icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: #2563eb;
}
.awap-front .feature h3 { font-size: 18px; margin-bottom: 8px; }
.awap-front .feature p { font-size: 14px; color: #475569; }

/* ---------- Product Showcase ---------- */
.awap-front .showcase {
  margin: 60px 0;
}
.awap-front .showcase h2 { text-align: center; font-size: 24px; margin-bottom: 20px; }
.awap-front .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.awap-front .product {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  transition: box-shadow .2s, transform .1s;
}
.awap-front .product:hover { box-shadow: 0 6px 16px rgba(0,0,0,.06); transform: translateY(-1px); }
.awap-front .product img { width: 100%; border-radius: 8px; margin-bottom: 8px; }
.awap-front .product .title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.awap-front .product .price { font-size: 14px; font-weight: 700; color: #1d4ed8; }

/* ---------- CTA Section ---------- */
.awap-front .cta {
  background: #1e293b;
  color: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
}
.awap-front .cta h2 { font-size: clamp(20px, 3vw, 32px); margin-bottom: 12px; }
.awap-front .cta p { font-size: 16px; margin-bottom: 20px; }
.awap-front .cta .btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.awap-front .cta .btn:hover { background: #1d4ed8; }

/* ---------- Testimonials ---------- */
.awap-front .testimonials {
  margin: 60px 0;
}
.awap-front .testimonials h2 { text-align: center; font-size: 24px; margin-bottom: 24px; }
.awap-front .testimonials .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.awap-front .testimonial {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  color: #334155;
}
.awap-front .testimonial .author { margin-top: 12px; font-weight: 700; color: #111827; }

/* ---------- Footer teaser ---------- */
.awap-front .footer-teaser {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin: 40px 0 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .awap-front { padding: 12px; }
  .awap-front .hero { padding: 40px 14px; }
  .awap-front .features { gap: 14px; }
  .awap-front .product-grid { gap: 14px; }
  .awap-front .cta { padding: 30px 14px; }
}
