* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --gold: #f59e0b;
  --green: #10b981;
  --white: #ffffff;
  --light: #f8fafc;
  --gray: #64748b;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--primary);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* =========================================
   COMPACT HEADER & COLORFUL BUTTONS
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 12px 0; 
}

.logo {
  font-size: 24px; 
  font-weight: 900;
  color: white;
}

.logo span {
  color: var(--gold);
}

.nav-buttons {
  display: flex;
  gap: 15px; 
  align-items: center;
}

.nav-btn {
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition: .3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-btn-login {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.nav-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

.nav-btn-register {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.nav-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
}

/* SECTION BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  transition: .3s;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 10px 25px rgba(245, 158, 11, .4);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15, 23, 42, .85), rgba(15, 23, 42, .85)),
              url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 900;
}

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

.hero p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.stat-box h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* SECTION */
section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 55px;
  margin-bottom: 20px;
  font-weight: 900;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* WHAT IS JIPE LIFE */
.what-is {
  background: var(--light);
  padding-bottom: 0; 
}

.what-is-card {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: white;
  padding: 70px 50px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.what-is-card::after {
  content: 'JIPE';
  position: absolute;
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 20px;
}

.what-is-card h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.what-is-card h2 span {
  color: var(--gold);
}

.what-is-card p {
  font-size: 18px;
  line-height: 1.9;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.what-is-card p strong {
  color: var(--white);
}

.slogan {
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.about-content h3 {
  font-size: 45px;
  margin-bottom: 25px;
  font-weight: 900;
}

.about-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: #e2e8f0;
}

/* MISSION & VISION */
.mission-vision {
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mv-card {
  background: var(--light);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
  border-color: var(--gold);
}

.mv-icon {
  font-size: 70px;
  margin-bottom: 25px;
  display: inline-block;
}

.mv-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mv-card p {
  color: var(--gray);
  line-height: 1.9;
  font-size: 16px;
}

/* PACKAGES */
.packages {
  background: var(--primary);
  color: white;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.package-card {
  background: white;
  color: var(--primary);
  padding: 45px 35px;
  border-radius: 30px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
}

.popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.package-card h3 {
  font-size: 34px;
  margin-bottom: 15px;
}

.price {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 35px;
}

.package-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  color: var(--gray);
}

/* WHY JOIN JIPE LIFE */
.why-join {
  background: var(--light);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-card {
  background: white;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 300px;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
  transition: .4s;
  border-top: 4px solid var(--gold);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.why-icon {
  font-size: 45px;
  margin-bottom: 20px;
  background: var(--light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.4;
}

.why-card p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
}

/* IN SHORT BANNER */
.in-short-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.in-short-banner h3 {
  color: white;
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 1px;
}

/* =========================================
   GIFT REWARDS SECTION 
   ========================================= */
.rewards {
  background: var(--primary);
  color: white;
}

.rewards .section-title p {
  color: #cbd5e1;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.reward-card {
  background: var(--white);
  color: var(--primary);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  transition: .4s;
}

.reward-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

.reward-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--gold);
}

.reward-content {
  padding: 35px 30px;
  position: relative;
}

.award-badge {
  position: absolute;
  top: -20px;
  left: 30px;
  background: var(--gold);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.reward-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 800;
  margin-top: 10px;
}

.reward-details {
  list-style: none;
}

.reward-details li {
  padding: 15px 0;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--gray);
}

.reward-details li:last-child {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.reward-details li strong {
  color: var(--primary);
  font-weight: 700;
}

.cash-option {
  color: var(--green) !important;
  font-size: 18px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 900;
}

.cta p {
  max-width: 700px;
  margin: auto auto 40px;
  color: #cbd5e1;
  line-height: 1.9;
}

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

/* FOOTER */
footer {
  background: black;
  color: #94a3b8;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer h3 {
  color: white;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 14px;
}

footer a {
  color: #94a3b8;
  transition: .3s;
}

footer a:hover {
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE FRIENDLY)
   ========================================= */
@media(max-width: 992px) {
  .hero-grid,
  .about-grid,
  .footer-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 52px; }
  .section-title h2, .cta h2, .about-content h3 { font-size: 42px; }
  .hero-card { padding: 30px; }
  .what-is-card h2 { font-size: 38px; }
}

@media(max-width: 768px) {
  section { padding: 70px 0; }
  
  .navbar {
    flex-direction: row; 
  }
  
  .logo { font-size: 18px; }
  
  .nav-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .hero {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero h1 { font-size: 42px; }
  .hero-buttons { justify-content: center; }
  .section-title h2, .cta h2, .about-content h3 { font-size: 34px; }
  .section-title { margin-bottom: 40px; }
  
  .what-is-card { padding: 40px 25px; }
  .what-is-card h2 { font-size: 32px; }

  .about-grid { gap: 40px; }
  .feature { text-align: left; }
  .mv-card { padding: 40px 25px; }
  
  .in-short-banner h3 { font-size: 20px; line-height: 1.5; }
}

@media(max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .section-title h2, .cta h2, .about-content h3 { font-size: 28px; }
  .package-card { padding: 35px 25px; }
  .price { font-size: 42px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
  
  .what-is-card p { font-size: 15px; }

  .logo { font-size: 16px; }
  .nav-buttons { gap: 8px; }
  .nav-btn {
    padding: 6px 10px;
    font-size: 10px;
  }

  .reward-content { padding: 35px 20px; }
  .reward-details li { flex-direction: column; align-items: flex-start; gap: 5px; }
}
