/* ================================================
   Steffan Surdek Speaker Site — Unified CSS
   ================================================ */

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

/* Roboto self-hosted — no Google Fonts tracking */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}

:root {
  --white: #FFFFFF;
  --heading-size: clamp(1.7rem, 2.8vw, 2.4rem);
  --hero-size: clamp(2.5rem, 4.5vw, 4.5rem);
  --dark-grey: #3F4954;
  --blue: #418BE5;
  --light-gray: #F5F5F5;
  --xlight-blue: #F0F6FD;
  --midnight: #000E33;
  --orange: #D3603D;
}

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

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-grey);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5rem;
}

h1,h2,h3,h4 { font-family: 'Gilroy', 'Roboto', sans-serif; font-weight: 800; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s ease;
  position: relative;
  z-index: 1001;
}

nav.scrolled, nav.dark {
  background: rgba(0,14,51,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

nav.scrolled .nav-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Gilroy', 'Roboto', sans-serif;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-logo span { color: var(--blue); }

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-book {
  background: #1A6BC4 !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
}

.nav-book:hover { opacity: 0.85 !important; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 0.5rem;
}

.lang-toggle a {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 0.35rem 0.7rem !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 0 !important;
  gap: 0 !important;
}

.lang-toggle a:hover { color: var(--white) !important; background: rgba(255,255,255,0.08); }

.lang-toggle a.active { color: var(--white) !important; background: rgba(255,255,255,0.12); }

.lang-toggle span {
  color: rgba(255,255,255,0.15);
  font-size: 0.72rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: opacity 0.2s;
}

.hamburger:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #4B4A58;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
}

.hero-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.hero-gradient {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.1s;
  text-align: left;
}

.hero-name {
  font-size: var(--hero-size);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.25s;
  text-align: left;
}

.hero-rotating {
  height: 2.6rem;
  overflow: hidden;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.4s;
  text-align: left;
}

.hero-rotating-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.hero-rotating span {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Gilroy', 'Roboto', sans-serif;
  color: rgba(255,255,255,0.85);
  height: 2.6rem;
  line-height: 2.6rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
  display: block;
  text-align: left;
}

.hero-divider { display: none; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.6s;
}

.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-btns {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.75s;
}

from { opacity: 0; transform: translateY(22px); }

to { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Roboto', sans-serif;
}

.btn-blue { background: #1A6BC4; color: var(--white); }

.btn-blue:hover { opacity: 0.88; transform: translateY(-1px); background: #1A6BC4; }

.btn-outline-dark {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(0,14,51,0.2);
}

.btn-outline-dark:hover { border-color: var(--midnight); background: rgba(0,14,51,0.04); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* TRUST BAR */
.trust-bar {
  background: var(--xlight-blue);
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-bar-label {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Gilroy', 'Roboto', sans-serif;
  color: var(--midnight);
  font-weight: 800;
  text-align: center;
}

.trust-logos-wrap {
  width: 100%;
}

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

.trust-logo img {
  height: 44px;
  width: auto;
  mix-blend-mode: multiply;
}

.trust-logo img[alt="Bell Canada"] { height: 52px; }

.trust-logo img[alt="Revenu Québec"] { height: 52px; }

.trust-logo-placeholder {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3F4954;
  opacity: 0.4;
  border: 1px dashed #3F4954;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* SECTIONS */
.section { padding: 4rem 0; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.section-label-dim { color: rgba(255,255,255,0.6); }

.section-label-dim::before { background: rgba(255,255,255,0.25); }

.section-title {
  font-size: var(--heading-size);
  font-weight: 900;
  color: var(--midnight);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 2rem;
}

.section-title em { font-style: normal; color: var(--blue); }

.section-title-light { color: var(--white); }

.section-title-light em { color: var(--xlight-blue); }

/* SUGAR RUSH SECTION */
.sugar-section { background: var(--white); }

.sugar-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.sugar-photo {
  border-radius: 3px;
  overflow: hidden;
}

.sugar-photo img {
  width: 100%;
  display: block;
  border-radius: 3px;
  object-fit: cover;
  object-position: center 15%;
  max-height: 580px;
}

.sugar-text h2 {
  margin-bottom: 0;
}

.sugar-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-top: 1.5rem;
}

.sugar-closing {
  color: var(--midnight) !important;
  margin-top: 1.5rem !important;
  font-weight: 700;
}

.sugar-closing strong { color: var(--midnight); }

/* WHO IS STEFFAN */
.who-section { background: var(--xlight-blue); }

.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
}

.who-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-top: 1.2rem;
}

.who-text p:last-of-type {
  margin-bottom: 0;
}

.who-credentials {
  margin-top: 1rem;
}

.who-credentials-intro {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.8;
  margin-bottom: 0.4rem;
  margin-top: 0 !important;
}

.who-credentials ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.who-credentials ul li {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.5;
  padding-left: 0.3rem;
}

.who-credentials ul li::marker {
  color: var(--blue);
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.credential-icon {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.credential-text {
  font-size: 0.9rem;
  color: var(--dark-grey);
  line-height: 1.5;
}

.credential-text em {
  font-style: italic;
  color: var(--midnight);
}

.who-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -4rem;
}

.who-photo img {
  width: 100%;
  max-width: 560px;
  display: block;
}

/* HEAR IT FROM STEFFAN */
.video-section {
  background: var(--white);
}

.video-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem;
  text-align: center;
}

.section-label-dark {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title-dark {
  font-size: var(--heading-size);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.section-title-dark em {
  font-style: italic;
  color: var(--blue);
}

.home-video-single {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--midnight);
  margin-bottom: 2rem;
}

.home-video-single iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.home-video-cta {
  margin-top: 1rem;
}

/* WHY SECTION */
.why-section {
  background: var(--midnight);
}

.why-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem;
  max-width: 860px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.why-number {
  flex-shrink: 0;
}

.why-number img {
  width: auto;
  height: 56px;
  flex-shrink: 0;
  display: block;
}

.why-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-item-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}

.why-item-desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--xlight-blue);
  line-height: 1.7;
}

/* FEATURED QUOTE */
.quote-section {
  background: var(--midnight);
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5rem;
}

.quote-text {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.quote-text em {
  font-style: normal;
  color: var(--blue);
}

.quote-author {
  font-size: 0.95rem;
  color: #F0F6FD;
  font-weight: 400;
}

/* TALKS */
.talks-section { background: var(--midnight); }

.talks-intro {
  font-size: 1rem;
  color: var(--xlight-blue);
  max-width: 560px;
  margin-top: 7rem;
  line-height: 1.75;
  margin-top: 1.2rem;
  margin-bottom: 3.5rem;
}

.talk-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}

.talk-featured:hover { border-color: rgba(65,139,229,0.35); }

.talk-video-placeholder {
  position: relative;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  cursor: pointer;
  overflow: hidden;
}

.talk-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,139,229,0.12) 0%, transparent 65%);
}

.play-btn {
  width: 68px;
  height: 68px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 14px rgba(65,139,229,0.12);
  transition: transform 0.2s, background 0.2s;
}

.talk-video-placeholder:hover .play-btn { transform: scale(1.08); background: #3578cc; }

.play-icon {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
  margin-left: 4px;
}

.video-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.talk-info {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.talk-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.talk-info h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.talk-info p {
  font-size: 0.9rem;
  color: var(--xlight-blue);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.talk-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }

.talk-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}

.talk-link {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.talk-link:hover { gap: 0.8rem; }

.talks-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.talk-card-sm {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 2rem 2rem 2rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  transition: border-color 0.25s, background 0.25s;
}

.talk-card-sm:hover { border-color: rgba(65,139,229,0.3); background: rgba(255,255,255,0.05); }

.talk-num-bg {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  user-select: none;
}

.talk-card-sm h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.talk-card-sm p {
  font-size: 0.85rem;
  color: var(--xlight-blue);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* TESTIMONIALS */
.testimonials-section { background: var(--white); }

.testimonial-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.t-accent {
  background: var(--blue);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.t-mark {
  font-size: 7rem;
  color: rgba(255,255,255,0.2);
  line-height: 0.75;
  font-family: Georgia, serif;
}

.t-name { font-size: 1rem; font-weight: 700; color: var(--white); }

.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

.t-body {
  background: var(--midnight);
  padding: 3rem;
  display: flex;
  align-items: center;
}

.t-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-weight: 300;
}

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

.tcard {
  background: var(--xlight-blue);
  border-radius: 2px;
  padding: 1.8rem;
}

.tcard-mark {
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.25;
  line-height: 0.75;
  font-family: Georgia, serif;
  margin-bottom: 0.8rem;
}

.tcard p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--dark-grey);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.tcard-name { font-size: 0.82rem; font-weight: 700; color: var(--midnight); }

.tcard-role { font-size: 0.75rem; color: #999; margin-top: 0.1rem; }

/* ABOUT */
.about-section { background: var(--light-gray); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-text strong { color: var(--midnight); }

.badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--xlight-blue);
  border: 1px solid rgba(65,139,229,0.2);
  padding: 0.32rem 0.8rem;
  border-radius: 2px;
}

.about-visual { position: relative; }

.about-photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.about-photo-frame img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  border-radius: 3px;
}

.book-bar {
  margin-top: 1.5rem;
  background: var(--midnight);
  border-radius: 3px;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.book-icon {
  width: 38px;
  height: 48px;
  background: var(--blue);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.book-bar-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.book-bar-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-top: 0.1rem; }

/* MYLENE QUOTE */
.mylene-section {
  background: var(--xlight-blue);
}

.mylene-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mylene-text {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.mylene-text em {
  font-style: normal;
  color: var(--blue);
}

.mylene-section .mylene-author {
  font-size: 0.9rem;
  color: #3F4954;
  font-weight: 400;
}

/* CONTACT */
.contact-section { background: var(--midnight); padding: 5rem 0; }

.contact-inner-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5rem;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
  text-align: left;
}

.contact-intro {
  font-size: 1rem;
  color: var(--xlight-blue);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cdetails { display: flex; flex-direction: column; gap: 0.9rem; }

.cdetail { display: flex; gap: 0.8rem; font-size: 0.88rem; }

.cdetail-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  width: 70px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.cdetail-val { color: #FFFFFF; }

.cform { display: flex; flex-direction: column; gap: 1rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.ffield { display: flex; flex-direction: column; gap: 0.35rem; }

.flabel {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xlight-blue);
}

.cform input, .cform select, .cform textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cform input::placeholder, .cform textarea::placeholder { color: rgba(255,255,255,0.25); }

.cform input:focus, .cform select:focus, .cform textarea:focus {
  border-color: var(--blue);
  background: rgba(65,139,229,0.07);
}

.cform select option { background: #001030; }

.cform textarea { height: 140px; resize: vertical; }

/* FOOTER */
footer {
  background: #00061a;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { font-size: 1rem; font-weight: 900; color: rgba(255,255,255,0.8); }

.footer-brand span { color: var(--blue); }

.footer-links { display: flex; gap: 2rem; }

.footer-links a { font-size: 0.76rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

.nav-current {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: default;
  opacity: 0.4;
}

/* Talks page hero — content positioning */
.hero-actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.75s;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(63,73,84,0.95) 0%,
    rgba(63,73,84,0.6) 40%,
    rgba(63,73,84,0.2) 100%
  );
}


.talks-hero h1 {
  font-size: var(--hero-size);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.talks-hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-actions { display: flex; gap: 1rem; margin-top: 3rem; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Roboto', sans-serif;
}

/* TALK SECTIONS */
.talk-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.talk-section:nth-child(1) { background: var(--white); }

.talk-section:nth-child(2) { background: var(--light-gray); }

.talk-section:nth-child(3) { background: var(--white); }

#talk-1 { background: var(--white); }

#talk-2 { background: var(--light-gray); }

#talk-3 { background: var(--white); }

.talk-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

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

.talk-header .talk-title {
  margin-bottom: 0;
  flex: 1;
}

.talk-header-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.talk-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.talk-number::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.talk-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 860px;
}

.talk-video-intro {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,14,51,0.4);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.talk-video-intro::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(0,14,51,0.2);
}

.talk-video-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.06);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.talk-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  inset: 0;
}

.talk-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 4rem;
  align-items: start;
}

.coming-soon-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  white-space: nowrap;
}

.talk-desc {
  font-size: 1.05rem;
  color: var(--dark-grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.talk-desc p { margin-bottom: 1rem; }

.talk-desc p:last-child { margin-bottom: 0; }

.takeaways {
  margin-bottom: 2rem;
  border-top: 1px solid rgba(0,14,51,0.08);
  padding-top: 1.5rem;
}

.takeaways-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3F4954;
  margin-bottom: 1rem;
}

.takeaways ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.takeaways ul li {
  font-size: 0.9rem;
  color: var(--dark-grey);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.takeaways ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.45rem;
}

.talk-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* TALK 3 — personal/intimate treatment */


/* QUOTE */
.quote-section {
  background: var(--midnight);
  padding: 4rem 0;
}

/* CUSTOM PROGRAMS */
.custom-section {
  background: var(--xlight-blue);
  padding: 4rem 0;
}

.custom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 1.5rem;
}

.custom-heading {
  font-family: 'Gilroy', 'Roboto', sans-serif;
  font-size: var(--heading-size);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.custom-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.custom-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.custom-title {
  font-size: var(--heading-size);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.custom-title em { font-style: normal; color: var(--blue); }

.custom-title span { color: var(--midnight); }

.custom-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

.custom-list {
  padding-top: 0.5rem;
}

.custom-list-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3F4954;
  margin-bottom: 1.2rem;
}

.custom-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.custom-list ul li {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.custom-list ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.45rem;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.tcard:hover { border-color: rgba(65,139,229,0.3); }

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.contact-title {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact-title em { font-style: normal; color: var(--blue); }

.talk-section { padding: 5rem 0; }






/* FEATURED VIDEOS */
.featured-section {
  background: var(--midnight);
  padding: 8rem 0 5rem;
}

.featured-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.featured-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.featured-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.featured-title {
  font-size: var(--hero-size);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.featured-title em {
  font-style: normal;
  color: var(--blue);
}

.featured-sub {
  font-size: 1rem;
  color: var(--xlight-blue);
  margin-bottom: 4rem;
  max-width: 560px;
  line-height: 1.7;
}

/* FEATURED GRID - 2 large + 1 wide */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.featured-grid-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.5rem;
}

.video-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.video-card:hover {
  border-color: rgba(65,139,229,0.35);
  transform: translateY(-2px);
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.3);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}

.video-placeholder-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.video-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.video-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.video-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  font-family: 'Gilroy', 'Roboto', sans-serif;
}

.video-desc {
  font-size: 0.82rem;
  color: var(--xlight-blue);
  line-height: 1.6;
}

.video-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}

.vmeta-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* SHORT CLIPS */
.clips-section {
  background: var(--white);
  padding: 5rem 0 2.5rem;
}

.clips-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.5rem;
}

.clip-card {
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.2s;
}

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

.clip-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--midnight);
}

.clip-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.clip-info {
  padding: 1rem 1.2rem 1.2rem;
}

.clip-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.clip-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.4;
  font-family: 'Gilroy', 'Roboto', sans-serif;
}

/* FULL TALKS */
.talks-section {
  background: var(--white);
  padding: 2.5rem 0 5rem;
}

.talks-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.5rem;
}

.talk-card .talk-info {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.talk-card .talk-tags { margin-bottom: 0.4rem; }

.talk-card {
  background: var(--xlight-blue);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.talk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.talk-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--midnight);
}

.talk-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ttag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.ttag-en { color: var(--blue); background: var(--xlight-blue); }

.ttag-fr { color: var(--orange); background: rgba(211,96,61,0.1); }

.ttag-live { color: var(--dark-grey); background: var(--light-gray); }

.ttag-virtual { color: var(--dark-grey); background: var(--light-gray); }

.talk-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.4;
  font-family: 'Gilroy', 'Roboto', sans-serif;
  margin-bottom: 0.4rem;
}

.talk-card-desc {
  font-size: 0.82rem;
  color: var(--dark-grey);
  line-height: 1.6;
}

.talk-duration {
  font-size: 0.7rem;
  color: rgba(0,14,51,0.35);
  margin-top: 0.6rem;
  font-weight: 600;
}

/* FEATURED ON */
.featured-on-section {
  background: var(--blue);
  padding: 5rem 0;
}

.featured-on-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

.featured-on-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.on-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 1.8rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.on-card:last-child {
  grid-column: 2;
}

.on-card-wide {
  grid-column: 1 / span 3 !important;
  max-width: calc(66.666% - 0.75rem);
  margin: 0 auto;
  width: 100%;
}

.on-card:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.on-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.on-logo[alt="Thrive Global"] { height: 24px; }

.on-logo[alt="Lime"] {
  mix-blend-mode: screen;
  filter: none;
  opacity: 1;
}

.on-name {
  font-family: 'Gilroy', 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.on-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  flex-grow: 1;
}

.on-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: auto;
}

.contact-sub {
  font-size: 1rem;
  color: var(--xlight-blue);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2rem;
}



/* SUGAR RUSH */
.sugar-section {
  background: var(--white);
  padding: 4rem 0;
}

.sugar-text h2 em { font-style: normal; color: var(--blue); }

.sugar-text p strong { color: var(--midnight); font-weight: 700; }

/* QUOTE */
.quote-section {
  background: var(--midnight);
  padding: 4rem 0;
}

.who-text h2 {
  font-size: var(--heading-size);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.who-text h2 em { font-style: normal; color: var(--blue); }

/* FOUR REASONS */
/* HEAR IT FROM STEFFAN */
.video-section { background: var(--white); padding: 4rem 0; }

.why-section {
  background: var(--midnight);
  padding: 4rem 0;
}

.mylene-section .quote-text {
  color: var(--midnight);
}

.mylene-section .quote-text em {
  color: var(--blue);
}

.mylene-section .quote-author {
  color: #3F4954;
}





@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   Responsive — Mobile
   ================================================ */

@media(max-width:960px){
    nav.scrolled { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-content { padding: 0 1.5rem; max-width: 100%; }
  .hero-gradient { background: linear-gradient(100deg, rgba(240,240,242,0.97) 0%, rgba(240,240,242,0.93) 40%, rgba(240,240,242,0.5) 65%, transparent 85%); }
            .frow { grid-template-columns: 1fr; }
    .nav-inner { padding: 1rem 1.5rem; }
  .talk-inner { padding: 0 1.5rem; }
  .talk-section { padding: 5rem 0; }
  .talk-body, .talk-body.flip { grid-template-columns: 1fr; gap: 2rem; }
  .talk-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .talk-header-btn { width: 100%; text-align: center; }
  .talk-body.flip .talk-video-wrap { order: 0; }
  .talk-body.flip .talk-text { order: 0; }
  .custom-inner, .testimonials-inner, .contact-inner { padding: 0 1.5rem; }
  .custom-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-inner, .clips-inner, .talks-inner, .featured-on-inner, .contact-inner { padding: 0 1.5rem; }
  .featured-grid, .featured-grid-bottom, .clips-grid, .talks-grid, .featured-on-grid { grid-template-columns: 1fr; }
  .nav-inner, .trust-inner, .section-inner, .section-inner, .section-inner, .section-inner, .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .section-inner, .section-inner, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; max-width: 100%; }
  .custom-inner, .testimonials-inner, .section-inner { padding: 0 1.5rem; }
  .featured-inner, .clips-inner, .talks-inner, .featured-on-inner, .section-inner { padding: 0 1.5rem; }
  
  /* Hero Section Mobile Fixes */
  .hero { min-height: 500px; height: auto; padding: 8rem 0 4rem; }
  .hero-bg { object-position: 70% 20%; }
  .hero-outer { padding: 0 1.5rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-rotating { height: auto; margin-bottom: 1rem; }
  .hero-rotating span { font-size: 1.4rem; height: auto; line-height: 1.3; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-btns { flex-direction: column; gap: 0.8rem; }
  .hero-btns .btn { width: 100%; text-align: center; }
  
  /* Navigation Mobile Fixes */
  .nav-links { display: none; }
  .nav-logo { font-size: 1.1rem; }
  .nav-current { display: none; }
  
  /* Hamburger Menu Mobile */
  .hamburger { display: block; background: rgba(255,255,255,0.1); border-radius: 4px; }
  
  nav { background: rgba(0,14,51,0.97) !important; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a1f5c;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    gap: 0;
    border-top: 1px solid rgba(65,139,229,0.3);
  }
  
  .nav-links.active { display: flex; }
  
  .nav-links li { width: 100%; }
  
  .nav-links a {
    display: block;
    padding: 0.8rem 1.5rem;
    width: 100%;
    text-align: left;
  }
  
  .nav-links a:hover { background: rgba(65,139,229,0.1); }
  
  .nav-book {
    padding: 0.8rem 1.5rem !important;
    border-radius: 0 !important;
  }
  
  .lang-toggle { margin-left: 0; justify-content: flex-start; width: auto; }
  .nav-links li:has(.lang-toggle) { padding: 0.6rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); width: auto; }
  
  /* Trust Bar Mobile Fixes */
  .trust-bar-inner { padding: 1.5rem 1.5rem; gap: 1.2rem; }
  .trust-bar-label { font-size: 1.3rem; }
  .trust-logos { gap: 1.5rem; }
  .trust-logo img { height: 36px; }
  .trust-logo img[alt="Bell Canada"], 
  .trust-logo img[alt="Revenu Québec"] { height: 40px; }
  
  /* Sugar Section Mobile Fixes */
  .sugar-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sugar-photo img { max-height: 400px; }
  
  /* Who Section Mobile Fixes */
  .who-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-photo { margin-bottom: 0; justify-content: center; }
  .who-photo img { max-width: 400px; }
  
  /* Video Section Mobile Fixes */
  .video-section-inner { padding: 0 1.5rem; }
  
  /* Four Reasons Grid Mobile Fixes */
  .why-title { font-size: 1.6rem; margin-bottom: 2.5rem; }
  .why-grid { gap: 2rem; }
  .why-number img { height: 48px; }
  .why-item { gap: 1.2rem; }
  .why-item-text { font-size: 1.05rem; }
  
  /* Quote Section Mobile Fixes */
  .quote-inner { padding: 0 1.5rem; }
  .quote-text { font-size: 1.15rem; }
  
  /* Testimonials Mobile Fixes */
  .testimonial-featured { grid-template-columns: 1fr; }
  .t-accent { padding: 2rem 1.5rem; }
  .t-body { padding: 2rem 1.5rem; }
  
  /* About Section Mobile Fixes */
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  
  /* Talks Page Mobile Fixes */
  .talks-secondary { grid-template-columns: 1fr; }
  .talk-featured { grid-template-columns: 1fr; }
  .talk-video-placeholder { min-height: 240px; }
  .talk-info { padding: 2rem 1.5rem; }
  
  /* Footer Mobile Fixes */
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-direction: column; gap: 1rem; }
  
  /* Container & Section Padding */
  .container { padding: 0 1.5rem; }
  .section { padding: 3rem 0; }
  .contact-section { padding: 3rem 0; }
  .featured-section { padding: 5rem 0 3rem; }
  .clips-section { padding: 3rem 0 2rem; }
  .talks-section { padding: 2rem 0 3rem; }
  
  /* Featured On Mobile Fixes */
  .featured-on-grid { gap: 1rem; grid-template-columns: 1fr !important; }
  .on-card { padding: 1.5rem; grid-column: 1 !important; }
  .on-card-wide { max-width: 100%; grid-column: 1 !important; }
  .on-card:last-child { grid-column: 1 !important; }
  
  /* Video Cards Mobile Fixes */
  .video-info { padding: 1rem 1.2rem 1.2rem; }
  .video-title { font-size: 0.95rem; }
  
  /* Mylene Section Mobile Fixes */
  .mylene-inner { padding: 0 1.5rem; }
  .mylene-text { font-size: 1.1rem; }
}

/* ================================================
   Cookie Consent Banner
   ================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--midnight);
  border-top: 1px solid rgba(65,139,229,0.3);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.cb-visible {
  transform: translateY(0);
}

.cb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.cb-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 700px;
}

.cb-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cb-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cb-btn:hover { opacity: 0.85; }

.cb-accept {
  background: #1A6BC4;
  color: #fff;
}

.cb-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.cb-decline:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4) !important;
}

/* ================================================
   Video Facade
   ================================================ */

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0a1428 center/cover no-repeat;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}

.video-facade-vimeo {
  background: linear-gradient(135deg, #0a1428 0%, #0d1f3c 100%);
}

.vf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}

.video-facade:hover .vf-overlay {
  background: rgba(0,0,0,0.2);
}

.vf-play {
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}

.video-facade:hover .vf-play {
  transform: scale(1.1);
}

.vf-play svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.vf-title {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 0 1.5rem;
  max-width: 280px;
  line-height: 1.4;
}

/* Blocked message overlay */
.vf-blocked {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,14,51,0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.vf-blocked p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.vf-blocked-sub {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-weight: 400 !important;
}

.vf-update-btn {
  margin-top: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: #1A6BC4;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.vf-update-btn:hover { opacity: 0.85; }

/* Mobile banner */
@media(max-width:960px) {
  .cb-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  .cb-actions {
    width: 100%;
  }

  .cb-btn {
    flex: 1;
    text-align: center;
  }

  .vf-play svg { width: 48px; height: 48px; }
}

.footer-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover { color: rgba(255,255,255,0.8); }

/* ================================================
   Video Lightbox
   ================================================ */

#video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#video-lightbox.lb-visible {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.lb-container {
  position: relative;
  width: 90%;
  max-width: 860px;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#video-lightbox.lb-visible .lb-container {
  transform: scale(1);
}

.lb-player {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.lb-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 0;
}

.lb-close:hover { opacity: 1; }

.lb-close svg {
  width: 24px;
  height: 24px;
}

@media(max-width:960px) {
  .lb-container { width: 95%; }
  .lb-close { top: -2.2rem; }
}
