/* ================================
   FITIFYLAB LANDING PAGE STYLES
   Pure CSS — Mobile-First, Responsive
   ================================ */

/* ================================
   1. CSS CUSTOM PROPERTIES
   ================================ */
:root {
  /* Brand Colors */
  --green-500: #187e03;
  --green-600: #136a02;
  --green-700: #0f5702;
  --green-50: #e6f4e4;
  --green-100: #c2e6bc;

  /* Neutrals */
  --black: #0A0A0A;
  --grey-900: #1A1A1A;
  --grey-800: #2D2D2D;
  --grey-700: #404040;
  --grey-600: #6B7280;
  --grey-400: #9CA3AF;
  --grey-200: #E5E7EB;
  --grey-100: #F3F4F6;
  --grey-50: #F9FAFB;
  --white: #FFFFFF;

  /* Accents */
  --gold: #F5C842;
  --red-500: #EF4444;
  --red-50: #FEF2F2;
  --whatsapp: #25D366;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 4rem;
  --container-px: 1.25rem;
  --container-max: 1200px;
}

/* ================================
   2. CSS RESET
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ================================
   3. BASE TYPOGRAPHY
   ================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--grey-700);
  line-height: 1.7;
}

.text-green {
  color: var(--green-500);
}

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

/* ================================
   4. LAYOUT UTILITIES
   ================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-500);
  margin-bottom: 0.75rem;
}

/* ================================
   5. COMPONENTS
   ================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(24, 126, 3, 0.35);
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 126, 3, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--green-500);
  border: 2px solid var(--green-500);
}

.btn-outline:hover {
  background: var(--green-500);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-600);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 14px rgba(24, 126, 3, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(24, 126, 3, 0.55); }
}

.btn-pulse {
  animation: pulse-btn 2.5s ease-in-out infinite;
}

.btn-pulse:hover {
  animation: none;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Badge / Chip --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--green-50);
  color: var(--green-700);
}

/* ================================
   6. NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ================================
   7. HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--grey-50) 40%, var(--green-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,126,3,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  order: 1;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.hero-content h1 span {
  color: var(--green-500);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--grey-600);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-micro .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-image {
  order: 2;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--green-500);
  z-index: -1;
  opacity: 0.3;
}

/* ================================
   8. PROBLEM SECTION
   ================================ */
.problem {
  background: var(--grey-50);
}

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

.problem-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red-500);
  box-shadow: var(--shadow-sm);
}

.problem-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--red-500);
}

.problem-item p {
  color: var(--grey-700);
  font-size: 0.95rem;
}

.problem-empathy {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-500);
}

.problem-empathy p {
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ================================
   9. SOLUTION SECTION
   ================================ */
.solution {
  background: var(--white);
}

.solution-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.solution-image {
  max-width: 500px;
  margin: 2.5rem auto 0;
}

.solution-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.solution-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--grey-700);
  font-size: 0.95rem;
}

.solution-point .icon {
  color: var(--green-500);
  flex-shrink: 0;
}

/* ================================
   10. FEATURES / WHAT YOU GET
   ================================ */
.features {
  background: var(--grey-50);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
}

/* ================================
   11. RESULTS / TRANSFORMATION
   ================================ */
.results {
  background: var(--grey-900);
  color: var(--white);
  overflow: hidden;
}

.results h2,
.results h3 {
  color: var(--white);
}

.results .section-label {
  color: var(--green-500);
}

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

.results-image {
  max-width: 400px;
  margin: 0 auto;
}

.results-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--grey-400);
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.results-cta {
  margin-top: 2rem;
  text-align: center;
}

.results-cta p {
  color: var(--grey-400);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

/* ================================
   12. TESTIMONIALS
   ================================ */
.testimonials {
  background: var(--grey-50);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0.5rem;
  margin: 0 -0.5rem;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-more {
  text-align: center;
  margin-top: 2rem;
}

.hidden-testimonials {
  display: none;
}

.hidden-testimonials.show {
  display: flex;
}

/* ================================
   13. WHO THIS IS FOR / NOT FOR
   ================================ */
.for-you {
  background: var(--green-50);
}

.checklist {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  font-size: 0.95rem;
}

.checklist-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.checklist-item .icon-check {
  color: var(--green-500);
}

.checklist-item .icon-x {
  color: var(--red-500);
}

.not-for-you {
  background: var(--white);
}

.not-for-you .checklist-item {
  background: var(--red-50);
  border-left: 3px solid var(--red-500);
}

/* ================================
   14. BONUS SECTION
   ================================ */
.bonus {
  background: var(--grey-900);
  color: var(--white);
}

.bonus h2 {
  color: var(--white);
}

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

.bonus-value {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bonus-value .original-price {
  font-size: 1.5rem;
  color: var(--grey-400);
  text-decoration: line-through;
  margin-right: 0.75rem;
}

.bonus-value .free-tag {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-500);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bonus-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: scale(1.03);
}

.bonus-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   15. CTA / URGENCY SECTION
   ================================ */
.urgency {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
  color: var(--white);
  text-align: center;
}

.urgency h2 {
  color: var(--white);
  font-size: 1.875rem;
}

.urgency p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin: 1rem 0 0.5rem;
}

.urgency-slots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

.urgency-slots .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s infinite;
}

.urgency .btn-white {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ================================
   16. EMOTIONAL CLOSE
   ================================ */
.emotional {
  background: var(--white);
}

.emotional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.emotional-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 1rem;
}

.emotional-text p:last-child {
  font-weight: 700;
  color: var(--green-600);
  font-size: 1.2rem;
}

/* ================================
   17. MEET YOUR COACH
   ================================ */
.coach {
  background: var(--grey-50);
}

.coach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.coach-image {
  display: flex;
  justify-content: center;
}

.coach-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--green-500);
}

.coach-info {
  text-align: center;
}

.coach-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.coach-role {
  color: var(--green-500);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.coach-info p:not(.coach-role) {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
}

/* ================================
   18. STRATEGY CALL FORM
   ================================ */
.form-section {
  background: var(--green-50);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-card > p {
  text-align: center;
  color: var(--grey-600);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(24, 126, 3, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-400);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.375rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-500);
  cursor: pointer;
}

.form-error {
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: var(--red-500);
}

.form-group.error .form-error {
  display: block;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--grey-600);
  margin-bottom: 1.5rem;
}

/* ================================
   19. FOOTER
   ================================ */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

.footer p {
  font-size: 0.8rem;
  color: var(--grey-400);
}

/* ================================
   20. WHATSAPP FLOATING BUTTON
   ================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ================================
   21. SCROLL ANIMATIONS
   ================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ================================
   22. RESPONSIVE - TABLET (768px+)
   ================================ */
@media (min-width: 768px) {
  :root {
    --section-py: 5rem;
    --container-px: 2rem;
  }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-content {
    order: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    order: 0;
  }

  .hero-image-wrapper {
    width: 340px;
  }

  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }

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

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

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

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .emotional-grid {
    grid-template-columns: auto 1fr;
  }

  .coach-grid {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .coach-info {
    text-align: left;
  }

  .form-card {
    padding: 3rem 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }
}

/* ================================
   23. RESPONSIVE - DESKTOP (1024px+)
   ================================ */
@media (min-width: 1024px) {
  :root {
    --section-py: 6rem;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image-wrapper {
    width: 400px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    gap: 1.25rem;
  }

  .testimonial-card {
    flex: none;
  }

  .stat-number {
    font-size: 3rem;
  }

  .urgency h2 {
    font-size: 2.5rem;
  }
}

/* ================================
   24. LARGE DESKTOP (1280px+)
   ================================ */
@media (min-width: 1280px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }

  .hero-image-wrapper {
    width: 440px;
  }
}

/* ================================
   25. REDUCED MOTION
   ================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
