/* =========================================================
   INNERMIND — Hypnotherapy Course Landing Page
   Design tokens, base, and component styles
   ========================================================= */

:root {
  /* Color tokens */
  --color-primary: #FF8C00;
  --color-primary-light: #FFC542;
  --color-dark: #111111;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F8F8;
  --color-text: #222222;
  --color-text-muted: #6B6B6B;
  --color-border: #ECECEC;
  --gradient-accent: linear-gradient(135deg, #FF8C00 0%, #FFC542 100%);
  --gradient-dark: linear-gradient(160deg, #1a1207 0%, #111111 60%);

  /* Type */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(17,17,17,0.06);
  --shadow-mid: 0 20px 50px rgba(17,17,17,0.10);
  --shadow-glow: 0 8px 30px rgba(255,140,0,0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--color-text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

section.section { padding: 120px 0; }
.alt-bg { background: var(--color-bg-alt); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.section-head p { font-size: 1.05rem; }
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.72); }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,140,0,0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255,140,0,0.4); }
.btn-glow { position: relative; }
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: var(--gradient-accent);
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s var(--ease);
}
.btn-glow:hover::after { opacity: 0.55; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid rgba(17,17,17,0.15);
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }

/* ripple */
.btn { -webkit-tap-highlight-color: transparent; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(3.2); opacity: 0; } }

/* =========================
   CURSOR GLOW
========================= */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.10) 0%, rgba(255,140,0,0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 0.3s ease;
  will-change: transform;
}
@media (max-width: 900px) { .cursor-glow { display: none; } }

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px rgba(17,17,17,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
}
.logo-text em { font-style: normal; color: var(--color-primary); }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.login-link { font-family: var(--font-heading); font-weight: 500; font-size: 0.94rem; }
.login-link:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--color-dark); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:48px;
    height:48px;
    object-fit:contain;
    display:block;
    transition:transform .3s ease;
}

.logo:hover .logo-img{
    transform:scale(1.05);
}

.logo-text{
    display:flex;
    align-items:center;
    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:700;
}

.logo-text em{
    font-style:normal;
    color:var(--color-primary);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 100px;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.shape-1 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,140,0,0.22), transparent 70%); top: 6%; left: -4%; animation: floatY 9s ease-in-out infinite; }
.shape-2 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,197,66,0.28), transparent 70%); bottom: 8%; left: 18%; animation: floatY 7s ease-in-out infinite reverse; }
.shape-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%); top: 20%; right: -6%; animation: floatY 11s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

.hero-spiral {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.45;
}
.spiral-ring { fill: none; stroke: url(#ringGrad); stroke-width: 1; }
.hero-spiral .spiral-ring { stroke: #FF8C00; opacity: 0.18; }
.r1 { animation: spin 40s linear infinite; }
.r2 { animation: spin 60s linear infinite reverse; }
.r3 { animation: spin 80s linear infinite; }
.r4 { animation: spin 100s linear infinite reverse; }
@keyframes spin { from { transform: rotate(0deg); transform-origin: 300px 300px; } to { transform: rotate(360deg); transform-origin: 300px 300px; } }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,140,0,0.08);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-title { font-size: clamp(2.6rem, 5vw, 4.1rem); font-weight: 700; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title em { font-style: normal; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-sub { font-size: 1.12rem; max-width: 480px; margin-top: 18px; }

.trust-icons { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 26px 0 34px; }
.trust-icons li { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.92rem; color: var(--color-text); }
.trust-icons svg { color: var(--color-primary); flex-shrink: 0; }

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

/* reveal animation base */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up { transform: translateY(34px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1; transform: translate(0,0);
}
.hero .reveal-up, .hero .reveal-right { transition-delay: var(--d, 0s); }
.hero-copy .reveal-up, .hero-media.reveal-right { opacity: 0; }
.hero-copy .reveal-up.in-view, .hero-media.reveal-right.in-view { opacity: 1; }

.hero-media { display: flex; justify-content: center; }
.hero-image-wrap { position: relative; max-width: 460px; }
.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  transform: scale(1.06);
  animation: imgSettle 1.4s var(--ease) forwards;
  animation-delay: 0.2s;
}
@keyframes imgSettle { to { transform: scale(1); } }
.hero-image-glow {
  position: absolute;
  inset: 10%;
  background: var(--gradient-accent);
  filter: blur(60px);
  opacity: 0.25;
  z-index: -1;
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-mid);
  display: flex;
  flex-direction: column;
  animation: floatY 6s ease-in-out infinite;
}
.floating-card strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-dark); }
.floating-card span { font-size: 0.78rem; color: var(--color-text-muted); }
.card-1 { top: 8%; left: -8%; animation-delay: 0.2s; }
.card-2 { bottom: 6%; right: -6%; animation-delay: 1s; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(17,17,17,0.2);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--color-primary); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* =========================
   SOCIAL PROOF STRIP
========================= */
.social-proof { background: var(--color-dark); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 500; }

/* =========================
   AUTO-SCROLLING MARQUEE
========================= */
.marquee-section {
  background: var(--color-dark);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Ambient continuous icon motion */
.why-icon, .benefit-icon, .who-icon, .feature-icon {
  animation: iconDrift 5s ease-in-out infinite;
}
.why-card:nth-child(2n) .why-icon,
.benefit-card:nth-child(2n) .benefit-icon,
.who-card:nth-child(3n) .who-icon,
.feature-card:nth-child(2n) .feature-icon { animation-delay: 0.6s; animation-duration: 6s; }
.why-card:nth-child(3n) .why-icon,
.who-card:nth-child(2n) .who-icon { animation-delay: 1.2s; animation-duration: 5.6s; }
@keyframes iconDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}
.why-card:hover .why-icon,
.benefit-card:hover .benefit-icon,
.who-card:hover .who-icon,
.feature-card:hover .feature-icon { animation-play-state: paused; }

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 34px rgba(37,211,102,0.55); }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-pulse { animation: none; }
  .why-icon, .benefit-icon, .who-icon, .feature-icon { animation: none; }
}

/* =========================
   SLIDER
========================= */
.slider-section { background: var(--color-bg-alt); padding: 100px 0; }
.slider {
  position: relative;
  max-width: var(--container-w);
  margin: 0 auto;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease);
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.25) 55%, rgba(17,17,17,0.05) 100%);
}
.slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 70px;
  max-width: 560px;
}
.slide-content h3 { color: #fff; font-size: 2rem; }
.slide-content p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.slider-arrow:hover { background: rgba(255,255,255,0.32); transform: translateY(-50%) scale(1.06); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots, .slider-dots#testimonialDots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 2;
}
.slider-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dots button.is-active { background: var(--color-primary); transform: scale(1.3); }

/* =========================
   WHY LEARN
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-mid); border-color: transparent; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(255,140,0,0.09);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.08); background: var(--gradient-accent); color: #fff; }
.why-card h3 { font-size: 1.1rem; }
.why-card p { font-size: 0.92rem; margin: 0; }

/* =========================
   PODCAST / VIDEO
========================= */
.podcast-section {
  position: relative;
  background: var(--gradient-dark);
  padding: 120px 0;
  overflow: hidden;
}
.podcast-blur {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--gradient-accent);
  filter: blur(140px);
  opacity: 0.22;
  top: -10%; left: 50%;
  transform: translateX(-50%);
}
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.video-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.video-aspect iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.podcast-cta { text-align: center; margin-top: 46px; position: relative; }

/* =========================
   TRAINER
========================= */
.trainer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.trainer-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-mid); }
.trainer-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin: -8px 0 18px;
}
.trainer-bio { font-size: 1.02rem; max-width: 560px; }

.timeline { margin: 30px 0; display: flex; flex-direction: column; gap: 22px; }
.timeline li { display: flex; gap: 18px; position: relative; padding-left: 4px; }
.timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 9px; top: 24px;
  width: 1.5px; height: calc(100% + 4px);
  background: var(--color-border);
}
.timeline-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 0 5px rgba(255,140,0,0.1);
}
.timeline h4 { font-size: 1rem; margin-bottom: 2px; }
.timeline p { font-size: 0.9rem; margin: 0; }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-btn:hover { background: var(--gradient-accent); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* =========================
   ACCORDION
========================= */
.accordion { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item.active{
    border-color: rgba(255,140,0,0.35);
    box-shadow: var(--shadow-soft);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  text-align: left;
}
.acc-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,140,0,0.09);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.accordion-trigger span:nth-child(2) { flex: 1; }
.acc-chevron { transition: transform 0.35s var(--ease); color: var(--color-primary); font-size: 1.2rem; }
.accordion-item.active .acc-chevron{
    transform: rotate(180deg);
}

.accordion-panel{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.panel-inner{
    padding:0 24px 22px 72px;
    font-size:.95rem;
    color:var(--color-text-muted);
}

/* =========================
   WHO SHOULD JOIN
========================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.who-icon { font-size: 1.8rem; margin-bottom: 14px; }
.who-card h4 { font-size: 1.02rem; }
.who-card p { font-size: 0.9rem; margin: 0; }

/* =========================
   BENEFITS
========================= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  text-align: center;
  padding: 44px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-mid); }
.benefit-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.benefit-card h4 { font-size: 1.1rem; }
.benefit-card p { font-size: 0.92rem; margin: 0; }

/* =========================
   FEATURES
========================= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,140,0,0.09);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--gradient-accent); color: #fff; transform: rotate(-6deg) scale(1.06); }
.feature-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.feature-card p { font-size: 0.88rem; margin: 0; }

/* =========================
   HOW IT WORKS
========================= */
.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.how-line { position: absolute; top: 24px; left: 0; width: 100%; height: 2px; }
.how-line line { stroke: var(--color-border); stroke-width: 2; }
.how-line.drawn line { stroke: var(--color-primary); }
.how-step { position: relative; text-align: center; padding-top: 60px; }
.how-num {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(255,140,0,0.3);
}
.how-step h4 { font-size: 1rem; }
.how-step p { font-size: 0.86rem; margin: 0; }

/* =========================
   TESTIMONIALS
========================= */
.testimonial-track {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.testimonial-cards { position: relative; flex: 1; min-height: 260px; }
.testimonial-arrow {
  position: relative;
  top: auto; left: auto; right: auto; transform: none;
  flex-shrink: 0;
  background: #fff;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.testimonial-arrow:hover { background: var(--gradient-accent); color: #fff; transform: scale(1.06); border-color: transparent; }
.testimonial-card {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.testimonial-card.is-active { opacity: 1; visibility: visible; position: relative; }
.stars { color: var(--color-primary); letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card p { font-size: 1.08rem; color: var(--color-text); font-style: italic; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 22px; }
.testimonial-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--color-text-muted); }
#testimonialDots { position: static; transform: none; justify-content: center; margin-top: 30px; }

/* =========================
   FINAL CTA
========================= */
.final-cta { position: relative; padding: 130px 0; overflow: hidden; background: var(--color-dark); }
.final-cta-bg {
  position: absolute; inset: -20%;
  background: conic-gradient(from 180deg at 50% 50%, #FF8C00, #FFC542, #111111, #FF8C00);
  opacity: 0.18;
  filter: blur(100px);
  animation: spin 30s linear infinite;
}
.final-cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta-inner p { color: rgba(255,255,255,0.72); font-size: 1.08rem; margin-bottom: 34px; }

/* =========================
   FOOTER
========================= */
.site-footer { background: #0c0c0c; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 14px; max-width: 260px; }
.footer-brand .logo-text { color: #fff; }
.footer-links h5, .footer-social h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-primary); }
.footer-social .social-btn { border-color: rgba(255,255,255,0.15); color: #fff; }
.footer-bottom { padding: 26px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .who-grid, .benefits-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-timeline { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; box-shadow: var(--shadow-mid); padding: 20px 32px; transform: translateY(-130%); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 18px; }
  .nav-toggle { display: flex; }
  .login-link { display: none; }
  .how-timeline { grid-template-columns: repeat(2, 1fr); }
  .how-line { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section.section { padding: 80px 0; }
  .hero { padding-top: calc(var(--header-h) + 30px); }
  .why-grid, .who-grid, .benefits-grid, .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slider { height: 420px; }
  .trust-icons { gap: 10px 16px; }
  .header-actions .btn-primary { padding: 10px 18px; font-size: 0.86rem; }
  .floating-card { display: none; }
  .panel-inner { padding-left: 24px; }
  .testimonial-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .testimonial-card { padding: 34px 22px; }
}



.footer-bottom{
    padding:28px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
    margin:0;
    font-size:0.92rem;
    color:rgba(255,255,255,0.65);
    line-height:1.8;
}

.footer-divider{
    margin:0 12px;
    color:rgba(255,255,255,0.25);
}

.wizket-link{
    display:inline-block;
    color:var(--color-primary);
    font-weight:700;
    text-decoration:none;
    transition:all .35s ease;
    position:relative;
}

.wizket-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:var(--gradient-accent);
    transition:width .35s ease;
}

.wizket-link:hover{
    color:#FFC542;
    transform:translateY(-2px);
}

.wizket-link:hover::after{
    width:100%;
}

@media(max-width:768px){
    .footer-divider{
        display:none;
    }

    .footer-bottom p{
        line-height:2;
    }
}