/* =============================================
   MHGlobal — International Remote Job Playbook
   Sales Page Stylesheet
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #0a1128;
  color: #F4F6FB;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-block;
  background: #D4AF37;
  color: #1A365D;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-primary:hover {
  background: #c49e2a;
  transform: translateY(-1px);
}

.btn-primary--large {
  font-size: 18px;
  line-height: 31.2px;
  font-weight: 700;
  color: #12233F;
  padding: 18px 48px;
  border-radius: 10px;
  width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  background: linear-gradient(135deg, #0a1128 0%, #12233F 100%);
  padding: 120px 100px;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 144px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  color: #D4AF37;
  font-size: 16px;
  font-weight: 700;
  line-height: 31.2px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.hero__headline {
  color: #F4F6FB;
  font-size: 56px;
  font-weight: 800;
  line-height: 61.6px;
}

.hero__sub {
  color: #D1D5DB;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 520px;
}

.hero__offer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.hero__offer-label {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 16px;
}

.countdown__unit {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.countdown__number {
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.countdown__label {
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  line-height: 19.6px;
}

.hero__image {
  flex: 0 0 720px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__image img {
  width: 720px;
}

/* =============================================
   PROOF SECTION
   ============================================= */

.proof {
  background: #F4F6FB;
  padding: 100px;
}

.proof__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.proof__heading {
  color: #12233F;
  font-size: 40px;
  font-weight: 800;
  line-height: 38.4px;
  text-align: center;
}

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

.proof__grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* =============================================
   STORY SECTION
   ============================================= */

.story {
  background: #12233F;
  padding: 120px 100px;
}

.story__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.story__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story__heading {
  color: #D4AF37;
  font-size: 36px;
  font-weight: 800;
  line-height: 38.4px;
}

.story__body {
  color: #E5E7EB;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.story__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story__list-heading {
  color: #F4F6FB;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

/* Check list — shared by story and features */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #F3F4F6;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.check-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: invert(75%) sepia(60%) saturate(500%) hue-rotate(5deg);
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features {
  background: #EEF2FF;
  padding: 120px 100px;
}

.features__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}

.features__heading {
  color: #12233F;
  font-size: 40px;
  font-weight: 800;
  line-height: 38.4px;
}

.features__sub {
  color: #1B4A89;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 700px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  text-align: left;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid #D2D9E5;
  border-radius: 12px;
  padding: 20px 24px;
  color: #1A365D;
  font-size: 18px;
  font-weight: 600;
  line-height: 31.2px;
}

.feature-card__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: invert(72%) sepia(55%) saturate(600%) hue-rotate(2deg) brightness(95%);
}

/* =============================================
   SYSTEM SECTION
   ============================================= */

.system {
  background: #0a1128;
  padding: 120px 100px;
}

.system__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
}

.system__heading {
  color: #D4AF37;
  font-size: 48px;
  font-weight: 800;
  line-height: 57.6px;
  text-align: center;
}

.system__sub {
  color: #F4F6FB;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  text-align: center;
}

.system__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.system__list li {
  color: #E5E7EB;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 0;
}

.system__list li::before {
  display: none;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */

.cta {
  background: #F4F6FB;
  padding: 120px 100px;
}

.cta__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.cta__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__heading {
  color: #12233F;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
}

.cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta__list li {
  color: #1B4A89;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  padding-left: 36px;
  position: relative;
}

.cta__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
}

.cta__right {
  flex: 0 0 380px;
  background: #12233F;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cta__product-name {
  color: #D4AF37;
  font-size: 20px;
  font-weight: 700;
  line-height: 31.2px;
  text-transform: uppercase;
}

.cta__price {
  color: white;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.cta__terms {
  color: #E5E7EB;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    gap: 48px;
  }

  .hero__headline {
    font-size: 40px;
    line-height: 48px;
  }

  .hero__image {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .story__inner,
  .cta__inner {
    flex-direction: column;
    gap: 48px;
  }

  .cta__right {
    flex: none;
    width: 100%;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 72px;
  }

  .hero__headline {
    font-size: 32px;
    line-height: 40px;
  }

  .hero__sub {
    font-size: 17px;
  }

  .system__heading {
    font-size: 32px;
    line-height: 40px;
  }

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

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

  .countdown {
    gap: 10px;
  }

  .countdown__unit {
    min-width: 60px;
    padding: 10px 14px;
  }
}
