/* =========================
   BUY PAGE SPECIFIC STYLES
   ========================= */

/* =========================
   INTRO SECTION
   ========================= */
.buy-intro {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.buy-intro-text p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.buy-intro-text p:last-child {
  margin-bottom: 0;
}

.buy-intro-highlight {
  padding: 2rem;
  background: rgba(201, 169, 110, 0.06);
  border-left: 2px solid var(--primary);
}

.buy-intro-highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.buy-intro-highlight ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.buy-intro-highlight li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-medium);
}

.buy-intro-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--primary);
}

/* =========================
   JOURNEY SECTION - DARK
   ========================= */
.journey-section {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
}

.journey-phases {
  display: grid;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.journey-phase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.12);
  padding: 2.5rem;
}

.journey-phase-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.journey-phase-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  opacity: 0.6;
}

.journey-phase-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--stone-100);
}

.journey-steps {
  display: grid;
  gap: 1.5rem;
}

.journey-step {
  padding-left: 1rem;
  border-left: 1px solid rgba(201, 169, 110, 0.2);
}

.journey-step h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--stone-200);
  margin-bottom: 0.375rem;
}

.journey-step p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone-400);
}

/* =========================
   KEY CONCEPTS
   ========================= */
.concepts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.concept-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

/*.concept-card-highlight {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
}*/

.concept-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
}

.concept-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.concept-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.concept-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =========================
   WORKING WITH CASSANDRA - DARK
   ========================= */
.working-section {
  background: var(--bg-dark);
}

.working-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.working-content .section-eyebrow {
  margin-bottom: 1rem;
}

.working-content .section-title {
  margin-bottom: 1.5rem;
}

.working-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone-400);
  margin-bottom: 2.5rem;
}

.working-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.working-point {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(201, 169, 110, 0.3);
}

.working-point-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--stone-200);
}

.working-point-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--stone-500);
}

.working-image {
  display: none;
}

.working-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================
   FAQ SECTION - ACCORDION
   ========================= */
.faq-section {
  background: white;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}

.faq-trigger:hover .faq-question {
  color: var(--primary);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-trigger .faq-question {
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  padding-right: 3rem;
}

.faq-answer strong {
  font-weight: 500;
  color: var(--text-medium);
}

/* =========================
   RESOURCES SECTION
   ========================= */
.resources-section {
  background: var(--bg-light);
}

.resources-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--text-white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.resource-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.resource-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.resource-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.resource-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.resource-btn:hover {
  gap: 0.75rem;
}

.resource-btn svg {
  width: 16px;
  height: 16px;
}

/* =========================
   DESKTOP RESPONSIVE
   ========================= */
@media (min-width: 768px) {
  .buy-intro {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .journey-phases {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .journey-phase {
    padding: 2rem;
  }
  
  .concepts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .working-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
  }
  
  .working-image {
    display: block;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .resource-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .journey-section {
    padding: 6rem 0 7rem;
  }
  
  .journey-phase {
    padding: 2.5rem;
  }
  
  .journey-phase-title {
    font-size: 1.5rem;
  }
  
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
  }
  
  .concepts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
