/* ===== SPARK FAQ PAGE — COLORFUL REDESIGN GLOBAL STYLES ===== */

/* --- Section Containers --- */
.sp-section {
  padding: 80px 24px;
}
.sp-inner {
  max-width: var(--sp-max);
  margin: 0 auto;
}
/* CHANGED: alternating section backgrounds use program wash instead of whisper sage */
.sp-bg-sage { background: var(--sp-program-whisper); }
.sp-bg-white { background: var(--sp-white); }

/* --- Typography --- */
.sp-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--sp-heading);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sp-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sp-heading);
  text-align: center;
  margin-bottom: 16px;
}
.sp-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sp-heading);
  margin-bottom: 12px;
}
.sp-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--sp-gray);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* --- Buttons (CTA: Antique Gold per Trust Zone spec) --- */
.sp-btn-gold {
  display: inline-block;
  background: var(--sp-gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(196,152,38,0.25);
}
.sp-btn-gold:visited,
.sp-btn-gold:active {
  color: #fff;
}
.sp-btn-gold:hover {
  background: var(--sp-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,152,38,0.3);
}
.sp-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.sp-btn-outline:visited,
.sp-btn-outline:active {
  color: #fff;
}
.sp-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* --- Hero Section (CHANGED: warm peach background + triangle decorations) --- */
.sp-hero {
  background: var(--sp-program-wash);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* CHANGED: Triangle decorations instead of circular gradients */
.sp-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 320px solid rgba(196,135,127,0.08);
  transform: rotate(15deg);
}
.sp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 0;
  height: 0;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 250px solid rgba(196,135,127,0.06);
  transform: rotate(-10deg);
}
.sp-hero-inner {
  max-width: var(--sp-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sp-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sp-gray);
  max-width: 660px;
  margin: 0 auto 32px;
  font-style: italic;
}
.sp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
/* CHANGED: secondary link uses program color */
.sp-hero-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--sp-program-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,135,127,0.4);
  transition: border-color 0.2s;
}
.sp-hero-secondary:hover {
  border-color: var(--sp-program);
}
/* CHANGED: trust line icons use program color */
.sp-trust-line {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sp-gray);
}
.sp-trust-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-trust-line svg {
  width: 16px;
  height: 16px;
  color: var(--sp-program);
}
.sp-hero-image {
  max-width: var(--sp-max);
  margin: 48px auto 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sp-program-whisper);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--sp-gray);
  text-align: center;
  padding: 40px;
  line-height: 1.7;
  border: 1px solid var(--sp-white);
}

/* --- Triangle Section Divider (NEW — decorative motif) --- */
.sp-triangle-divider {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  padding: 16px 0;
  margin: 0;
  background: transparent;
  position: relative;
  z-index: 2;
}
.sp-triangle-divider .sp-tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 22px solid;
}
/* Stagger heights for a playful rhythm — must use parent selector for specificity */
.sp-triangle-divider .sp-tri-1 { border-bottom-color: var(--sp-tri-pink); border-left-width: 14px; border-right-width: 14px; border-bottom-width: 20px; }
.sp-triangle-divider .sp-tri-2 { border-bottom-color: var(--sp-tri-orange); border-left-width: 16px; border-right-width: 16px; border-bottom-width: 24px; }
.sp-triangle-divider .sp-tri-3 { border-bottom-color: var(--sp-tri-yellow); border-left-width: 18px; border-right-width: 18px; border-bottom-width: 26px; }
.sp-triangle-divider .sp-tri-4 { border-bottom-color: var(--sp-tri-green); border-left-width: 16px; border-right-width: 16px; border-bottom-width: 24px; }
.sp-triangle-divider .sp-tri-5 { border-bottom-color: var(--sp-tri-blue); border-left-width: 14px; border-right-width: 14px; border-bottom-width: 20px; }

/* --- Color Bar Section Divider (matches "document line" brand asset) --- */
.sp-color-bar {
  height: 5px;
  background: linear-gradient(
    to right,
    var(--sp-tri-pink) 0%, var(--sp-tri-pink) 20%,
    var(--sp-tri-orange) 20%, var(--sp-tri-orange) 40%,
    var(--sp-tri-yellow) 40%, var(--sp-tri-yellow) 60%,
    var(--sp-tri-green) 60%, var(--sp-tri-green) 80%,
    var(--sp-tri-blue) 80%, var(--sp-tri-blue) 100%
  );
}

/* --- Atmospheric Background Triangles (barely visible, felt not seen) --- */
/* Each variant places 1-2 large triangles at different positions via clip-path.
   Opacity is 0.03-0.04 so they register as texture, not decoration.
   Uses the program color so they subtly reinforce the page's color identity. */
.sp-atmos {
  position: relative;
  overflow: hidden;
}
.sp-atmos::before,
.sp-atmos::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
/* Variant A: large triangle bottom-right corner */
.sp-atmos-a::before {
  bottom: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: var(--sp-program);
  opacity: 0.035;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}
/* Variant B: large triangle top-left corner */
.sp-atmos-b::before {
  top: -40px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: var(--sp-program);
  opacity: 0.03;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
/* Variant C: two smaller triangles, opposite corners */
.sp-atmos-c::before {
  top: -30px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: var(--sp-program);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.sp-atmos-c::after {
  bottom: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: var(--sp-program);
  opacity: 0.025;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
/* Variant D: single large triangle centered-right, rotated feel */
.sp-atmos-d::before {
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  background: var(--sp-program);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 0% 100%, 100% 80%);
}
/* All atmospheric content needs to sit above the shapes */
.sp-atmos > * {
  position: relative;
  z-index: 1;
}

/* --- Prose Content Sections --- */
.sp-prose {
  max-width: 720px;
  margin: 0 auto;
}
.sp-prose p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--sp-text);
}
.sp-prose p + p {
  margin-top: 20px;
}
.sp-prose .sp-h2 {
  text-align: left;
  margin-bottom: 24px;
}
.sp-prose .sp-h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}
/* CHANGED: accent text uses program color */
.sp-prose-accent {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--sp-program-dark);
  margin-top: 24px;
}

/* --- Daily Schedule Cards (CHANGED: icon backgrounds + time color) --- */
.sp-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.sp-schedule-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-program-border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,135,127,0.1);
}
.sp-schedule-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sp-program-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-schedule-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sp-program);
}
.sp-schedule-content {
  flex: 1;
}
.sp-schedule-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sp-heading);
  margin-bottom: 2px;
}
.sp-schedule-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-program-dark);
  margin-bottom: 8px;
}
.sp-schedule-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sp-text);
  opacity: 0.85;
}
.sp-schedule-full {
  grid-column: 1 / -1;
}
.sp-schedule-meta {
  text-align: center;
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--sp-gray);
  font-weight: 500;
}
.sp-schedule-meta strong {
  color: var(--sp-text);
  font-weight: 600;
}

/* --- Subsection Feature Block --- */
.sp-feature-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--sp-program-border);
}
.sp-feature-block .sp-h3 {
  text-align: center;
  margin-bottom: 16px;
}
.sp-feature-desc {
  max-width: 720px;
  margin: 0 auto;
}
.sp-feature-desc p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--sp-text);
}
.sp-feature-desc p + p {
  margin-top: 20px;
}

/* --- Enrichment Pills (CHANGED: orange accent) --- */
.sp-enrich-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 32px auto 0;
}
.sp-enrich-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--sp-white);
  border: 1px solid var(--sp-program-border);
  border-radius: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sp-enrich-pill:hover {
  border-color: var(--sp-program);
  box-shadow: 0 2px 12px rgba(196,135,127,0.12);
}
.sp-enrich-pill-day {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-program-dark);
  background: var(--sp-program-light);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
}
.sp-enrich-pill-subject {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-heading);
}
.sp-enrich-note {
  max-width: 720px;
  margin: 24px auto 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sp-text);
  text-align: center;
}

/* --- Separation / Open Door Section (CHANGED: link color) --- */
.sp-separation-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-program-dark);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.sp-separation-link:hover { gap: 12px; }

/* --- Tuition Card (CHANGED: orange header) --- */
.sp-tuition-main {
  max-width: 520px;
  margin: 0 auto;
  background: var(--sp-white);
  border: 1px solid var(--sp-program-border);
  border-radius: 16px;
  overflow: hidden;
}
.sp-tuition-header {
  background: linear-gradient(135deg, #A86E67 0%, #C4877F 50%, #D49B95 100%);
  padding: 28px 32px;
  text-align: center;
}
.sp-tuition-header-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.sp-tuition-header-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sp-tuition-header-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.sp-tuition-body {
  padding: 28px 32px;
}
.sp-tuition-schedules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-tuition-schedule-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-tuition-schedule-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sp-program-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-tuition-schedule-check svg {
  width: 16px;
  height: 16px;
  color: var(--sp-program);
}
.sp-tuition-schedule-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-gray);
}
.sp-tuition-schedule-days {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-heading);
}
.sp-tuition-body-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sp-program-border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--sp-gray);
  line-height: 1.6;
  text-align: center;
}

/* Add-on strip */
.sp-tuition-addon {
  max-width: 520px;
  margin: 16px auto 0;
  background: var(--sp-white);
  border: 1px solid var(--sp-program-border);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sp-tuition-addon-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-tuition-addon-plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sp-program-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-program);
}
.sp-tuition-addon-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-heading);
}
.sp-tuition-addon-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--sp-gray);
}
.sp-tuition-addon-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--sp-program);
  white-space: nowrap;
}
.sp-tuition-addon-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--sp-gray);
}

/* --- Tuition Details --- */
.sp-tuition-details {
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sp-text);
}
.sp-tuition-details p + p {
  margin-top: 12px;
}
.sp-tuition-details strong {
  color: var(--sp-heading);
  font-weight: 600;
}

/* --- All-Inclusive Tuition Note (CHANGED: orange tint) --- */
.sp-tuition-note {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: var(--sp-program-lighter);
  border: 1px solid var(--sp-program-border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sp-text);
  text-align: center;
}
.sp-tuition-note strong {
  color: var(--sp-program-dark);
  font-weight: 700;
}

/* --- Scheduling Advisory --- */
.sp-advisory {
  max-width: 720px;
  margin: 0 auto;
}
.sp-advisory .sp-h3 {
  text-align: left;
}
.sp-advisory p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--sp-text);
}
.sp-advisory p + p {
  margin-top: 20px;
}

/* --- Testimonial Placeholder --- */
.sp-testimonial-section {
  background: var(--sp-program-whisper);
  padding: 80px 24px;
}
.sp-testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sp-testimonial-placeholder {
  margin-top: 32px;
  padding: 40px;
  border: 1px solid var(--sp-white);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--sp-gray);
  font-style: italic;
}

/* --- CTA Section (CHANGED: warm deep orange instead of teal) --- */
.sp-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #8B5C56 0%, #C4877F 60%, #D49B95 100%);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
/* Triangle decoration in CTA */
.sp-cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 0; height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-bottom: 280px solid rgba(255,255,255,0.06);
  transform: rotate(20deg);
}
.sp-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid rgba(255,255,255,0.04);
  transform: rotate(-15deg);
}
.sp-cta-section .sp-h2 { color: #fff; }
.sp-cta-section p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}
.sp-cta-section p + p { margin-top: 16px; }
.sp-cta-phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.sp-cta-phone:hover { border-color: #fff; }
.sp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
/* CTA primary button: white on this bg */
.sp-cta-section .sp-btn-gold {
  background: #fff;
  color: var(--sp-program-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.sp-cta-section .sp-btn-gold:visited,
.sp-cta-section .sp-btn-gold:active {
  color: var(--sp-program-deep);
}
.sp-cta-section .sp-btn-gold:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.sp-cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.sp-cta-trust-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
}

/* --- FAQ Accordion (CHANGED: orange hover + chevron) --- */
.sp-faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}
.sp-faq-item {
  border-bottom: 1px solid var(--sp-program-border);
}
.sp-faq-item:first-child {
  border-top: 1px solid var(--sp-program-border);
}
.sp-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--sp-heading);
  line-height: 1.5;
  transition: color 0.2s;
}
.sp-faq-item summary:hover {
  color: var(--sp-program-dark);
}
.sp-faq-item summary::-webkit-details-marker { display: none; }
.sp-faq-item summary::marker { display: none; content: ''; }
.sp-faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  color: var(--sp-program);
  transition: transform 0.3s ease;
}
.sp-faq-item[open] .sp-faq-chevron {
  transform: rotate(180deg);
  color: var(--sp-program-dark);
}
.sp-faq-answer {
  padding: 0 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--sp-text);
}
.sp-faq-answer a {
  color: var(--sp-program-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,135,127,0.3);
}
.sp-faq-answer a:hover {
  border-color: var(--sp-program);
}

/* --- Positioning Footer (CHANGED: five-triangle brand motif) --- */
.sp-positioning-footer {
  background: var(--sp-program-deep);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.sp-positioning-footer p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
}
/* Five-triangle brand signature */
.sp-footer-triangles {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.sp-footer-triangles .sp-ft {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid;
  opacity: 0.4;
}

/* --- Photo Placeholder --- */
.sp-photo-placeholder {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 12px;
  background: var(--sp-white);
  padding: 32px;
  border: 1px solid var(--sp-program-color);
  margin-top: 40px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sp-photo-placeholder img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* --- Form Styles --- */
.sp-form-group {
  margin-bottom: 16px;
}
.sp-form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-heading);
  margin-bottom: 6px;
}
.sp-required {
  color: var(--sp-program);
}
.sp-form-input, .sp-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sp-program-border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.sp-form-input:focus, .sp-form-textarea:focus {
  outline: none;
  border-color: var(--sp-program);
  box-shadow: 0 0 0 3px rgba(196,135,127,0.12);
}
.sp-form-submit-teal {
  display: inline-block;
  background: var(--sp-program);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.sp-form-submit-teal:hover {
  background: var(--sp-program-dark);
}

/* --- Animations --- */
@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.sp-hero .sp-h1 { animation: spFadeUp 0.7s ease both; }
.sp-hero .sp-hero-sub { animation: spFadeUp 0.7s ease 0.1s both; }
.sp-hero .sp-hero-ctas { animation: spFadeUp 0.7s ease 0.2s both; }
.sp-hero .sp-trust-line { animation: spFadeUp 0.7s ease 0.3s both; }


/* ===== TABLET LAYOUT (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .sp-schedule-grid { gap: 16px; }
  .sp-separation-link,
  .sp-faq-answer a,
  .sp-hero-secondary {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(196,135,127,0.4);
  }
}

/* ===== MOBILE LAYOUT (phones: under 768px) ===== */
@media (max-width: 767px) {
  .sp-section { padding: 48px 20px; }
  .sp-hero { padding: 48px 20px 40px; }
  .sp-cta-section { padding: 48px 20px; }
  .sp-testimonial-section { padding: 48px 20px; }
  .sp-h1 { font-size: 32px; }
  .sp-h2 { font-size: 28px; }
  .sp-h3 { font-size: 21px; }
  .sp-prose .sp-h2 { text-align: left; }
  .sp-prose p { font-size: 16px; }
  .sp-schedule-grid { grid-template-columns: 1fr; }
  .sp-schedule-card { padding: 20px 18px; }
  .sp-schedule-title { font-size: 15px; }
  .sp-schedule-desc { font-size: 14px; }
  .sp-enrich-pills { gap: 10px; }
  .sp-enrich-pill { padding: 8px 14px; }
  .sp-tuition-header-price { font-size: 40px; }
  .sp-tuition-header { padding: 24px 20px; }
  .sp-tuition-body { padding: 24px 20px; }
  .sp-tuition-addon { flex-direction: column; text-align: center; gap: 10px; padding: 18px 20px; }
  .sp-tuition-addon-left { flex-direction: column; gap: 6px; }
  .sp-hero-image { min-height: 220px; margin-top: 32px; }
  .sp-cta-buttons { flex-direction: column; align-items: center; margin-top: 40px; gap: 12px; }
  .sp-cta-trust { flex-direction: column; align-items: center; gap: 14px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
  .sp-hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .sp-testimonial-placeholder { padding: 28px 20px; }
  .sp-photo-placeholder { padding: 24px; }
  .sp-faq-item summary { font-size: 16px; padding: 18px 0; }
  .sp-faq-answer { font-size: 15px; }
  .sp-triangle-divider .sp-tri { transform: scale(0.8); }

  /* Hero triangles: scale down and pull inward so they stay visible on mobile */
  .sp-hero::before {
    top: -20px;
    right: -30px;
    border-left-width: 100px;
    border-right-width: 100px;
    border-bottom-width: 180px;
  }
  .sp-hero::after {
    bottom: -40px;
    left: -20px;
    border-left-width: 80px;
    border-right-width: 80px;
    border-bottom-width: 140px;
  }

  /* Atmospheric triangles: shrink + pull onto screen + bump opacity slightly */
  .sp-atmos-a::before {
    bottom: -20px;
    right: -20px;
    width: 240px;
    height: 240px;
    opacity: 0.045;
  }
  .sp-atmos-b::before {
    top: -15px;
    left: -15px;
    width: 200px;
    height: 200px;
    opacity: 0.04;
  }
  .sp-atmos-c::before {
    top: -10px;
    right: -15px;
    width: 180px;
    height: 180px;
    opacity: 0.04;
  }
  .sp-atmos-c::after {
    bottom: -15px;
    left: -10px;
    width: 140px;
    height: 140px;
    opacity: 0.035;
  }
  .sp-atmos-d::before {
    right: -30px;
    width: 220px;
    height: 220px;
    opacity: 0.04;
  }

  /* CTA section triangles: same treatment */
  .sp-cta-section::before {
    top: -30px; right: -20px;
    border-left-width: 90px;
    border-right-width: 90px;
    border-bottom-width: 160px;
  }
  .sp-cta-section::after {
    bottom: -20px; left: -30px;
    border-left-width: 70px;
    border-right-width: 70px;
    border-bottom-width: 120px;
  }
}

/* ===== SMALL PHONES & FOLDABLE (under 360px) ===== */
@media (max-width: 360px) {
  .sp-h1 { font-size: 28px; }
  .sp-h2 { font-size: 24px; }
  .sp-h3 { font-size: 19px; }
  .sp-section { padding: 36px 16px; }
  .sp-hero { padding: 36px 16px; }
  .sp-cta-section { padding: 36px 16px; }
  .sp-testimonial-section { padding: 36px 16px; }
  .sp-schedule-card { padding: 18px 16px; }
  .sp-enrich-pill { padding: 7px 12px; }
  .sp-enrich-pill-subject { font-size: 14px; }
  .sp-tuition-header-price { font-size: 36px; }
  .sp-tuition-note { padding: 20px; font-size: 14px; }
  .sp-photo-placeholder { padding: 16px; }
  .sp-hero-image { min-height: 160px; padding: 24px; }
  .sp-btn-gold, .sp-btn-outline { padding: 12px 24px; font-size: 15px; }
  .sp-faq-item summary { font-size: 15px; }
  .sp-triangle-divider .sp-tri { transform: scale(0.65); }

  /* Atmospheric: even smaller on tiny screens */
  .sp-atmos-a::before { width: 180px; height: 180px; bottom: -10px; right: -10px; opacity: 0.05; }
  .sp-atmos-b::before { width: 150px; height: 150px; top: -10px; left: -10px; opacity: 0.045; }
  .sp-atmos-c::before { width: 140px; height: 140px; top: -5px; right: -10px; opacity: 0.045; }
  .sp-atmos-c::after { width: 110px; height: 110px; bottom: -10px; left: -5px; opacity: 0.04; }
  .sp-atmos-d::before { width: 170px; height: 170px; right: -15px; opacity: 0.045; }

  /* Hero: tightest on small phones */
  .sp-hero::before { top: -10px; right: -15px; border-left-width: 70px; border-right-width: 70px; border-bottom-width: 130px; }
  .sp-hero::after { bottom: -20px; left: -10px; border-left-width: 55px; border-right-width: 55px; border-bottom-width: 100px; }

  /* CTA: tightest */
  .sp-cta-section::before { top: -15px; right: -10px; border-left-width: 60px; border-right-width: 60px; border-bottom-width: 110px; }
  .sp-cta-section::after { bottom: -10px; left: -15px; border-left-width: 50px; border-right-width: 50px; border-bottom-width: 90px; }
}

/* --- Page-Specific Styles --- */
.sp-hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-program);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-hero-trust span {
  white-space: nowrap;
}
.sp-cat-nav-section {
  padding: 0 24px 8px;
  background: var(--sp-program-whisper);
  position: relative;
}
.sp-cat-nav-section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--sp-whisper);
  z-index: -1;
}
.sp-cat-nav-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 0 32px;
  text-align: center;
}
.sp-cat-nav-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-gray);
  margin: 0 0 16px;
}
.sp-cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sp-cat-link {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-program);
  background: var(--sp-white);
  border: 1px solid rgba(196,135,127,0.45);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sp-cat-link:hover {
  background: var(--sp-program);
  color: #fff;
  border-color: var(--sp-program);
}
.sp-cat-link--cta {
  background: rgba(196,152,38,0.08);
  border-color: rgba(196,152,38,0.35);
  color: var(--sp-gold);
}
.sp-cat-link--cta:hover {
  background: var(--sp-gold);
  color: #fff;
  border-color: var(--sp-gold);
}
.sp-section-rule {
  width: 48px;
  height: 3px;
  background: var(--sp-program);
  border: none;
  margin: 0 auto 40px;
  border-radius: 2px;
}
.sp-faq-link {
  display: block;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-program);
  text-decoration: none;
}
.sp-faq-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sp-pending {
  background: rgba(196,152,38,0.07);
  border-left: 3px solid var(--sp-gold);
  padding: 14px 18px;
  font-style: italic;
  color: var(--sp-gray);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  line-height: 1.6;
}
.sp-faq-table-desktop { display: block; }
.sp-faq-table-mobile { display: none; }
.sp-faq-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  margin-top: 16px;
}
.sp-faq-table thead th {
  background: var(--sp-program);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
}
.sp-faq-table thead th:first-child { border-radius: 8px 0 0 0; }
.sp-faq-table thead th:last-child { border-radius: 0 8px 0 0; }
.sp-faq-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(196,135,127,0.2);
  vertical-align: top;
}
.sp-faq-table tbody tr:last-child td { border-bottom: none; }
.sp-faq-table tbody tr:nth-child(even) { background: rgba(239,245,242,0.5); }
.sp-faq-table .sp-td-prog { font-weight: 600; color: var(--sp-heading); }
.sp-faq-table .sp-td-price { font-weight: 700; color: var(--sp-program); }
.sp-faq-card {
  background: var(--sp-white);
  border: 1px solid rgba(196,135,127,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.sp-faq-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--sp-heading);
  margin-bottom: 8px;
}
.sp-faq-card-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(196,135,127,0.15);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.sp-faq-card-row:last-child { border-bottom: none; }
.sp-faq-card-label { color: var(--sp-gray); font-weight: 500; }
.sp-faq-card-value { color: var(--sp-text); font-weight: 600; text-align: right; max-width: 55%; }
.sp-faq-card-value.sp-highlight { color: var(--sp-program); font-weight: 700; }
.sp-sched-card {
  background: var(--sp-white);
  border: 1px solid rgba(196,135,127,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.sp-sched-card-block {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sp-program);
  margin-bottom: 4px;
}
.sp-sched-card-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-gray);
  margin-bottom: 6px;
}
.sp-sched-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--sp-text);
  line-height: 1.5;
}
.sp-inclusive-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(196,135,127,0.04);
  border-radius: 8px;
  border: 1px solid rgba(196,135,127,0.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--sp-text);
  line-height: 1.65;
}
.sp-inclusive-note strong {
  color: var(--sp-program);
}

@media (max-width: 1024px) {
  .sp-faq-link,
  .sp-faq-answer a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(196,135,127,0.4);
  }
  .sp-cat-link {
    padding: 9px 16px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .sp-hero-trust { font-size: 12px; gap: 6px 16px; }
  .sp-cat-nav-inner { padding: 20px 0 24px; }
  .sp-cat-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sp-cat-link {
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
  .sp-faq-link { font-size: 14px; }
  .sp-pending { font-size: 14px; padding: 12px 14px; }
  .sp-faq-table-desktop { display: none !important; }
  .sp-faq-table-mobile { display: block !important; }
}

@media (max-width: 360px) {
  .sp-cat-nav { grid-template-columns: 1fr; }
  .sp-cat-link { font-size: 13px; border-radius: 8px; }
}
