/* ==========================================================================
   UMITA GAJJAR — PREMIUM EDITORIAL DESIGN SYSTEM & STYLESHEET
   Aesthetic: Warm, Intelligent, Modern, Luxury Coaching
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Refined Warm Luxury */
  --bg-main: #FAF8F5;
  --bg-secondary: #F4EFEB;
  --bg-card: #FFFFFF;
  --bg-accent-soft: #F6F1E8;
  --bg-dark: #0F1D2A;
  --bg-dark-secondary: #172635;

  --text-dark: #112233;
  --text-body: #3E4D5E;
  --text-muted: #6B7C8E;
  --text-light: #F7F5F0;

  --gold-primary: #B68D40;
  --gold-hover: #9A742F;
  --gold-light: #F7F1E5;
  --gold-tint: #FDF9F2;

  --sage-accent: #5E7A68;
  --sage-light: #EBF2EC;

  --border-subtle: #E8E1D5;
  --border-light: #F0EAE0;
  --border-hover: #D5C7B0;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(17, 34, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(17, 34, 51, 0.06);
  --shadow-lg: 0 16px 40px rgba(17, 34, 51, 0.09);
  --shadow-hover: 0 20px 48px rgba(182, 141, 64, 0.12);

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: 84px;
}

/* Typography Utilities */
h1, h2, h3, h4, .serif-heading {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 880px;
}

/* Section Header Badges & Eyebrows */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--gold-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight-gold {
  color: var(--gold-primary);
}

.script-accent {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold-primary);
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(182, 141, 64, 0.25);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 141, 64, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-subtle);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background-color: var(--gold-tint);
  transform: translateY(-2px);
}

.btn-light {
  background-color: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
}

.btn-light:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

/* ==========================================================================
   SECTION 01: HERO
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(182, 141, 64, 0.07) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-headline span {
  color: var(--gold-primary);
  font-weight: 500;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.outcome-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.outcome-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.outcome-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-image-wrapper {
  position: relative;
}

.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
}

.hero-photo-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo-card:hover img {
  transform: scale(1.02);
}

.hero-script-tag {
  position: absolute;
  top: 1.5rem;
  right: -0.5rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transform: rotate(2deg);
}

.hero-script-tag span {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Trust Strip */
.trust-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

.trust-title {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0.75;
}

.trust-logo-pill {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

/* ==========================================================================
   SECTION 02: RECOGNISE THE PATTERN (3x2 Grid)
   ========================================================================== */
.patterns-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pattern-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pattern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.pattern-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pattern-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
}

.pattern-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
}

.pattern-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

.pattern-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Pattern Callout Banner */
.pattern-callout {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.callout-left {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.callout-leaf-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-left h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.callout-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.callout-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
}

.callout-right p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 03: UNDERSTAND THE PATTERN (Interactive Cycle)
   ========================================================================== */
.cycle-section {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.cycle-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.cycle-visual-container {
  position: relative;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cycle-title-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 2rem;
}

/* Cycle Wheel */
.cycle-wheel-wrapper {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cycle-center-hub {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-align: center;
  padding: 0.75rem;
}

.cycle-center-hub .hub-icon {
  font-size: 1.35rem;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.cycle-center-hub span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  line-height: 1.2;
}

.cycle-node-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.cycle-node {
  position: absolute;
  width: 124px;
  padding: 0.55rem 0.6rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  z-index: 4;
}

.cycle-node:hover, .cycle-node.active-node {
  border-color: var(--gold-primary);
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Node Positioning in circular orbit */
.node-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 16%; right: 2%; }
.node-3 { top: 50%; right: -2%; }
.node-4 { bottom: 14%; right: 6%; }
.node-5 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.node-6 { bottom: 14%; left: 6%; }
.node-7 { top: 50%; left: -2%; }
.node-8 { top: 16%; left: 2%; }

/* Cycle Info & Explanation Box */
.cycle-detail-box {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.cycle-detail-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.cycle-step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold-light);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cycle-insight-quote {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold-primary);
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.cycle-bottom-statement {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.cycle-bottom-statement h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   SECTION 04: A DIFFERENT WAY FORWARD (5 Shift Cards)
   ========================================================================== */
.way-forward-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.shifts-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}

.shift-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1.5fr;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.shift-card:hover {
  transform: translateX(6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.shift-from {
  display: flex;
  flex-direction: column;
}

.shift-tag-from {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9AA7B5;
  margin-bottom: 0.25rem;
}

.shift-title-from {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.shift-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.shift-to {
  display: flex;
  flex-direction: column;
}

.shift-tag-to {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.shift-title-to {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.shift-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

.key-insight-box {
  background: #FFFFFF;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.key-insight-box::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-primary);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
  line-height: 1;
}

.key-insight-box h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.key-insight-box p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 05: HOW CHANGE HAPPENS (4-Stage Horizontal Timeline)
   ========================================================================== */
.change-section {
  padding: 6.5rem 0 4rem;
  background: #FFFFFF;
}

.change-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.change-top-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* 4-Step Process Timeline */
.timeline-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 4.5rem;
}

.process-step-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.step-number-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.step-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.process-step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.process-step-card p {
  font-size: 0.885rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* 3 Insight Badges */
.three-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.insight-pill-card {
  background: var(--bg-accent-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.insight-pill-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.insight-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.insight-pill-card span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Mountain Dawn Banner */
.panorama-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.panorama-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.panorama-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 34, 51, 0.75) 0%, rgba(17, 34, 51, 0.45) 50%, rgba(17, 34, 51, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #FFFFFF;
}

.panorama-content h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.panorama-content h3 span {
  color: #F7D69E;
}

.panorama-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #F7D69E;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   SECTION 06: WAYS TO MOVE FORWARD (3 Pathways)
   ========================================================================== */
.pathways-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pathway-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.pathway-card.featured-pathway {
  border: 2px solid var(--gold-primary);
  position: relative;
}

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-primary);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 10;
}

.pathway-image-box {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.pathway-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pathway-card:hover .pathway-image-box img {
  transform: scale(1.04);
}

.pathway-badge-circle {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.pathway-body {
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pathway-step-num {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.pathway-body h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.pathway-tagline {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pathway-desc {
  font-size: 0.925rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.pathway-checklist-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.pathway-checklist {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pathway-checklist li {
  font-size: 0.885rem;
  color: var(--text-body);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pathway-checklist li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.pathway-btn {
  width: 100%;
}

/* ==========================================================================
   SECTION 07: MEET UMITA
   ========================================================================== */
.about-section {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

/* Common Patterns Chips Ticker */
.patterns-chips-container {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 4.5rem;
}

.chips-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.chips-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.chip-item svg {
  color: var(--gold-primary);
}

/* 3-Column Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.philosophy-col {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
}

.philosophy-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.philosophy-col h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.philosophy-col p {
  font-size: 0.925rem;
  line-height: 1.7;
}

.philosophy-checklist {
  list-style: none;
  margin-top: 1.25rem;
}

.philosophy-checklist li {
  font-size: 0.885rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.philosophy-checklist li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Zen Stone Banner */
.zen-banner {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.zen-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.zen-text-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.zen-text-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

/* ==========================================================================
   SECTION 08: REAL SHIFTS (Client Stories / Testimonials)
   ========================================================================== */
.shifts-testimonial-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.story-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.story-quote-icon {
  color: var(--gold-primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.story-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.story-shift-badge {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold-primary);
}

.shift-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.shift-badge-from {
  color: var(--text-muted);
}

.shift-badge-to {
  color: var(--gold-primary);
}

/* Stories CTA Strip */
.stories-cta-card {
  background: #FFFFFF;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  gap: 2rem;
}

.stories-cta-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.stories-cta-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   SECTION 09: INSIGHTS & RESOURCES
   ========================================================================== */
.resources-section {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.featured-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.article-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.article-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.article-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.article-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-link:hover {
  color: var(--gold-hover);
  transform: translateX(4px);
}

/* Category Filters */
.category-pills-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cat-pill {
  padding: 0.75rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.cat-pill:hover, .cat-pill.active {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   SECTION 10: DON'T FIGURE IT OUT ALONE (Community & Live)
   ========================================================================== */
.community-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.two-pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.pathway-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pathway-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.pathway-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pathway-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.pathway-box-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.pathway-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pathway-box-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pathway-box-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pathway-box-bullets li {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pathway-box-bullets li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   SECTION 11: YOUR NEXT STEP (Action Matrix)
   ========================================================================== */
.next-step-section {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.action-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.matrix-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.matrix-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.matrix-num-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.matrix-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.matrix-card .matrix-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.matrix-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.matrix-final-banner {
  background: var(--bg-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.matrix-final-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(182, 141, 64, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.matrix-final-banner h3 {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.matrix-final-banner p {
  color: #A9B8C8;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   SECTION 12: FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-mission {
  font-size: 1.05rem;
  color: #9DB0C4;
  line-height: 1.7;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list a {
  color: #8C9EAF;
  font-size: 0.9rem;
}

.footer-nav-list a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-box p {
  color: #8C9EAF;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-email-link {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
}

.footer-email-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A9B8C8;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #6C7D8E;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.legal-links a:hover {
  color: #A9B8C8;
}

/* ==========================================================================
   MODALS (Clarity Call & Video Training)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 34, 51, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 20;
}

.modal-close-btn:hover {
  background: var(--gold-light);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.15);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: #FFFFFF;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-list a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-nav-list a:hover {
  color: var(--gold-primary);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 34, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--gold-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile Devices)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }

  .pattern-grid,
  .pathways-grid,
  .stories-grid,
  .featured-articles-grid,
  .action-matrix-grid,
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-pathways-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-hero-grid,
  .zen-banner,
  .cycle-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pattern-grid,
  .pathways-grid,
  .stories-grid,
  .featured-articles-grid,
  .action-matrix-grid,
  .philosophy-grid,
  .three-insights-grid {
    grid-template-columns: 1fr;
  }

  .outcome-indicators {
    grid-template-columns: repeat(2, 1fr);
  }

  .shift-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .shift-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .pattern-callout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .callout-divider {
    display: none;
  }

  .stories-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cycle-wheel-wrapper {
    max-width: 320px;
  }

  .cycle-node {
    width: 100px;
    font-size: 0.68rem;
    padding: 0.4rem 0.5rem;
  }

  .cycle-center-hub {
    width: 100px;
    height: 100px;
    padding: 0.5rem;
  }

  .cycle-center-hub span {
    font-size: 0.65rem;
  }
}
