/* ============================================
   DESIGN SYSTEM — Beauty Gen Checkup
   ============================================ */

:root {
  /* Colors */
  --ochre: #a36c45;
  --ochre-light: #b98356;
  --ochre-accent: #d4a574;
  --ochre-glow: rgba(163, 108, 69, 0.25);
  --gold-soft: #e8c9a0;
  --cream: #faf6f1;
  --cream-dark: #f0e6d8;
  --card-bg: #f7f2eb;
  --white: #ffffff;
  --text-dark: #2a1f14;
  --text-body: #4a3f35;
  --text-muted: #6b5a4e;
  --text-light: #9a8b7e;
  --border: rgba(163, 108, 69, 0.12);
  --border-strong: rgba(163, 108, 69, 0.25);

  /* Typography */
  --font: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-max: 1200px;
  --container-px: clamp(1.25rem, 4vw, 2rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration: 0.6s;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

strong {
  font-weight: 600;
}

/* ============================================
   UTILITIES
   ============================================ */

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

.text-ochre {
  color: var(--ochre);
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--gold-soft);
}

/* Animate base state */
.animate-fade-up,
.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-fade-up.is-visible,
.animate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}

.btn--primary:hover {
  background: var(--ochre-light);
  border-color: var(--ochre-light);
  box-shadow: 0 8px 30px var(--ochre-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ochre);
  border-color: var(--ochre);
}

.btn--outline:hover {
  background: var(--ochre);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--ochre);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--ochre);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.lang-toggle__btn {
  padding: 5px 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-toggle__btn--active {
  background: var(--ochre);
  color: #fff;
}

.lang-toggle__btn:hover:not(.lang-toggle__btn--active) {
  color: var(--text-dark);
  background: rgba(163, 108, 69, 0.08);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile-menu {
  display: none;
  padding: 1.5rem var(--container-px) 2rem;
  background: rgba(250, 246, 241, 0.98);
  backdrop-filter: blur(20px);
}

.nav__mobile-menu.is-open {
  display: block;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.nav__mobile-links a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(250, 246, 241, 0.45) 0%, transparent 80%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.55) 0%, rgba(240, 230, 216, 0.4) 50%, rgba(250, 246, 241, 0.6) 100%);
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(250, 246, 241, 0.6);
}

.hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero__eyebrow-line {
  width: 2.5rem;
  height: 1.5px;
  background: var(--ochre);
  opacity: 0.5;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ochre);
  margin: 0;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 2rem;
  border-right: 1px solid var(--border);
}

.hero__meta-item:last-child {
  border-right: none;
}

.hero__meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.hero__meta-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero__cta {
  margin-bottom: 1.25rem;
}

.hero__cta .btn {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
}

.hero__trust {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.hero__trust-highlight {
  color: var(--ochre);
  font-weight: 600;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--ochre), transparent);
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BELIEF SHIFT
   ============================================ */

.belief {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.belief__texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a36c45' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.belief__content {
  position: relative;
  z-index: 2;
}

.belief__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 3rem;
}

.belief__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.belief__statements {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.belief__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body);
}

.belief__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.belief__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.belief__pill svg {
  color: var(--text-light);
  flex-shrink: 0;
}

.belief__pill:hover {
  border-color: var(--ochre-accent);
  color: var(--ochre);
}

.belief__pill:hover svg {
  color: var(--ochre);
}

.belief__bridge {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.belief__callout {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, rgba(163, 108, 69, 0.06), rgba(185, 131, 86, 0.1));
  border: 1px solid var(--ochre-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.belief__callout-accent {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--ochre), var(--ochre-accent));
}

.belief__callout-content {
  padding: 1.5rem;
}

.belief__callout-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 0.4rem;
}

.belief__callout-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ochre);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.belief__callout-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

.belief__conclusion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
}

.belief__conclusion .check-icon {
  width: 24px;
  height: 24px;
  color: var(--ochre);
  flex-shrink: 0;
}

/* Comparison visual */
.belief__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.belief__comparison {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.belief__card {
  flex: 1;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: all 0.5s var(--ease-out);
}

.belief__card--old {
  background: var(--cream);
  border: 1px solid var(--border);
  opacity: 0.7;
}

.belief__card--old:hover {
  opacity: 1;
}

.belief__card--new {
  background: linear-gradient(135deg, rgba(163, 108, 69, 0.08), rgba(185, 131, 86, 0.12));
  border: 2px solid var(--ochre);
  box-shadow: 0 8px 30px var(--ochre-glow);
}

.belief__card--new:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--ochre-glow);
}

.belief__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.belief__card--old .belief__card-icon {
  color: var(--text-light);
}

.belief__card--new .belief__card-icon {
  color: var(--ochre);
}

.belief__card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.belief__card--old h4 {
  color: var(--text-muted);
}

.belief__card--new h4 {
  color: var(--ochre);
}

.belief__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.belief__card li {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.belief__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.belief__card--old li {
  color: var(--text-muted);
}

.belief__card--old li::before {
  background: var(--text-light);
  opacity: 0.5;
}

.belief__card--new li {
  color: var(--text-body);
}

.belief__card--new li::before {
  background: var(--ochre);
}

.belief__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.belief__vs span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   AGENDA
   ============================================ */

.agenda {
  position: relative;
  padding: 4.5rem 0;
  background: #e8ddd2;
  overflow: hidden;
}

/* Animated bg orbs */
.agenda__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.agenda__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: agendaOrb 16s ease-in-out infinite;
}

.agenda__bg-orb--1 {
  width: 350px;
  height: 350px;
  background: rgba(163, 108, 69, 0.1);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.agenda__bg-orb--2 {
  width: 280px;
  height: 280px;
  background: rgba(200, 162, 110, 0.08);
  bottom: -10%;
  right: -5%;
  animation-delay: 6s;
}

@keyframes agendaOrb {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.agenda__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 50px;
}

.agenda__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

.agenda__tag-line {
  width: 28px;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
}

.agenda__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 2rem;
}

.agenda__title em {
  font-style: normal;
  color: var(--ochre);
  position: relative;
}

/* Timeline with progress track */
.agenda__timeline {
  position: relative;
  padding-left: 3px;
}

.agenda__progress-track {
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(163, 108, 69, 0.12);
  border-radius: 1px;
}

.agenda__progress-fill {
  width: 100%;
  height: 0%;
  background: var(--ochre);
  border-radius: 1px;
  transition: height 0.6s var(--ease-out);
}

/* Agenda item with step number */
.agenda__item {
  display: grid;
  grid-template-columns: 36px 44px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.875rem 0;
  position: relative;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.agenda__item::after {
  content: '';
  position: absolute;
  inset: 0 -12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.35s var(--ease-out);
  z-index: -1;
}

.agenda__item:hover::after,
.agenda__item.is-active::after {
  background: rgba(255, 255, 255, 0.45);
}

.agenda__item.is-active {
  transform: none;
}

/* Step number + circle */
.agenda__step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  z-index: 2;
}

/* Solid circle behind number, covers the progress line */
.agenda__step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #e8ddd2;
  z-index: 0;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda__item:hover .agenda__step::before,
.agenda__item.is-active .agenda__step::before {
  background: #e0d1c0;
}

.agenda__step-circle {
  position: absolute;
  inset: 0;
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
  z-index: 1;
}

.agenda__step-bg {
  stroke: rgba(163, 108, 69, 0.15);
}

.agenda__step-fill {
  stroke: var(--ochre);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda__item:hover .agenda__step-fill,
.agenda__item.is-active .agenda__step-fill {
  stroke-dashoffset: 0;
}

.agenda__step-num {
  position: relative;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 800;
  color: rgba(163, 108, 69, 0.5);
  line-height: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda__item:hover .agenda__step-num,
.agenda__item.is-active .agenda__step-num {
  color: var(--ochre);
}

.agenda__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--ochre);
  background: rgba(163, 108, 69, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  transition: all 0.35s var(--ease-out);
}

.agenda__item:hover .agenda__icon,
.agenda__item.is-active .agenda__icon {
  background: var(--ochre);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(163, 108, 69, 0.25);
}

.agenda__icon svg {
  width: 100%;
  height: 100%;
}

.agenda__item-content {
  padding-top: 2px;
}

.agenda__item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
  transition: color 0.3s var(--ease-out);
}

.agenda__item:hover .agenda__item-title,
.agenda__item.is-active .agenda__item-title {
  color: var(--ochre);
}

.agenda__item-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #7a7067;
  margin: 0.25rem 0 0;
}
  margin-top: 0.25rem;
}

/* Right column */
.agenda__right {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.agenda__right .agenda__quote-card {
  margin-bottom: 2.5rem;
}

/* Quote card — light frosted glass */
.agenda__quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(163, 108, 69, 0.1);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease-out);
}

.agenda__quote-card:hover {
  box-shadow: 0 20px 48px rgba(163, 108, 69, 0.1);
}

.agenda__quote-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(163, 108, 69, 0.08);
  filter: blur(60px);
  top: -40px;
  right: -40px;
  animation: quoteGlow 6s ease-in-out infinite;
}

@keyframes quoteGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

.agenda__quote-mark {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 48px;
  height: 48px;
  color: var(--ochre);
  opacity: 0.12;
}

.agenda__quote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0 0 1rem;
  font-style: italic;
}

.agenda__quote-author {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ochre);
  margin: 0;
}

.agenda__quote-divider {
  height: 1px;
  background: rgba(163, 108, 69, 0.12);
  margin: 1.25rem 0;
}

.agenda__quote-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: rgba(163, 108, 69, 0.06);
  border-radius: 8px;
  font-size: 0.75rem;
  color: #7a7067;
}

.agenda__quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 108, 69, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(163, 108, 69, 0); }
}

/* Stats row */
.agenda__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.agenda__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.125rem 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(163, 108, 69, 0.06);
  transition: all 0.3s var(--ease-out);
}

.agenda__stat:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(163, 108, 69, 0.12);
}

.agenda__stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
}

.agenda__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #7a7067;
  text-align: center;
}

@media (max-width: 1024px) {
  .agenda__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .agenda__right {
    position: static;
    order: -1;
  }

  .agenda__stats {
    order: 1;
  }
}

@media (max-width: 768px) {
  .agenda {
    padding: 3rem 0;
  }

  .agenda__title {
    margin-bottom: 1.5rem;
  }

  .agenda__item {
    grid-template-columns: 32px 40px 1fr;
    gap: 0.5rem;
  }

  .agenda__progress-track {
    left: 24px;
  }

  .agenda__quote-card {
    padding: 2rem 1.5rem;
  }

  .agenda__item-desc {
    opacity: 1;
  }
}

/* ============================================
   CAROLE'S APPROACH
   ============================================ */

.approach {
  padding: 3rem 0;
  background: var(--cream);
}

.approach__grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 0;
}

.approach__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.approach__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.approach__image-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--ochre-accent);
  opacity: 0;
  transform: translate(12px, 12px);
  transition: all 0.5s var(--ease-out);
}

.approach__image-wrapper:hover .approach__image-accent {
  opacity: 1;
}

.approach__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.5rem;
}

.approach__tag-line {
  width: 28px;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
}

.approach__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.approach__intro {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* Signal cards */
.approach__signals {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.approach__signal {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
}

.approach__signal:hover {
  border-color: var(--ochre-accent);
  box-shadow: 0 4px 20px rgba(163, 108, 69, 0.08);
  transform: translateX(4px);
}

.approach__signal-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--ochre);
}

.approach__signal-icon svg {
  width: 100%;
  height: 100%;
}

.approach__signal strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.approach__signal p {
  font-size: 0.8375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Credentials grid */
.approach__creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.approach__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
}

.approach__cred:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(163, 108, 69, 0.08);
}

.approach__cred-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ochre);
  margin-top: 2px;
}

.approach__cred strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.approach__cred span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ochre);
  margin-top: 1px;
}

/* Stats */
.approach__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.stat__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
}

.stat__plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ochre);
}

.stat__label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat__divider {
  width: 1px;
  height: 50px;
  background: var(--border-strong);
}

/* Media banner — inline under photo */
.approach__media--inline {
  margin-top: 1.5rem;
}

/* Media banner */
.approach__media {
  text-align: center;
}

.approach__media-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.approach__media-strip {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.approach__media-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: all 0.3s;
}

.approach__media-strip:hover .approach__media-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.process {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(163, 108, 69, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(185, 131, 86, 0.05) 0%, transparent 50%);
}

.process__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}

.process__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 4rem;
}

.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__line {
  position: absolute;
  left: 32px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--ochre), var(--ochre-accent));
  border-radius: 1px;
  transition: height 1.5s var(--ease-out);
}

.process__step {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process__step:last-child {
  border-bottom: none;
}

.process__step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ochre);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}

.process__step:hover .process__step-number {
  background: var(--ochre);
  color: var(--white);
}

.process__step-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.process__step-icon {
  width: 80px;
  height: 80px;
}

.process__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  opacity: 0.85;
}

/* ============================================
   PLAN OPTIONS
   ============================================ */

.plans {
  padding: var(--section-py) 0;
  background: var(--cream);
}

/* Header with toggle */
.plans__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.plans__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}

.plans__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 550px;
}

/* Pricing toggle */
.plans__toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-bottom: 0.5rem;
}

.plans__toggle-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s var(--ease-out);
}

.plans__toggle-label--active {
  color: var(--ochre);
}

.plans__toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--card-bg);
  border: 2px solid var(--border-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
  font-family: inherit;
}

.plans__toggle-switch:hover {
  border-color: var(--ochre);
}

.plans__toggle-switch.is-active {
  background: var(--ochre);
  border-color: var(--ochre);
}

.plans__toggle-knob {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ochre);
  transition: all 0.35s var(--ease-out);
}

.plans__toggle-switch.is-active .plans__toggle-knob {
  left: calc(100% - 20px);
  background: var(--white);
}

/* Shared features banner */
.plans__shared {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, rgba(163, 108, 69, 0.06), rgba(185, 131, 86, 0.1));
  border: 1px solid var(--ochre-accent);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.plans__shared-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ochre);
}

/* Grid */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Card */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(163, 108, 69, 0.12);
}

.plan-card--featured {
  border: 2px solid var(--ochre);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(163, 108, 69, 0.15);
  background: linear-gradient(180deg, var(--white) 0%, rgba(163, 108, 69, 0.03) 100%);
}

.plan-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 24px 70px rgba(163, 108, 69, 0.2);
}

/* Badge */
.plan-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ochre);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}

.plan-card__badge--sale {
  background: linear-gradient(135deg, #c44a2e, #e07a3a);
}

/* Tier indicator */
.plan-card__tier {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.plan-card--featured .plan-card__tier,
.plan-card--ultimate .plan-card__tier {
  margin-top: 1.25rem;
}

.plan-card__tier-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(163, 108, 69, 0.08);
  color: var(--ochre);
  padding: 5px;
}

.plan-card__tier-icon svg {
  width: 100%;
  height: 100%;
}

.plan-card__tier-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
}

/* Header */
.plan-card__header {
  margin-bottom: 1.25rem;
}

.plan-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.plan-card__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing */
.plan-card__pricing {
  margin-bottom: 1.25rem;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.plan-card__currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.plan-card__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  transition: all 0.4s var(--ease-out);
}

.plan-card__price-old {
  font-size: 1.125rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.plan-card__per {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* CTA */
.plan-card__cta {
  margin-bottom: 1.5rem;
}

.plan-card--featured .plan-card__cta {
  box-shadow: 0 4px 16px var(--ochre-glow);
}

/* Divider */
.plan-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

/* Body */
.plan-card__body {
  flex: 1;
}

.plan-card__features-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.check-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ochre);
  margin-top: 1px;
}

/* Bulk badge */
.plan-card__bulk-badge {
  margin-top: 1.5rem;
  padding: 0.625rem 1rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.plan-card__bulk-save {
  font-weight: 700;
  color: var(--ochre);
}

/* Guarantee */
.plans__guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.plans__guarantee-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--ochre);
}

.plans__guarantee strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.plans__guarantee p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SCIENCE
   ============================================ */

.science {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.science__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    radial-gradient(circle at 25% 25%, var(--ochre) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--ochre) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Header with stats */
.science__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.science__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}

.science__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 550px;
}

/* Stats row */
.science__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.science__stat {
  text-align: center;
}

.science__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
}

.science__stat-plus {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ochre);
}

.science__stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.science__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

/* Grid — 2x2 layout */
.science__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Card */
.science__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.science__card:hover {
  border-color: var(--ochre-accent);
  box-shadow: 0 8px 30px rgba(163, 108, 69, 0.1);
  transform: translateY(-3px);
}

.science__card.is-expanded {
  border-color: var(--ochre);
  background: linear-gradient(135deg, var(--cream) 0%, rgba(163, 108, 69, 0.04) 100%);
  box-shadow: 0 12px 40px rgba(163, 108, 69, 0.12);
}

/* Card number */
.science__card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--ochre-accent);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* Card icon */
.science__card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(163, 108, 69, 0.08);
  color: var(--ochre);
  padding: 8px;
  transition: all 0.35s var(--ease-out);
}

.science__card:hover .science__card-icon,
.science__card.is-expanded .science__card-icon {
  background: var(--ochre);
  color: var(--white);
}

.science__card-icon svg {
  width: 100%;
  height: 100%;
}

/* Card content */
.science__card-content {
  flex: 1;
  min-width: 0;
}

.science__card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.science__card-title {
  font-size: 1.0625rem;
  font-weight: 700;
}

.science__card-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ochre);
  padding: 0.2rem 0.5rem;
  background: rgba(163, 108, 69, 0.08);
  border-radius: 100px;
}

.science__card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Expandable detail section */
.science__card-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out), margin 0.4s var(--ease-out);
  margin-top: 0;
  overflow: hidden;
}

.science__card.is-expanded .science__card-detail {
  grid-template-rows: 1fr;
  margin-top: 1rem;
}

.science__card-detail-inner {
  overflow: hidden;
}

.science__card-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.science__card-detail-item + .science__card-detail-item {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}

/* Toggle button */
.science__card-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
  align-self: center;
  font-family: inherit;
}

.science__card-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease-out);
}

.science__card-toggle:hover {
  border-color: var(--ochre);
  color: var(--ochre);
  background: rgba(163, 108, 69, 0.06);
}

.science__card.is-expanded .science__card-toggle {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--white);
}

.science__card.is-expanded .science__card-toggle svg {
  transform: rotate(45deg);
}

/* Quote — compact inline */
.science__quote {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #faf6f1, #f5ede3);
  border-radius: var(--radius);
  border-left: 3px solid var(--ochre);
  position: relative;
}

.science__quote-deco { display: none; }

.science__quote-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.science__quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.25;
  flex-shrink: 0;
}

.science__quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  flex: 1;
}

.science__quote-divider,
.science__quote-diamond { display: none; }

.science__quote cite {
  font-family: var(--font);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.science__quote-role {
  display: block;
  font-family: var(--font);
  font-size: 0.625rem;
  color: var(--ochre);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.testimonials {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.testimonials__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 0;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.testimonials__rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.testimonials__rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.testimonials__rating-stars svg {
  width: 14px;
  height: 14px;
  color: var(--ochre);
}

.testimonials__rating-count {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Carousel */
.testimonials__carousel {
  position: relative;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--ochre), var(--gold));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(163, 108, 69, 0.1);
  border-color: rgba(163, 108, 69, 0.2);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: var(--ochre);
}

.testimonial-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ochre);
  background: rgba(163, 108, 69, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ochre-accent);
}

.testimonial-card__name {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Navigation */
.testimonials__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--ochre);
  width: 24px;
  border-radius: 4px;
}

.testimonials__arrows {
  display: flex;
  gap: 0.5rem;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.testimonials__arrow:hover {
  border-color: var(--ochre);
  background: rgba(163, 108, 69, 0.05);
}

.testimonials__arrow:hover svg {
  color: var(--ochre);
}

/* ============================================
   PARTNER
   ============================================ */

.partner {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--card-bg) 100%);
  overflow: hidden;
}

.partner__texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a36c45'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.partner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.partner__text {
  margin-bottom: 2.5rem;
}

.partner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.partner__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.partner__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.partner__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.partner__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ochre), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.partner__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(163, 108, 69, 0.1);
  border-color: rgba(163, 108, 69, 0.2);
}

.partner__card:hover::before {
  transform: scaleX(1);
}

.partner__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(163, 108, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.4s var(--ease-out);
}

.partner__card:hover .partner__card-icon {
  background: var(--ochre);
}

.partner__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--ochre);
  transition: color 0.4s var(--ease-out);
}

.partner__card:hover .partner__card-icon svg {
  color: var(--white);
}

.partner__card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.partner__card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.partner__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42, 31, 20, 0.92) 0%, rgba(100, 65, 35, 0.82) 50%, rgba(163, 108, 69, 0.75) 100%);
}

/* Floating particles */
.final-cta__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.final-cta__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Badge */
.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.final-cta__badge svg {
  color: var(--gold);
}

.final-cta__badge span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Trust items */
.final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.final-cta__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--gold-soft);
  flex-shrink: 0;
}

.final-cta__trust-text {
  display: flex;
  flex-direction: column;
}

.final-cta__trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.final-cta__trust-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.125rem;
}

.final-cta__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* CTA button */
.final-cta__action {
  margin-bottom: 0;
}

.final-cta__btn {
  position: relative;
  animation: pulse-glow 3s var(--ease-in-out) infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
}

.final-cta__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* ============================================
   LAST CHANCE CTA
   ============================================ */

.last-cta {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, #2a1f14, #3d2c1c);
  overflow: hidden;
  text-align: center;
}

.last-cta__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
}

.last-cta__canvas canvas {
  width: 100%;
  height: 100%;
}

.last-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.last-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.last-cta__badge-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.last-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin: 0;
}

.last-cta__title strong {
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
}

.last-cta__subtitle {
  max-width: 480px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.last-cta__btn {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.875rem 2rem;
  background: var(--ochre);
  color: var(--white);
}

.last-cta__btn:hover {
  background: var(--gold);
}

.last-cta__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 5rem 0 0;
  background: var(--cream);
  color: var(--text-dark);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

/* Brand column */
.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out);
}

.footer__logo:hover {
  transform: rotate(10deg) scale(1.05);
}

.footer__logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.footer__logo-gen {
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.875rem;
  max-width: 320px;
  line-height: 1.7;
  color: #7a7067;
  margin-bottom: 2rem;
}

/* Social links */
.footer__social-links {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(163, 108, 69, 0.08);
  color: #8a7560;
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--ochre);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a7560;
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-list a {
  font-size: 0.875rem;
  color: #5a4f45;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  display: inline-block;
}

.footer__nav-list a:hover {
  color: var(--ochre);
  transform: translateX(4px);
}

/* Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(163, 108, 69, 0.1);
  font-size: 0.8125rem;
}

.footer__copyright {
  color: #9a8b7e;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b0a89e;
  font-size: 0.8125rem;
}

.footer__badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4b8ab;
  flex-shrink: 0;
}

/* ============================================
   MEDIA MARQUEE
   ============================================ */

.media-marquee {
  padding: 2.5rem 0 2rem;
  background: #fbf6f1;
  text-align: center;
  overflow: hidden;
}

.media-marquee__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.75rem;
  letter-spacing: -0.01em;
}

.media-marquee__track-wrapper {
  position: relative;
  cursor: grab;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.media-marquee__track-wrapper:active {
  cursor: grabbing;
}

.media-marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}

.media-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.media-marquee__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 120px;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-out);
}

.media-marquee__item:hover {
  opacity: 0.85;
}

.media-marquee__icon {
  width: 40px;
  height: 40px;
  color: #5a4f45;
}

.media-marquee__item span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #5a4f45;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media-marquee {
    padding: 2rem 0 1.5rem;
  }

  .media-marquee__title {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }

  .media-marquee__track {
    gap: 2.5rem;
    animation-duration: 25s;
  }

  .media-marquee__icon {
    width: 32px;
    height: 32px;
  }
}

/* ============================================
   WHAT TO EXPECT
   ============================================ */

.expect {
  position: relative;
  padding: 3rem 0;
  background: #f0e6d8;
  overflow: hidden;
}

/* Animated floating orbs */
.expect__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.expect__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: expectOrb 14s ease-in-out infinite;
}

.expect__bg-orb--1 {
  width: 450px;
  height: 450px;
  background: rgba(163, 108, 69, 0.12);
  top: -15%;
  right: -8%;
  animation-delay: 0s;
}

.expect__bg-orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(200, 162, 110, 0.1);
  bottom: -15%;
  left: -8%;
  animation-delay: 5s;
}

.expect__bg-orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(163, 108, 69, 0.08);
  top: 35%;
  left: 45%;
  animation-delay: 9s;
}

@keyframes expectOrb {
  0%, 100% { opacity: 0; transform: scale(0.8) translateY(20px); }
  50% { opacity: 1; transform: scale(1.15) translateY(-20px); }
}

/* Dot pattern overlay */
.expect__bg-lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(163, 108, 69, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.expect__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 1.75rem;
}

.expect__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

.expect__badge-line {
  width: 28px;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
}

.expect__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.expect__title em {
  font-style: italic;
  color: var(--ochre);
}

.expect__subtitle {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #7a7067;
  max-width: 520px;
  margin: 0 auto;
}

/* 3×2 Grid */
.expect__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.expect__card {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(163, 108, 69, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.expect__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(163, 108, 69, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.expect__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(163, 108, 69, 0.15);
  box-shadow: 0 20px 48px rgba(163, 108, 69, 0.1), 0 0 0 1px rgba(163, 108, 69, 0.05);
}

.expect__card:hover::before {
  opacity: 1;
}

/* Numbered indicator */
.expect__card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(163, 108, 69, 0.25);
  letter-spacing: 0.04em;
}

.expect__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  color: var(--ochre);
  background: rgba(163, 108, 69, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.expect__card:hover .expect__icon {
  background: rgba(163, 108, 69, 0.18);
  transform: scale(1.08);
}

.expect__icon svg {
  width: 24px;
  height: 24px;
}

.expect__card-title {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

.expect__card-desc {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #7a7067;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .expect {
    padding: 2.5rem 0;
  }

  .expect__header {
    margin-bottom: 1.5rem;
  }

  .expect__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .expect__card {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .expect__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   VIDEO TESTIMONIAL
   ============================================ */

.video-testimonial {
  padding: 5rem 0;
  background: #fbf6f1;
}

.video-testimonial__header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-testimonial__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}

.video-testimonial__badge-line {
  width: 24px;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
}

.video-testimonial__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.video-testimonial__title em {
  font-style: italic;
  color: var(--ochre);
}

.video-testimonial__subtitle {
  max-width: 480px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #7a7067;
}

/* Grid: featured left, 2 small stacked right */
.video-testimonial__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.video-testimonial__side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card styles */
.video-testimonial__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(163, 108, 69, 0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.video-testimonial__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(163, 108, 69, 0.1);
}

/* Video player / poster */
.video-testimonial__player {
  position: relative;
  cursor: pointer;
}

.video-testimonial__card--featured .video-testimonial__player {
  aspect-ratio: 16 / 9;
}

.video-testimonial__card--small .video-testimonial__player {
  aspect-ratio: 16 / 9;
}

.video-testimonial__poster {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3d2c1c, #2a1f14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-testimonial__poster-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(163, 108, 69, 0.15) 0%, transparent 70%);
}

.video-testimonial__play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--white);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 24px rgba(163, 108, 69, 0.3);
}

.video-testimonial__card--small .video-testimonial__play-btn {
  width: 44px;
  height: 44px;
}

.video-testimonial__player:hover .video-testimonial__play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(163, 108, 69, 0.4);
}

.video-testimonial__duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Info section */
.video-testimonial__info {
  padding: 1.5rem;
}

.video-testimonial__info--compact {
  padding: 1rem 1.25rem;
}

.video-testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

.video-testimonial__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a3f35;
  font-style: italic;
  margin: 0 0 1rem;
}

.video-testimonial__quote--small {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.video-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.video-testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.video-testimonial__role {
  font-size: 0.75rem;
  color: #9a8b7e;
  margin: 2px 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-testimonial__grid {
    grid-template-columns: 1fr;
  }

  .video-testimonial__side {
    flex-direction: row;
  }

  .video-testimonial__card--small {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .video-testimonial {
    padding: 3.5rem 0;
  }

  .video-testimonial__header {
    margin-bottom: 2rem;
  }

  .video-testimonial__side {
    flex-direction: column;
  }
}

/* ============================================
   WHY THIS WEBINAR IS DIFFERENT
   ============================================ */

/* Section base */
.why-different {
  padding: 2.5rem 0 2rem;
  background: #fbf6f1;
  position: relative;
  overflow: hidden;
}

/* Background decorations */
.why-different__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-different__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: wdOrb 18s ease-in-out infinite;
}

.why-different__bg-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(163, 108, 69, 0.06);
  top: -15%;
  right: -5%;
  animation-delay: 0s;
}

.why-different__bg-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(200, 162, 110, 0.05);
  bottom: -10%;
  left: -8%;
  animation-delay: -9s;
}

@keyframes wdOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

.why-different__bg-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(163, 108, 69, 0.06), transparent);
}

.why-different__bg-line--1 {
  left: 25%;
}

.why-different__bg-line--2 {
  left: 75%;
}

/* Section header */
.why-different__header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.why-different__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.why-different__tag-line {
  width: 2.5rem;
  height: 2px;
  background: var(--ochre);
  display: inline-block;
}

.why-different__tag span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ochre);
  text-transform: uppercase;
}

.why-different__title {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

/* Main layout */
.why-different__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Content LHS */
.why-different__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Intro quote block */
.why-different__quote-block {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(163, 108, 69, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem 1rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

.why-different__quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  width: 28px;
  height: 22px;
  color: var(--ochre);
  opacity: 0.35;
}

.why-different__quote-block p {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Body text */
.why-different__body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.why-different__text-block {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-body);
}

.why-different__text-block p {
  margin: 0;
}

/* Signs list */
.why-different__signs {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.why-different__signs li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-different__signs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-different__signs li:hover {
  color: var(--text-dark);
  transform: translateX(4px);
}

.why-different__signs li:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

/* Highlighted callout */
.why-different__callout {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  background: rgba(163, 108, 69, 0.04);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: background 0.3s ease;
}

.why-different__callout:hover {
  background: rgba(163, 108, 69, 0.08);
}

.why-different__callout-bar {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(to bottom, var(--ochre), var(--ochre-accent));
  border-radius: 3px;
  flex-shrink: 0;
}

.why-different__callout p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

/* Signature */
.why-different__signature {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.why-different__signature-line {
  width: 2.5rem;
  height: 1px;
  background: var(--ochre);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.why-different__closing {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ochre);
  margin: 0 0 0.25rem;
}

.why-different__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* RHS Visual */
.why-different__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 5rem;
}

.why-different__gif-wrapper {
  position: relative;
}

.why-different__gif-frame {
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(163, 108, 69, 0.1);
  border-radius: 22px;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.why-different__gif-wrapper:hover .why-different__gif-frame {
  border-color: rgba(163, 108, 69, 0.25);
}

.why-different__gif {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(42, 31, 20, 0.08);
  transition: box-shadow 0.4s ease;
}

.why-different__gif-wrapper:hover .why-different__gif {
  box-shadow: 0 24px 64px rgba(42, 31, 20, 0.12);
}

.why-different__gif-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 108, 69, 0.15), transparent 70%);
  bottom: -20px;
  right: -20px;
  animation: wdAccentPulse 4s ease-in-out infinite;
}

@keyframes wdAccentPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Trust badges */
.why-different__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(163, 108, 69, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.why-different__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.why-different__trust-num {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--ochre);
  letter-spacing: -0.02em;
}

.why-different__trust-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.why-different__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(163, 108, 69, 0.12);
}

/* Animations */
.wd-anim {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wd-anim[data-wd-anim="fade-up"] {
  transform: translateY(30px);
}

.wd-anim[data-wd-anim="fade-right"] {
  transform: translateX(-30px);
}

.wd-anim[data-wd-anim="fade-left"] {
  transform: translateX(30px);
}

.wd-anim.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-different__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-different__visual {
    position: static;
    order: -1;
  }

  .why-different__gif {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-different {
    padding: 3rem 0;
  }

  .why-different__header {
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .why-different__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .why-different__quote-block {
    padding: 1.25rem 1.5rem;
    font-size: 0.938rem;
  }

  .why-different__trust {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .why-different__trust-divider {
    display: none;
  }

  .why-different__gif {
    max-width: 280px;
  }

  .why-different__bg-line {
    display: none;
  }
}

/* ============================================
   REGISTER / NEWSLETTER
   ============================================ */

.register {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern background */
.register__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a36c45'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Two-column layout */
.register__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LHS — Info */
.register__info {
  padding-right: 1rem;
}

.register__info-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.register__info-tag-line {
  width: 36px;
  height: 2px;
  background: var(--ochre);
  flex-shrink: 0;
}

.register__info-tag span {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ochre);
}

.register__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.register__headline em {
  font-style: italic;
  color: var(--ochre);
}

.register__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.register__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  transition: transform 0.3s var(--ease-out);
}

.register__checklist li:hover {
  transform: translateX(4px);
}

/* Animated checkbox */
.register__check-box {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(163, 108, 69, 0.1);
  margin-top: 1px;
  transition: background 0.3s var(--ease-out);
}

.register__checklist li:hover .register__check-box {
  background: rgba(163, 108, 69, 0.18);
}

.register__check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ochre);
}

.register__check-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.4s var(--ease-out);
}

.register__checklist li.is-checked .register__check-path {
  stroke-dashoffset: 0;
}

/* Social proof */
.register__social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.register__avatars {
  display: flex;
}

.register__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--cream-dark);
}

.register__avatar + .register__avatar {
  margin-left: -8px;
}

.register__social-proof p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.register__social-proof strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* RHS — Compact form card */
.register__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 20px 60px rgba(163, 108, 69, 0.08);
  transition: box-shadow 0.4s var(--ease-out);
}

.register__card:hover {
  box-shadow: 0 24px 70px rgba(163, 108, 69, 0.12);
}

/* Badge row */
.register__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  margin-bottom: 1.25rem;
}

.register__info-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}

.register__info-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.register__info-value--accent {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ochre);
}

.register__info-divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
  margin: 0 1rem;
  flex-shrink: 0;
}

/* Title */
.register__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ochre);
  margin-bottom: 0.25rem;
}

.register__subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Form */
.register__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.register__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.register__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.register__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.register__input,
.register__select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.register__input::placeholder {
  color: var(--text-light);
}

.register__input:focus,
.register__select:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px var(--ochre-glow);
}

.register__input.is-invalid,
.register__select.is-invalid,
.popup__input.is-invalid,
.popup__select.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

/* Select arrow */
.register__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5a4e' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.register__select option {
  color: var(--text-dark);
}

/* Submit button */
.register__btn {
  width: 100%;
  justify-content: center;
  position: relative;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.register__btn-spinner {
  display: none;
}

.register__btn.is-loading .register__btn-text,
.register__btn.is-loading .btn__arrow {
  opacity: 0;
}

.register__btn.is-loading .register__btn-spinner {
  display: block;
  position: absolute;
}

.register__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form note */
.register__form-note {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.register__form-note::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a8b7e' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Success / Error message */
.register__message {
  margin-top: 0.75rem;
  padding: 0;
  font-size: 0.8125rem;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
  max-height: 0;
}

.register__message.is-visible {
  padding: 0.625rem 0.75rem;
  max-height: 100px;
}

.register__message--success {
  background: rgba(39, 174, 96, 0.08);
  color: #1e8449;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.register__message--error {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ============================================
   SECTION BACKGROUND ANIMATIONS
   ============================================ */

/* Shared container for animated bg elements */
.section-bg-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Ensure sections with bg animations are positioned */
.belief,
.approach,
.process,
.plans,
.science,
.testimonials,
.partner {
  position: relative;
}

/* Keep content above animated bg */
.belief > .container,
.approach > .container,
.process > .container,
.plans > .container,
.science > .container,
.testimonials > .container,
.partner > .container {
  position: relative;
  z-index: 2;
}

/* Floating gradient orbs — for white-bg sections */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0;
  will-change: transform, opacity;
  animation: orb-drift var(--orb-duration, 20s) var(--ease-in-out) var(--orb-delay, 0s) infinite;
}

@keyframes orb-drift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.7);
  }
  10% {
    opacity: var(--orb-opacity, 0.15);
  }
  50% {
    opacity: var(--orb-opacity, 0.15);
    transform: translate(var(--orb-dx, 30px), var(--orb-dy, -40px)) scale(1.2);
  }
  90% {
    opacity: var(--orb-opacity, 0.15);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.7);
  }
}

/* Floating sparkle dots — for cream-bg sections */
.bg-sparkle {
  position: absolute;
  width: var(--sparkle-size, 4px);
  height: var(--sparkle-size, 4px);
  border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 6px rgba(163, 108, 69, 0.3);
  opacity: 0;
  will-change: transform, opacity;
  animation: sparkle-float var(--sparkle-duration, 18s) ease-in-out var(--sparkle-delay, 0s) infinite;
}

@keyframes sparkle-float {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  10% {
    opacity: var(--sparkle-opacity, 0.3);
  }
  30% {
    transform: translateY(var(--sparkle-dy1, -20px)) scale(1);
  }
  50% {
    opacity: var(--sparkle-opacity, 0.3);
    transform: translateY(var(--sparkle-dy2, -50px)) scale(0.8);
  }
  70% {
    transform: translateY(var(--sparkle-dy3, -30px)) scale(1.1);
  }
  90% {
    opacity: var(--sparkle-opacity, 0.3);
  }
}

/* Slow breathing gradient wash — for partner section */
.bg-gradient-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: gradient-breathe 12s var(--ease-in-out) infinite;
}

@keyframes gradient-breathe {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.12;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .nav__actions .btn {
    display: none;
  }

  .belief__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .belief__comparison {
    flex-direction: column;
  }

  .belief__vs {
    align-self: center;
  }

  .approach__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approach__image-col {
    max-width: 400px;
  }

  .science__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .science__quote-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .science__quote {
    padding: 1rem 1.25rem;
  }

  .plans__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-8px);
  }

  .testimonials__track {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .register__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .register__info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .last-cta {
    padding: 2.5rem 0;
  }

  .last-cta__title {
    font-size: 1.5rem;
  }

  .last-cta__subtitle {
    font-size: 0.875rem;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero__meta {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero__meta-item {
    padding: 0.5rem 1.25rem;
  }

  .hero__meta-item:nth-child(2) {
    border-right: none;
  }

  .process__step {
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
  }

  .process__step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .process__step-icon {
    display: none;
  }

  .process__line {
    left: 24px;
  }

  .approach__stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stat__divider {
    width: 60px;
    height: 1px;
  }

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

  .science__card {
    padding: 1.25rem;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .science__card-icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .science__card-content {
    flex: 1;
    min-width: 0;
  }

  .science__card-top {
    gap: 0.5rem;
  }

  .science__card-title {
    font-size: 0.9375rem;
  }

  .science__card-tag {
    font-size: 0.5625rem;
    padding: 0.15rem 0.4rem;
    white-space: nowrap;
  }

  .science__card-num {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.625rem;
  }

  .science__card-toggle {
    width: 26px;
    height: 26px;
  }

  .science__card-toggle svg {
    width: 12px;
    height: 12px;
  }

  .science__card-desc {
    font-size: 0.8125rem;
  }

  .science__card-detail-item {
    font-size: 0.75rem;
  }

  .final-cta__trust {
    flex-direction: column;
    gap: 1.25rem;
  }

  .final-cta__trust-divider {
    width: 40px;
    height: 1px;
  }

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

  .partner__ctas {
    flex-direction: column;
  }

  .register__field-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .belief__title,
  .approach__title,
  .process__title,
  .plans__title,
  .science__title,
  .testimonials__title {
    font-size: 1.75rem;
  }

  .plan-card__amount {
    font-size: 2rem;
  }
}

/* ============================================
   REGISTRATION POPUP
   ============================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(42, 31, 20, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(42, 31, 20, 0.18), 0 0 0 1px rgba(163, 108, 69, 0.06);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.is-active .popup {
  transform: translateY(0) scale(1);
}

.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.popup__close:hover {
  background: var(--cream-dark);
  color: var(--text-dark);
}

.popup__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(163, 108, 69, 0.08);
  border-radius: 20px;
  padding: 0.35rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.popup__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  animation: popupDotPulse 2s ease-in-out infinite;
}

@keyframes popupDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.popup__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.375rem;
  line-height: 1.2;
}

.popup__subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Popup form */
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.popup__field {
  display: flex;
  flex-direction: column;
}

.popup__input,
.popup__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.popup__input::placeholder {
  color: var(--text-light);
}

.popup__input:focus,
.popup__select:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px var(--ochre-glow);
}

.popup__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a8b7e' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.popup__btn {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.875rem;
  font-size: 0.9375rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.popup__btn-spinner {
  display: none;
  animation: spin 0.8s linear infinite;
}

.popup__btn.is-loading .popup__btn-text { display: none; }
.popup__btn.is-loading .btn__arrow { display: none; }
.popup__btn.is-loading .popup__btn-spinner { display: block; }

.popup__note {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.popup__note::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a8b7e' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.popup__message {
  text-align: center;
  font-size: 0.8125rem;
  min-height: 1.25rem;
}

.popup__message--success {
  color: #2d8a4e;
}

.popup__message--error {
  color: #c0392b;
}

/* Mobile popup */
@media (max-width: 480px) {
  .popup {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 16px;
  }

  .popup__title {
    font-size: 1.25rem;
  }

  .popup__field-row {
    grid-template-columns: 1fr;
  }
}
