/* Ayelinklux - How It Works Page */

/* =========================================================
   PAGE HERO
========================================================= */
.hiw-hero {
  position: relative;
  padding: 90px 40px 70px;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(27,46,94,0.02) 100%);
  overflow: hidden;
  text-align: center;
  margin-top: 0;
}
.hiw-hero-bg-pattern {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(244,123,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hiw-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hiw-hero-title {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 16px;
}

/* =========================================================
   STEPS
========================================================= */
.hiw-steps-section {
  padding-top: 70px;
  padding-bottom: 40px;
}
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hiw-step {
  background: var(--off-white);
  padding: 40px 26px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,46,94,0.1);
  border-color: var(--orange);
}
.hiw-step .step-number {
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}
.hiw-step .step-icon {
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 14px;
}
.hiw-step h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hiw-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================================
   WORKS WITH WHATSAPP
========================================================= */
.hiw-sell-section {
  padding: 70px 40px;
  background: linear-gradient(135deg, var(--navy), #14625f);
  text-align: center;
}
.hiw-sell-inner {
  max-width: 620px;
  margin: 0 auto;
}
.hiw-sell-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 28px;
}
.hiw-sell-section h2 {
  font-size: 30px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 14px;
}
.hiw-sell-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* =========================================================
   CTA
========================================================= */
.hiw-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 60px 40px;
}

/* =========================================================
   ABOUT
========================================================= */
.hiw-about-section {
  padding-top: 20px;
}
.hiw-about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hiw-about-inner p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hiw-about-tagline {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}

/* =========================================================
   HELP CENTRE
========================================================= */
.hiw-help-section {
  padding-top: 20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .hiw-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hiw-hero-title {
    font-size: 34px;
  }
  .hiw-steps-grid {
    grid-template-columns: 1fr;
  }
  .hiw-sell-section h2 {
    font-size: 24px;
  }
}