/* === PRINGLE LANDING === */
.prog-page {
  overflow-x: hidden;
}

.prog-hero {
  padding: 48px 0 64px;
}

.prog-hero__card {
  position: relative;
  max-width: min(1060px, 100%);
  margin: 0 auto;
  padding: 56px 48px 48px;
  overflow: visible;
  box-sizing: border-box;
}

.prog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prog-hero__title {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.prog-hero__title span {
  color: var(--color-accent);
}

.prog-hero__subtitle {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 500;
}

.prog-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.prog-stat {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(46, 170, 110, 0.08);
  border: 1px solid rgba(46, 170, 110, 0.15);
}

.prog-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.1;
}

.prog-stat span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.prog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.prog-float {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.prog-float--target {
  width: 100px;
  top: -30px;
  right: 6%;
  animation: prog-float 7s ease-in-out infinite alternate;
}

.prog-float--book {
  width: 90px;
  bottom: -20px;
  left: 4%;
  animation: prog-float 6s ease-in-out infinite alternate-reverse;
}

@keyframes prog-float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(3deg); }
}

/* Forms — keep controls inside cards on real mobile (min-width:auto + shadows) */
.prog-page input,
.prog-page textarea,
.prog-page select,
.prog-page button,
.prog-page .btn {
  max-width: 100%;
}

.prog-form--phone-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: min(480px, 100%);
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #d1dcd6;
  box-shadow: 0 4px 14px rgba(29, 42, 36, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}

.prog-form--phone-mini input[type="tel"],
.prog-form--phone-mini input[type="text"] {
  flex: 1 1 160px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid #d1dcd6;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  background: #fff;
  color: var(--color-text);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.prog-form--phone-mini input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(61, 153, 112, 0.15);
}

.prog-form--phone-mini .btn {
  flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
  padding: 12px 18px;
  font-size: 13px;
  min-height: 48px;
  box-sizing: border-box;
}

.prog-form--phone-mini .prog-form__success,
.prog-form--phone-mini .custom-form-notice {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.prog-form--compact {
  width: 100%;
  max-width: min(400px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 28px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.prog-form--compact .form-group {
  margin-bottom: 0;
}

.prog-form--compact .paper-form,
.prog-form--final .paper-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.prog-form--final {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 40px 36px;
  box-sizing: border-box;
  overflow: hidden;
}

.prog-form__success {
  display: none;
  text-align: center;
  padding: 24px 12px;
}

.prog-form__success.is-visible {
  display: block;
}

.prog-form__success strong {
  display: block;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.prog-form__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}

/* Sections */
.prog-section {
  padding: 64px 0;
}

.prog-section--alt {
  background: rgba(29, 42, 36, 0.02);
}

.prog-section__lead {
  max-width: 720px;
  margin: -20px auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 500;
}

.prog-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.prog-compare-card {
  padding: 32px 28px;
}

.prog-compare-card--bad {
  border: 1.5px solid rgba(200, 80, 80, 0.2);
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../images/bg-card.png');
}

.prog-compare-card--good {
  border: 2px solid var(--color-accent);
  box-shadow: 0 8px 30px rgba(46, 170, 110, 0.12);
  transform: scale(1.02);
}

.prog-compare-card h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.prog-compare-card--bad h3 {
  color: #a04444;
}

.prog-compare-card--good h3 {
  color: var(--color-accent-dark);
}

.prog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prog-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}

.prog-list--bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #c45050;
  font-weight: 800;
}

.prog-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.prog-pareto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.prog-pareto__visual {
  position: relative;
  padding: 32px;
  text-align: center;
}

.prog-pareto__ring {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-accent) 0deg 72deg,
    rgba(46, 170, 110, 0.2) 72deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 16px #fff, 0 8px 24px rgba(29, 42, 36, 0.08);
}

.prog-pareto__ring span {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent-dark);
}

.prog-pareto__caption {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.prog-pareto__content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.prog-pareto__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.prog-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.prog-timeline__item {
  padding: 28px 22px;
  text-align: center;
}

.prog-timeline__month {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.prog-timeline__item h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.prog-timeline__item p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.prog-unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
}

.prog-unique-card {
  padding: 28px 24px;
  text-align: center;
}

.prog-unique-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.prog-unique-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.prog-unique-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.prog-cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  max-width: min(760px, 100%);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.prog-cta-band h3 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  max-width: 100%;
  word-break: break-word;
}

.prog-cta-band p {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.prog-cta-band .btn {
  width: 100%;
  max-width: min(420px, 100%);
  min-width: 0;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
  word-break: break-word;
  line-height: 1.25;
}

.prog-final {
  max-width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.prog-final__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.prog-final__perks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prog-final__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.prog-final__perks li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.prog-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prog-faq__item {
  padding: 22px 24px;
}

.prog-faq__item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.prog-faq__item p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.prog-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

@media (max-width: 900px) {
  .prog-compare-grid,
  .prog-pareto,
  .prog-final__grid {
    grid-template-columns: 1fr;
  }

  .prog-compare-card--good {
    transform: none;
  }

  .prog-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prog-hero__card {
    padding: 40px 16px 32px;
    overflow: hidden;
  }

  .prog-float {
    display: none;
  }

  .prog-hero__actions .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .prog-cta-band {
    padding: 32px 12px;
  }

  .prog-cta-band .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px !important;
    font-size: 13px !important;
    letter-spacing: 0.02em !important;
    box-shadow:
      0 2px 0 #54944b,
      0 6px 14px rgba(0, 0, 0, 0.12);
  }

  .prog-cta-band .btn:hover,
  .prog-cta-band .btn:active {
    transform: none;
  }

  .prog-form--phone-mini {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
  }

  .prog-form--phone-mini input[type="tel"],
  .prog-form--phone-mini input[type="text"],
  .prog-form--phone-mini .btn {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .prog-form--phone-mini input[type="tel"],
  .prog-form--phone-mini input[type="text"] {
    border-radius: 12px;
    font-size: 16px;
  }

  .prog-form--phone-mini .btn {
    min-height: 48px;
    border-radius: 999px;
    white-space: normal;
    box-shadow:
      0 2px 0 #54944b,
      0 6px 14px rgba(0, 0, 0, 0.12);
  }

  .prog-form--phone-mini .btn:hover,
  .prog-form--phone-mini .btn:active {
    transform: none;
  }

  .prog-form--final {
    padding: 20px 16px;
  }

  .prog-form--compact {
    padding: 20px 16px;
    max-width: 100%;
  }

  .prog-form--compact .btn,
  .prog-form--final .btn {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    box-shadow:
      0 2px 0 #54944b,
      0 6px 14px rgba(0, 0, 0, 0.12);
  }

  .prog-form--compact .btn:hover,
  .prog-form--compact .btn:active,
  .prog-form--final .btn:hover,
  .prog-form--final .btn:active {
    transform: none;
  }

  .prog-section {
    padding: 48px 0;
  }

  .prog-section .container {
    overflow-x: clip;
  }
}

@media (max-width: 480px) {
  .prog-hero__card {
    padding: 28px 14px 24px;
  }

  .prog-hub-card {
    padding: 18px 16px;
  }

  .prog-form--final,
  .prog-form--compact {
    padding: 18px 14px;
  }

  .prog-form--phone-mini {
    padding: 10px;
  }
}

.prog-float--icon {
  width: 90px;
  top: -28px;
  left: 5%;
  animation: prog-float 6s ease-in-out infinite alternate;
}

.prog-for-who {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.prog-for-who__item {
  padding: 20px 22px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

.prog-utp {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.prog-utp__visual {
  padding: 36px 24px;
  text-align: center;
}

.prog-utp__visual img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
}

.prog-utp__brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent);
  margin: 0;
}

.prog-utp__content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.prog-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 24px;
}

.prog-benefit-card {
  padding: 28px 22px;
  text-align: center;
}

.prog-benefit-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}

.prog-benefit-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.prog-benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.prog-testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  text-align: center;
}

.prog-testimonial__text {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-text);
  font-style: italic;
}

.prog-testimonial__author {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.prog-brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.prog-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}

.prog-hub-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prog-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(29, 42, 36, 0.1);
}

.prog-hub-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.prog-hub-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.prog-hub-card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.prog-hub-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
}

.program-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.program-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(29, 42, 36, 0.1);
}

.program-card-link__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .prog-utp {
    grid-template-columns: 1fr;
  }
}