/* ── DESIGN SYSTEM VARIABLES ── */
:root {
  /* Colors from PDF design specs */
  --bg-hero: #fafaf8;
  /* Light cream/alabaster */
  --bg-cream: #efede8;
  /* Warm light gray/cream */
  --bg-dark: #141414;
  /* Charcoal dark */
  --bg-card-dark: #242424;
  /* Dark card background */
  --accent-orange: #FF7D00;
  /* Primary vector orange */
  --accent-orange-light: #ffe8d5;
  /* Soft peach/orange */
  --text-dark: #161616;
  /* Near black body text */
  --text-muted: #5a5a5a;
  /* Slate gray text */
  --text-light: #fafaf8;
  /* Off-white text */
  --text-muted-light: #9b9b9b;
  /* Light gray text */
  --border-light: #d8d5cd;
  /* Warm light border */
  --border-dark: #2e2e2e;
  /* Sleek dark border */
  --border-focused: #e8521a;
  /* Focus accent */

  /* Layout constraints */
  --container-width: 1200px;
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;
}

/* ── BASE STYLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-hero);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), background var(--transition-fast), opacity var(--transition-fast);
}

.btn:active {
  transform: scale(0.98);
}

.btn-black {
  background: var(--bg-dark);
  color: #fff;
}

.btn-black:hover {
  background: #2a2a2a;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-orange {
  background: var(--accent-orange);
  color: #fff;
}

.btn-orange:hover {
  opacity: 0.9;
}

.btn-white {
  background: #fff;
  color: var(--text-dark);
}

.btn-white:hover {
  background: #f4f3f0;
}

/* ── HERO WRAPPER ── */
.hero-wrapper {
  position: relative;
  background: linear-gradient(135deg, #fffaf6 0%, #faf8f5 100%);
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/img_0.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  /* Faint blueprint lines */
  filter: sepia(0.5) hue-rotate(345deg) saturate(2);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ── */
nav#main-navigation {
  background: transparent;
  border-bottom: 1px solid #ffdcc9;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.homepage-hero-wrapper {
  margin-top: -72px;
}

nav#main-navigation.nav-scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ffdcc9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.nav-logo img {
  height: 64px;
  width: auto;
  border-radius: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-orange);
}

.nav-book {
  background: var(--bg-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.nav-book:hover {
  background: #2a2a2a;
}

/* Hamburger menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger div {
  width: 20px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-normal);
}

/* ── HERO SECTION ── */
.hero {
  background: transparent;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.modules-hero-inner {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero .btn-white {
  border: 1px solid #ffdcc9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-btns {
  display: flex;
  gap: 16px;
}

/* Hero visual — now hosts problem carousel card */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Problem carousel card inside hero */
.problem-card-box {
  width: 100%;
  background: #ffeeda;
  border-radius: 28px;
  padding: 48px;
  border: 1.5px solid var(--accent-orange);
  box-shadow: 0 12px 40px rgba(232, 82, 26, 0.08);
}

.problem-card-box .problem-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.problem-card-box .problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-card-box .prob-dots {
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 82, 26, 0.04);
}

.problem-card-box .prob-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dcdcdc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.problem-card-box .prob-dot.active {
  background: var(--accent-orange);
  width: 24px;
  height: 8px;
  border-radius: 4px;
}

/* ── PROBLEM SECTION (LIGHT) ── */
.problem-section {
  background: var(--bg-cream);
  /* Warm light gray/cream background */
  padding: 50px 0;
  color: var(--text-dark);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-left h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--accent-orange);
}

.problem-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-right {
  position: relative;
  background: #ffffff;
  /* Pure white card background */
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  /* Soft shadow */
}

.problem-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.prob-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prob-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-orange);
  stroke-width: 1.8;
  fill: none;
}

.problem-card-nav {
  display: flex;
  gap: 16px;
}

.card-nav-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.card-nav-btn:hover {
  opacity: 0.6;
}

.card-nav-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 2.2;
}

.problem-card {
  min-height: 140px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.prob-dots-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prob-dots {
  display: flex;
  gap: 8px;
}

.prob-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d5cd;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.prob-dot.active {
  background: #5a5a5a;
  width: 18px;
  border-radius: 3px;
  transition: width 0.3s ease, background 0.3s ease;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: #ffffff;
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.how-header {
  text-align: left;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 800px;
  color: var(--accent-orange);
  line-height: 1.15;
}

.how-header .sub {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-col {
  background: #fffbf9;
  border: 1.5px solid #ffdcc9;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 8px 30px rgba(232, 82, 26, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232, 82, 26, 0.08);
}

.step-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.step-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 1.8;
}

.step-num-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.5px;
}

.step-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-bold {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.4;
}

.phase-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}



/* ── PHASES (WARM CREAM) ── */
.phases-section {
  background: #ffeeda;
  /* Match soft peach fill */
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.phases-header {
  margin-bottom: 50px;
}

.phases-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--accent-orange);
  line-height: 1.15;
}

.phases-header .sub {
  font-size: 15px;
  color: var(--text-dark);
  max-width: 600px;
  line-height: 1.6;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.phase-card {
  background: #fffcf8;
  /* off-white/cream background */
  border: 1.5px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 36px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

/* Faded states for inactive card content */
.phase-card .phase-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #a5a29c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.phase-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3e3b37;
  margin-top: 16px;
  margin-bottom: 20px;
}

.phase-card .phase-list li {
  font-size: 13.5px;
  color: #888682;
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.phase-card .phase-list li::before {
  content: '•';
  color: #d1cfc9;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 2px;
}

/* Active states for active card content */
.phase-card.phase-active {
  background: #ffffff;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 16px 40px rgba(232, 82, 26, 0.08);
}

.phase-card.phase-active:hover {
  transform: translateY(-4px);
}

.phase-card.phase-active .phase-eyebrow {
  color: var(--accent-orange);
}

.phase-card.phase-active h3 {
  color: var(--text-dark);
}

.phase-card.phase-active .phase-list li {
  color: var(--text-dark);
}

.phase-card.phase-active .phase-list li::before {
  color: var(--accent-orange);
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.phase-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-now {
  background: var(--accent-orange);
  color: #fff;
}

.badge-soon {
  background: rgba(0, 0, 0, 0.06);
  color: #888682;
}


.phase-list {
  list-style: none;
}

.phase-list li:last-child {
  border: none;
}

/* ── WHO IT'S FOR ── */
.who-section {
  background: var(--bg-hero);
  padding: 50px 0;
}

.who-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
  color: var(--accent-orange);
}

.role-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 50px;
}

.role-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 24px 12px 0;
  margin-right: 16px;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.role-tab:hover {
  color: var(--text-dark);
}

.role-tab.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.who-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.who-left h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.who-left p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.who-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  transition: opacity var(--transition-fast);
  border: none;
  cursor: pointer;
}

.who-btn:hover {
  opacity: 0.9;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.who-feature-card {
  background: #ffeeda;
  /* Match orange tinted soft fill */
  border: 1.5px solid #ffdcc9;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
  transition: transform var(--transition-normal);
}

.who-feature-card:hover {
  transform: translateY(-2px);
}

.who-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
}

.who-feature-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #3e3b37;
  line-height: 1.4;
}


/* ── TEAM SECTION (WARM CREAM) ── */
.team-section {
  background: #ffeeda;
  /* Match soft peach fill */
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
}

.team-inner h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 50px;
  color: var(--accent-orange);
  line-height: 1.15;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1024px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-photo-container {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffeeda;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 28px 24px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.team-cred {
  font-size: 12.5px;
  color: #a5a29c;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-cred .cred-title {
  color: var(--accent-orange);
}


.team-bio {
  font-size: 13px;

  color: var(--text-muted);
  line-height: 1.6;
}

/* ── GET STARTED / FORM (DARK) ── */
.cta-section {
  background: var(--bg-dark);
  padding: 50px 0;
  color: var(--text-light);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-left p {
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-promise {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-promise-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2e150b;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-promise-bullet::after {
  content: '✓';
  font-size: 10px;
  color: var(--accent-orange);
  font-weight: 800;
}

.cta-promise p {
  font-size: 14.5px;
  color: #c5c3be;
  margin-bottom: 0;
  line-height: 1.5;
}

.form-box {
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-md);
  padding: 40px;
}

.form-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  margin-bottom: 24px;
  text-transform: uppercase;
}


.form-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-light);
}

.form-box .form-sub {
  font-size: 12.5px;
  color: var(--text-muted-light);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder {
  color: #555;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-orange);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.btn-cta {
  width: 100%;
  background: var(--accent-orange);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: opacity var(--transition-fast);
}

.btn-cta:hover {
  opacity: 0.9;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  padding: 28px 80px;
  display: flex;
  align-items: center;

  justify-content: space-between;
  gap: 32px;
  color: var(--text-muted-light);
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-logo img {
  height: 54px;
  width: auto;
  border-radius: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-powered {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.footer-powered span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-powered img {
  height: 48px !important;
  width: auto !important;
}

.footer-powered-brand {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  letter-spacing: 1px;
}

/* ── RESPONSIVE DESIGN (TABLETS / MOBILES) ── */
@media (max-width: 960px) {
  .container {
    padding: 0 24px;
  }

  nav#main-navigation {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    right: 0;
    height: calc(100vh - 72px);
    top: 72px;
    background-color: var(--bg-hero);
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 48px;
    width: 65%;
    box-shadow: -10px 10px 30px rgba(232, 82, 26, 0.05);
    border-left: 1px solid #ffdcc9;
    z-index: 99;
  }

  .nav-links.nav-active {
    display: flex;
    animation: slideIn var(--transition-normal) forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0%);
    }
  }

  .nav-links a {
    color: var(--text-dark);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent-orange);
  }

  .burger {
    display: flex;
  }

  /* Burger Animation */
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-4px, 4px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-4px, -4px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .modules-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: auto;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .phases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .who-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  footer {
    padding: 30px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
  }

  .problem-left h2,
  .how-header h2,
  .phases-header h2,
  .who-header h2,
  .team-inner h2,
  .cta-left h2 {
    font-size: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group:first-child {
    margin-bottom: 16px;
  }

  .role-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .role-tab {
    padding: 10px 16px 10px 0;
    margin-right: 8px;
  }

  .problem-right {
    padding: 24px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── PRICING PLANS ── */
.pricing-section {
  background: var(--bg-cream);
  /* Warm cream/light gray background to contrast with white sections */
  padding: 50px 0;
  color: var(--text-dark);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--accent-orange);
}

.pricing-subtitle {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card.professional {
  border: 2px solid var(--accent-orange);
  box-shadow: 0 15px 35px rgba(232, 82, 26, 0.06);
}

.pricing-card.professional:hover {
  box-shadow: 0 25px 50px rgba(232, 82, 26, 0.1);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.price-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.check-icon-orange {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-pricing-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  width: 100%;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-pricing-outline:hover {
  background: #f7f6f2;
  border-color: var(--text-dark);
}

.btn-pricing-solid {
  width: 100%;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive styles for pricing */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-header h2 {
    font-size: 32px;
  }
}

.logic-section h2,
.foundation-section h2 {
  color: var(--accent-orange);
}

/* ── MODULES SUBPAGE ── */
.badge-production {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ffdcc9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-production .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.info-strip {
  background: #fafaf8;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.info-strip p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 900px;
}

.info-strip strong {
  color: var(--accent-orange);
  font-weight: 700;
}

.problem-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.prob-card-item {
  background: #fffaf6;
  border: 1px solid #ffe8d5;
  border-left: 3.5px solid var(--accent-orange);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.prob-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(232, 82, 26, 0.04);
}

.prob-card-icon-box {
  width: 44px;
  height: 44px;
  background: var(--accent-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.prob-card-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
}

.prob-card-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 12px;
  line-height: 1.35;
}

.prob-card-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === SHIFT FLOW VIDEO PLAYER === */
.shift-video-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
  background: #f5f3ef;
  position: relative;
}

.shift-demo-video {
  display: block;
  width: 100%;
  height: auto;
  /* Source is 2716x518 — let it be naturally responsive */
  border-radius: 0;
  background: #f5f3ef;
}

/* Old grid – kept as reference; not used when video is active */
.shift-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}


/* === SHIFT FLOW TILES === */
.shift-step-card {
  background: #ffffff;
  border: 1px solid #e8e5df;
  border-radius: 16px;
  padding: 28px 16px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.55s ease,
    background 0.55s ease,
    box-shadow 0.55s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Top progress-fill bar inside each card */
.step-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-orange);
  border-radius: 3px 3px 0 0;
  transition: width 0s linear;
  /* JS controls via animation */
}

/* When the card has .active, run the fill animation */
.shift-step-card.active .step-progress-bar {
  animation: fill-progress-bar var(--step-duration, 1.5s) linear forwards;
}

@keyframes fill-progress-bar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Elevated active card state */
.shift-step-card.active {
  transform: translateY(-10px) scale(1.04);
  border-color: var(--accent-orange);
  background: #fffaf6;
  box-shadow: 0 18px 40px rgba(232, 82, 26, 0.10),
    0 4px 12px rgba(232, 82, 26, 0.06);
}

/* Done states: tiles that have already been activated */
.shift-step-card.done {
  border-color: rgba(232, 82, 26, 0.35);
  background: #fffef9;
}

/* Hover for non-active tiles */
.shift-step-card:not(.active):hover {
  transform: translateY(-4px);
  border-color: #ffdcc9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* Icon wrapper sizing & baseline */
.step-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: transparent;
  transition: background 0.4s ease, transform 0.4s ease;
}

.step-icon-wrapper svg {
  width: 60px;
  height: 60px;
  stroke: var(--accent-orange);
  fill: none;
  transition: stroke 0.4s ease, opacity 0.4s ease;
}

/* Default icon: orange but dimmed for non-active tiles */
.shift-step-card:not(.active):not(.done) .step-icon-wrapper svg {
  opacity: 0.35;
}

/* Active card icon glow + bounce */
.shift-step-card.active .step-icon-wrapper {
  animation: icon-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.shift-step-card.active .step-icon-wrapper svg {
  opacity: 1;
  stroke: var(--accent-orange);
  filter: drop-shadow(0 0 8px rgba(232, 82, 26, 0.25));
}

/* Done card icon: full orange, no glow */
.shift-step-card.done .step-icon-wrapper svg {
  opacity: 0.7;
  stroke: var(--accent-orange);
}

@keyframes icon-bounce {
  0% {
    transform: scale(0.85);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}


.shift-step-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

.shift-step-card.active h4 {
  color: var(--accent-orange);
}

.step-sub {
  font-size: 11px;
  color: var(--text-muted);
}


.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-card {
  background: #ffffff;
  border: 1px solid #ffe8d5;
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.capability-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.cap-icon-box {
  width: 36px;
  height: 36px;
  background: #ffe8d5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-orange);
  fill: none;
}

.cap-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cap-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.logic-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: flex-start;
}

.dlr-steps {
  position: relative;
  padding-left: 24px;
}

.dlr-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 41px;
  bottom: 15px;
  width: 2px;
  background: #ffe8d5;
}

.dlr-step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
  position: relative;
}

.dlr-num-badge {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.dlr-step-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.dlr-step-body p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.logic-right {
  margin-top: 90px;
}

.impact-card {
  background: #fff5ee;
  border: 1px solid #ffdcc9;
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(232, 82, 26, 0.04);
}

.impact-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.impact-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.impact-list {
  list-style: none;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.foundation-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.phases-roadmap-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.roadmap-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.roadmap-item:last-child {
  border-bottom: none;
}

.roadmap-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.roadmap-desc h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.roadmap-status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}

.roadmap-item.r-active {
  background: #fffaf6;
  border-radius: 8px;
}

.roadmap-item.r-active .roadmap-lbl {
  color: var(--accent-orange);
}

.roadmap-item.r-active .roadmap-desc h5 {
  color: var(--text-dark);
  font-weight: 700;
}

.roadmap-item.r-active .roadmap-status {
  background: var(--accent-orange);
  color: #fff;
}

@media (max-width: 991px) {
  .problem-cards-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shift-flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .logic-inner,
  .foundation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .shift-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-item {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
}