* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0b0c0f;
  --color-bg-warm: #0f100e;
  --color-text: #e8e4dd;
  --color-text-dim: #b0a99e;
  --color-gold: #D4AF37;
  --color-gold-glow: rgba(212, 175, 55, 0.15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Times New Roman', Times, serif;
}

html {
  scroll-behavior: smooth;
}

.path-intro-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.path-intro-congrats {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 16px;
}

.path-intro-message {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 24px;
  white-space: nowrap;
}

.path-intro-step {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

.path-page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.path-logo-area {
  text-align: center;
  padding: 48px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.university-logo {
  width: 300px;
  height: auto;
  display: inline-block;
}

.path-menu-container {
  max-width: 1100px;
  margin: 20px auto 60px;
  padding: 0 20px;
  width: 100%;
}

.path-menu-cover {
  position: relative;
  background: #000000;
  border: 3px solid var(--color-gold);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.path-menu-cover:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(212, 175, 55, 0.25), inset 0 0 60px rgba(212, 175, 55, 0.08);
}

.menu-cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-cover-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.menu-open-btn {
  display: inline-block;
  background: #000000;
  border: 3px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  padding: 24px 64px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.menu-open-btn:hover {
  background: var(--color-gold);
  color: #000;
}

.menu-open-text {
  display: inline-block;
  animation: textPulse 1.5s ease-in-out infinite;
}

.menu-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ornament-line {
  width: 45px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.ornament-line-wide {
  flex: 1;
  max-width: 120px;
}

.ornament-line-full {
  flex: 1;
}

.ornament-icon {
  color: var(--color-gold);
  font-size: 0.7rem;
}

.menu-cover-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  margin: 0 0 18px 0;
}

.path-menu-expanded {
  position: relative;
  background: #ffffff;
  border: 3px solid var(--color-gold);
  border-radius: 16px;
  padding: 48px 40px 0;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  animation: menuOpen 0.5s ease-out;
  overflow: hidden;
}

.menu-close-row {
  text-align: right;
  margin-bottom: 24px;
}

.menu-close-btn {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: #8B7420;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}

.menu-close-btn:hover {
  background: var(--color-gold);
  color: #fff;
}

.menu-expanded-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-expanded-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 3px;
  margin: 0 0 6px;
}

.menu-content-area {
  max-width: 100%;
  margin: 40px auto 0;
  padding: 0;
}

.path-content-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
}

.path-content-quote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #1a1a1a;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 24px;
}

.path-content-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
}

.path-outcomes {
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.path-outcome-item {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 4px;
}

.menu-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.pillars-grid {
  display: flex;
  gap: 0;
  margin: 16px -40px 0;
  width: calc(100% + 80px);
}

.pillar-box {
  flex: 1;
  background: #ffffff;
  border-top: 2px solid var(--color-gold);
  border-bottom: none;
  border-left: none;
  border-right: 2px solid var(--color-gold);
  padding: 32px 24px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pillar-box:first-child {
  border-left: none;
}

.pillar-box:last-child {
  border-right: none;
}

.pillar-box p {
  text-align: left;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pillar-box .pillar-goal {
  min-height: 100px;
  margin-bottom: 16px;
}

.pillar-box .pillar-label {
  margin-bottom: 12px;
  min-height: 28px;
}

.pillar-box .pillar-bullet {
  margin-bottom: 10px;
  padding-left: 4px;
  min-height: 52px;
}

.pillar-box p.closing-statement {
  margin-top: 12px;
  padding-top: 16px;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
  font-weight: 700;
}

.pillar-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}

.pillar-box h3.mind-tab {
  background-color: #1E2EFF;
}

.pillar-box h3.body-tab {
  background-color: #228B22;
}

.pillar-box h3.emotions-tab {
  background-color: #FFF200;
  color: #000000;
}

.pillar-box h3.spirit-tab {
  background-color: #800080;
}

.menu-bottom-actions {
  text-align: center;
  margin: 0 -40px;
  padding: 40px 40px;
  border-top: 2px solid var(--color-gold);
  background: #ffffff;
}

.begin-path-btn {
  display: inline-block;
  background: #000000;
  border: 3px solid var(--color-gold);
  color: #FFF200;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.15em;
}

.begin-path-btn:hover {
  background: var(--color-gold);
  color: #000;
}

.begin-path-text {
  display: inline-block;
  animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

.path-footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: auto;
}

.path-footer p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #666666;
  letter-spacing: 0.05em;
}

@keyframes menuOpen {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageTurnOut {
  0% { transform: perspective(1500px) rotateY(0deg); transform-origin: left center; opacity: 1; }
  100% { transform: perspective(1500px) rotateY(-90deg); transform-origin: left center; opacity: 0; }
}

@keyframes pageTurnIn {
  0% { transform: perspective(1500px) rotateY(90deg); transform-origin: left center; opacity: 0; }
  100% { transform: perspective(1500px) rotateY(0deg); transform-origin: left center; opacity: 1; }
}

@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@media (max-width: 900px) {
  .pillars-grid {
    flex-direction: column;
    margin: 16px -40px 0;
    width: calc(100% + 80px);
  }
  .pillar-box {
    min-height: auto;
    border-right: none;
    border-left: none;
    border-top: 2px solid var(--color-gold);
    border-bottom: none;
  }
  .pillar-box:first-child {
    border-left: none;
  }
  .pillar-box:last-child {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .menu-content-area {
    width: 100%;
    padding: 0 8px;
  }
  .path-menu-cover {
    padding: 32px 20px;
  }
  .path-menu-expanded {
    padding: 32px 20px;
  }
  .menu-open-btn {
    font-size: 1.4rem;
    padding: 16px 40px;
  }
  .menu-cover-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .university-logo {
    width: 220px;
  }
  .menu-cover-logo {
    width: 150px;
  }
}

.comparison-section {
  background: #0f0f0f;
  padding: 72px 48px;
}

.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f0ebe0;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.comparison-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #9a9186;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.comparison-table thead tr {
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.comparison-label-col {
  width: 22%;
  padding: 16px 0;
}

.comparison-col {
  width: 26%;
  padding: 16px 20px;
  text-align: center;
}

.comparison-col--kumaya {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.comparison-col-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ebe0;
}

.comparison-col--kumaya .comparison-col-name {
  color: #1a1a1a;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-row-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f0ebe0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 0 18px 0;
  vertical-align: middle;
  padding-right: 16px;
}

.comparison-cell {
  font-size: 0.88rem;
  color: #1a1a1a;
  line-height: 1.5;
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
  background: #f0ede6;
}

.comparison-cell--kumaya {
  background: #f5ebc4;
  border-left: 1px solid #c9ae71;
  border-right: 1px solid #c9ae71;
  color: #1a1a1a;
  font-weight: 500;
}

.comparison-table tbody tr:last-child .comparison-cell--kumaya {
  border-bottom: 1px solid #c9ae71;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 900px) {
  .comparison-section {
    padding: 56px 24px;
  }
}

@media (max-width: 600px) {
  .comparison-section {
    padding: 48px 16px;
  }

  .comparison-heading {
    font-size: 1.6rem;
  }

  .comparison-table-wrap {
    overflow-x: visible;
  }

  .comparison-table {
    display: none;
  }

  .comparison-cards-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .comparison-table-wrap::after {
    display: none;
  }
}

.comparison-cards-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  overflow: hidden;
}

.cmc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.cmc-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0ebe0;
  padding: 14px 14px 6px;
  grid-column: 1 / -1;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cmc-kumaya {
  padding: 12px 14px;
  font-size: 0.84rem;
  color: #1a1a1a;
  font-weight: 500;
  background: #f5ebc4;
  border-right: 1px solid #c9ae71;
  line-height: 1.45;
}

.cmc-other {
  padding: 12px 14px;
  font-size: 0.84rem;
  color: #1a1a1a;
  line-height: 1.45;
  background: #f0ede6;
}

.cmc-col-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f0f0f;
  border-bottom: 2px solid rgba(212,175,55,0.3);
  margin-bottom: 0;
}

.cmc-col-header-kumaya {
  padding: 12px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #e8d68a;
  border-right: 1px solid #c9ae71;
}

.cmc-col-header-other {
  padding: 12px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #f0ede6;
  border-left: 1px solid rgba(201,174,113,0.2);
}

/* Payment plan selector */
.payment-plan-selector {
  display: flex;
  gap: 0;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.plan-tab {
  flex: 1;
  padding: 10px 8px;
  background: #faf9f6;
  border: none;
  border-right: 1px solid #e0dbd0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1.3;
}

.plan-tab:last-child {
  border-right: none;
}

.plan-tab.active {
  background: #1a1a1a;
  color: #D4AF37;
}

.plan-tab-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 3px;
  color: inherit;
  letter-spacing: 0;
}

.plan-note {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
  padding: 10px 14px;
  background: #faf9f6;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
}

.checkout-embedded {
  background: #ffffff;
  padding: 48px 48px 0;
  margin-top: 48px;
}

.checkout-embedded .checkout-main {
  padding: 0;
}

.checkout-embedded .checkout-header-row {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 80px 24px 64px;
}
.checkout-embedded .checkout-header-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vw;
  background-image: url('/assets/sacred-geometry-transparent.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.checkout-embedded .checkout-header-row > * {
  position: relative;
  z-index: 1;
}

.checkout-embedded .checkout-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.checkout-embedded .checkout-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.checkout-embedded .checkout-path-badge-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-embedded .checkout-badge-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.checkout-embedded .checkout-path-badge {
  display: inline-block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  background: #1a3a8a;
  border: none;
  padding: 6px 18px;
  border-radius: 4px;
}

.checkout-embedded .checkout-summary-box {
  background: #faf9f6;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 28px;
}

.checkout-embedded .checkout-summary-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.checkout-embedded .checkout-features {
  list-style: none;
  padding: 0;
}

.checkout-embedded .checkout-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  padding: 6px 0 6px 20px;
  position: relative;
}

.checkout-embedded .checkout-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

.checkout-embedded .checkout-form-container {
  background: #faf9f6;
  border: 1px solid #e8e4dc;
  border-radius: 12px;
  padding: 40px;
}

.checkout-embedded .checkout-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4dc;
}

.checkout-embedded .form-group {
  margin-bottom: 20px;
}

.checkout-embedded .form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.checkout-embedded .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0ccc4;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.3s ease;
}

.checkout-embedded .form-group input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.checkout-embedded .form-group input::placeholder {
  color: #aaa;
}

.checkout-embedded .checkout-payment-area {
  margin: 24px 0;
  padding: 24px;
  border: 1px dashed #d0ccc4;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.checkout-embedded .checkout-payment-placeholder {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.checkout-embedded .checkout-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #f5c518;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.checkout-embedded .checkout-submit-btn:hover {
  background: #e0b415;
  transform: translateY(-1px);
}

.checkout-embedded .submit-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.15em;
}

.checkout-embedded .submit-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
  letter-spacing: 0.02em;
}

.checkout-embedded .checkout-secure-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .checkout-embedded .checkout-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .checkout-embedded {
    padding: 32px 24px 0;
  }

  .checkout-embedded .checkout-title {
    font-size: 1.8rem;
  }

  .checkout-embedded .checkout-form-container {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .checkout-embedded {
    padding: 24px 16px 0;
  }

  .checkout-embedded .checkout-title {
    font-size: 1.5rem;
  }

  .checkout-embedded .checkout-summary-box,
  .checkout-embedded .checkout-form-container {
    padding: 20px;
  }
}
