/* ================================================
   Step Up — index.css
   Homepage-specific styles
   Rules: px only · no rem · no :root variables
   ================================================ */

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  padding: 96px 58px 72px;
  max-width: 860px;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  font-family: cursive;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgb(201 168 76 / 65%);
  border-radius: 20px;
  padding: 5px 14px;
  background: rgb(72 62 36 / 20%);
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: normal;
  color: #c9a84c;
}

.hero-sub {
  font-size: 16px;
  color: rgb(255 255 255 / 85%);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}


/* ------------------------------------------------
   WHAT WE DESIGN
   ------------------------------------------------ */
.design-section {
  padding: 26px 48px;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.design-card {
  background: #111111;
  padding: 30px 26px;
  cursor: pointer;
  transition: background 0.18s ease;
}

.design-card:hover {
  background: #181818;
}

.design-card-icon {
  font-size: 22px;
  color: #c9a84c;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.design-card:hover .design-card-icon {
  transform: scale(1.1);
}

.design-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 7px;
}

.design-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}

.design-section-footer {
  display: flex;
  justify-content: flex-end;
}

/* ------------------------------------------------
   WHY STEP UP
   ------------------------------------------------ */
.why-section {
  display: flex;
  gap: 1px;
  margin: 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

.why-text {
  flex: 1;
  padding: 56px 48px;
  background: #111111;
}

.why-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.38;
  margin-bottom: 18px;
  max-width: 440px;
}

.why-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.why-list li i {
  color: #c9a84c;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stats column */
.why-stats {
  flex: 0 0 220px;
  background: #0f0f0b;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 40px;
  font-weight: 500;
  color: #c9a84c;
  line-height: 1;
}

.stat-plus {
  font-size: 24px;
  font-weight: 400;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ------------------------------------------------
   RESPONSIVE — Tablet ≤1024px
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile ≤768px
   ------------------------------------------------ */
@media (max-width: 768px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .design-section {
    padding: 40px 20px;
  }

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

  .design-section-footer {
    justify-content: flex-start;
  }

  .why-section {
    flex-direction: column;
    margin: 0 20px;
  }

  .why-text {
    padding: 36px 24px;
  }

  .why-stats {
    flex: unset;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px 24px;
    gap: 24px;
  }

  .stat-item {
    min-width: 90px;
  }

  .stat-num {
    font-size: 32px;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Small mobile ≤480px
   ------------------------------------------------ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

}