/* ===================================================
   TONY ROBBINS – style.css
   =================================================== */

   .nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.brand-logo {
  height: 70px;
}

/* ---------- CSS Variables ---------- */
:root {
  --font-sans:
    sans, "sans Fallback", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Colors from actual site */
  --bg-dark: #0a0a0a;
  --bg-dark2: #111111;
  --bg-dark3: #1a1a1a;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --text-white: #ffffff;
  --text-dark: #111111;
  --text-gray: #666666;
  --text-muted: #999999;
  --accent: #000000;
  --accent-dark: #000000;
  --accent-blue: #0057ff;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 0, 0, 0.1);

  --nav-height: 68px;
  --max-width: 1280px;
  --section-px: clamp(20px, 5vw, 80px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Shared Utilities ---------- */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--text-dark);
}

.btn-secondary.white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary.white:hover {
  border-color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--text-dark);
  transition: opacity 0.2s;
}
.btn-ghost:hover {
  opacity: 0.7;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
 
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  color: var(--text-white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.8;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: rgba(9, 12, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1200;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  opacity: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-search {
  color: #fff;
  opacity: 0.82;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-search:hover {
  opacity: 1;
}
.nav-hamburger span {
  background: #fff;
}
.nav-search:hover {
  opacity: 1;
}
.nav-login,
.nav-start-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-login:hover,
.nav-start-now:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}
.nav-mobile-actions {
  display: none;
}
.nav-mobile-login,
.nav-mobile-start-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-mobile-login {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.nav-mobile-start-now {
  border: 1.5px solid #ffffff;
}
.nav-cta {
  font-size: 12px;
  padding: 10px 22px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s;
}

[id*="chat"],
[class*="chat-widget"],
[class*="chat-widget"],
[class*="livechat"],
[class*="intercom"],
[class*="crisp"],
[class*="tawk"],
[class*="drift"],
[class*="zendesk"],
[class*="messenger"],
[class*="whatsapp"],
iframe[title*="chat" i],
iframe[title*="messenger" i],
iframe[title*="whatsapp" i],
button[aria-label*="chat" i],
a[aria-label*="chat" i] {
  display: none !important;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 540px;
  height: 100vh;
  background: #050b1a;
  margin-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url(../../assets/banner.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 30% 50%,
      rgba(0, 60, 180, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 70% 40%,
      rgba(100, 200, 255, 0.06) 0%,
      transparent 60%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--section-px);
  width: 100%;
  gap: 48px;
}
.hero-text {
  flex: 0 0 auto;
  max-width: 420px;
  text-align: left;
}
.hero-text p {
  color: #fff;
}
.hero-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-btn {
  font-size: 13px;
  background-color: #fff !important;
  color: #000 !important;
}
.section-start-now-btn {
  margin-top: 28px;
  min-height: 56px;
  padding: 15px 32px;
  font-size: 17px;
}
.hero-video-wrap {
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.hero-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hero-next-event {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid var(--border);
  padding: 12px var(--section-px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.hero-next-event a {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hero-next-event a:hover {
  opacity: 1;
}
.event-link-arrow {
  margin: 0 4px;
}

/* ===================================================
   CREDIBILITY BAR
   =================================================== */
.credibility-bar {
  background: #111111;
  padding: 60px 0;
}
.credibility-bar-inner {
  width: min(var(--max-width), calc(100% - (var(--section-px) * 2)));
  margin: 0 auto;
}
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  text-align: center;
}
.credibility-stat {
  display: grid;
  gap: 12px;
}
.credibility-stat-value {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.credibility-stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}
.credibility-divider {
  width: 100%;
  height: 1px;
  margin: 44px 0 56px;
  background: rgba(255, 255, 255, 0.15);
}
.credibility-trusted-by,
.credibility-seen-on {
  text-align: center;
}
.credibility-seen-on {
  margin-top: 30px;
}
.credibility-kicker {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.credibility-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.5);
}
.credibility-logo-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.2;
}
.credibility-logo-row span:not(:last-child)::after {
  content: "\00B7";
  margin-left: 22px;
  color: rgba(255, 255, 255, 0.35);
}
.credibility-logo-row-seen-on span {
  font-size: 18px;
}
.credibility-logo-row-images {
  gap: 28px 40px;
  align-items: center;
}
.credibility-logo-row-images img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 0.2s ease;
}
.credibility-logo-row-images img:hover {
  transform: translateY(-2px);
}
.credibility-logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.credibility-logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: credibility-logo-scroll 36s linear infinite;
}
.credibility-logo-track img {
  flex: 0 0 auto;
  height: 58px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}
.credibility-logo-track img:hover {
  transform: translateY(-2px);
}
@keyframes credibility-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  }
}

/* ===================================================
   EVENTS SLIDER
   =================================================== */
.tagline-section {
  position: relative;
  isolation: isolate;
  background: #060b16;
  min-height: clamp(380px, 56vw, 620px);
  padding: 56px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tagline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.28) 0%, rgba(5, 7, 12, 0.46) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.44) 100%);
}
.tagline-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tagline-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
}
.tagline-section h2,
.tagline-section p {
  position: relative;
}
.tagline-section h2 {
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 800;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.tagline-section p {
  width: min(100%, 620px);
  margin: 0 auto;
  font-size: clamp(16px, 1.8vw, 28px);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.45;
  text-wrap: balance;
}
.tagline-content .section-start-now-btn {
  margin-top: 32px;
}

.mastery-section {
  display: grid;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  align-items: stretch;
  background: #000;
  min-height: 720px;
}
.mastery-media {
  min-height: 100%;
}
.mastery-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.mastery-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px clamp(32px, 6vw, 96px);
  color: #fff;
}
.mastery-content h2 {
  max-width: 620px;
  margin: 0 0 44px;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #fff;
}
.mastery-content p {
  max-width: 700px;
  margin: 0;
  font-size: clamp(19px, 1.85vw, 24px);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.86);
}
.mastery-credentials {
  margin-top: 36px;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}
.mastery-credentials-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.mastery-logos {
  width: min(100%, 760px);
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.mastery-logos img {
  width: 100%;
  max-width: 70px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.mastery-content .section-start-now-btn {
  margin-top: 36px;
}

.who-i-work-with-section {
  background: #111111;
  padding: 0;
}
.who-i-work-with-card {
  max-width: none;
  margin: 0 auto;
  background: #111111;
  border-radius: 0;
  padding: 92px clamp(28px, 6vw, 96px) 100px;
  text-align: center;
  color: #ffffff;
}
.who-i-work-with-kicker {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.who-i-work-with-card h2 {
  max-width: 860px;
  margin: 0 auto 36px;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
.who-i-work-with-subheadline,
.who-i-work-with-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}
.who-i-work-with-card .section-start-now-btn {
  margin-top: 42px;
}
.who-i-work-with-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  max-width: 980px;
  margin: 52px auto 56px;
}
.who-i-work-with-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 28px;
  border: 1px solid #c0392b;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.14));
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.who-i-work-with-body {
  max-width: 900px;
}

.authority-testimonials-section {
  position: relative;
  --authority-testimonial-bg: url("../testimonial-brandon-hawkins-bg.png");
  padding: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 14, 0.14) 0%, rgba(5, 7, 14, 0.1) 32%, rgba(5, 7, 14, 0.88) 52%, rgba(5, 7, 14, 0.97) 100%),
    var(--authority-testimonial-bg) left center / cover no-repeat;
  overflow: hidden;
  transition: background-image 0.35s ease;
}
.authority-testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(2, 3, 8, 0.12), rgba(2, 3, 8, 0.56) 72%, rgba(2, 3, 8, 0.82) 100%);
  pointer-events: none;
}
.authority-testimonials-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 790px;
  padding: 88px var(--section-px) 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.authority-testimonial-feature {
  width: min(100%, 980px);
  margin: 0 0 0 auto;
  padding-left: clamp(140px, 13vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.authority-testimonial-feature blockquote {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.authority-testimonial-feature-meta,
.authority-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.authority-testimonial-feature-meta {
  margin-top: 34px;
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  background: rgba(7, 9, 18, 0.7);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  gap: 18px;
}
.authority-testimonial-feature-meta.is-hidden {
  display: none;
}
.authority-testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.authority-testimonial-feature-meta strong,
.authority-testimonial-meta strong {
  display: block;
  color: #fff;
}
.authority-testimonial-feature-meta span,
.authority-testimonial-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}
.authority-testimonial-feature-meta strong {
  font-size: 38px;
  margin-bottom: 4px;
  line-height: 1;
}
.authority-testimonial-feature-meta span {
  font-size: 17px;
}
.authority-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 0 0 auto;
}
.authority-testimonial-card {
  grid-column: span 3;
  padding: 12px 10px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  cursor: pointer;
  opacity: 0.72;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.authority-testimonial-card-collin-first {
  order: -1;
}
.authority-testimonial-card-first-row {
  grid-column: span 4;
}
.authority-testimonial-card:hover,
.authority-testimonial-card:focus-visible,
.authority-testimonial-card.is-active {
  opacity: 1;
  transform: translateY(-3px);
}
.authority-testimonial-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 6px;
}
.authority-testimonial-meta {
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.authority-testimonial-meta strong {
  font-size: 15px;
  margin-bottom: 3px;
}
.authority-testimonial-meta span {
  font-size: 11px;
  margin-bottom: 6px;
}
.authority-testimonial-meta p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}
.authority-testimonial-grid .authority-testimonial-avatar {
  width: 46px;
  height: 46px;
  margin: 0 auto;
}
.authority-testimonial-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(192, 57, 43, 0.95), rgba(125, 26, 21, 0.95));
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.curiosity-book-section {
  position: relative;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 20, 0.9) 0%, rgba(8, 10, 20, 0.72) 38%, rgba(8, 10, 20, 0.4) 100%),
    url("../curiosity-theory-section-bg.png") center center / cover no-repeat;
}
.curiosity-book-card {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 750px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.curiosity-book-content {
  width: min(100%, 640px);
  padding: 72px clamp(24px, 5vw, 72px);
  color: #ffffff;
}
.curiosity-book-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
}
.curiosity-book-content h2 {
  max-width: 470px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.curiosity-book-copy {
  max-width: 470px;
  margin: 0 0 28px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.curiosity-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #570f14;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.curiosity-book-cta:hover {
  background: #6b171d;
  transform: translateY(-1px);
}
.curiosity-book-media {
  display: none;
}
.curiosity-book-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.how-it-works-section {
  background: #f7f4ef;
  padding: 42px var(--section-px) 88px;
}
.how-it-works-inner {
  max-width: 980px;
  margin: 0 auto;
}
.how-it-works-inner h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111111;
}
.how-it-works-steps {
  display: grid;
  gap: 34px;
}
.how-it-works-step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.how-it-works-step-label {
  padding-top: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(17, 17, 17, 0.34);
}
.how-it-works-step-content h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}
.how-it-works-step-content p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.72);
}
.how-it-works-cta {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}
.how-it-works-cta .btn-primary {
  min-height: 56px;
  padding: 15px 32px;
}
.results-coach-cta-section {
  background: #f7f4ef;
  padding: 0 var(--section-px) 28px;
}
.results-coach-cta-card {
  max-width: 1380px;
  margin: 0 auto;
  padding: 30px clamp(24px, 3vw, 44px);
  border-radius: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111111 52%, #1a1a1a 100%);
  box-shadow: 0 24px 54px rgba(12, 28, 25, 0.16);
}
.results-coach-cta-copy {
  max-width: 760px;
}
.results-coach-cta-kicker {
  margin: 0 0 10px;
  color: rgba(242, 234, 221, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.results-coach-cta-card h2 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.results-coach-cta-action {
  display: flex;
  justify-content: flex-end;
}
.results-coach-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: #fff3e0;
  color: #102c27;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.results-coach-cta-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}
.events-section {
  background: var(--bg-dark);
  padding: 40px 0 40px var(--section-px);
  overflow: hidden;
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-right: var(--section-px);
  margin-bottom: 24px;
}
.events-discover {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.events-discover:hover {
  opacity: 0.7;
}
.carousel-controls {
  display: flex;
  gap: 8px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.events-track-wrapper {
  overflow: hidden;
}
.events-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.event-card {
  flex: 0 0 260px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark3);
  cursor: pointer;
  transition: transform 0.25s;
}
.event-card:hover {
  transform: translateY(-4px);
}
.event-card img {
  height: 160px;
  object-fit: cover;
}
.event-card-info {
  padding: 14px 16px 16px;
}
.event-card-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.event-card-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===================================================
   FEATURE SECTION
   =================================================== */
.feature-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feature-bg {
  position: absolute;
  inset: 0;
}
.feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
}
.feature-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--section-px);
  width: 100%;
  max-width: 560px;
}
.feature-content h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.feature-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ===================================================
   PILLARS
   =================================================== */
.pillars-section {
  background: var(--bg-white);
  padding: 80px var(--section-px);
  max-width: var(--max-width);
  margin: 0 auto;
}
.pillars-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 24px;
}
.pillars-list {
  display: flex;
  flex-direction: column;
}
.pillar-item {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--border-dark);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.pillar-item:first-child {
  border-top: 1px solid var(--border-dark);
}
.pillar-copy {
  display: grid;
  gap: 8px;
  max-width: 92%;
}
.pillar-item span {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ccc;
  transition: color 0.2s;
}
.pillar-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  transition: color 0.2s;
}
.pillar-item.active span,
.pillar-item:hover span {
  color: var(--text-dark);
}
.pillar-item.active .pillar-copy p,
.pillar-item:hover .pillar-copy p {
  color: var(--text-dark);
}

.pillars-image {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}
.pillars-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
/* ===================================================
   TESTIMONIALS
   =================================================== */

.testimonials-section {
  background: #f0ede8;
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
  cursor: grab;
}

.testimonials-track.dragging {
  transition: none;
  cursor: grabbing;
}

/* ✅ FIXED SLIDE STRUCTURE */
.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

/* ✅ INNER CONTAINER (replaces max-width + margin auto issue) */
.testimonial-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--section-px);

  display: flex;
  align-items: center;
  gap: 60px;
}

.testimonial-person {
  flex-shrink: 0;
}

.testimonial-person img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content blockquote {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--text-gray);
}

/* DOTS */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.t-dot.active {
  background: var(--text-dark);
}

/* ===================================================
   HUNGER / CTA SECTION
   =================================================== */
.hunger-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--section-px);
  gap: 60px;
  align-items: center;
}
.hunger-left h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hunger-left p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hunger-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.press-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.logos-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.press-logo {
  font-size: 16px;
  font-weight: 800;
  color: #ccc;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hunger-right {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

/* ===================================================
   RESULTS SECTION
   =================================================== */
.results-section {
  background: var(--bg-dark);
  padding: 80px var(--section-px);
}
.results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.results-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.results-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 48px;
}
.results-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 180px;
  line-height: 1.4;
}
.results-learn {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  display: inline-flex;
  transition: opacity 0.2s;
}
.results-learn:hover {
  opacity: 0.7;
}

/* ===================================================
   VIDEO TESTIMONIALS
   =================================================== */
.video-testimonials-section {
  background: var(--bg-light);
  padding: 60px 0 60px var(--section-px);
  overflow: hidden;
}
.vt-track-wrapper {
  overflow: hidden;
}
.vt-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.vt-card {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.vt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.vt-thumb {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s;
}
.vt-card:hover .vt-thumb::before {
  background: rgba(0, 0, 0, 0.18);
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.play-btn:hover {
  transform: scale(1.1);
  background: var(--accent-dark);
}
.vt-info {
  padding: 16px;
}
.vt-event {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.vt-quote {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}
.vt-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================================
   EVENTS LIST SECTION
   =================================================== */
.events-list-section {
  background: var(--bg-white);
  padding: 80px 0 60px;
}
.events-list-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px) 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.events-list-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.events-list-header > div > p {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.events-list-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.events-list-track-wrapper {
  overflow: hidden;
  padding-left: var(--section-px);
  position: relative;
}
.events-list-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding-right: var(--section-px);
  margin-bottom: 16px;
}
.events-list-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.event-list-card {
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.event-list-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.event-list-card > img {
  height: 170px;
  object-fit: cover;
}
.elc-badge {
  display: inline-block;
  margin: 12px 14px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 97, 10, 0.08);
  border-radius: 3px;
  padding: 3px 8px;
}
.elc-body {
  padding: 10px 14px 16px;
}
.elc-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.elc-body p {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 12px;
}
.elc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.elc-meta span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===================================================
   COACHING SECTION
   =================================================== */
.coaching-section {
  background: var(--bg-dark);
  padding: 0;
  overflow: hidden;
}
.coaching-label {
  background: var(--accent);
  display: inline-block;
  padding: 8px 20px;
}
.coaching-label span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.coaching-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--section-px);
  gap: 60px;
  align-items: center;
}
.coaching-left h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.coaching-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
}
.coaching-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cstat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cstat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 120px;
  line-height: 1.4;
}
.coaching-left > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}
.coaching-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.coaching-right {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

/* ===================================================
   SHOP SECTION
   =================================================== */
.shop-section {
  background: #fff;
  padding: 80px 0 60px;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 30px;
}

.shop-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.shop-header p {
  max-width: 480px;
  color: #666;
  margin: 10px 0 20px;
  line-height: 1.6;
}

.shop-filter-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-filter {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #333;
  font-size: 12px;
  cursor: pointer;
  background: transparent;
  transition: 0.2s;
}

.shop-filter.active,
.shop-filter:hover {
  background: #111;
  color: #fff;
}

.shop-track-wrapper {
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}

.shop-track {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shop-card {
  width: 220px;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.shop-card:hover {
  transform: translateY(-5px);
}

.shop-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.shop-card-info {
  padding: 12px;
}

.shop-card-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.shop-price {
  font-size: 13px;
  color: #666;
}

/* ===================================================
   PODCAST SECTION
   =================================================== */
.podcast-section {
  background: var(--bg-light);
  padding: 80px var(--section-px);
}
.podcast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.podcast-header h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.podcast-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.podcast-layout-embed {
  display: flex;
  justify-content: center;
}
.podcast-embed-frame {
  width: 100%;
  max-width: 660px;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
}
.podcast-featured {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.podcast-featured > img {
  height: 280px;
  object-fit: cover;
}
.podcast-featured-info {
  padding: 20px 24px;
}
.pod-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 12px;
}
.pod-date {
  font-size: 11px;
  color: var(--text-muted);
}
.podcast-featured-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 20px;
  line-height: 1.4;
}
.pod-player-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pod-play {
  width: 36px;
  height: 36px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  transition: background 0.2s;
}
.pod-play:hover {
  background: var(--accent);
}
.pod-progress {
  flex: 1;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
}
.pod-fill {
  height: 100%;
  background: var(--text-dark);
}
.pod-player-bar > span {
  font-size: 12px;
  color: var(--text-muted);
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.podcast-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}
.podcast-item:first-child {
  border-top: 1px solid var(--border-dark);
}
.podcast-item > img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.pod-item-info p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 4px 0 8px;
  color: var(--text-dark);
}
.pod-listen {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.pod-listen:hover {
  opacity: 0.6;
}

.podcast-spotlight-section {
  background: #ffffff;
  padding: 76px var(--section-px) 86px;
}
.podcast-spotlight-header {
  max-width: 1380px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.podcast-spotlight-header h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #050505;
}
.podcast-spotlight-link {
  font-size: 18px;
  color: rgba(17, 17, 17, 0.72);
  white-space: nowrap;
}
.podcast-spotlight-card {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 46px;
  padding: clamp(24px, 3vw, 42px);
  background: #f5f5f3;
}
.podcast-spotlight-card-embed {
  display: flex;
  justify-content: center;
  grid-template-columns: none;
}
.podcast-spotlight-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.podcast-spotlight-featured > img {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 28px;
}
.podcast-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.podcast-spotlight-kicker,
.podcast-spotlight-date {
  font-size: 15px;
  color: rgba(17, 17, 17, 0.58);
}
.podcast-spotlight-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.podcast-spotlight-featured h3 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #050505;
}
.podcast-audio-shell {
  width: min(100%, 620px);
}
.podcast-audio-shell audio {
  display: none;
}
.podcast-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.podcast-time {
  min-width: 42px;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.74);
}
.podcast-progress {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  overflow: hidden;
}
.podcast-progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #050505;
}
.podcast-main-play {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.podcast-main-play:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.podcast-pause-icon {
  display: none;
}
.podcast-main-play.is-playing .podcast-play-icon {
  display: none;
}
.podcast-main-play.is-playing .podcast-pause-icon {
  display: block;
}
.podcast-spotlight-list {
  display: flex;
  flex-direction: column;
}
.podcast-spotlight-item {
  width: 100%;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  color: #111111;
  text-align: left;
}
.podcast-spotlight-item img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  justify-self: start;
}
.podcast-spotlight-item-copy {
  align-self: center;
  justify-self: start;
  width: 100%;
}
.podcast-spotlight-item-copy span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.54);
  text-transform: uppercase;
}
.podcast-spotlight-item-copy p {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #111111;
}
.podcast-spotlight-item strong {
  align-self: center;
  justify-self: end;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}
.podcast-spotlight-item.active {
  background: transparent;
}
.podcast-spotlight-item.active .podcast-spotlight-item-copy p,
.podcast-spotlight-item.active strong {
  color: #000000;
}

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.28) 0%, rgba(4, 7, 14, 0.68) 100%),
    radial-gradient(circle at center, rgba(12, 22, 40, 0.08) 0%, rgba(4, 7, 14, 0.5) 72%, rgba(4, 7, 14, 0.78) 100%),
    url("../final-cta-bg.jpeg") center 24% / cover no-repeat;
  min-height: clamp(420px, 58vw, 720px);
  padding: 72px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta-inner h2 {
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-bottom: 20px;
  text-wrap: balance;
}
.final-cta-inner p {
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: clamp(18px, 1.9vw, 30px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}
.final-cta-section .btn-primary {
  min-height: 72px;
  padding: 18px 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.final-cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}
.form-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.form-popup-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.form-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(4px);
}
.form-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  height: min(88vh, 900px);
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
.form-popup-dialog iframe {
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.form-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #111111;
  font-size: 30px;
  line-height: 1;
}
.form-popup-close:hover {
  background: rgba(17, 17, 17, 0.14);
}
body.form-popup-open {
  overflow: hidden;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #000;
  border-top: none;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 88px var(--section-px) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
  padding-bottom: 76px;
}
.footer-brand {
  display: flex;
  justify-content: center;
}
.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}
.footer-social-column {
  justify-self: center;
}
.footer-col ul {
  display: grid;
  gap: 14px;
}
.footer-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s, opacity 0.2s;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.14em;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars-layout {
    grid-template-columns: 1fr;
  }
  .pillars-image {
    position: static;
  }
  .pillar-copy {
    max-width: 100%;
  }
  .podcast-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .nav-links,
  .nav-login,
  .nav-start-now,
  .nav-search {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-links {
    background: #000000;
  }
  .nav-links a,
  .nav-dropdown-toggle,
  .nav-dropdown-menu a {
    color: #ffffff !important;
    opacity: 1;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }
  .nav-dropdown::after {
    display: none;
  }
  .nav-dropdown-menu a {
    padding: 8px 0 8px 14px;
    color: rgba(255, 255, 255, 0.82) !important;
  }
  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-mobile-login,
  .nav-mobile-start-now {
    flex: 1 1 160px;
  }
  .nav-mobile-start-now {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
  }
  .nav-hamburger span {
    background: #ffffff !important;
  }

  .hero-bg {
    background-image: url(../../assets/banner-mobile.jpeg);
    background-position: center bottom;
    background-size: contain;
    background-color: #050b1a;
  }
  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(5, 11, 26, 0.06) 0%,
        rgba(5, 11, 26, 0) 22%,
        rgba(5, 11, 26, 0) 40%
      ),
      linear-gradient(
        90deg,
        rgba(5, 11, 26, 0.74) 0%,
        rgba(5, 11, 26, 0.48) 38%,
        rgba(5, 11, 26, 0.16) 62%,
        rgba(5, 11, 26, 0) 82%
      ),
      radial-gradient(
        ellipse 70% 90% at 22% 72%,
        rgba(0, 60, 180, 0.22) 0%,
        transparent 72%
      );
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 56px 20px 72px;
  }
  .hero-text {
    max-width: 240px;
  }
  .hero-video-wrap {
    width: 100%;
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 18px;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
    text-wrap: balance;
  }
  .hero-text p {
    font-size: 15px;
    line-height: 1.45;
    max-width: 220px;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }
  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
  }
  .credibility-logo-row {
    gap: 14px 18px;
  }
  .credibility-logo-row span {
    font-size: 18px;
  }
  .credibility-logo-row span:not(:last-child)::after {
    margin-left: 18px;
  }
  .credibility-logo-track {
    gap: 28px;
    animation-duration: 28s;
  }
  .credibility-logo-track img {
    height: 46px;
    max-width: 150px;
  }
  .mastery-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mastery-media {
    min-height: 520px;
  }
  .mastery-content {
    padding: 64px 28px;
  }
  .mastery-content h2 {
    margin-bottom: 28px;
  }
  .mastery-content p {
    font-size: 18px;
    line-height: 1.8;
  }
  .mastery-credentials {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .mastery-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .who-i-work-with-section {
    padding: 0;
  }
  .who-i-work-with-card {
    padding: 72px 28px 76px;
    border-radius: 0;
  }
  .who-i-work-with-kicker {
    margin-bottom: 24px;
  }
  .who-i-work-with-subheadline,
  .who-i-work-with-body {
    font-size: 18px;
    line-height: 1.75;
  }
  .who-i-work-with-pills {
    gap: 16px 18px;
    margin: 42px auto 46px;
  }
  .who-i-work-with-pills span {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 17px;
  }
  .authority-testimonials-shell {
    min-height: 0;
    padding: 64px 28px 48px;
  }
  .authority-testimonial-feature {
    width: min(100%, 760px);
    padding-left: clamp(0px, 5vw, 120px);
  }
  .authority-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
  }
  .authority-testimonial-feature blockquote {
    font-size: clamp(26px, 4.1vw, 38px);
    line-height: 1.02;
  }
  .authority-testimonial-feature-meta strong {
    font-size: 28px;
  }
  .authority-testimonial-feature-meta span {
    font-size: 15px;
  }
  .authority-testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  .authority-testimonial-meta strong {
    font-size: 14px;
  }
  .authority-testimonial-meta span,
  .authority-testimonial-meta p {
    font-size: 11px;
  }
  .curiosity-book-section {
    padding: 0;
    background-position: 72% center;
  }
  .curiosity-book-card {
    min-height: 560px;
    border-radius: 0;
  }
  .curiosity-book-content {
    width: min(100%, 560px);
    padding: 44px 24px 40px;
  }
  .curiosity-book-content h2,
  .curiosity-book-copy {
    max-width: none;
  }
  .curiosity-book-media {
    min-height: 320px;
  }
  .form-popup-dialog {
    width: min(100%, 840px);
    height: min(84vh, 820px);
    padding: 16px;
    border-radius: 20px;
  }
  .how-it-works-section {
    padding: 34px 20px 72px;
  }
  .results-coach-cta-section {
    padding: 0 20px 22px;
  }
  .results-coach-cta-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
  }
  .results-coach-cta-action {
    justify-content: flex-start;
  }
  .podcast-spotlight-section {
    padding: 58px 20px 64px;
  }
  .podcast-spotlight-header {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .podcast-spotlight-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .podcast-spotlight-featured h3 {
    max-width: 620px;
    font-size: clamp(34px, 6.6vw, 56px);
  }
  .podcast-spotlight-item {
    grid-template-columns: 80px minmax(0, 1fr);
  }
  .podcast-spotlight-item strong {
    grid-column: 2;
    justify-self: start;
    font-size: 18px;
    margin-top: 4px;
  }
  .how-it-works-step {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
  }
  .how-it-works-step-label {
    font-size: 16px;
  }
  .how-it-works-step-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .feature-content {
    max-width: 100%;
  }

  .hunger-section {
    grid-template-columns: 1fr;
  }
  .hunger-right {
    display: none;
  }

  .coaching-inner {
    grid-template-columns: 1fr;
  }
  .coaching-right {
    display: none;
  }

  .events-list-header {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-direction: column;
    gap: 24px;
  }

  .shop-header {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-next-event {
    display: none;
  }
  .credibility-bar {
    padding: 48px 0;
  }
  .credibility-stat-value {
    font-size: clamp(32px, 8vw, 42px);
  }
  .credibility-stat-label {
    font-size: 14px;
  }
  .credibility-divider {
    margin: 36px 0 44px;
  }
  .credibility-logo-row {
    gap: 12px 16px;
  }
  .credibility-logo-row span {
    font-size: 16px;
  }
  .credibility-logo-row span:not(:last-child)::after {
    margin-left: 16px;
  }
  .credibility-logo-track {
    gap: 22px;
    animation-duration: 22s;
  }
  .credibility-logo-track img,
  .credibility-logo-row-images img {
    height: 38px;
    max-width: 120px;
  }
  .mastery-media {
    min-height: 380px;
  }
  .mastery-content {
    padding: 52px 22px;
  }
  .mastery-content h2 {
    font-size: clamp(30px, 8.5vw, 42px);
  }
  .mastery-content p {
    font-size: 16px;
    line-height: 1.75;
  }
  .mastery-credentials {
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .mastery-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .mastery-logos img {
    width: calc((100% - 24px) / 3);
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: 76px;
    border-radius: 12px;
  }
  .who-i-work-with-section {
    padding: 0;
  }
  .who-i-work-with-card {
    padding: 44px 18px 48px;
    border-radius: 0;
  }
  .who-i-work-with-kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .who-i-work-with-card h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 22px;
  }
  .who-i-work-with-subheadline,
  .who-i-work-with-body {
    font-size: 16px;
    line-height: 1.7;
  }
  .who-i-work-with-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px auto;
    max-width: 340px;
  }
  .who-i-work-with-pills span {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.25;
    border-radius: 999px;
  }
  .authority-testimonials-section {
    background:
      linear-gradient(180deg, rgba(5, 7, 14, 0.38) 0%, rgba(5, 7, 14, 0.7) 32%, rgba(5, 7, 14, 0.94) 68%, rgba(5, 7, 14, 0.98) 100%),
      var(--authority-testimonial-mobile-bg, var(--authority-testimonial-bg)) center top / cover no-repeat;
  }
  .authority-testimonials-shell {
    min-height: 0;
    padding: 40px 18px 34px;
  }
  .authority-testimonial-feature {
    width: 100%;
    margin: 0 0 26px;
    padding-left: 0;
  }
  .authority-testimonial-feature blockquote {
    font-size: clamp(28px, 8.2vw, 40px);
    line-height: 1.02;
  }
  .authority-testimonial-feature-meta {
    margin-top: 18px;
    padding: 10px 16px 10px 12px;
    gap: 12px;
  }
  .authority-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
  }
  .authority-testimonial-card {
    grid-column: auto;
    text-align: left;
    padding: 8px 0 0;
  }
  .authority-testimonial-avatar {
    width: 52px;
    height: 52px;
  }
  .authority-testimonial-feature-meta strong,
  .authority-testimonial-meta strong {
    font-size: 14px;
  }
  .authority-testimonial-feature-meta span,
  .authority-testimonial-meta span {
    font-size: 12px;
  }
  .authority-testimonial-meta {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  .authority-testimonial-meta p {
    font-size: 12px;
    line-height: 1.48;
  }
  .curiosity-book-section {
    padding: 0;
    background-position: 78% center;
  }
  .curiosity-book-card {
    min-height: 460px;
    border-radius: 0;
  }
  .curiosity-book-content {
    width: 100%;
    padding: 34px 18px 30px;
  }
  .curiosity-book-kicker {
    font-size: 11px;
  }
  .curiosity-book-content h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }
  .curiosity-book-copy {
    font-size: 15px;
    line-height: 1.65;
  }
  .curiosity-book-cta {
    min-height: 46px;
    font-size: 15px;
  }
  .curiosity-book-media {
    min-height: 240px;
  }
  .form-popup-modal {
    padding: 12px;
  }
  .form-popup-dialog {
    width: 100%;
    height: min(88vh, 760px);
    padding: 14px;
    border-radius: 18px;
  }
  .form-popup-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
  .how-it-works-section {
    padding: 26px 16px 56px;
  }
  .results-coach-cta-section {
    padding: 0 16px 18px;
  }
  .results-coach-cta-card {
    padding: 20px 18px;
    border-radius: 22px;
  }
  .results-coach-cta-card h2 {
    font-size: clamp(28px, 8.6vw, 38px);
  }
  .results-coach-cta-button {
    width: 100%;
  }
  .podcast-spotlight-section {
    padding: 44px 16px 52px;
  }
  .podcast-spotlight-card {
    padding: 18px;
  }
  .podcast-spotlight-featured > img {
    width: min(100%, 240px);
    margin-bottom: 22px;
  }
  .podcast-spotlight-featured h3 {
    font-size: clamp(28px, 10vw, 42px);
    margin-bottom: 22px;
  }
  .podcast-progress-wrap {
    gap: 10px;
    margin-bottom: 20px;
  }
  .podcast-main-play {
    width: 60px;
    height: 60px;
  }
  .podcast-spotlight-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }
  .podcast-spotlight-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }
  .podcast-spotlight-item-copy span {
    font-size: 11px;
  }
  .podcast-spotlight-item-copy p {
    font-size: 18px;
  }
  .podcast-spotlight-item strong {
    font-size: 16px;
  }
  .how-it-works-inner h2 {
    margin-bottom: 30px;
  }
  .how-it-works-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-it-works-step-label {
    padding-top: 0;
    font-size: 15px;
  }
  .how-it-works-step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .how-it-works-step-content p {
    font-size: 16px;
    line-height: 1.68;
  }
  .results-stats {
    flex-direction: column;
    gap: 32px;
  }
  .coaching-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* ---------- 633 Morning Call Page ---------- */
.morning-call-page .call-hero {
  position: relative;
  min-height: 520px;
  background: #050b1a;
  margin-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.call-hero-bg {
  position: absolute;
  inset: 0;
}
.call-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.call-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.25) 100%);
}
.call-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px var(--section-px) 80px;
  width: 100%;
}
.call-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.call-hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 18px;
}
.call-hero h1 span {
  color: var(--accent);
}
.call-hero-we-go {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.duty-section {
  background: var(--bg-white);
  padding: 80px var(--section-px);
}
.duty-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.duty-left h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.duty-left p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
.duty-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.duty-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.duty-list li::before {
  content: "*";
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 14px;
}
.call-details-box {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 40px 36px;
  color: var(--text-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.call-details-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.call-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.call-detail-item:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
}
.call-detail-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.call-detail-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}
.call-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}
.call-detail-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.call-details-box .btn-primary,
.register-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  font-size: 14px;
  padding: 16px 28px;
}
.warriors-section {
  background: var(--bg-light);
  padding: 64px var(--section-px);
  text-align: center;
}
.warriors-section h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.warriors-section > p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.warriors-avatars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.warrior-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.warrior-avatar img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.warrior-avatar span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.video-section {
  background: var(--bg-dark);
  padding: 80px var(--section-px);
  text-align: center;
}
.video-inner {
  max-width: 900px;
  margin: 0 auto;
}
.video-section .section-eyebrow,
.action-banner .section-eyebrow {
  color: var(--accent);
}
.video-section h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}
.video-section > .video-inner > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
  line-height: 1.7;
}
.video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
  background: #111;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.schedule-section {
  background: var(--bg-white);
  padding: 80px var(--section-px);
}
.schedule-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.schedule-header {
  text-align: center;
  margin-bottom: 52px;
}
.schedule-header h2 {
  font-size: clamp(30px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.schedule-header h2 span {
  color: var(--accent);
}
.schedule-header p {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.day-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.day-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--bg-white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
}
.day-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.day-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.day-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 3px;
}
.day-card-body {
  padding: 18px 16px 20px;
}
.day-card-body h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.day-card-body p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.6;
}
.action-banner {
  background: var(--bg-dark);
  padding: 64px var(--section-px);
  text-align: center;
}
.action-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}
.action-banner h2 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.action-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}
.action-banner-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-secondary.white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.register-section {
  background: var(--bg-light);
  padding: 80px var(--section-px);
}
.register-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.register-inner h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.register-inner > p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 40px;
}
.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 14px;
}
.call-cta-section {
  background: var(--accent);
  padding: 90px var(--section-px);
  text-align: center;
}
.call-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.call-cta-section h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.call-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .duty-inner {
    grid-template-columns: 1fr;
  }
  .call-details-box {
    position: static;
  }
  .day-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .day-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .warriors-avatars {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .form-row,
  .day-cards {
    grid-template-columns: 1fr;
  }
  .call-hero h1 {
    font-size: 48px;
  }
}

/* ===== PODCAST SECTION ===== */
.podcast-section {
  background: #0a0a0a;
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.podcast-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}
.podcast-header .section-eyebrow {
  color: var(--red, #c0392b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.podcast-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.podcast-episode-card {
  display: grid;
  grid-template-columns: 60px 1fr 56px;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.podcast-episode-card:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.podcast-episode-num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.podcast-episode-info .pod-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red, #c0392b);
  margin-bottom: 8px;
}
.podcast-episode-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.podcast-episode-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}
.pod-listen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pod-listen-btn:hover {
  background: var(--red, #c0392b);
  border-color: var(--red, #c0392b);
}
@media (max-width: 768px) {
  .podcast-section {
    padding: 60px 20px;
  }
  .podcast-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .podcast-episode-card {
    grid-template-columns: 40px 1fr 48px;
    gap: 16px;
    padding: 24px 0;
  }
  .podcast-episode-info h3 {
    font-size: 16px;
  }
}
