@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/raleway-v37-latin-700.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow:    #fcaf04;
  --yellow-accessible: #b57d00;
  --yellow-dk: #e09c03;
  --navy:      #2b2b2b;
  --navy2:     #3a3a3a;
  --light:     #f5f3ee;
  --charcoal:  #504f4f;
  --white:     #ffffff;
  --offwhite:  #faf8f4;
  --gray:      #666464;
  --gray-lt:   #e8e4dc;
  --text:      #2b2b2b;
  --hero-dk:   #3d3322;
  --phone-bg:  #1e1e1e;
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Raleway', sans-serif;
  --radius:    100px;
  --card-radius: 20px;
  --shadow:    0 4px 32px rgba(0,0,0,0.07);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); border-top: 2px solid var(--yellow);
  padding: 0.75rem max(5%, calc(50% - 600px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; transform: translateY(100%);
  transition: transform 0.35s ease; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  contain: layout;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.sticky-bar p strong { color: var(--white); }
.sticky-bar .btn-sticky {
  background: var(--yellow); color: var(--navy);
  padding: 0.55rem 1.4rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; white-space: nowrap;
  transition: background 0.2s;
}
.sticky-bar .btn-sticky:hover { background: var(--yellow-dk); }
.sticky-close {
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 1.2rem; padding: 0 0.25rem; flex-shrink: 0;
}
.sticky-close:hover { color: var(--white); }

nav {
  background: var(--navy); position: sticky; top: 0; z-index: 100;
  padding: 0 max(5%, calc(50% - 600px)); display: flex; align-items: center; justify-content: space-between;
  height: 70px; box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 600; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--yellow); color: var(--navy);
  padding: 0.55rem 1.4rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--yellow-dk); transform: translateY(-1px); color: var(--navy); }
.nav-links a.btn-nav,
.nav-links a.btn-nav:hover { color: var(--navy); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; justify-content: center; align-items: center; gap: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { margin-bottom: 5px; }
.nav-toggle span:nth-child(2) { margin-bottom: 5px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--navy); z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.82); font-size: 1rem; padding: 1rem 5%; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a.mobile-cta { color: rgba(255,255,255,0.9); font-weight: 700; border-top: 1px solid rgba(255,255,255,0.12); }

.btn-primary {
  background: var(--yellow); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--yellow-dk); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 500; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.hero {
  background: radial-gradient(ellipse at 30% 60%, var(--hero-dk) 0%, var(--navy) 55%, var(--phone-bg) 100%);
  color: var(--white); padding: 6rem max(5%, calc(50% - 600px)) 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; min-height: 580px;
}
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 1.5rem; line-height: 1.7; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-app-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-app-wrap::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.13;
  right: -40px; bottom: -30px;
  z-index: 0;
}

.hero-app-wrap::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(252,175,4,0.25);
  top: -20px; left: -10px;
  z-index: 0;
}
.hero-app-img {
  width: auto; max-height: 480px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,0.55));
}

.hero-app-badge {
  position: absolute;
  bottom: 40px; left: -28px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(252,175,4,0.35);
  z-index: 2;
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-app-badge::before { content: '★'; font-size: 0.7rem; }

.hero-app-badge2 {
  position: absolute;
  top: 50px; left: -24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-app-badge2::before { content: '🤖'; font-size: 0.7rem; }

.logos { background: var(--light); padding: 2.5rem 0; text-align: center; border-bottom: 1px solid var(--gray-lt); overflow: hidden; }
.logos-label { font-size: 0.78rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1.5rem; }
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.ticker-track {
  display: flex; gap: 0; align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill { display: flex; align-items: center; justify-content: center; opacity: 0.65; transition: opacity 0.2s; flex-shrink: 0; padding: 0 2.5rem; }
.logo-pill:hover { opacity: 1; }
.logo-pill img { display: block; width: auto; }

.logo-google    { height: 42px; }
.logo-loreal    { height: 30px; }
.logo-microsoft { height: 34px; }
.logo-kpn       { height: 52px; }
.logo-accenture { height: 36px; }

section { padding: 6rem max(5%, calc(50% - 600px)); }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.75rem; display: block; }
.why .section-label, .behaviors .section-label, .journey .section-label, .resources .section-label, .for-me .section-label, .pricing .section-label, .faq .section-label, .articles-section .section-label, .lisa .section-label { color: var(--yellow-accessible); }
h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); margin-bottom: 1rem; }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto 3rem; }

.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.why-card { background: var(--offwhite); border-radius: var(--card-radius); padding: 2rem; border: 1px solid var(--gray-lt); transition: box-shadow 0.2s, transform 0.2s; overflow: hidden; position: relative; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); border-radius: var(--card-radius) var(--card-radius) 0 0; }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(252,175,4,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.why-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }

.testimonials { background: var(--navy); padding: 5rem max(5%, calc(50% - 600px)); }
.testimonials h2 { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }
.testi-sub { margin: 0 auto 3rem; }
.testimonials h2 { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s;
}
.testi-card:hover { background: rgba(255,255,255,0.08); }
.testi-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }
.testi-quote { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(252,175,4,0.2); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--yellow); flex-shrink: 0; }
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.behaviors { background: var(--offwhite); }
.behaviors-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
  align-items: start;
}
.behavior-group {
  background: var(--white); border-radius: var(--card-radius);
  padding: 1.75rem; border: 1px solid var(--gray-lt);
  display: flex; flex-direction: column;
}
.behavior-group h3 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--yellow); min-height: 2.6em; }

.behavior-intro { font-size: 0.85rem; color: var(--charcoal); font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.behavior-item {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--gray-lt);
}
.behavior-item-header {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0; cursor: pointer;
  font-size: 0.85rem; color: var(--text); font-weight: 500;
  user-select: none;
}
.behavior-item-header:hover { color: var(--charcoal); }
.behavior-item:last-child { border-bottom: none; }
.behavior-toggle {
  margin-left: auto; flex-shrink: 0;
  font-size: 1rem; color: var(--yellow);
  font-weight: 300; transition: transform 0.25s;
  line-height: 1;
}
.behavior-item.open .behavior-toggle { transform: rotate(45deg); }
.behavior-expand {
  display: none; font-size: 0.85rem; color: var(--gray);
  line-height: 1.7; padding: 0 0 0.6rem 1.3rem;
}
.behavior-item.open .behavior-expand { display: block; }
.behavior-item:last-child { border-bottom: none; }
.behavior-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

.program { background: var(--navy); color: var(--white); }
.program h2 { color: var(--white); }
.program .section-sub { color: rgba(255,255,255,0.68); }
.program-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.week-card {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.week-card:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.week-hidden { display: none; }
.week-card-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0.5rem; cursor: pointer;
  transition: background 0.2s; border-radius: 8px;
}
.week-card-header:hover { background: rgba(255,255,255,0.04); }
.week-card.open .week-card-header { background: rgba(255,255,255,0.05); }
.week-pill {
  background: rgba(252,175,4,0.15); color: var(--yellow);
  font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.65rem;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0;
  min-width: 60px; text-align: center;
}
.week-card.open .week-pill { background: var(--yellow); color: var(--navy); }
.week-card-title {
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.88); flex: 1; line-height: 1.35;
}
.week-card-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.free-tag { display: inline-block; background: rgba(252,175,4,0.15); color: var(--yellow); font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.week-chevron {
  color: rgba(255,255,255,0.35); font-size: 0.8rem;
  transition: transform 0.3s; display: inline-block;
}
.week-card.open .week-chevron { transform: rotate(180deg); color: var(--yellow); }
.week-card-body {
  display: none; padding: 0 0.5rem 1.25rem 4.5rem;
}
.week-card.open .week-card-body { display: block; }
.week-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 1rem;
}
.week-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.week-meta-label {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--yellow); margin-bottom: 0.3rem;
}
.week-meta-items { display: flex; flex-direction: column; gap: 0.2rem; }
.week-meta-item {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 0.4rem;
}
.week-meta-item::before { content: '›'; color: var(--yellow); font-weight: 700; }

.lisa { background: var(--offwhite); }
.lisa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.lisa-app-wrap {
  position: relative; display: inline-flex;
  justify-content: center; align-items: center;
}

.lisa-app-wrap::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.10;
  left: -30px; bottom: -20px;
  z-index: 0;
}

.lisa-app-wrap::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(252,175,4,0.2);
  top: -15px; right: 10px;
  z-index: 0;
}
.lisa-app-img {
  max-height: 350px; width: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.28));
}
.lisa-app-badge {
  position: absolute;
  top: 30px; right: -10px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(252,175,4,0.35);
  z-index: 2;
  display: flex; align-items: center; gap: 0.4rem;
}
.lisa-app-badge::before { content: '💬'; font-size: 0.7rem; }
.lisa-app-badge2 {
  position: absolute;
  bottom: 40px; right: -10px;
  background: rgba(43,43,43,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
  display: flex; align-items: center; gap: 0.4rem;
}

.lisa-text h2 { margin-bottom: 0.75rem; }
.lisa-text p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
.lisa-bullets { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.lisa-bullet { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1rem; color: var(--gray); line-height: 1.7; }
.lisa-bullet::before { content: '✓'; color: var(--yellow); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.journey { background: var(--white); }
.journey-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; position: relative; }
.journey-steps::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--yellow), rgba(252,175,4,0.2)); z-index: 0; }
.journey-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 0 0 6px rgba(252,175,4,0.14); }
.journey-step h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.journey-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

.resources { background: var(--light); border-top: none; }
.resources-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.resource-card { background: var(--white); border-radius: var(--card-radius); padding: 1.5rem; border: 1px solid var(--gray-lt); text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.resource-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.resource-card h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.resource-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

.for-me { background: var(--white); }
.for-me-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.for-me-col { border-radius: var(--card-radius); padding: 2rem; }
.for-me-yes { background: rgba(252,175,4,0.07); border: 1.5px solid rgba(252,175,4,0.3); }
.for-me-no { background: var(--offwhite); border: 1px solid var(--gray-lt); }
.for-me-col h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.for-me-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; font-size: 0.92rem; color: var(--gray); border-bottom: 1px solid rgba(0,0,0,0.05); line-height: 1.6; }
.for-me-item:last-child { border-bottom: none; }

.pricing { background: var(--light); }
.pricing-inner { display: flex; justify-content: center; margin: 3rem auto 0; }

.pricing-card {
  background: var(--navy); color: var(--white);
  border-radius: 20px; padding: 2.5rem;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  position: relative; overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(252,175,4,0.07); }
.pricing-badge { display: inline-block; background: rgba(252,175,4,0.15); color: var(--yellow); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; }
.pricing-price { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.25rem; }
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }
.pricing-features { text-align: left; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pricing-feature { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.check { color: var(--yellow); font-size: 0.95rem; margin-top: 1px; flex-shrink: 0; }
.btn-pricing { width: 100%; background: var(--yellow); color: var(--navy); padding: 1rem; border-radius: var(--radius); font-family: var(--font-head); font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: block; text-align: center; }
.btn-pricing:hover { background: var(--yellow-dk); transform: translateY(-2px); }

.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-lt); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--text); text-align: left; gap: 1rem; }
.faq-q:hover { color: var(--charcoal); }
.faq-icon { color: var(--yellow); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.25s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.25rem; font-size: 1rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-link { color: var(--yellow-accessible); font-weight: 600; }

.articles-section { background: var(--light); }
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.article-card {
  background: var(--white); border-radius: var(--card-radius);
  border: 1px solid var(--gray-lt); border-left: 4px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s, border-left-color 0.2s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-left-color: var(--yellow); }
.article-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--yellow-accessible); display: block; margin-bottom: 0.4rem; }
.article-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-body h3 { font-family: var(--font-head); font-size: 0.97rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.75rem; color: var(--text); }
.article-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 0.85rem; flex: 1; }
.article-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--gray); padding-top: 0.75rem; border-top: 1px solid var(--gray-lt); margin-top: auto; }
.article-read { font-size: 0.82rem; color: var(--yellow-accessible); font-weight: 600; margin-bottom: 0.75rem; display: block; }

.cta-banner { background: var(--yellow); color: var(--navy); padding: 6rem max(5%, calc(50% - 600px)); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.12); top: -150px; right: -100px; pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,0.08); bottom: -80px; left: 5%; pointer-events: none; }
.cta-banner h2 { color: var(--navy); margin-bottom: 1rem; }
.cta-banner p { color: var(--charcoal); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }
.section-ctas { text-align: center; margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s; display: inline-block;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 4rem max(5%, calc(50% - 600px)) 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 32px; width: auto; margin-bottom: 1rem; opacity: 0.9; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h3 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-linkedin { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-linkedin:hover { color: var(--yellow); }

.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy2); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.55s; }

@media (max-width: 900px) {
  .hero, .lisa-inner, .pricing-inner, .for-me-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; padding: 4rem 5%; }
  .hero-sub,
  .hero-ctas { justify-content: center; }

  .hero-image { display: flex; justify-content: center; margin-top: 2rem; }
  .hero-app-img { max-height: 340px; }
  .hero-app-badge { display: none; }
  .hero-app-badge2 { display: none; }
  .hero-app-wrap::before { width: 240px; height: 240px; }
  .hero-app-wrap::after { width: 130px; height: 130px; }

  .why-grid, .behaviors-grid, .testi-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .journey-steps::before { display: none; }
  .resources-grid, .articles-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .sticky-bar p { display: none; }
  .logo-google    { height: 34px; }
  .logo-loreal    { height: 24px; }
  .logo-microsoft { height: 27px; }
  .logo-kpn       { height: 42px; }
  .logo-accenture { height: 29px; }
  .logo-pill { padding: 0 1.5rem; }

  .btn-primary, .btn-outline, .btn-dark, .btn-nav, .btn-sticky { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; flex-direction: column; align-items: center; justify-content: center; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
  .faq-q { min-height: 44px; }
  .week-card-header { min-height: 44px; }
}
@media (max-width: 560px) {
  .journey-steps, .resources-grid, .articles-grid, .for-me-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }

  .hero-app-img { max-height: 260px; }
  .hero-app-wrap::before { width: 180px; height: 180px; }
  .hero-app-wrap::after { display: none; }
  .logo-google    { height: 28px; }
  .logo-loreal    { height: 20px; }
  .logo-microsoft { height: 22px; }
  .logo-kpn       { height: 34px; }
  .logo-accenture { height: 24px; }
  .logo-pill { padding: 0 1rem; }

  body { font-size: 1.02rem; }

  .btn-primary, .btn-outline, .btn-dark { min-height: 48px; width: 100%; text-align: center; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .faq-q { min-height: 48px; }
}

/* ── CURRICULUM TOGGLE BUTTON ── */
.btn-curriculum {
  background: none; border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75); padding: 0.65rem 1.75rem;
  border-radius: var(--radius); font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-curriculum:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── FAQ ANCHOR LINK ── */
.faq-anchor-wrap { text-align: center; margin-top: 1rem; }
.faq-anchor-link {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.faq-anchor-link:hover { color: rgba(255,255,255,0.8); }

/* ── SHARE SECTION ── */
.share-wrap { margin-top: 2rem; }
.share-label { font-size: 0.88rem; color: rgba(43,43,43,0.6); margin-bottom: 0.5rem; }
.share-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(43,43,43,0.12); border: 1px solid rgba(43,43,43,0.2);
  color: var(--navy); padding: 0.45rem 1rem; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.share-btn:hover { background: rgba(43,43,43,0.22); }

/* ── EXIT INTENT OVERLAY ── */
.exit-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55); align-items: center;
  justify-content: center; padding: 1rem;
}
.exit-overlay.visible { display: flex; }
.exit-card {
  background: var(--white); border-radius: 20px; max-width: 480px;
  width: 100%; padding: 2.5rem; position: relative;
  text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.exit-close {
  position: absolute; top: 1rem; right: 1rem; background: none;
  border: none; font-size: 1.3rem; color: var(--gray);
  cursor: pointer; line-height: 1;
}
.exit-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 0.75rem;
  display: block;
}
.exit-card h2 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.75rem; line-height: 1.3;
}
.exit-card p {
  font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.75rem;
}
.exit-cta {
  display: block; background: var(--yellow); color: var(--navy);
  padding: 0.9rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-decoration: none; margin-bottom: 0.75rem; transition: background 0.2s;
}
.exit-cta:hover { background: var(--yellow-dk); }
.exit-dismiss {
  background: none; border: none; font-size: 0.82rem;
  color: var(--gray); cursor: pointer;
}

/* ── SEO PROSE PARAGRAPHS ── */
.section-sub-prose {
  color: var(--gray); font-size: 1.05rem; max-width: 640px;
  margin: 0.75rem auto 0; line-height: 1.7;
}
.section-sub-prose-light {
  color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 640px;
  margin: 0.75rem auto 0; line-height: 1.7;
}

/* Fix: replace inline onmouseover with CSS hover */
.footer-linkedin:hover {
  color: var(--yellow);
}
