/* ========================================
   PROVIDER PAGE STYLES
   Premium provider recruitment page
   ======================================== */

/* Provider Hero Section */
.provider-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1A2F 0%, #1A2332 50%, #0A1A2F 100%);
  padding: 100px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.provider-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
}

.provider-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
}

.provider-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0;
}

.provider-stat {
  text-align: left;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #4FC3F7;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.provider-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Earnings Calculator Card */
.earnings-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.earnings-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.earnings-header .badge {
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.earnings-calculator {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.calc-input-group input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calc-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(31, 115, 232, 0.4);
}

.calc-input-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.calc-input-group span {
  font-size: 16px;
  font-weight: 600;
  color: #4FC3F7;
}

.calc-input-group select {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

.calc-input-group select option {
  background: #1A2332;
  color: #FFFFFF;
}

.calc-result {
  background: rgba(79, 195, 247, 0.1);
  border: 2px solid rgba(79, 195, 247, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 8px;
}

.result-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.result-amount {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #4FC3F7, #1A73E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}

.result-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Benefits Section */
.benefits-section {
  background: #FFFFFF;
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.benefit-card {
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #1A73E8;
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.15);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6A6A6A;
  margin-bottom: 16px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  font-size: 14px;
  color: #4A4A4A;
  padding: 6px 0;
  display: flex;
  align-items: center;
}

/* Requirements Section */
.requirements-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.requirement-category {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-icon {
  font-size: 40px;
}

.category-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin: 0;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #F0F0F0;
}

.requirement-list li:last-child {
  border-bottom: none;
}

.req-icon {
  font-size: 20px;
  color: #1A73E8;
  flex-shrink: 0;
}

.requirement-list strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 4px;
}

.requirement-list p {
  font-size: 14px;
  color: #6A6A6A;
  margin: 0;
}

.requirements-cta {
  margin-top: 60px;
}

.requirements-cta p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 24px;
}

/* How It Works Section */
.how-it-works-provider {
  background: #FFFFFF;
  padding: 100px 0;
  position: relative;
}

.steps-container {
  position: relative;
  margin-top: 60px;
}

.steps-sticky-wrapper {
  position: sticky;
  top: 100px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card {
  position: absolute;
  width: 100%;
  max-width: 700px;
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.step-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  z-index: 10;
}

.step-card-inner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border: 2px solid #E8E8E8;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.step-card.active .step-card-inner {
  border-color: #1A73E8;
  box-shadow: 0 20px 60px rgba(26, 115, 232, 0.2);
}

.step-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1A73E8, #4FC3F7);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.step-card.active .step-card-inner::before {
  opacity: 1;
}

.step-number-large {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: -20px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.step-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #6A6A6A;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.step-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 32px;
  position: relative;
}

.step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A73E8;
  font-weight: 700;
  font-size: 18px;
}

.steps-scroll-spacer {
  height: 2400px;
  pointer-events: none;
}

/* Success Stories Section */
.success-stories-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.story-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
  font-size: 64px;
  text-align: center;
  margin-bottom: 24px;
}

.story-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 8px;
}

.story-role {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 20px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 12px;
}

.story-stats .stat {
  text-align: center;
}

.story-stats .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1A73E8;
  margin-bottom: 4px;
}

.story-stats .stat-label {
  font-size: 12px;
  color: #6A6A6A;
}

.story-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  font-style: italic;
  border-left: 3px solid #1A73E8;
  padding-left: 16px;
  margin: 0;
}

/* Application Form Section */
.application-section {
  background: #FFFFFF;
  padding: 100px 0;
}

.application-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.application-header {
  text-align: center;
  margin-bottom: 48px;
}

.application-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A1A2F;
  margin-bottom: 12px;
}

.application-header p {
  font-size: 18px;
  color: #6A6A6A;
}

.application-form {
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 24px;
  padding: 48px;
}

.form-progress {
  margin-bottom: 48px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8E8E8;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E8E8E8;
  color: #9A9A9A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.progress-step.completed .step-circle {
  background: #1A73E8;
  color: #FFFFFF;
}

.step-label {
  font-size: 12px;
  color: #9A9A9A;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: #1A73E8;
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

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

.form-step h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0A1A2F;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  font-size: 16px;
  color: #0A1A2F;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group input[type="file"] {
  padding: 12px;
  border: 2px dashed #E8E8E8;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.form-group small {
  font-size: 12px;
  color: #6A6A6A;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
  border-color: #1A73E8;
  background: rgba(26, 115, 232, 0.05);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-label span,
.radio-label span {
  font-size: 14px;
  color: #0A1A2F;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-section {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.reference-section h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 16px;
}

.agreement-section {
  margin-bottom: 32px;
}

.agreement-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 16px;
}

.agreement-box {
  background: #F8F9FA;
  border-left: 4px solid #1A73E8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.agreement-box p {
  font-size: 15px;
  color: #0A1A2F;
  margin-bottom: 12px;
}

.agreement-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agreement-box li {
  font-size: 14px;
  color: #4A4A4A;
  padding: 6px 0 6px 20px;
  position: relative;
}

.agreement-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1A73E8;
  font-weight: 700;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}

.agreement-checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.agreement-checkbox span {
  font-size: 14px;
  color: #0A1A2F;
  line-height: 1.5;
}

.agreement-checkbox a {
  color: #1A73E8;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.form-actions .btn {
  flex: 1;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.faq-category h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 24px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0A1A2F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #1A73E8;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background: #F8F9FA;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #6A6A6A;
  margin: 0;
}

/* Resources Section */
.resources-section {
  background: #FFFFFF;
  padding: 100px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.resource-card {
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  border-color: #1A73E8;
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.15);
  transform: translateY(-4px);
}

.resource-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6A6A6A;
  margin-bottom: 20px;
  flex-grow: 1;
}

.resource-link {
  font-size: 15px;
  font-weight: 600;
  color: #1A73E8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #1A73E8 0%, #4FC3F7 100%);
  padding: 100px 0;
}

.final-cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
.animate-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .provider-hero-content {
    gap: 40px;
  }
  
  .provider-hero-title {
    font-size: 52px;
  }
  
  .benefits-grid,
  .requirements-grid,
  .stories-grid,
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-card {
    max-width: 600px;
  }
  
  .step-number-large {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .provider-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .provider-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .provider-hero-title {
    font-size: 36px;
  }
  
  .provider-hero-subtitle {
    font-size: 16px;
  }
  
  .provider-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .provider-stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .provider-cta-group {
    flex-direction: column;
  }
  
  .provider-cta-group .btn {
    width: 100%;
  }
  
  .earnings-card {
    padding: 24px;
  }
  
  .result-amount {
    font-size: 40px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .benefits-grid,
  .requirements-grid,
  .stories-grid,
  .resources-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefit-card,
  .requirement-category,
  .story-card,
  .resource-card {
    padding: 24px;
  }
  
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .application-form {
    padding: 32px 20px;
  }
  
  .application-header h2 {
    font-size: 28px;
  }
  
  .progress-steps {
    justify-content: center;
    gap: 12px;
  }
  
  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .step-label {
    font-size: 10px;
  }
  
  /* How It Works Mobile */
  .how-it-works-provider {
    padding: 60px 0;
  }
  
  .steps-container {
    margin-top: 40px;
  }
  
  .steps-sticky-wrapper {
    position: relative;
    height: auto;
    display: block;
  }
  
  .step-card {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
    pointer-events: auto;
    max-width: 100%;
  }
  
  .step-card:last-child {
    margin-bottom: 0;
  }
  
  .step-card-inner {
    padding: 28px 20px;
  }
  
  .step-number-large {
    font-size: 64px;
    top: -5px;
    right: 10px;
    opacity: 0.1;
  }
  
  .step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .step-card p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .step-list li {
    font-size: 14px;
    padding: 8px 0 8px 28px;
  }
  
  .steps-scroll-spacer {
    display: none;
  }
  
  .final-cta-content h2 {
    font-size: 32px;
  }
  
  .final-cta-content p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .provider-hero-title {
    font-size: 28px;
  }
  
  .provider-hero-subtitle {
    font-size: 15px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .result-amount {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .benefit-card h3,
  .requirement-category h3,
  .story-card h3 {
    font-size: 18px;
  }
  
  .step-card h3 {
    font-size: 20px;
  }
  
  .step-number-large {
    font-size: 56px;
  }
  
  .application-header h2 {
    font-size: 24px;
  }
  
  .form-step h3 {
    font-size: 20px;
  }
  
  .final-cta-content h2 {
    font-size: 28px;
  }
}
