* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Contrail One", sans-serif;
  background: #080808;
  color: #f5f5f5;
}

.pricing-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #050505 0%, #111 45%, #f4f4f4 45%, #f4f4f4 100%);
  overflow: hidden;
}

.pricing-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.95)),
    url("/images/mar080623_944_DimitriusSouza_Seminar_Upper.jpg");
  background-size: cover;
  background-position: center;
}

.pricing-hero::before,
.private-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
  top: -120px;
  left: -90px;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 5px;
  bottom: 0;
  left: 25%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  animation: fadeRise 1s ease forwards;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  font-size: 17px;
}

.eyebrow.dark {
  color: #9f9f9f;
}

.pricing-hero h1 {
  margin: 0;
  color: white;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 105px);
  line-height: 0.9;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  margin: 20px auto 0;
  max-width: 800px;
  color: #ededed;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(18px, 2.5vw, 28px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 24px;
  border: 2px solid white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.primary-btn {
  color: black;
  background: white;
}

.secondary-btn {
  color: white;
  background: transparent;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.18);
}

.secondary-btn:hover {
  background: white;
  color: black;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.memberships-section {
  color: #111;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-heading h2,
.private-hero h2{
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  color: #ffffff
}

.section-heading p {
  margin: 16px 0 0;
  color: #9f9f9f;
  font-size: 19px;
}

.plan-grid,
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card,
.lesson-card {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  border: 2px solid black;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.price-card {
  padding-bottom: 26px;
  transition: 0.3s ease;
}

.price-card:hover,
.lesson-card:hover {
  transform: translateY(-8px);
}

.featured-card {
  border-width: 4px;
}

.best-card {
  border-color: #000;
}

.best-badge {
  position: absolute;
  top: 15px;
  right: -38px;
  width: 160px;
  padding: 8px 10px;
  background: #b50000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 3;
}

.card-top {
  padding: 28px 20px;
  text-align: center;
  color: white;
  /* clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%); */
}

.black-top {
  background: #050505;
}

.red-top {
  background: #b50000;
}

.card-top p {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
}

.card-top span {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8e8e8;
  font-size: 14px;
}

.plan-list {
  padding: 34px 26px 0;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
}

.plan-row::before,
.fee-list li::before,
.lesson-card li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: #111;
  color: white;
  border-radius: 50%;
  font-size: 13px;
  flex: 0 0 auto;
}

.plan-row {
  grid-template-columns: auto 1fr auto auto;
}

.plan-row span {
  font-size: 20px;
}

.plan-row strong {
  font-size: 27px;
  color: #111;
}

.plan-row small {
  color: #555;
  font-size: 14px;
}

.divider {
  height: 2px;
  width: calc(100% - 52px);
  margin: 28px auto 22px;
  background: #111;
}

.fee-list,
.lesson-card ul {
  list-style: none;
  padding: 0 26px;
  margin: 0;
}

.fee-list li,
.lesson-card li {
  display: flex;
  align-items: center;
  margin: 14px 0;
  color: #111;
  font-size: 20px;
  line-height: 1.15;
}

.fee-list strong {
  margin-left: 5px;
}

.discount {
  margin-left: 8px;
  padding: 3px 8px;
  background: #111;
  color: white;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}

.included-strip {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 0;
  margin-top: 32px;
  overflow: hidden;
  background: #060606;
  border: 2px solid #111;
  border-radius: 14px;
  color: white;
}

.included-strip div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 1px solid #444;
}

.included-strip div:first-child {
  border-left: 0;
}

.included-title {
  background: #111;
  font-size: 24px;
}

.private-hero {
  position: relative;
  padding: 86px 24px;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.75)),
    url("/images/mar080623_944_DimitriusSouza_Seminar_Upper.jpg");
  background-size: cover;
  background-position: center;
  border-top: 8px solid #0b0b0b;
  border-bottom: 8px solid #0b0b0b;
}

.private-hero > div {
  width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.private-hero h2 {
  max-width: 900px;
}

.private-hero p:last-child {
  max-width: 720px;
  margin-top: 18px;
  color: #e6e6e6;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.private-section {
  color: #111;
}

.lesson-card {
  padding: 46px 28px 30px;
  text-align: center;
  transition: 0.3s ease;
}

.lesson-featured {
  background: linear-gradient(180deg, #fff 0%, #fff 75%, #111 75%, #111 100%);
  border-width: 4px;
}

.lesson-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -18px auto 18px;
  background: #111;
  color: white;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 0 0 2px #111;
  font-size: 32px;
}

.lesson-card h3 {
  margin: 0 auto 16px;
  max-width: 310px;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 0.95;
}

.lesson-price {
  display: inline-block;
  min-width: 210px;
  margin-bottom: 12px;
  padding: 10px 20px;
  background: #050505;
  color: white;
  border-radius: 8px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
}

.lesson-featured .lesson-price {
  background: #b50000;
}

.save-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: #111;
  color: white;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dark-badge {
  background: #b50000;
}

.lesson-card ul {
  text-align: left;
  padding: 0;
  margin-top: 16px;
}

.lesson-card li {
  align-items: flex-start;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.lesson-card li::before {
  margin-top: -2px;
}

.bottom-ribbon {
  margin: 28px -28px -30px;
  padding: 18px;
  background: #111;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 19px;
}

.private-strip {
  grid-template-columns: 1.4fr repeat(6, 1fr);
  border-color: #111;
}

.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #111;
  background: white;
  border: 3px solid #111;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.cta-section p:last-child {
  margin: 12px 0 0;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.dark-btn {
  background: #111;
  color: white;
  border-color: #111;
  white-space: nowrap;
}

.dark-btn:hover {
  background: white;
  color: #111;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.journey{
  color: #000;
}

.fine-print {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 4px 0;
  border-top: 1px solid #cfcfcf;
}

.fine-print div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #111;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fine-print div::before {
  content: "";
  width: 4px;
  height: 16px;
  background: #b50000;
  border-radius: 2px;
}

.fine-print p {
  max-width: 900px;
  margin: 0;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .plan-grid,
  .lesson-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .lesson-card {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

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

  .included-title {
    grid-column: 1 / -1;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .pricing-hero {
    min-height: 62vh;
    padding: 64px 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .dark-btn {
    width: 100%;
    text-align: center;
  }

  .section-shell {
    width: min(100% - 22px, 1180px);
    padding: 46px 0;
  }

  .plan-row {
    grid-template-columns: auto 1fr;
    gap: 6px 8px;
  }

  .plan-row strong,
  .plan-row small {
    grid-column: 2;
  }

  .included-strip,
  .private-strip {
    grid-template-columns: 1fr;
  }

  .included-strip div {
    border-left: 0;
    border-top: 1px solid #444;
  }

  .included-strip div:first-child {
    border-top: 0;
  }

  .cta-section {
    width: min(100% - 22px, 1180px);
    padding: 32px 22px;
  }
    .fine-print {
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
  }

  .fine-print p {
    font-size: 12px;
  }
}
