/* style/promo.css */
.page-promo {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* 10px top padding as per instruction, not --header-offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}

.page-promo__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promo__intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-promo__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promo__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promo__section-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promo__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-promo__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promo__card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__sub-card-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Glow */
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-promo__card-text, .page-promo__sub-card-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
}

.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: auto; /* Pushes buttons to the bottom of flex container */
  cursor: pointer;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast on bright button */
  border: none;
}

.page-promo__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  color: #0A0A0A;
}

.page-promo__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-promo__btn-secondary:hover {
  background-color: #F2C14E; /* Main Color */
  color: #111111; /* Dark text for contrast */
}

.page-promo__btn-link {
  color: #FFD36B; /* Glow */
  border: none;
  padding: 0;
  margin-top: 10px;
  text-align: center;
  text-decoration: underline;
  font-weight: 500;
}

.page-promo__btn-link:hover {
  color: #F2C14E; /* Main Color */
}

.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5)); /* Added for visual effect, not changing color */
}

.page-promo__step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promo__step-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-promo__card-grid--featured .page-promo__card--featured {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 35px;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-promo__feature-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__feature-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  font-size: 1.2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-promo__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2C14E; /* Main Color */
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
  color: #FFD36B; /* Glow */
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #111111; /* Card BG */
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 30px 30px;
}

.page-promo__faq-a-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

.page-promo__faq-a-text a {
  color: #FFD36B; /* Glow */
  text-decoration: underline;
}

.page-promo__faq-a-text a:hover {
  color: #F2C14E; /* Main Color */
}

.page-promo__call-to-action {
  background-color: #0A0A0A; /* Background */
  text-align: center;
  padding: 80px 0;
}

.page-promo__btn-large {
  padding: 15px 35px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promo__intro-text {
    font-size: 1.1rem;
  }
  .page-promo__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-promo__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promo__hero-section {
    padding: 10px 15px 40px;
  }
  .page-promo__hero-image-wrapper {
    margin-bottom: 15px;
  }
  .page-promo__hero-content {
    padding: 0 15px;
  }
  .page-promo__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promo__intro-text {
    font-size: 1rem;
  }
  .page-promo__section {
    padding: 40px 0;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-promo__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promo__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__card {
    padding: 25px;
  }
  .page-promo__card-title {
    font-size: 1.5rem;
  }
  .page-promo__sub-card-title {
    font-size: 1.2rem;
  }
  .page-promo__card-text, .page-promo__sub-card-text {
    font-size: 0.9rem;
  }
  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__btn-large {
    font-size: 1.1rem;
    padding: 12px 25px;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__step-item {
    padding: 25px;
  }
  .page-promo__step-icon {
    width: 150px; /* Adjusted for mobile */
    height: 112px; /* Adjusted for mobile */
  }
  .page-promo__step-title {
    font-size: 1.3rem;
  }
  .page-promo__step-text {
    font-size: 0.9rem;
  }
  .page-promo__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__feature-item {
    padding: 25px;
  }
  .page-promo__feature-title {
    font-size: 1.4rem;
  }
  .page-promo__feature-text {
    font-size: 0.9rem;
  }
  .page-promo__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-promo__faq-a-text {
    font-size: 0.9rem;
  }
  .page-promo__call-to-action {
    padding: 60px 0;
  }
  
  /* Mobile image responsiveness */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are already set in specific elements */
  }
  .page-promo__video-section {
    padding-top: 10px !important;
  }
  
  /* Button containers mobile adaptation */
  .page-promo__hero-content .page-promo__btn-primary,
  .page-promo__card .page-promo__btn-secondary,
  .page-promo__card .page-promo__btn-primary,
  .page-promo__step-item .page-promo__btn-secondary,
  .page-promo__call-to-action .page-promo__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .page-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-section {
    padding-bottom: 30px;
  }
  .page-promo__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-promo__intro-text {
    font-size: 0.9rem;
  }
  .page-promo__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-promo__card {
    padding: 20px;
  }
  .page-promo__card-title {
    font-size: 1.3rem;
  }
  .page-promo__sub-card-title {
    font-size: 1.1rem;
  }
  .page-promo__faq-question {
    font-size: 1rem;
  }
  .page-promo__faq-question,
  .page-promo__faq-item.active .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}