:root {
  /* Primary Colors - Vibrant from ALANA logo */
  --primary-yellow: #ffd700;
  --primary-lime: #adde2b;
  --primary-orange: #ff9500;
  --primary-magenta: #e91e63;
  --primary-purple: #9c27b0;
  --primary-blue: #2196f3;
  --primary-cyan: #00bcd4;

  /* Working Colors - Used throughout */
  --vibrant-orange: #ff9500;
  --vibrant-blue: #2196f3;
  --vibrant-magenta: #e91e63;
  --vibrant-purple: #9c27b0;
  --accent-lime: #adde2b;

  /* Neutrals */
  --cream: #faf7f2;
  --warm-white: #fffcf8;
  --slate: #1a1a2e;
  --slate-mid: #2d2d4a;
  --slate-soft: #5a5a7a;

  /* Light backgrounds for accents */
  --amber-pale: #fff5e6;
  --magenta-pale: #fff0f7;
  --blue-pale: #e8f4ff;
  --purple-pale: #f3e8ff;

  --font-display: "Lora", Georgia, serif;
  --font-body: "Be Vietnam Pro", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--slate);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.hero-content,
.workshop-content,
.register-left,
.register-form,
.stage-body,
.target-list li span,
.info-pill > div {
  min-width: 0;
}

/* ─── NOISE TEXTURE overlay ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─────────── NAV ─────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 2px solid var(--vibrant-blue);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.15);
}

.nav-logo {
  transition: transform 0.3s;
}
.nav-logo:hover {
  transform: scale(1.08);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--vibrant-orange) 0%,
    var(--vibrant-magenta) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--vibrant-blue);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--vibrant-magenta) 0%,
    var(--vibrant-purple) 100%
  );
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: linear-gradient(
    135deg,
    var(--vibrant-purple) 0%,
    var(--vibrant-magenta) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* ─────────── HERO ─────────── */
.hero {
  min-height: 100vh;
  padding: 140px 3rem 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
}

/* decorative circle blobs */
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatBlob 20s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatBlobReverse 20s ease-in-out infinite;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes floatBlobReverse {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 25px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-pale);
  color: var(--vibrant-blue);
  border: 2px solid var(--vibrant-blue);
  padding: 0.35rem 1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vibrant-blue);
  display: block;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--vibrant-magenta);
}
.hero-content h1 .accent-line {
  position: relative;
  display: inline-block;
}
.hero-content h1 .accent-line::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--vibrant-orange) 0%,
    var(--accent-lime) 50%,
    var(--vibrant-blue) 100%
  );
  border-radius: 2px;
  transform: skewX(-5deg);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--slate-soft);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--warm-white);
  border: 2px solid var(--vibrant-blue);
  border-radius: 40px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}
.badge-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vibrant-blue);
  font-size: 0.95rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(
    135deg,
    var(--vibrant-orange) 0%,
    var(--vibrant-magenta) 100%
  );
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(255, 149, 0, 0.45);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--vibrant-magenta) 0%,
    var(--vibrant-purple) 100%
  );
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.6);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: var(--vibrant-blue);
  border: 2px solid var(--vibrant-blue);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--vibrant-blue);
  color: #fff;
  background: var(--vibrant-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-xl) var(--radius-lg)
    var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 58, 53, 0.18);
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* decorative card floating on image */
.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -30px;
  background: #fff;
  border: 2px solid var(--vibrant-blue);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatCard 5s ease-in-out infinite reverse;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-floating-card .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--vibrant-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hero-floating-card .card-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}
.hero-floating-card .card-text span {
  font-size: 0.75rem;
  color: var(--slate-soft);
}

.hero-floating-card2 {
  position: absolute;
  top: 20px;
  right: -20px;
  background: linear-gradient(
    135deg,
    var(--vibrant-purple) 0%,
    var(--vibrant-magenta) 100%
  );
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: #fff;
  box-shadow: 0 12px 36px rgba(233, 30, 99, 0.5);
  animation: floatCard2 6s ease-in-out infinite;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}
.hero-floating-card2 strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.hero-floating-card2 span {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─────────── DIVIDER ─────────── */
.organic-divider {
  position: relative;
  height: clamp(54px, 5vw, 74px);
  overflow: hidden;
  line-height: 0;
  isolation: isolate;
}
.organic-divider-top {
  margin-top: -1px;
}
.organic-divider-bottom {
  margin-bottom: -1px;
  transform: rotate(180deg);
}
.wave-track {
  position: absolute;
  inset: 0;
  width: 200%;
  height: 100%;
  display: block;
  will-change: transform;
}
.wave-track-primary {
  animation: waveSlide 16s linear infinite;
}
.organic-divider svg path {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.14));
}

@keyframes waveSlide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-track-primary {
    animation: none;
    transform: none;
  }
}

/* ─────────── INTRO STRIP ─────────── */
.intro-strip {
  position: relative;
  background: linear-gradient(132deg, #edf5fd 0%, #f5effa 48%, #fff4eb 100%);
  padding: 4.25rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(43, 144, 227, 0.35);
  border-bottom: 1px solid rgba(229, 85, 116, 0.3);
}
.intro-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(43, 144, 227, 0.12) 0,
      transparent 52%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(244, 154, 85, 0.12) 0,
      transparent 48%
    );
  pointer-events: none;
}
.intro-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.intro-strip blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--vibrant-blue);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: var(--font-display);
  line-height: 1;
}

/* ─────────── WORKSHOP HERO SECTION ─────────── */
.workshop-hero {
  padding: 7rem 3rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.workshop-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.workshop-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-pale);
  color: var(--vibrant-orange);
  border: 2px solid var(--vibrant-orange);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.workshop-tag i {
  font-size: 0.8rem;
}

.workshop-visual {
  position: relative;
}
.workshop-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(45, 58, 53, 0.16);
  display: block;
  object-fit: cover;
}

.free-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--vibrant-orange) 0%,
    var(--primary-yellow) 100%
  );
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.6);
  }
}
.free-badge .free-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.free-badge .free-big {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.workshop-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 1rem;
}
.workshop-content h2 span {
  color: var(--sage);
  font-style: italic;
}

.workshop-lead {
  font-size: 1.05rem;
  color: var(--slate-soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* Stages */
.stages {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 2.5rem;
}
.stage-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 4px solid transparent;
  transition: all 0.3s;
  cursor: default;
  margin-bottom: 6px;
}
.stage-item:hover {
  border-left-color: var(--vibrant-blue);
  background: var(--blue-pale);
  transform: translateX(4px);
}
.stage-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vibrant-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.stage-num.orange {
  background: var(--vibrant-orange);
}
.stage-num.gold {
  background: var(--primary-yellow);
  color: var(--slate);
}
.stage-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.2rem;
}
.stage-body p {
  font-size: 0.88rem;
  color: var(--slate-soft);
  line-height: 1.6;
}

/* Info pills */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.info-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--warm-white);
  border: 2px solid var(--vibrant-blue);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--slate);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
}
.info-pill .pill-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vibrant-blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.info-pill strong {
  font-weight: 700;
  color: var(--slate);
}

/* ─────────── BENEFITS ─────────── */
.benefits {
  background: linear-gradient(135deg, var(--slate) 0%, #2d2d5a 100%);
  color: #fff;
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--vibrant-orange), var(--accent-lime));
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.section-header h2 em {
  color: var(--primary-yellow);
  font-style: italic;
}
.section-header p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  font-size: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.35s var(--ease-out);
}
.benefit-card:hover {
  background: rgba(33, 150, 243, 0.2);
  border-color: var(--vibrant-blue);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.3);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(33, 150, 243, 0.22);
  border: 1px solid rgba(168, 197, 170, 0.35);
  font-size: 1.15rem;
}
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.benefit-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ─────────── FOR WHO ─────────── */
.for-who {
  background: var(--cream);
  padding: 7rem 3rem;
}
.for-who-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.section-header-light h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--slate);
}
.section-header-light h2 em {
  color: var(--vibrant-magenta);
  font-style: italic;
}
.section-header-light .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vibrant-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-header-light .eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--vibrant-blue),
    var(--vibrant-magenta)
  );
}
.section-header-light p {
  color: var(--slate-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.target-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--vibrant-blue);
  transition: all 0.3s;
}
.target-list li:hover {
  border-color: var(--vibrant-magenta);
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
}
.target-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vibrant-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}
.target-list li span {
  font-size: 0.9rem;
  color: var(--slate-mid);
  line-height: 1.6;
}
.target-list li strong {
  color: var(--slate);
  font-weight: 600;
}

.for-who-visual {
  position: relative;
}
.for-who-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(45, 58, 53, 0.12);
  display: block;
  object-fit: cover;
}
.stat-bubble {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.2);
  border: 2px solid var(--vibrant-blue);
}
.stat-bubble.left {
  bottom: 80px;
  left: -30px;
  background: linear-gradient(135deg, #fff 0%, var(--blue-pale) 100%);
}
.stat-bubble.right {
  top: 15%;
  transform: translateY(-50%);
  right: -20px;
  background: linear-gradient(135deg, #fff 0%, var(--magenta-pale) 100%);
}
.stat-bubble strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vibrant-magenta);
  line-height: 1;
}
.stat-bubble span {
  font-size: 0.75rem;
  color: var(--slate-soft);
}

/* ─────────── SERVICES ─────────── */
.services {
  background: var(--warm-white);
  padding: 7rem 3rem;
  border-top: 1px solid rgba(45, 58, 53, 0.06);
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--slate);
}
.services-header h2 em {
  color: var(--vibrant-orange);
  font-style: italic;
}
.services-header p {
  color: var(--slate-soft);
  margin-top: 0.75rem;
  font-size: 1rem;
}
.services-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vibrant-magenta);
  margin-bottom: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(45, 58, 53, 0.07);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--vibrant-orange) 0%,
    var(--vibrant-magenta) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(33, 150, 243, 0.15);
  border-color: var(--vibrant-blue);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: var(--vibrant-blue);
  border: 2px solid var(--vibrant-blue);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--slate-soft);
  line-height: 1.75;
}

/* ─────────── CTA / REGISTER ─────────── */
.register {
  background: linear-gradient(
    135deg,
    var(--slate) 0%,
    #3a3a5a 50%,
    #2a2a4a 100%
  );
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
.register::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.register-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.register-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.register-left h2 em {
  color: var(--primary-yellow);
  font-style: italic;
}
.register-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.register-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.register-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.register-perks li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--vibrant-orange),
    var(--vibrant-magenta)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.register-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.25rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--slate-soft);
  margin-bottom: 1.75rem;
}

.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1.5px solid rgba(45, 58, 53, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  transition: all 0.25s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--vibrant-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--vibrant-orange) 0%,
    var(--vibrant-magenta) 100%
  );
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(255, 149, 0, 0.4);
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: linear-gradient(
    135deg,
    var(--vibrant-magenta) 0%,
    var(--vibrant-purple) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.5);
}

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0.25rem;
}
.footer-brand-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin-bottom: 1rem;
}
footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 1rem;
}
footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
footer a:hover {
  color: var(--primary-yellow);
}
footer p.small {
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom span {
  color: var(--accent-lime);
}

/* ─────────── TOAST ─────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(
    135deg,
    var(--vibrant-blue) 0%,
    var(--vibrant-magenta) 100%
  );
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.4);
  font-size: 0.9rem;
  border-left: 4px solid var(--primary-yellow);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  z-index: 9998;
  max-width: 320px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i {
  margin-right: 0.45rem;
  color: var(--primary-yellow);
}

/* ─────────── SCROLL REVEAL ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 120px 2rem 60px;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-content {
    width: min(100%, 760px);
    margin: 0 auto;
  }
  .hero-btns,
  .hero-badges {
    justify-content: center;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .hero-floating-card,
  .hero-floating-card2 {
    display: none;
  }

  .workshop-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .workshop-content,
  .register-left,
  .register-form {
    width: min(100%, 760px);
    margin: 0 auto;
  }
  .workshop-visual,
  .for-who-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }
  .free-badge {
    top: 12px;
    right: 12px;
    width: 82px;
    height: 82px;
  }
  .for-who-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stat-bubble.left {
    left: 12px;
    bottom: 12px;
  }
  .stat-bubble.right {
    top: 12px;
    right: 12px;
  }
  .register-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0.85rem 1rem;
    justify-content: center;
  }
  .nav-cta {
    display: none;
  }
  .nav-logo img {
    height: 38px;
  }

  .hero {
    padding: 98px 1rem 46px;
    gap: 2.2rem;
  }
  .hero-eyebrow {
    width: auto;
    max-width: 100%;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.6rem;
    letter-spacing: 0.02em;
    padding: 0.32rem 0.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    margin-bottom: 1.1rem;
  }
  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .hero-badges {
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }
  .badge {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.75rem;
  }
  .hero-btns {
    width: 100%;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
  }

  .workshop-hero,
  .benefits,
  .for-who,
  .services,
  .register,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .organic-divider {
    height: clamp(40px, 10vw, 56px);
  }
  .intro-strip {
    padding: 2.4rem 1rem;
  }
  .intro-strip blockquote {
    font-size: clamp(1.12rem, 5.2vw, 1.35rem);
    line-height: 1.5;
  }
  .intro-strip blockquote::before {
    display: none;
  }

  .workshop-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }
  .workshop-lead {
    margin-bottom: 1.75rem;
  }
  .stages {
    margin-bottom: 1.6rem;
  }
  .stage-item {
    padding: 1rem;
    gap: 0.85rem;
  }
  .stage-body p {
    font-size: 0.84rem;
  }
  .info-pills {
    gap: 0.6rem;
  }
  .info-pill {
    width: 100%;
  }

  .target-list {
    margin-top: 1.4rem;
  }
  .target-list li {
    padding: 0.9rem 0.95rem;
  }
  .stat-bubble {
    display: none;
  }

  .services-header {
    margin-bottom: 2.25rem;
  }
  .service-card {
    padding: 1.4rem;
  }

  .register {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .register-form {
    padding: 1.6rem 1rem;
  }
  .field input,
  .field textarea {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: clamp(1.8rem, 10vw, 2.3rem);
  }
  .hero-eyebrow {
    font-size: 0.54rem;
    letter-spacing: 0;
    padding: 0.3rem 0.5rem;
  }
  .btn-primary,
  .btn-ghost,
  .submit-btn {
    font-size: 0.92rem;
  }
  .workshop-content h2 {
    font-size: clamp(1.58rem, 8.8vw, 1.95rem);
  }
  .stage-num {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
}
