/* Training summary / offer page — loaded only on training-summary (seh-internal main). */

.mainheader {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: saturate(1.8) blur(20px) !important;
  -webkit-backdrop-filter: saturate(1.8) blur(20px) !important;
  border-bottom: 1px solid #CCC !important;
}

.mainheader .logotext {
  color: var(--color-black) !important;
}

.mainheader .logotext img {
  filter: none !important;
}

.mainheader .mainmenu .navbar-nav .nav-link {
  color: var(--color-black) !important;
}

.mainheader .top-buttons .btn-join-small {
  background: #000 !important;
  color: #fff !important;
}

.mainheader .top-buttons .btn-signin {
  color: #000 !important;
}

.mainheader .mobile-nav-buttons .btn-join-small {
  background: #000 !important;
  color: #fff !important;
}

.mainheader .mobile-nav-buttons .btn-signin {
  color: #000 !important;
}

.mainheader .container-fluid.d-xl-none {
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: saturate(1.8) blur(20px) !important;
  -webkit-backdrop-filter: saturate(1.8) blur(20px) !important;
}

.summary-page {
  padding-top: 120px;
  background: #ffffff;
}

.summary-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.summary-image-column {
  position: sticky;
  top: 140px;
}

.summary-hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.summary-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.summary-content-column {
  display: flex;
  flex-direction: column;
}

.summary-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.55px;
  line-height: 45px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.summary-hero-content .subtitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 32px;
  color: #86868b;
  margin-bottom: 30px;
}

.summary-hero-content p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 20px;
}

.program-details {
  padding: 0;
  background: transparent;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-card {
  background: transparent;
  padding: 20px 0;
  border-bottom: 1px solid #e1e3e1;
}

.detail-card:last-child {
  border-bottom: none;
}

.detail-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 10px;
}

.detail-card p strong {
  font-weight: 600;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.detail-card li {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
  list-style: none;
}

.detail-card li::before {
  display: none;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.22px;
  line-height: 24px;
  color: #0167CC;
  text-decoration: none;
  margin-top: 15px;
  cursor: pointer;
  user-select: none;
}

.detail-link:hover {
  text-decoration: underline;
}

.detail-link .plus-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.detail-link.expanded .plus-icon {
  transform: rotate(45deg);
}

.detail-link .plus-icon svg {
  width: 12px;
  height: 12px;
}

.lessons-list-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: 20px;
}

.lessons-list-container.expanded {
  max-height: 5000px;
}

.lessons-list {
  padding: 30px 0;
}

.lessons-section {
  margin-bottom: 40px;
}

.lessons-section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 28px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.lessons-subsection {
  margin-bottom: 30px;
  padding-left: 20px;
}

.lessons-subsection-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 26px;
  color: #373737;
  margin-bottom: 15px;
}

.lessons-subsection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: lesson-counter;
}

.lessons-subsection-list li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 24px;
  color: #373737;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  counter-increment: lesson-counter;
}

.lessons-subsection-list li::before {
  content: counter(lesson-counter);
  position: absolute;
  left: 0;
  font-weight: 500;
  color: #86868b;
}

.membership-section {
  padding: 20px 0 0 0;
  background: transparent;
  border-top: 1px solid #e1e3e1;
}

.membership-header {
  text-align: left;
  margin-bottom: 20px;
}

.membership-header h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 0;
}

.membership-description {
  margin-bottom: 30px;
}

.membership-description p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 15px;
}

.pricing-box {
  max-width: 100%;
  margin: 0 0 30px 0;
  border: 2px solid #4A90E2;
  border-radius: 12px;
  padding: 40px;
  background: #ffffff;
}

.summary-content-column > *:not(:first-child) {
  margin-top: 0;
}

.pricing-box h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 30px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e1e3e1;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 22px;
  color: #000000;
}

.pricing-value {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 22px;
  color: #000000;
}

.notice-box {
  max-width: 100%;
  margin: 0 0 40px 0;
  background: #FAFAFC;
  border-radius: 12px;
  padding: 32px;
}

.notice-box h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 15px;
}

.notice-box p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 10px;
}

.checkout-button {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 18px 40px;
  background: #2563eb;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.checkout-button:hover {
  background: #1e4a8e;
}

@media (max-width: 968px) {
  .summary-container {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .summary-image-column {
    position: static;
  }

  .summary-hero-image {
    min-height: 400px;
  }

  .summary-hero-content h1 {
    font-size: 36px;
    line-height: 44px;
  }
}
