/* ========================================
   DEDUCTION MANAGEMENT PAGE STYLES
   Page-specific styles only - common styles are in common.css
   Hero styles are now in common.css as .page-hero--deduction
   ======================================== */

/* STAT Recovery Intro Section */
.stat-intro-section {
  position: relative;
  background-color: var(--color-bg-light);
  background-image: url('assets/images/stat-waves-large.webp');
  background-repeat: no-repeat;
  background-position: -1750px 0px;
  background-size: auto auto;
  padding: 60px max(80px, calc((100% - var(--content-max)) / 2));
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}

.stat-intro-left {
  align-items: flex-start;
  gap: 20px;
}

.stat-logo {
  width: 320px;
  max-width: none;
  height: auto;
  margin-left: -34px;
}

.stat-intro-heading {
  color: var(--color-primary);
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.stat-intro-text {
  color: var(--color-text-muted);
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

/* What does STAT Recovery do Section */
.stat-what-section {
  position: relative;
  background-color: var(--color-primary);
  background-image: url('assets/images/stat-waves-large.webp');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  padding: 80px max(80px, calc((100% - var(--content-max)) / 2));
  height: 700px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-what-left {
  align-self: center;
}

.stat-what-heading {
  color: var(--color-text-light);
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.stat-what-text {
  color: var(--color-text-light);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 35px;
  margin: 0;
}

.stat-what-text + .stat-what-text {
  margin-top: 20px;
}

/* Why does STAT Recovery matter Section */
.stat-why-section {
  position: relative;
  background-color: var(--color-bg-light-gray);
  background-image: url('assets/images/stat-waves-large.webp');
  background-repeat: no-repeat;
  background-position: -500px 230px;
  background-size: auto auto;
  padding: 80px max(80px, calc((100% - var(--content-max)) / 2));
  height: 700px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-why-left {
  align-self: center;
}

.stat-why-heading {
  color: var(--color-primary);
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.stat-why-intro {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 35px;
  margin: 0;
}

.stat-why-text {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 20px 0;
}

.stat-why-closing {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 35px;
  margin: 0;
}

/* Bonus: How are you different Section */
.stat-bonus-section {
  position: relative;
  background-color: var(--color-bg-light-gray);
  background-image: url('assets/images/stat-waves-large.webp');
  background-repeat: no-repeat;
  background-position: -1750px 325px;
  background-size: auto auto;
  padding: 80px max(80px, calc((100% - var(--content-max)) / 2));
  height: 700px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-bonus-left {
  align-self: center;
}

.stat-bonus-heading {
  color: var(--color-primary);
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.stat-bonus-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-bonus-item {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 35px;
}

.stat-bonus-item strong {
  font-weight: 700;
}

/* ========================================
   RESPONSIVE STYLES - Page-specific overrides
   ======================================== */

@media (max-width: 1170px) {
  /* Hero styles now in common.css */
}

@media (max-width: 1024px) {
  /* Hero styles now in common.css */

  .stat-intro-section {
    padding: 60px 30px;
    padding-bottom: 100px;
  }

  .stat-intro-left {
    align-items: center;
  }

  .stat-what-section {
    padding: 60px 30px;
    padding-bottom: 140px;
  }

  .stat-what-left {
    flex: 0 0 auto;
    justify-content: center;
  }

  .stat-why-section {
    padding: 60px 30px;
    height: auto;
    min-height: 500px;
  }

  .stat-why-left {
    flex: 0 0 auto;
    justify-content: center;
  }

  .stat-bonus-section {
    padding: 60px 30px;
    height: auto;
    min-height: 500px;
  }

  .stat-bonus-left {
    flex: 0 0 auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Hero styles now in common.css */

  .stat-intro-section {
    padding: 40px 20px;
    padding-bottom: 80px;
  }

  .stat-intro-heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .stat-intro-text {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .stat-logo {
    width: 280px;
    margin-left: 0;
  }

  .stat-what-section {
    padding: 40px 20px;
    padding-bottom: 100px;
  }

  .stat-what-heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .stat-what-text {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .stat-why-section {
    padding: 40px 20px;
    height: auto;
    min-height: 400px;
  }

  .stat-why-heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .stat-why-intro,
  .stat-why-text,
  .stat-why-closing {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .stat-bonus-section {
    padding: 40px 20px;
    height: auto;
    min-height: 400px;
  }

  .stat-bonus-heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .stat-bonus-item {
    font-size: 14px;
    line-height: 24px;
  }

  .stat-bonus-list {
    text-align: left;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  /* Hero styles now in common.css */

  .stat-intro-section {
    padding: 30px 15px;
    padding-bottom: 60px;
  }

  .stat-intro-heading {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .stat-intro-text {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .stat-logo {
    width: 240px;
    margin-left: 0;
  }

  .stat-what-section {
    padding: 30px 15px;
    padding-bottom: 80px;
  }

  .stat-what-heading {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .stat-what-text {
    text-align: center;
  }

  .stat-why-section,
  .stat-bonus-section {
    padding: 30px 15px;
    min-height: 300px;
  }

  .stat-why-heading,
  .stat-bonus-heading {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .stat-why-intro,
  .stat-why-text,
  .stat-why-closing {
    text-align: center;
  }
}
