:root {
  --primary-blue: #1a8bf6;
  --white: #ffffff;
  --dark: #0a0a0a;
  --gray-100: #f5f5f5;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-900: #111827;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

/* ================================
   HERO SECTION - Editorial Style
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
  padding: 80px 24px 60px;
}

/* Background Orb - Blurred gradient */
.hero__bg-orb {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.15) 0%, rgba(26, 139, 246, 0.05) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero__bg-orb--2 {
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
}

/* Floating Decorative Elements */
.hero__float {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__float--1 {
  top: 15%;
  right: 8%;
  animation-delay: 0s;
}

.hero__float--2 {
  top: 35%;
  right: 3%;
  animation-delay: 1.5s;
  font-size: 1.8rem;
}

.hero__float--3 {
  top: 60%;
  right: 12%;
  animation-delay: 3s;
  font-size: 1.5rem;
}

.hero__float--4 {
  top: 75%;
  right: 5%;
  animation-delay: 4.5s;
  font-size: 1.6rem;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 1;
  }
}

/* Subtle Grid Overlay */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Container - Asymmetric Grid */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 55% 42%;
    gap: 3%;
  }
}

/* Content Column */
.hero__content {
  animation: heroFadeIn 0.8s ease-out forwards;
}

/* Media Column */
.hero__media {
  animation: heroFadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

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

/* Badge - Rotated Pill */
.hero__badge {
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(26, 139, 246, 0.4);
}

.badge--rotated {
  transform: rotate(-2deg);
  transform-origin: left center;
}

/* Headline - Dramatic Typography */
.hero__headline {
  margin-bottom: 28px;
  line-height: 1.05;
  transform: rotate(-1deg);
  position: relative;
}

.hero__headline-main {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero__headline-main:nth-child(2) {
  margin-left: 20px; /* Asymmetric indent */
}

.hero__headline-accent {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-blue);
  margin-top: 12px;
  transform: rotate(-0.5deg);
}

.hero__headline-gradient {
  display: block;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 50%, #1a8bf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  margin-top: 8px;
  line-height: 1.1;
  text-shadow: none;
}

/* Hand-drawn underline */
.hero__headline-underline {
  width: clamp(200px, 60%, 350px);
  height: auto;
  margin-top: 8px;
  margin-left: 10px;
  opacity: 0.8;
}

/* Event Date Badge */
.hero__event-date {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(26, 139, 246, 0.12) 0%, rgba(26, 139, 246, 0.06) 100%);
  border: 2px solid rgba(26, 139, 246, 0.4);
  border-radius: 100px;
  padding: 16px 32px;
  margin-bottom: 36px;
  transform: rotate(-1deg);
  box-shadow:
    0 4px 20px rgba(26, 139, 246, 0.15),
    0 0 0 0 rgba(26, 139, 246, 0.3);
  animation: datePulse 3s ease-in-out infinite;
}

@keyframes datePulse {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(26, 139, 246, 0.15),
      0 0 0 0 rgba(26, 139, 246, 0.3);
  }
  50% {
    box-shadow:
      0 6px 30px rgba(26, 139, 246, 0.25),
      0 0 0 8px rgba(26, 139, 246, 0.1);
  }
}

.hero__event-date-live {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero__event-date-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 0.02em;
}

/* Subheadline */
.hero__subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero__subheadline strong {
  color: var(--gray-900);
  font-weight: 700;
}

.hero__subheadline-highlight {
  color: #10b981;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Section */
.hero__cta-wrapper {
  margin-bottom: 40px;
}

.hero__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 56px;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(26, 139, 246, 0.5),
    0 0 0 0 rgba(26, 139, 246, 0.4);
  transition: all 0.3s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.hero__cta-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 8px 30px rgba(26, 139, 246, 0.5),
      0 0 0 0 rgba(26, 139, 246, 0.4);
  }
  50% {
    box-shadow:
      0 12px 40px rgba(26, 139, 246, 0.6),
      0 0 0 12px rgba(26, 139, 246, 0.1);
  }
}

.hero__cta-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 15px 50px rgba(26, 139, 246, 0.6),
    0 0 0 6px rgba(26, 139, 246, 0.2);
}

.hero__cta-button:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* Social Proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero__avatar-stack {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar--count {
  background: var(--gray-900);
  font-size: 0.85rem;
}

.hero__social-proof-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__fire {
  font-size: 1.1rem;
  animation: fireFlicker 1.5s ease-in-out infinite;
}

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

.hero__cta-subtext {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

/* Trust Elements (legacy - keeping for compatibility) */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust-text {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.hero__trust-text strong {
  color: var(--gray-900);
}

/* Media Column - Video */
.hero__media {
  position: relative;
  animation: heroFadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* Floating Badges around video */
.hero__media-badge {
  position: absolute;
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
  white-space: nowrap;
}

.hero__media-badge--1 {
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  transform: rotate(3deg);
  animation: badgeFloat 4s ease-in-out infinite;
}

.hero__media-badge--2 {
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  transform: rotate(-2deg);
  animation: badgeFloat 4s ease-in-out infinite 2s;
}

@keyframes badgeFloat {
  0%, 100% { transform: rotate(var(--badge-rotate, 3deg)) translateY(0); }
  50% { transform: rotate(var(--badge-rotate, 3deg)) translateY(-8px); }
}

.hero__media-badge--1 { --badge-rotate: 3deg; }
.hero__media-badge--2 { --badge-rotate: -2deg; }

.hero__video-wrapper {
  position: relative;
  transform: rotate(1.5deg);
}

/* Video Glow Effect */
.hero__video-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(26, 139, 246, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: videoGlow 4s ease-in-out infinite;
}

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

.hero__video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.hero__video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(26, 139, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero__play-button {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(26, 139, 246, 0.5);
  z-index: 1;
}

.hero__play-button svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  margin-left: 4px;
}

.hero__play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(26, 139, 246, 0.7);
}

.hero__video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
  transform: rotate(-1.5deg);
}

/* Registration Form */
.hero__form-wrapper {
  position: relative;
  margin-top: 24px;
}

.hero__form {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.hero__form-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}

.hero__form-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 28px;
}

.hero__form-group {
  margin-bottom: 20px;
}

.hero__form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.hero__form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.hero__form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero__form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(26, 139, 246, 0.2);
}

.hero__form-input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.hero__form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(26, 139, 246, 0.4);
  margin-top: 8px;
}

.hero__form-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero__form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 139, 246, 0.5);
}

.hero__form-submit:hover svg {
  transform: translateX(4px);
}

.hero__form-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 16px;
}

/* Form Success Message */
.form-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  animation: successFadeIn 0.5s ease forwards;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success__icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: celebrateBounce 0.6s ease;
}

@keyframes celebrateBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.form-success__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.6;
}

.form-success__date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(16, 185, 129, 0.2);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 8px;
}

/* Section CTA Buttons */
.section-cta {
  text-align: center;
  margin-top: 50px;
}

.section-cta--dark {
  margin-top: 60px;
}

.section-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(26, 139, 246, 0.35);
}

.section-cta__button svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.section-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(26, 139, 246, 0.45);
}

.section-cta__button:hover svg {
  transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 50px;
    text-align: left;
  }

  /* Use flexbox for reordering on mobile */
  .hero__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Flatten the wrapper divs so children can be reordered */
  .hero__content,
  .hero__media {
    display: contents;
  }

  /* Order elements for mobile layout */
  .hero__badge { order: 1; margin-bottom: 20px; }
  .hero__headline { order: 2; margin-bottom: 20px; }
  .hero__video-wrapper { order: 3; margin-bottom: 20px; }
  .hero__subheadline { order: 4; margin-bottom: 20px; }
  .hero__event-date { order: 5; margin-bottom: 20px; }
  .hero__cta-wrapper { order: 6; margin-bottom: 24px; }
  .hero__form-wrapper { order: 7; }

  .hero__headline {
    transform: rotate(0);
  }

  .hero__headline-main:nth-child(2) {
    margin-left: 0;
  }

  .hero__video-wrapper {
    transform: none;
    width: 100%;
  }

  .hero__cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero__float {
    display: none;
  }

  .hero__event-date {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    transform: rotate(0);
  }

  .hero__social-proof {
    justify-content: center;
  }
}

/* Tablet adjustments (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero {
    padding: 60px 20px 50px;
  }

  .hero__headline {
    transform: rotate(0);
  }

  .hero__video-wrapper {
    transform: none;
    width: 100%;
    margin-bottom: 24px;
  }

  .hero__cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero__float {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__avatar {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }

  .hero__play-button {
    width: 64px;
    height: 64px;
  }

  .hero__play-button svg {
    width: 26px;
    height: 26px;
  }

  .hero__cta-button {
    padding: 20px 36px;
    font-size: 1.1rem;
  }

  .hero__headline-gradient {
    font-size: 2.5rem;
  }

  .hero__headline-underline {
    width: 180px;
  }
}


/* ================================
   JOURNEY SECTION - Unified Problem → Solution
   ================================ */

.journey {
  position: relative;
  padding: 100px 24px 140px;
  background: #f3f4f6;
  overflow: hidden;
}

/* Background Elements */
.journey__bg-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(150px, 25vw, 400px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.journey__bg-text--solution {
  top: 75%;
  color: rgba(26, 139, 246, 0.04);
  font-size: clamp(200px, 35vw, 600px);
}

.journey__bg-orb {
  position: absolute;
  top: 50%;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.1) 0%, rgba(26, 139, 246, 0.03) 40%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.journey__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Red Badge Variant */
.badge--red {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

/* ========== PROBLEM PART ========== */

.journey__problem {
  margin-bottom: 0;
}

.journey__problem-header {
  margin-bottom: 70px;
  max-width: 800px;
}

.journey__problem-headline {
  margin-top: 28px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.journey__problem-headline-emphasis {
  display: block;
  color: var(--gray-400);
  font-weight: 600;
  margin-top: 8px;
  margin-left: 30px;
  transform: rotate(-0.5deg);
}

/* Problem Cards */
.journey__problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .journey__problem-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .journey__problem-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.journey__problem-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.04);
  opacity: 0;
  animation: journeyCardFadeIn 0.6s ease forwards;
}

.journey__problem-card--1 { animation-delay: 0.1s; }
.journey__problem-card--2 { animation-delay: 0.2s; }
.journey__problem-card--3 { animation-delay: 0.3s; }
.journey__problem-card--4 { animation-delay: 0.4s; }

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

.journey__problem-card:hover {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(239, 68, 68, 0.1);
}

.journey__problem-card--featured {
  border: 2px solid rgba(239, 68, 68, 0.2);
}

@media (min-width: 1024px) {
  .journey__problem-card--featured {
    padding: 32px 28px;
    transform: rotate(-2deg) scale(1.05);
    z-index: 2;
    animation: journeyCard1FadeIn 0.6s ease 0.1s forwards;
  }
  @keyframes journeyCard1FadeIn {
    from { opacity: 0; transform: rotate(-2deg) scale(1.05) translateY(30px); }
    to { opacity: 1; transform: rotate(-2deg) scale(1.05) translateY(0); }
  }
  .journey__problem-card--featured:hover {
    transform: rotate(-2deg) scale(1.08) translateY(-5px);
  }

  .journey__problem-card--2 {
    transform: rotate(1deg) translateY(35px);
    margin-left: -8px;
    animation: journeyCard2FadeIn 0.6s ease 0.2s forwards;
  }
  @keyframes journeyCard2FadeIn {
    from { opacity: 0; transform: rotate(1deg) translateY(65px); }
    to { opacity: 1; transform: rotate(1deg) translateY(35px); }
  }
  .journey__problem-card--2:hover { transform: rotate(1deg) translateY(28px); }

  .journey__problem-card--3 {
    transform: rotate(-1deg) translateY(15px);
    margin-left: -5px;
    animation: journeyCard3FadeIn 0.6s ease 0.3s forwards;
  }
  @keyframes journeyCard3FadeIn {
    from { opacity: 0; transform: rotate(-1deg) translateY(45px); }
    to { opacity: 1; transform: rotate(-1deg) translateY(15px); }
  }
  .journey__problem-card--3:hover { transform: rotate(-1deg) translateY(8px); }

  .journey__problem-card--4 {
    transform: rotate(2deg) translateY(50px);
    margin-left: -10px;
    animation: journeyCard4FadeIn 0.6s ease 0.4s forwards;
  }
  @keyframes journeyCard4FadeIn {
    from { opacity: 0; transform: rotate(2deg) translateY(80px); }
    to { opacity: 1; transform: rotate(2deg) translateY(50px); }
  }
  .journey__problem-card--4:hover { transform: rotate(2deg) translateY(42px); }
}

.journey__problem-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(248, 113, 113, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.journey__problem-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.journey__problem-card-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== TRANSITION ========== */

.journey__transition {
  text-align: center;
  padding: 80px 0 60px;
}

.journey__transition-text {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 30px;
}

.journey__transition-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

.journey__transition-arrow {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  color: var(--primary-blue);
  animation: bounceDown 2s ease-in-out infinite;
}

.journey__transition-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ========== SOLUTION PART ========== */

.journey__solution {
  text-align: center;
  position: relative;
  padding-top: 20px;
}

/* FREE Stamp */
.journey__free-stamp {
  position: absolute;
  top: 0;
  right: 5%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 8px;
  transform: rotate(12deg);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  letter-spacing: 0.1em;
  z-index: 10;
}

.journey__solution-intro {
  font-size: 1.2rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.journey__solution-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.05;
  letter-spacing: -0.03em;
  transform: rotate(-1deg);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.journey__solution-headline-accent {
  color: var(--primary-blue);
}

.journey__solution-underline {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  border-radius: 4px;
  opacity: 0.4;
}

.journey__solution-subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 50px;
}

/* Key Points */
.journey__solution-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 70px;
}

.journey__solution-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--gray-900);
}

.journey__solution-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 139, 246, 0.15);
}

.journey__solution-point-check {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.journey__solution-point strong {
  font-weight: 700;
}

/* Timeline */
.journey__timeline {
  margin-bottom: 60px;
}

.journey__timeline-intro {
  font-size: 1.2rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 35px;
}

.journey__timeline-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey__timeline-dot {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow:
    0 8px 25px rgba(26, 139, 246, 0.4),
    0 0 0 6px rgba(26, 139, 246, 0.1);
  position: relative;
  z-index: 2;
}

.journey__timeline-connector {
  width: 180px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), rgba(26, 139, 246, 0.3), var(--primary-blue));
  position: relative;
  border-radius: 3px;
}

.journey__timeline-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid var(--primary-blue);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* ========== DAY CARDS - DRAMATIC ========== */

.journey__days {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 900px) {
  .journey__days {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.journey__day {
  position: relative;
  text-align: left;
}

.journey__day-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(26, 139, 246, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey__day:hover .journey__day-glow {
  opacity: 1;
}

.journey__day-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  border-left: 6px solid var(--primary-blue);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey__day-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 139, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Day Card Rotations - MORE DRAMATIC */
@media (min-width: 900px) {
  .journey__day--1 .journey__day-content {
    transform: rotate(-3deg);
  }
  .journey__day--1:hover .journey__day-content {
    transform: rotate(-3deg) translateY(-12px) scale(1.02);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.12),
      0 40px 80px rgba(26, 139, 246, 0.15);
  }

  .journey__day--2 {
    margin-top: 60px;
    margin-left: -30px;
  }
  .journey__day--2 .journey__day-content {
    transform: rotate(3deg);
  }
  .journey__day--2:hover .journey__day-content {
    transform: rotate(3deg) translateY(-12px) scale(1.02);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.12),
      0 40px 80px rgba(26, 139, 246, 0.15);
  }
}

.journey__day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.journey__day-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-blue);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(26, 139, 246, 0.35);
}

.journey__day-icon {
  font-size: 2.8rem;
}

.journey__day-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.journey__day-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-weight: 600;
}

.journey__day-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.journey__day-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

/* Floating Annotation */
.journey__day-annotation {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--gray-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 10;
}

.journey__day-annotation::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--gray-900);
  transform: rotate(45deg);
}

/* Mobile Adjustments */
@media (max-width: 899px) {
  .journey {
    padding: 70px 20px 100px;
  }

  .journey__problem-header {
    margin-bottom: 50px;
  }

  .journey__problem-headline-emphasis {
    margin-left: 0;
  }

  .journey__bg-text {
    font-size: 120px;
  }

  .journey__bg-text--solution {
    font-size: 150px;
  }

  .journey__problem-card {
    padding: 24px 20px;
  }

  .journey__transition {
    padding: 60px 0 40px;
  }

  .journey__free-stamp {
    position: relative;
    right: auto;
    top: auto;
    display: inline-block;
    margin-bottom: 30px;
    transform: rotate(6deg);
  }

  .journey__solution-headline {
    font-size: 2.5rem;
    transform: rotate(0);
  }

  .journey__solution-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .journey__solution-point {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .journey__timeline-connector {
    width: 100px;
  }

  .journey__timeline-dot {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .journey__day-content {
    padding: 32px 28px;
    transform: none !important;
  }

  .journey__day--2 {
    margin-top: 0;
    margin-left: 0;
  }

  .journey__day-annotation {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
    transform: rotate(-2deg);
  }

  .journey__day-annotation::before {
    display: none;
  }
}


/* ================================
   HOOK SECTION - Part 1 Results
   ================================ */

.hook {
  position: relative;
  padding: 100px 24px 120px;
  background: #f3f4f6;
  overflow: hidden;
}

/* Background Text */
.hook__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(150px, 30vw, 450px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hook__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.hook__header {
  text-align: center;
  margin-bottom: 70px;
}

.hook__headline {
  margin-top: 24px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hook__subheadline {
  margin-top: 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--gray-600);
  font-weight: 500;
}

/* Result Cards */
.hook__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .hook__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.hook__card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    0 30px 60px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}


/* Staggered layout on desktop */
@media (min-width: 768px) {
  .hook__card--1 {
    transform: rotate(-2deg);
  }
  .hook__card--1:hover {
    transform: rotate(-2deg) translateY(-10px) scale(1.02);
  }

  .hook__card--2 {
    transform: rotate(1deg) translateY(25px);
  }
  .hook__card--2:hover {
    transform: rotate(1deg) translateY(15px) scale(1.02);
  }

  .hook__card--3 {
    transform: rotate(-1deg) translateY(10px);
  }
  .hook__card--3:hover {
    transform: rotate(-1deg) translateY(0) scale(1.02);
  }
}

.hook__card:hover {
  box-shadow:
    0 15px 40px rgba(26, 139, 246, 0.12),
    0 40px 80px rgba(26, 139, 246, 0.08);
}

.hook__card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hook__card-number {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hook__card-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Bottom Text */
.hook__bottom {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hook__bottom-text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hook__bottom-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

.hook__bottom-highlight {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 50%, #1a8bf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  transform: rotate(-1deg);
  display: inline-block;
  text-shadow: none;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .hook {
    padding: 70px 20px 90px;
  }

  .hook__header {
    margin-bottom: 50px;
  }

  .hook__card {
    padding: 32px 24px;
    transform: none !important;
  }

  .hook__cards {
    margin-bottom: 60px;
  }

  .hook__bg-text {
    font-size: 120px;
  }

  .hook__bottom-highlight {
    font-size: 2.5rem;
    transform: rotate(0);
  }
}


/* ================================
   PROBLEM SECTION - The Comparison
   ================================ */

.problem {
  position: relative;
  padding: 100px 24px 120px;
  background: var(--white);
  overflow: hidden;
}

/* Background Text */
.problem__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(200px, 40vw, 500px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.problem__container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.problem__header {
  text-align: center;
  margin-bottom: 60px;
}

.problem__headline {
  margin-top: 24px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problem__subheadline {
  margin-top: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problem__subheadline strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Comparison Cards Container */
.problem__comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  .problem__comparison {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
  }
}

/* VS Element */
.problem__vs {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-300);
  background: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  align-self: center;
  z-index: 5;
}

@media (min-width: 768px) {
  .problem__vs {
    display: flex;
  }
}

/* Cards */
.problem__card {
  position: relative;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Old Way Card */
.problem__card--old {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

@media (min-width: 768px) {
  .problem__card--old {
    transform: rotate(-2deg);
    margin-right: -15px;
  }
  .problem__card--old:hover {
    transform: rotate(-2deg) translateY(-5px);
  }
}

/* New Way Card */
.problem__card--new {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border: 2px solid rgba(26, 139, 246, 0.3);
  box-shadow:
    0 10px 40px rgba(26, 139, 246, 0.15),
    0 30px 60px rgba(26, 139, 246, 0.1);
}

@media (min-width: 768px) {
  .problem__card--new {
    transform: rotate(2deg);
    margin-left: -15px;
  }
  .problem__card--new:hover {
    transform: rotate(2deg) translateY(-5px);
  }
}

/* Card Glow for New Way */
.problem__card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(26, 139, 246, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* Card Header */
.problem__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.problem__card-icon {
  font-size: 1.5rem;
}

.problem__card-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.problem__card--old .problem__card-label {
  color: #991b1b;
}

.problem__card--new .problem__card-label {
  color: #0369a1;
}

/* Card Price */
.problem__card-price {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
}

.problem__card--old .problem__card-price {
  color: #991b1b;
  opacity: 0.7;
}

.problem__card--old .problem__card-price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.problem__card--new .problem__card-price {
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Card List */
.problem__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem__card-list li {
  font-size: 1.05rem;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.problem__card--old .problem__card-list li {
  color: #7f1d1d;
}

.problem__card--old .problem__card-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.problem__card--new .problem__card-list li {
  color: #0c4a6e;
}

.problem__card--new .problem__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* Bottom Text */
.problem__bottom {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--gray-600);
  line-height: 1.7;
}

.problem__bottom strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .problem {
    padding: 70px 20px 90px;
  }

  .problem__header {
    margin-bottom: 40px;
  }

  .problem__card {
    padding: 28px 24px;
    transform: none !important;
    margin: 0 !important;
  }

  .problem__vs {
    display: flex;
    margin: -15px auto;
  }

  .problem__comparison {
    gap: 0;
  }

  .problem__bg-text {
    font-size: 150px;
  }
}


/* ================================
   SOLUTION SECTION
   ================================ */

.solution {
  position: relative;
  padding: 120px 24px 140px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

/* Background Orbs */
.solution__bg-orb {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.2) 0%, rgba(26, 139, 246, 0.05) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.solution__bg-orb--2 {
  top: auto;
  bottom: -200px;
  right: auto;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.solution__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.solution__header {
  text-align: center;
  margin-bottom: 60px;
}

.solution__headline {
  margin-top: 28px;
  line-height: 1.15;
}

.solution__headline-white {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.solution__headline-blue {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a8bf6 0%, #38bdf8 50%, #1a8bf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.solution__subheadline {
  margin-top: 24px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Checklist */
.solution__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solution__check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.solution__check-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(26, 139, 246, 0.3);
  transform: translateX(5px);
}

.solution__check-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution__check-item strong {
  color: var(--white);
  font-weight: 700;
}

.solution__highlight {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Bottom Text */
.solution__bottom {
  text-align: center;
}

.solution__bottom-text {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.solution__bottom-text:first-child {
  font-weight: 600;
  color: var(--white);
}

.solution__bottom-text strong {
  color: var(--white);
  font-weight: 700;
}

.solution__bottom-text .solution__highlight {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .solution {
    padding: 80px 20px 100px;
  }

  .solution__header {
    margin-bottom: 40px;
  }

  .solution__check-item {
    padding: 14px 18px;
    gap: 12px;
  }

  .solution__checklist {
    gap: 14px;
    margin-bottom: 50px;
  }
}


/* ================================
   SCHEDULE SECTION - Night 1 & 2
   ================================ */

.schedule {
  position: relative;
  padding: 120px 24px 140px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Text */
.schedule__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(150px, 25vw, 400px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.schedule__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.schedule__header {
  text-align: center;
  margin-bottom: 70px;
}

.schedule__headline {
  margin-top: 24px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Cards Container */
.schedule__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.schedule__card {
  flex: 1;
  max-width: 480px;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule__card--1 {
  transform: rotate(-1.5deg);
}

.schedule__card--2 {
  transform: rotate(1.5deg);
}

.schedule__card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Card Badge */
.schedule__card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* Card Date */
.schedule__card-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule__card-date::before {
  content: "📅";
  font-size: 1.2rem;
}

/* Card Title */
.schedule__card-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Card Subtitle */
.schedule__card-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-style: italic;
}

/* Card List */
.schedule__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule__card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.schedule__check {
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Highlight for $5k+ */
.schedule__highlight {
  background: linear-gradient(135deg, #1a8bf6 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Card Bottom Text */
.schedule__card-bottom {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.5;
}

/* Connector */
.schedule__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  flex-shrink: 0;
}

.schedule__connector-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 139, 246, 0.3);
}

.schedule__connector-line {
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, #1a8bf6 0%, rgba(26, 139, 246, 0.3) 100%);
  border-radius: 3px;
}

.schedule__connector-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .schedule__cards {
    flex-direction: column;
    align-items: center;
  }

  .schedule__card {
    max-width: 100%;
    transform: none !important;
  }

  .schedule__card:hover {
    transform: translateY(-8px) !important;
  }

  .schedule__connector {
    flex-direction: row;
    padding: 20px 0;
  }

  .schedule__connector-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1a8bf6 0%, rgba(26, 139, 246, 0.3) 100%);
  }
}

@media (max-width: 767px) {
  .schedule {
    padding: 80px 20px 100px;
  }

  .schedule__header {
    margin-bottom: 50px;
  }

  .schedule__card {
    padding: 30px 24px;
  }

  .schedule__card-title {
    font-size: 1.35rem;
  }

  .schedule__card-item {
    font-size: 0.95rem;
  }
}


/* ================================
   FIT SECTION - Is This For You?
   ================================ */

.fit {
  position: relative;
  padding: 120px 24px 140px;
  background: var(--white);
  overflow: hidden;
}

/* Background Text */
.fit__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(200px, 35vw, 550px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.fit__container {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0 auto;
}

/* Header */
.fit__header {
  text-align: center;
  margin-bottom: 70px;
}

.fit__honest-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fit__headline {
  margin-top: 24px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Cards Container */
.fit__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 900px) {
  .fit__cards {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
  }
}

/* VS Element */
.fit__vs {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 20px 0;
  align-self: center;
}

@media (min-width: 900px) {
  .fit__vs {
    display: block;
    padding: 0 10px;
    margin-top: 180px;
  }
}

/* Cards */
.fit__card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fit__card-content {
  position: relative;
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* YES Card - Blue/Green */
.fit__card--yes .fit__card-content {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-left: 6px solid var(--primary-blue);
  box-shadow:
    0 10px 30px rgba(26, 139, 246, 0.1),
    0 30px 60px rgba(26, 139, 246, 0.08);
}

.fit__card--yes .fit__card-title-accent {
  color: var(--primary-blue);
}

.fit__card--yes:hover .fit__card-content {
  box-shadow:
    0 15px 40px rgba(26, 139, 246, 0.15),
    0 40px 80px rgba(26, 139, 246, 0.12);
}

/* NO Card - Red/Coral */
.fit__card--no .fit__card-content {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-left: 6px solid #ef4444;
  box-shadow:
    0 10px 30px rgba(239, 68, 68, 0.1),
    0 30px 60px rgba(239, 68, 68, 0.08);
}

.fit__card--no .fit__card-title-accent {
  color: #ef4444;
}

.fit__card--no:hover .fit__card-content {
  box-shadow:
    0 15px 40px rgba(239, 68, 68, 0.15),
    0 40px 80px rgba(239, 68, 68, 0.12);
}

/* Card Rotations */
@media (min-width: 900px) {
  .fit__card--yes .fit__card-content {
    transform: rotate(-2deg);
  }
  .fit__card--yes:hover .fit__card-content {
    transform: rotate(-2deg) translateY(-8px) scale(1.01);
  }

  .fit__card--no .fit__card-content {
    transform: rotate(2deg);
  }
  .fit__card--no:hover .fit__card-content {
    transform: rotate(2deg) translateY(-8px) scale(1.01);
  }

  /* Overlap effect */
  .fit__card--yes {
    margin-right: -15px;
    z-index: 2;
  }
  .fit__card--no {
    margin-left: -15px;
    margin-top: 40px;
  }
}

.fit__card-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
  line-height: 1.3;
}

.fit__card-title-accent {
  font-weight: 800;
}

.fit__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.fit__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.fit__icon--check {
  color: var(--primary-blue);
}

.fit__icon--x {
  color: #ef4444;
}

/* Price Highlights */
.fit__highlight-blue {
  background: linear-gradient(135deg, #1a8bf6 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.fit__faded {
  color: var(--gray-400);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

/* Arrow CTA on blue card */
.fit__arrow {
  position: absolute;
  bottom: -25px;
  left: 30px;
  right: auto;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 25px rgba(26, 139, 246, 0.4);
  white-space: nowrap;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fit__arrow:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 139, 246, 0.5);
}

.fit__arrow::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 25px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  transform: rotate(45deg);
}

/* Bottom Text */
.fit__bottom-text {
  text-align: center;
  margin-top: 100px;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--gray-600);
  font-weight: 500;
}

.fit__bottom-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* Animations */
@keyframes fitSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-2deg);
  }
}

@keyframes fitSlideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(2deg);
  }
}

@media (min-width: 900px) {
  .fit__card--yes .fit__card-content {
    animation: fitSlideInLeft 0.8s ease forwards;
  }

  .fit__card--no .fit__card-content {
    animation: fitSlideInRight 0.8s ease 0.2s forwards;
    opacity: 0;
  }
}

/* Mobile Adjustments */
@media (max-width: 899px) {
  .fit {
    padding: 80px 20px 100px;
  }

  .fit__header {
    margin-bottom: 50px;
  }

  .fit__card-content {
    padding: 32px 28px;
    transform: none !important;
  }

  .fit__card--yes,
  .fit__card--no {
    margin: 0;
  }

  .fit__card--no {
    margin-top: 0;
  }

  .fit__bg-text {
    font-size: 150px;
  }

  .fit__arrow {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    display: inline-block;
    transform: rotate(2deg);
  }

  .fit__arrow::before {
    display: none;
  }

  .fit__bottom-text {
    margin-top: 60px;
  }
}


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

.testimonials {
  position: relative;
  padding: 120px 24px 140px;
  background: #f3f4f6;
  overflow: hidden;
}

/* Giant Background Quote */
.testimonials__bg-quote {
  position: absolute;
  top: 5%;
  left: -5%;
  font-family: Georgia, serif;
  font-size: clamp(300px, 50vw, 600px);
  font-weight: 700;
  color: rgba(26, 139, 246, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonials__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.testimonials__header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials__headline {
  margin-top: 24px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Cards */
.testimonials__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .testimonials__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
  }
}

.testimonials__card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    0 30px 60px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.testimonials__card:hover {
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.06);
}

/* Card Quote Mark Background */
.testimonials__card-quote-mark {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(26, 139, 246, 0.08);
  line-height: 1;
  pointer-events: none;
}

/* Card Rotations & Stagger */
@media (min-width: 900px) {
  .testimonials__card--1 {
    transform: rotate(-2deg);
  }
  .testimonials__card--1:hover {
    transform: rotate(-2deg) translateY(-10px);
  }

  .testimonials__card--2 {
    transform: rotate(0deg) translateY(30px);
  }
  .testimonials__card--2:hover {
    transform: rotate(0deg) translateY(20px);
  }

  .testimonials__card--3 {
    transform: rotate(2deg);
  }
  .testimonials__card--3:hover {
    transform: rotate(2deg) translateY(-10px);
  }
}

/* Featured Card (Middle) */
.testimonials__card--featured {
  border: 2px solid rgba(26, 139, 246, 0.2);
  box-shadow:
    0 15px 40px rgba(26, 139, 246, 0.1),
    0 40px 80px rgba(26, 139, 246, 0.06);
}

.testimonials__card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 139, 246, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .testimonials__card--featured {
    padding: 44px 36px;
    z-index: 2;
  }
}

/* Quote */
.testimonials__quote {
  position: relative;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 28px;
  z-index: 1;
}

.testimonials__card--featured .testimonials__quote {
  font-size: 1.2rem;
}

/* Quote Highlights */
.testimonials__highlight {
  background: linear-gradient(135deg, #1a8bf6 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-style: normal;
}

/* Author */
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonials__title {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Stats Bar */
.testimonials__stats {
  margin-top: 80px;
  position: relative;
}

.testimonials__stats-annotation {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--gray-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

.testimonials__stats-annotation::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--gray-900);
  transform: translateX(-50%) rotate(45deg);
}

.testimonials__stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.04);
}

@media (min-width: 600px) {
  .testimonials__stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 40px 50px;
  }
}

.testimonials__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 0;
}

@media (min-width: 600px) {
  .testimonials__stat {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .testimonials__stat:last-child {
    border-right: none;
  }
}

.testimonials__stat-number {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

.testimonials__stat-label {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 899px) {
  .testimonials {
    padding: 80px 20px 100px;
  }

  .testimonials__header {
    margin-bottom: 50px;
  }

  .testimonials__card {
    padding: 28px 24px;
    transform: none !important;
  }

  .testimonials__card--featured {
    padding: 32px 28px;
  }

  .testimonials__card-quote-mark {
    font-size: 80px;
  }

  .testimonials__bg-quote {
    font-size: 200px;
    top: 0;
    left: -10%;
  }

  .testimonials__stats {
    margin-top: 60px;
  }

  .testimonials__stats-annotation {
    top: -35px;
  }

  .testimonials__stats-row {
    padding: 30px 20px;
  }

  .testimonials__stat {
    padding: 15px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

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


/* ================================
   BONUS SECTION
   ================================ */

.bonus {
  position: relative;
  padding: 120px 24px 140px;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #f8fafc 100%);
  overflow: hidden;
  border-top: 3px solid rgba(16, 185, 129, 0.2);
  border-bottom: 3px solid rgba(16, 185, 129, 0.2);
}

/* Background Glows */
.bonus__glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.bonus__glow--2 {
  top: auto;
  bottom: -100px;
  left: auto;
  right: -100px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.15) 0%, transparent 70%);
}

.bonus__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Content Side */
.bonus__content {
  flex: 1;
}

.bonus__header {
  margin-bottom: 40px;
}

/* Green Badge */
.badge--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
}

.bonus__headline {
  margin-top: 24px;
}

.bonus__headline-small {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.bonus__headline-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bonus__subheadline {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Checklist */
.bonus__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus__check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus__check-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bonus__check-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.bonus__check-item strong {
  color: var(--gray-900);
  font-weight: 600;
}

/* Value Badge */
.bonus__value-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 16px 28px;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.bonus__value-strike {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 500;
}

.bonus__value-free {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Visual Side - PDF Mockup */
.bonus__visual {
  flex-shrink: 0;
  position: relative;
}

.bonus__pdf-mockup {
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.bonus__pdf-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.bonus__pdf-header {
  background: linear-gradient(135deg, #1a8bf6 0%, #0066cc 100%);
  padding: 12px 16px;
}

.bonus__pdf-dots {
  display: flex;
  gap: 6px;
}

.bonus__pdf-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.bonus__pdf-dots span:first-child {
  background: #ff5f57;
}

.bonus__pdf-dots span:nth-child(2) {
  background: #febc2e;
}

.bonus__pdf-dots span:nth-child(3) {
  background: #28c840;
}

.bonus__pdf-content {
  padding: 30px 24px 40px;
  text-align: center;
}

.bonus__pdf-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.bonus__pdf-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.bonus__pdf-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bonus__pdf-line {
  height: 8px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 100%);
  border-radius: 4px;
}

.bonus__pdf-line--short {
  width: 60%;
}

.bonus__pdf-line--medium {
  width: 80%;
}

.bonus__pdf-icon {
  font-size: 3rem;
}

.bonus__pdf-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .bonus__container {
    flex-direction: column;
    text-align: center;
  }

  .bonus__header {
    text-align: center;
  }

  .bonus__check-item {
    text-align: left;
  }

  .bonus__value-badge {
    transform: rotate(0deg);
  }

  .bonus__visual {
    order: -1;
    margin-bottom: 20px;
  }

  .bonus__pdf-mockup {
    width: 240px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .bonus {
    padding: 80px 20px 100px;
  }

  .bonus__check-item {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .bonus__value-badge {
    padding: 14px 24px;
  }

  .bonus__value-free {
    font-size: 1.2rem;
  }
}


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

.final-cta {
  position: relative;
  padding: 140px 24px 160px;
  background: #0f172a;
  overflow: hidden;
}

/* Background Text */
.final-cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(250px, 40vw, 500px);
  font-weight: 800;
  color: rgba(26, 139, 246, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* Background Orbs */
.final-cta__bg-orb {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.15) 0%, rgba(26, 139, 246, 0.05) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.final-cta__bg-orb--2 {
  top: auto;
  bottom: -300px;
  right: auto;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.03) 40%, transparent 70%);
}

/* Grid Overlay */
.final-cta__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Floating Elements */
.final-cta__float {
  position: absolute;
  border-radius: 50%;
  background: rgba(26, 139, 246, 0.3);
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
  animation: floatDrift 8s ease-in-out infinite;
}

.final-cta__float--1 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.final-cta__float--2 {
  width: 8px;
  height: 8px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
  background: rgba(139, 92, 246, 0.4);
}

.final-cta__float--3 {
  width: 16px;
  height: 16px;
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes floatDrift {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-15px) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(5px);
    opacity: 1;
  }
}

/* Container */
.final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Headline */
.final-cta__headline {
  margin-top: 30px;
  margin-bottom: 30px;
  transform: rotate(-1deg);
}

.final-cta__headline-dark,
.final-cta__headline-white {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.final-cta__headline-blue {
  display: block;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 5px;
  text-shadow: 0 0 60px rgba(26, 139, 246, 0.4);
}

/* Subheadline */
.final-cta__subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* What You Get Recap */
.final-cta__recap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 550px;
  margin: 0 auto 50px;
  text-align: left;
}

.final-cta__recap-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.final-cta__recap-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(26, 139, 246, 0.3);
  transform: translateX(6px);
}

.final-cta__recap-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.final-cta__recap-item strong {
  color: var(--white);
  font-weight: 600;
}

.final-cta__highlight {
  background: linear-gradient(135deg, #1a8bf6 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.final-cta__value {
  color: rgba(16, 185, 129, 0.9);
  font-weight: 600;
}

/* Button Wrapper */
.final-cta__button-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

/* Hand-drawn Arrow */
.final-cta__arrow {
  position: absolute;
  top: -40px;
  right: -50px;
  width: 40px;
  height: 40px;
  color: rgba(26, 139, 246, 0.6);
  transform: rotate(20deg);
  animation: arrowBounce 2s ease-in-out infinite;
}

.final-cta__arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: rotate(20deg) translate(0, 0);
  }
  50% {
    transform: rotate(20deg) translate(5px, -5px);
  }
}

/* CTA Button */
.final-cta__button {
  display: inline-block;
  padding: 24px 56px;
  background: var(--primary-blue);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(26, 139, 246, 0.5),
    0 0 0 0 rgba(26, 139, 246, 0.4);
  transition: all 0.3s ease;
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow:
      0 8px 30px rgba(26, 139, 246, 0.5),
      0 0 0 0 rgba(26, 139, 246, 0.4);
  }
  50% {
    box-shadow:
      0 12px 45px rgba(26, 139, 246, 0.6),
      0 0 0 12px rgba(26, 139, 246, 0.1);
  }
}

.final-cta__button:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow:
    0 15px 50px rgba(26, 139, 246, 0.6),
    0 0 0 6px rgba(26, 139, 246, 0.2);
}

/* Button Arrow */
.final-cta__button-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.final-cta__button:hover .final-cta__button-arrow {
  transform: translateX(5px);
}

/* Below Button Text */
.final-cta__below-button {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  margin-bottom: 0;
}

/* Points Below Button */
.final-cta__points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

@media (min-width: 600px) {
  .final-cta__points {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.final-cta__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.final-cta__point svg {
  width: 18px;
  height: 18px;
  color: rgba(26, 139, 246, 0.7);
  flex-shrink: 0;
}

/* Urgency Element */
.final-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 14px 28px;
  margin-bottom: 40px;
}

.final-cta__urgency-badge {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.final-cta__urgency-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Trust Elements */
.final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}

.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.final-cta__trust-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.final-cta__trust-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .final-cta {
    padding: 100px 20px 120px;
  }

  .final-cta__headline {
    transform: rotate(0);
  }

  .final-cta__headline-dark,
  .final-cta__headline-white {
    font-size: 2.2rem;
  }

  .final-cta__headline-blue {
    font-size: 2.8rem;
  }

  .final-cta__button {
    padding: 20px 40px;
    font-size: 1.1rem;
  }

  .final-cta__arrow {
    display: none;
  }

  .final-cta__bg-text {
    font-size: 180px;
  }

  .final-cta__urgency {
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px;
  }

  .final-cta__float {
    display: none;
  }

  .final-cta__recap {
    gap: 12px;
  }

  .final-cta__recap-item {
    padding: 14px 18px;
    font-size: 1rem;
  }
}


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

.footer {
  background: #030303;
  padding: 50px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--gray-400);
  max-width: 280px;
}

/* Links */
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--primary-blue);
}

/* Copyright */
.footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .footer {
    padding: 40px 20px 30px;
  }

  .footer__main {
    text-align: center;
    align-items: center;
  }

  .footer__tagline {
    max-width: 100%;
  }

  .footer__links {
    justify-content: center;
  }
}


/* ================================
   BOLD EDITORIAL ENHANCEMENTS
   ================================ */

/* Global 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)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

/* New Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-25px) translateX(10px) rotate(10deg);
    opacity: 0.9;
  }
  66% {
    transform: translateY(-15px) translateX(-8px) rotate(-5deg);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  }
  50% {
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.8), 0 0 60px rgba(16, 185, 129, 0.4);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 300;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Hero Background Text */
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(150px, 25vw, 280px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* Floating Pills */
.floating-pill {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  z-index: 0;
  animation: floatSlow 8s ease-in-out infinite;
}

.floating-pill--1 {
  top: 20%;
  left: 5%;
  font-size: 1.8rem;
  animation-delay: 0s;
}

.floating-pill--2 {
  top: 40%;
  right: 8%;
  font-size: 2.2rem;
  animation-delay: 2s;
}

.floating-pill--3 {
  bottom: 30%;
  left: 10%;
  font-size: 1.5rem;
  animation-delay: 4s;
}

.floating-pill--4 {
  bottom: 15%;
  right: 15%;
  font-size: 1.7rem;
  animation-delay: 6s;
}

/* Pulsing Price Highlight */
.hero__subheadline-highlight {
  color: #10b981;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}

.scroll-indicator__arrow {
  font-size: 1.2rem;
}

/* Results Section Enhancements */
.hook__annotation {
  position: absolute;
  top: -50px;
  right: 10%;
  background: var(--gray-900);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transform: rotate(3deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 10;
}

.hook__annotation::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: var(--gray-900);
  transform: rotate(45deg);
}

/* Hand-drawn circle SVG */
.hook__scribble-circle {
  position: absolute;
  top: -15px;
  left: -20px;
  right: -20px;
  bottom: -15px;
  pointer-events: none;
  z-index: 1;
}

.hook__scribble-circle svg {
  width: 100%;
  height: 100%;
}

.hook__scribble-circle path {
  stroke: var(--primary-blue);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 300;
  animation: drawCircle 2s ease forwards;
}

/* Dramatic card stagger */
@media (min-width: 768px) {
  .hook__card--1 {
    transform: rotate(-3deg) translateY(0);
  }
  .hook__card--1:hover {
    transform: rotate(-3deg) translateY(-12px) scale(1.03);
  }

  .hook__card--2 {
    transform: rotate(2deg) translateY(40px);
  }
  .hook__card--2:hover {
    transform: rotate(2deg) translateY(28px) scale(1.03);
  }

  .hook__card--3 {
    transform: rotate(-2deg) translateY(20px);
  }
  .hook__card--3:hover {
    transform: rotate(-2deg) translateY(8px) scale(1.03);
  }
}

/* Problem Section Stamps */
.problem__stamp {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border: 4px solid;
  border-radius: 8px;
  opacity: 0.25;
  z-index: 10;
  pointer-events: none;
}

.problem__stamp--x {
  top: 20px;
  right: 20px;
  color: #ef4444;
  border-color: #ef4444;
  transform: rotate(-12deg);
}

.problem__stamp--check {
  top: 20px;
  right: 20px;
  color: #10b981;
  border-color: #10b981;
  transform: rotate(8deg);
}

.problem__label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.problem__card--old .problem__label {
  color: #ef4444;
}

.problem__card--new .problem__label {
  color: #10b981;
}

/* Spinning VS */
.problem__vs {
  animation: spinSlow 20s linear infinite;
}

/* Solution Sparkles */
.solution__sparkles {
  position: relative;
  display: inline-block;
}

.solution__sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

.solution__sparkle--1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.solution__sparkle--2 {
  top: -15px;
  right: -35px;
  animation-delay: 0.5s;
}

.solution__sparkle--3 {
  bottom: -10px;
  right: -25px;
  animation-delay: 1s;
}

/* Gradient Shine Sweep */
.solution::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

/* Staggered checklist animation */
.solution__check-item {
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.solution__check-item:nth-child(1) { animation-delay: 0.1s; }
.solution__check-item:nth-child(2) { animation-delay: 0.2s; }
.solution__check-item:nth-child(3) { animation-delay: 0.3s; }
.solution__check-item:nth-child(4) { animation-delay: 0.4s; }
.solution__check-item:nth-child(5) { animation-delay: 0.5s; }

/* Schedule Cards - More Dramatic */
@media (min-width: 900px) {
  .schedule__card--1 {
    transform: rotate(-4deg);
    margin-right: -40px;
    z-index: 2;
  }

  .schedule__card--2 {
    transform: rotate(4deg);
    margin-left: -40px;
  }

  .schedule__card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.02);
    z-index: 3;
  }
}

.schedule__hot-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 100px;
  transform: rotate(5deg);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
}

/* Dotted Journey Line */
.schedule__journey-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-blue) 0,
    var(--primary-blue) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.3;
  z-index: 0;
}

/* Fit Section - More Dramatic */
@media (min-width: 900px) {
  .fit__card--yes .fit__card-content {
    transform: rotate(-5deg);
  }
  .fit__card--yes:hover .fit__card-content {
    transform: rotate(-5deg) translateY(-12px) scale(1.02);
  }

  .fit__card--no .fit__card-content {
    transform: rotate(5deg);
  }
  .fit__card--no:hover .fit__card-content {
    transform: rotate(5deg) translateY(-12px) scale(1.02);
  }
}

/* Spotlight Glow on Blue Card */
.fit__card--yes::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(ellipse at center, rgba(26, 139, 246, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

/* NOPE Stamp on Red Card */
.fit__nope-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(239, 68, 68, 0.15);
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 0;
}

/* Testimonials - Huge Background Quotes */
.testimonials__bg-quote {
  position: absolute;
  top: 0;
  left: -10%;
  font-family: Georgia, serif;
  font-size: clamp(400px, 60vw, 700px);
  font-weight: 700;
  color: rgba(26, 139, 246, 0.03);
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Middle Card Pop */
@media (min-width: 900px) {
  .testimonials__card--featured {
    transform: rotate(0deg) translateY(20px) scale(1.08);
    z-index: 5;
    box-shadow:
      0 25px 60px rgba(26, 139, 246, 0.2),
      0 50px 100px rgba(26, 139, 246, 0.1);
  }

  .testimonials__card--featured:hover {
    transform: rotate(0deg) translateY(10px) scale(1.1);
  }
}

.testimonials__annotation {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Bonus Section Enhancements */
.bonus__exclusive-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 100px;
  transform: rotate(5deg);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.bonus__pdf-mockup {
  animation: float 6s ease-in-out infinite;
}

.bonus__confetti {
  position: absolute;
  font-size: 1.2rem;
  animation: confetti 3s ease-in-out infinite;
}

.bonus__confetti--1 {
  top: -10px;
  left: 20%;
  animation-delay: 0s;
}

.bonus__confetti--2 {
  top: -15px;
  right: 30%;
  animation-delay: 0.5s;
}

.bonus__confetti--3 {
  top: -5px;
  right: 10%;
  animation-delay: 1s;
}

/* Final CTA Enhancements */
.final-cta {
  background: linear-gradient(270deg, #0f172a, #1e3a5f, #0f172a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Shimmer Text Effect */
.final-cta__headline-shimmer {
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    #38bdf8 25%,
    var(--white) 50%,
    #38bdf8 75%,
    var(--primary-blue) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* More Floating Orbs */
.final-cta__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 139, 246, 0.4) 0%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  animation: floatSlow 10s ease-in-out infinite;
}

.final-cta__orb--1 {
  width: 20px;
  height: 20px;
  top: 15%;
  left: 10%;
}

.final-cta__orb--2 {
  width: 15px;
  height: 15px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.final-cta__orb--3 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.final-cta__orb--4 {
  width: 12px;
  height: 12px;
  bottom: 35%;
  right: 25%;
  animation-delay: 6s;
}

/* Urgency Badge */
.final-cta__urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

/* Global Floating DNA */
.global-float {
  position: fixed;
  font-size: 2rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  animation: floatSlow 12s ease-in-out infinite;
}

.global-float--1 {
  top: 25%;
  left: 3%;
  font-size: 2.5rem;
}

.global-float--2 {
  top: 55%;
  right: 4%;
  font-size: 1.8rem;
  animation-delay: 3s;
}

.global-float--3 {
  top: 75%;
  left: 6%;
  font-size: 2rem;
  animation-delay: 6s;
}

.global-float--4 {
  top: 40%;
  right: 6%;
  font-size: 1.5rem;
  animation-delay: 9s;
}

/* ================================
   ENHANCED MOBILE STYLES - Keep the Spice!
   ================================ */

@media (max-width: 767px) {
  /* Hide only position:fixed elements that cause issues */
  .global-float,
  .scroll-indicator {
    display: none;
  }

  /* Keep floating pills but smaller */
  .floating-pill {
    font-size: 1.2rem;
    opacity: 0.4;
  }

  /* HERO MOBILE - Typography sizing */
  .hero {
    padding: 50px 16px 40px;
  }

  .hero__bg-text {
    font-size: 80px;
    opacity: 0.02;
  }

  .hero__headline-main {
    font-size: 2rem;
  }

  .hero__headline-gradient {
    font-size: 2.2rem;
  }

  .hero__subheadline {
    font-size: 1rem;
  }

  .hero__event-date {
    padding: 12px 20px;
    gap: 10px;
  }

  .hero__event-date-text {
    font-size: 0.9rem;
  }

  .hero__cta-button {
    padding: 18px 32px;
    font-size: 1.1rem;
  }

  .hero__form {
    padding: 28px 24px;
  }

  .hero__form-title {
    font-size: 1.3rem;
  }

  .hero__form-submit {
    font-size: 1rem;
    padding: 14px 20px;
  }

  /* HOOK/RESULTS MOBILE */
  .hook {
    padding: 60px 16px 80px;
  }

  .hook__headline {
    font-size: 1.8rem;
  }

  .hook__cards {
    gap: 20px;
    margin-bottom: 50px;
  }

  .hook__card {
    padding: 28px 20px;
  }

  /* Keep stagger on mobile */
  .hook__card--1 {
    transform: rotate(-1.5deg);
  }

  .hook__card--2 {
    transform: rotate(1deg) translateY(10px);
  }

  .hook__card--3 {
    transform: rotate(-0.5deg) translateY(5px);
  }

  .hook__card-number {
    font-size: 2.2rem;
  }

  /* Keep annotation but smaller */
  .hook__annotation {
    display: block;
    font-size: 0.75rem;
    padding: 6px 12px;
    top: -35px;
    right: 5%;
  }

  /* Keep scribble circle */
  .hook__scribble-circle {
    top: -10px;
    left: -15px;
    right: -15px;
    bottom: -10px;
  }

  .hook__bottom-highlight {
    font-size: 2rem;
  }

  /* PROBLEM MOBILE */
  .problem {
    padding: 60px 16px 80px;
  }

  .problem__headline {
    font-size: 1.6rem;
  }

  .problem__comparison {
    gap: 20px;
  }

  .problem__card {
    padding: 24px 20px;
    transform: none;
  }

  /* Keep stamps on mobile but smaller */
  .problem__stamp {
    display: block;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-width: 3px;
    opacity: 0.2;
  }

  /* Keep labels */
  .problem__label {
    display: block;
    font-size: 0.65rem;
    bottom: -25px;
  }

  .problem__card-price {
    font-size: 2.2rem;
  }

  .problem__vs {
    display: flex;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: -10px auto;
    animation: none;
  }

  /* SOLUTION MOBILE */
  .solution {
    padding: 70px 16px 90px;
  }

  .solution__headline-white {
    font-size: 1.4rem;
  }

  .solution__headline-blue {
    font-size: 1.8rem;
  }

  .solution__check-item {
    opacity: 1;
    animation: none;
    padding: 14px 16px;
    font-size: 1rem;
  }

  /* Keep sparkles */
  .solution__sparkle {
    font-size: 1rem;
  }

  /* SCHEDULE MOBILE */
  .schedule {
    padding: 70px 16px 90px;
  }

  .schedule__headline {
    font-size: 2rem;
  }

  .schedule__cards {
    flex-direction: column;
    gap: 30px;
  }

  .schedule__card {
    padding: 28px 22px;
  }

  /* Keep tilts on mobile but reduced */
  .schedule__card--1 {
    transform: rotate(-1.5deg) !important;
  }

  .schedule__card--2 {
    transform: rotate(1.5deg) !important;
  }

  .schedule__card:hover {
    transform: rotate(0deg) translateY(-5px) !important;
  }

  .schedule__card-title {
    font-size: 1.25rem;
  }

  /* Keep HOT badge */
  .schedule__hot-badge {
    display: block;
    font-size: 0.7rem;
    padding: 6px 12px;
    top: -12px;
    right: 15px;
  }

  .schedule__connector {
    flex-direction: row;
    padding: 15px 0;
  }

  .schedule__connector-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .schedule__connector-line {
    width: 30px;
    height: 3px;
  }

  /* Hide journey line on mobile */
  .schedule__journey-line {
    display: none;
  }

  /* FIT SECTION MOBILE */
  .fit {
    padding: 70px 16px 90px;
  }

  .fit__headline {
    font-size: 2rem;
  }

  .fit__cards {
    gap: 30px;
  }

  .fit__card-content {
    padding: 28px 22px;
  }

  /* Keep tilts on mobile */
  .fit__card--yes .fit__card-content {
    transform: rotate(-1.5deg) !important;
    animation: none;
  }

  .fit__card--no .fit__card-content {
    transform: rotate(1.5deg) !important;
    opacity: 1;
    animation: none;
  }

  .fit__card-title {
    font-size: 1.3rem;
  }

  /* Keep nope stamp */
  .fit__nope-stamp {
    display: block;
    font-size: 2rem;
    opacity: 0.1;
  }

  .fit__vs {
    display: block;
    text-align: center;
    padding: 10px 0;
  }

  .fit__arrow {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 15px;
    display: inline-block;
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .fit__bottom-text {
    margin-top: 50px;
    font-size: 1.1rem;
  }

  /* TESTIMONIALS MOBILE */
  .testimonials {
    padding: 70px 16px 90px;
  }

  .testimonials__headline {
    font-size: 1.8rem;
  }

  .testimonials__cards {
    gap: 25px;
  }

  .testimonials__card {
    padding: 24px 20px;
  }

  /* Keep middle card larger */
  .testimonials__card--featured {
    padding: 28px 24px;
    transform: scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(26, 139, 246, 0.15);
  }

  /* Keep tilts */
  .testimonials__card--1 {
    transform: rotate(-1deg) !important;
  }

  .testimonials__card--3 {
    transform: rotate(1deg) !important;
  }

  .testimonials__quote {
    font-size: 1rem;
  }

  /* Keep huge quote in background */
  .testimonials__bg-quote {
    font-size: 250px;
    left: -15%;
    opacity: 0.02;
  }

  .testimonials__stats-row {
    padding: 25px 16px;
  }

  .testimonials__stat-number {
    font-size: 1.8rem;
  }

  .testimonials__annotation {
    font-size: 0.8rem;
    margin-top: 30px;
  }

  /* BONUS MOBILE */
  .bonus {
    padding: 70px 16px 90px;
  }

  .bonus__container {
    flex-direction: column;
    gap: 40px;
  }

  .bonus__headline-small {
    font-size: 1.1rem;
  }

  .bonus__headline-main {
    font-size: 1.8rem;
  }

  .bonus__check-item {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .bonus__value-badge {
    padding: 12px 20px;
    transform: rotate(-1deg);
  }

  .bonus__value-free {
    font-size: 1.1rem;
  }

  /* Keep exclusive badge */
  .bonus__exclusive-badge {
    display: block;
    font-size: 0.75rem;
    padding: 8px 16px;
    top: 20px;
    right: 20px;
  }

  /* Stack mockup below */
  .bonus__visual {
    order: 1;
    margin-top: 20px;
  }

  .bonus__pdf-mockup {
    width: 220px;
    margin: 0 auto;
    transform: rotate(2deg);
  }

  /* Keep confetti */
  .bonus__confetti {
    font-size: 1rem;
  }

  /* FINAL CTA MOBILE */
  .final-cta {
    padding: 80px 16px 100px;
  }

  .final-cta__headline-white {
    font-size: 1.8rem;
  }

  .final-cta__headline-blue {
    font-size: 2.2rem;
  }

  .final-cta__subheadline {
    font-size: 1rem;
  }

  .final-cta__recap {
    gap: 12px;
  }

  .final-cta__recap-item {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .final-cta__button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    text-align: center;
  }

  .final-cta__below-button {
    font-size: 0.85rem;
  }

  /* Keep urgency badge */
  .final-cta__urgency-badge {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  /* Keep some orbs on mobile */
  .final-cta__orb {
    display: block;
    opacity: 0.3;
  }

  .final-cta__orb--1,
  .final-cta__orb--2 {
    width: 12px;
    height: 12px;
  }

  .final-cta__orb--3,
  .final-cta__orb--4 {
    display: none;
  }

  /* Section CTA buttons full width */
  .section-cta__button {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
  }
}
