/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

/* ------------------------------- */
/* HERO SECTION */
/* ------------------------------- */
.discount-hero {
  width: 100%;
  padding: 6vh 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.discount-hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4vw;
}

.discount-hero-text {
  width: 50%;
}

.discount-tagline {
  font-size: 22px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

.discount-hero-text h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.discount-subtitle {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #444;
}

.discount-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: black;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.discount-hero-image {
  width: 50%;
}

.discount-hero-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* ------------------------------- */
/* DISCOUNT GRID */
/* ------------------------------- */
.discount-grid-section {
  padding: 8vh 5vw;
  background: white;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.discount-card {
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.2s ease;
}

.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.discount-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.discount-percent {
  font-size: 22px;
  color: #e63900;
  font-weight: 800;
  margin-bottom: 12px;
}

.discount-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 12px;
}

.discount-link {
  color: black;
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  transition: 0.2s;
}

.discount-link:hover {
  opacity: 0.7;
}

/* ------------------------------- */
/* STEPS */
/* ------------------------------- */
.discount-steps {
  padding: 8vh 5vw;
  background: #f7f7f7;
}

.discount-steps-inner h2 {
  font-size: 42px;
  margin-bottom: 35px;
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: black;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.step p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

/* ------------------------------- */
/* TERMS */
/* ------------------------------- */
.discount-terms {
  padding: 8vh 5vw;
  background: white;
}

.discount-terms-inner h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 800;
}

.discount-terms-inner ul li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
  padding-left: 10px;
}

/* ------------------------------- */
/* RESPONSIVE DESIGN */
/* ------------------------------- */

/* Tablets */
@media (max-width: 992px) {
  .discount-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .discount-hero-text,
  .discount-hero-image {
    width: 100%;
  }

  .discount-hero-text h1 {
    font-size: 45px;
  }

  .discount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .discount-hero-text h1 {
    font-size: 32px;
  }

  .discount-subtitle {
    font-size: 16px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .discount-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .discount-terms-inner ul li {
    font-size: 16px;
  }
}
