/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Font Faces */
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('./PPNeueMontreal-Variable.woff2') format('woff2'),
       url('./PPNeueMontreal-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('./Sentient-Variable.woff2') format('woff2'),
       url('./Sentient-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('./Sentient-VariableItalic.woff2') format('woff2'),
       url('./Sentient-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Logo Section */
.logo-section {
  padding: 40px 0 20px;
  text-align: center;
}

.logo-wrapper {
  display: inline-block;
}

.logo-text {
  font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #1b5e20;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.logo-text .logo-dark {
  color: #1b5e20;
}

.logo-text .logo-light {
  color: #4ade80;
}

.logo-tagline {
  font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 50px;
  text-align: center;
}

.main-headline {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1b5e20;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  white-space: nowrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main-tagline {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-headline .highlight {
  color: #1b5e20;
}

/* Countdown Timer */
.countdown-section {
  margin: 30px 0;
  text-align: center;
}

.countdown-timer {
  display: inline-flex;
  gap: 20px;
  background: #f0f8f0;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.time-number {
  font-size: 36px;
  font-weight: 900;
  color: #1b5e20;
  display: block;
  line-height: 1;
}

.time-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Spots Remaining */
.spots-remaining {
  margin: 30px 0;
  text-align: center;
}

.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1b5e20;
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
  position: relative;
  animation: pulse 2s infinite;
}

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

.spots-icon {
  font-size: 22px;
}

.spots-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Spots number animation */
.spots-text .spots-number {
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.spots-text .old-number {
  position: relative;
  color: #ffffff;
  opacity: 1;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.spots-text .old-number.struck {
  opacity: 0.5;
}

.spots-text .old-number::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  height: 3px;
  background-color: #ffffff;
  transform: translateY(-50%);
  width: 0;
  transition: width 0.5s ease;
}

.spots-text .old-number.struck::after {
  width: calc(100% + 4px);
}

.spots-text .new-number {
  color: #ffffff;
  font-weight: 900;
  margin-left: 6px;
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spots-text .new-number.show {
  opacity: 1;
}

/* Warning Section */
.warning-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.warning-text {
  font-size: 19px;
  color: #b91c1c;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fef2f2;
  border: 3px solid #dc2626;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
  text-align: left;
  width: fit-content;
  max-width: 1050px;
}

.warning-text strong {
  font-weight: 900;
  color: #991b1b;
  font-size: 21px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.warning-bullets {
  font-style: normal;
  font-weight: 600;
  color: #991b1b;
  display: block;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
}

/* Client Results Section */
.client-results-section {
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.client-results-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.client-results-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(27, 94, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.results-title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.results-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  font-weight: 400;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* First three cards span 2 columns each */
.result-card:nth-child(1),
.result-card:nth-child(2),
.result-card:nth-child(3) {
  grid-column: span 2;
}

/* Last two cards are centered */
.result-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.result-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.result-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #1b5e20;
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.1);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b5e20 0%, #4ade80 100%);
}

.client-type {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-transform: none;
}

.revenue-chart {
  margin-bottom: 20px;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  height: 180px;
  padding: 0 10px;
}

.chart-bar {
  flex: 1;
  max-width: 80px;
  background: #1b5e20;
  border-radius: 0;
  position: relative;
  min-height: 20px;
}

.bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.growth-indicator {
  font-size: 18px;
  font-weight: 700;
  color: #1b5e20;
  margin: 0;
  background: #f0f8f0;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid #4ade80;
}


/* Results CTA */
.results-cta {
  text-align: center;
  margin-top: 60px;
}

.cta-text {
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.book-call-btn {
  background: #111111;
  color: white;
  padding: 24px 60px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.book-call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.book-call-btn:hover {
  background: #1b5e20;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.book-call-btn:hover::before {
  left: 100%;
}

/* Booking Section */
.booking-section {
  padding: 40px 0 60px;
  flex: 1;
}

/* Calendly overrides */
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.calendly-inline-widget iframe {
  background: #ffffff !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.testimonials-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  font-family: 'PP Neue Montreal', -apple-system, system-ui, sans-serif;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
  font-weight: 400;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  justify-items: center;
}

/* No grid areas needed - let CSS Grid handle the layout naturally */

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.highlight-text {
  color: #1b5e20;
  font-weight: 600;
  font-style: normal;
}

.testimonial-growth {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: #f0fdf4;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

/* Process Section */
.process-section {
  margin-top: 60px;
  padding: 60px 0;
}

.process-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  font-family: 'PP Neue Montreal', -apple-system, system-ui, sans-serif;
}

.process-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.process-container {
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: #1b5e20;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  line-height: 1.3;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.process-guarantee-box {
  text-align: center;
  margin-top: 50px;
}

.process-guarantee-box p {
  display: inline-block;
  font-size: 16px;
  color: #1b5e20;
  font-weight: 600;
  padding: 12px 24px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}

/* Footer */
.site-footer {
  padding: 30px 0;
  background: #f8f8f8;
  text-align: center;
  margin-top: auto;
}

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

.site-footer small {
  color: #666;
  font-size: 14px;
}

.site-footer a {
  color: #1b5e20;
  text-decoration: none;
  margin: 0 10px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-headline {
    font-size: 32px;
    white-space: normal;
  }
  
  .main-tagline {
    font-size: 18px;
  }
  
  .countdown-timer {
    gap: 15px;
    padding: 15px 20px;
  }
  
  .time-number {
    font-size: 28px;
  }
  
  .warning-text {
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .warning-text strong {
    font-size: 18px;
  }
  
  .warning-bullets {
    font-size: 15px;
  }
  
  .qualification-form {
    padding: 30px 20px;
    max-width: 100%;
  }
  
  .qualification-form h2 {
    font-size: 22px;
  }
  
  .question-label {
    font-size: 18px;
  }
  
  .radio-label {
    padding: 14px 16px;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .nav-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .submit-btn {
    padding: 16px 32px;
    font-size: 17px;
  }
  
  .results-title {
    font-size: 26px;
  }
  
  .results-subtitle {
    font-size: 14px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .result-card:nth-child(1),
  .result-card:nth-child(2),
  .result-card:nth-child(3),
  .result-card:nth-child(4),
  .result-card:nth-child(5) {
    grid-column: span 1;
  }
  
  .result-card {
    padding: 25px 20px;
  }
  
  .chart-container {
    height: 150px;
  }
  
  .bar-value {
    font-size: 13px;
  }
  
  .growth-indicator {
    font-size: 16px;
  }
  
  .book-call-btn {
    font-size: 16px;
    padding: 16px 32px;
    width: 90%;
    max-width: 350px;
  }
  
  .cta-text {
    font-size: 18px;
    padding: 0 20px;
  }
  
  .client-type {
    font-size: 15px;
  }
  
  .bar-value {
    font-size: 12px;
    top: -20px;
  }
  
  .logo-text {
    font-size: 36px;
  }
  
  .spots-badge {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .result-card {
    margin: 0 10px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Qualification Form */
.qualification-form {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

.qualification-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b5e20 0%, #4ade80 100%);
}

.qualification-form h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1b5e20;
  margin-bottom: 12px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.5px;
}

.form-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 35px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
}

/* Progress Indicator */
.progress-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 45px;
  position: relative;
}

.progress-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.progress-step.active {
  background: #1b5e20;
  border-color: #1b5e20;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.progress-step.completed {
  background: #4ade80;
  border-color: #4ade80;
  color: white;
}

.progress-step.completed::after {
  content: '✓';
  position: absolute;
  font-size: 16px;
  font-weight: bold;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.form-step.active {
  display: block;
}

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

.question-label {
  font-size: 20px;
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: 25px;
  display: block;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.form-input,
.form-select {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 15px;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafafa;
  display: block;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #1b5e20;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.nav-btn {
  padding: 14px 32px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #666;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.nav-btn:hover {
  background: #f8f8f8;
  border-color: #d0d0d0;
}

.next-btn {
  background: #1b5e20;
  color: white;
  margin-left: auto;
  border-color: #1b5e20;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.25);
}

.next-btn:hover {
  background: #134315;
  border-color: #134315;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafafa;
  position: relative;
}

.radio-label:hover {
  border-color: #1b5e20;
  background: #f0f8f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.radio-label input[type="radio"] {
  margin-right: 14px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #1b5e20;
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 600;
  color: #1b5e20;
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: #1b5e20;
  background: #f0f8f0;
}

.radio-label span {
  font-size: 16px;
  color: #333;
  letter-spacing: -0.2px;
}

.submit-btn {
  background: #1b5e20;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.25);
  letter-spacing: -0.3px;
}

.submit-btn:hover {
  background: #134315;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

/* Results Section */
.qualification-result {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.result-qualified {
  animation: fadeIn 0.5s ease-in;
}

.result-qualified h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1b5e20;
}

.result-not-qualified {
  animation: fadeIn 0.5s ease-in;
}

.result-not-qualified h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #dc2626;
}

.result-qualified p,
.result-not-qualified p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.result-not-qualified {
  padding: 30px;
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 16px;
}

.retry-btn {
  background: #dc2626;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.retry-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Date */
#year {
  font-weight: 500;
}

/* Responsive styles for testimonials */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 24px;
    max-width: 100%;
    margin: 0 auto;
  }

  .stars {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .testimonial-growth {
    font-size: 13px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .testimonial-author strong {
    font-size: 15px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

  .process-section {
    padding: 40px 20px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 0;
    padding-left: 20px;
    position: relative;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 45px;
    width: 2px;
    background: #e0e0e0;
    height: auto;
  }

  .timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
  }

  .timeline-step:last-child {
    margin-bottom: 0;
  }

  .timeline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 0;
    background: #1b5e20;
    z-index: 2;
  }

  .timeline-content {
    flex: 1;
    padding-top: 5px;
  }

  .timeline-content h3 {
    text-align: left;
    justify-content: flex-start;
    min-height: auto;
    margin-bottom: 6px;
    font-size: 15px;
  }

  .timeline-content p {
    text-align: left;
    justify-content: flex-start;
    min-height: auto;
    font-size: 13px;
  }

  .process-title {
    font-size: 26px;
  }

  .process-subtitle {
    font-size: 16px;
  }

  /* Optimize testimonials for very small screens */
  @media (max-width: 400px) {
    .testimonial-card {
      padding: 20px;
    }

    .testimonial-quote {
      font-size: 14px;
    }

    .highlight-text {
      font-weight: 500;
    }
  }
}
