:root {
  /* Custom Thematic Variables */
  --brand-core-deep: #1E3A8A; /* Deep Blue */
  --brand-core-light: #F3F4F6; /* Light Gray */
  --tone-highlight-active: #0D9488; /* Teal */
  --tone-accent-warm: #F59E0B; /* Amber */
  --gradient-wellness: linear-gradient(135deg, var(--brand-core-deep), var(--tone-highlight-active));
  
  /* Typography */
  --type-heading: 'Playfair Display', serif;
  --type-body: 'Inter', sans-serif;
  
  /* Layout constraints */
  --space-max-width: 1200px;
}

/* Reset & Base Setup */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--type-body);
  background-color: var(--brand-core-light);
  color: #333;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--type-heading);
  color: var(--brand-core-deep);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Unique Core Classes */
.movement-top-nav {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-layout-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--space-max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand-ident-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--type-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-core-deep);
}

.desktop-links-group {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-links-group {
    display: flex;
  }
}

.nav-item-text {
  font-weight: 500;
  color: var(--brand-core-deep);
  font-size: 1rem;
}

.mobile-trigger-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-trigger-btn {
    display: none;
  }
}

.mobile-dropdown-pane {
  display: none;
  background-color: #ffffff;
  padding: 1rem;
  border-top: 1px solid var(--brand-core-light);
}

.mobile-dropdown-pane.is-open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Specific Section Wrappers */
.intro-lead-wrapper {
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.intro-lead-inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro-lead-inner h1 {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.2;
}

.action-trigger-el {
  display: inline-block;
  background-color: var(--tone-accent-warm);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

.informational-split-zone {
  max-width: var(--space-max-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .informational-split-zone {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modules */
.habit-pillars-row {
  max-width: var(--space-max-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .habit-pillars-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-insight-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.pillar-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: var(--brand-core-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--tone-highlight-active);
}

.process-steps-track {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.step-node-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--tone-highlight-active);
}

.step-digit-badge {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--tone-highlight-active);
  font-family: var(--type-heading);
}

.tactic-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .tactic-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.tactic-item-panel {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.metric-flash-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  background-color: var(--brand-core-deep);
  color: #fff;
  padding: 3rem 1.5rem;
  border-radius: 16px;
  margin: 4rem 1.5rem;
}

.metric-flash-item {
  text-align: center;
  min-width: 150px;
}

.metric-huge-val {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--type-heading);
  color: var(--tone-accent-warm);
}

.numbered-bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.numbered-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.bullet-circle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--tone-highlight-active);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Forms & Booking */
.enrollment-panel {
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.input-row-group {
  margin-bottom: 1.5rem;
}

.input-row-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--brand-core-deep);
}

.field-base-style {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: var(--type-body);
}

.consent-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.faq-knowledge-base {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.faq-entry-block {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
}

.tuition-fee-wrap {
  background-color: var(--brand-core-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--tone-highlight-active);
}

/* Footer & Legal */
.site-bottom-zone {
  background-color: #111827;
  color: #9CA3AF;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.bottom-zone-grid {
  max-width: var(--space-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .bottom-zone-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.legal-links-row {
  display: flex;
  gap: 1.5rem;
}

.legal-links-row a {
  color: #D1D5DB;
  font-size: 0.875rem;
}

.disclaimer-notice-text {
  font-size: 0.75rem;
  margin-top: 2rem;
  text-align: center;
  color: #6B7280;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1F2937;
  color: #F9FAFB;
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}

#cookie-banner p {
  font-size: 0.875rem;
  max-width: 800px;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-cookie-accept {
  background-color: var(--tone-accent-warm);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-cookie-decline {
  background-color: #4B5563;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}