/* RESET & VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #5B51D8;
  --primary-dark: #4840B8;
  --primary-light: #F0EFFE;
  --secondary: #E94D88;
  --success: #10B981;
  --danger: #EF4444;

  /* Text */
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;

  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F0F7FF;
  --bg-tertiary: #E6F2FF;

  /* Borders */
  --border-color: #E5E7EB;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lucida Grande', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  color: white;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  padding: 4px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 18px 32px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Lucida Grande', -apple-system, sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.hero-right {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* AI FEATURES SECTION */
.ai-features {
  padding: 80px 24px;
  background: white;
  text-align: center;
}

.ai-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ai-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.ai-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid-ai {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-ai {
  background: var(--bg-secondary);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

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

.feature-icon-ai {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-ai h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-ai p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 24px;
  background: var(--bg-secondary);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-lg);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: var(--primary);
  align-self: center;
  opacity: 0.3;
  padding-top: 32px;
}

/* FORM SECTION */
.form-section {
  padding: 80px 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
}

.form-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-header p {
  font-size: 18px;
  color: var(--text-medium);
}

.appeal-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-section-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-tertiary);
}

.form-section-header:first-child {
  margin-top: 0;
}

.section-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.form-section-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-help-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: -8px 0 0 52px; /* Aligns with h3 after section number */
  font-style: italic;
  flex-basis: 100%;
  width: 100%;
}

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

.field-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.required {
  color: var(--danger);
}

.input-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lucida Grande', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  transition: all 0.15s ease;
  background: var(--bg-primary);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.textarea-field {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.field-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

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

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-content {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
  background: white;
  height: 100%;
}

.radio-card input[type="radio"]:checked + .radio-card-content {
  border-color: var(--primary);
  background: var(--primary-light);
}

.radio-card:hover .radio-card-content {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.radio-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.radio-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.radio-desc {
  font-size: 12px;
  color: var(--text-light);
}

.form-submit-section {
  margin-top: 40px;
  text-align: center;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px 48px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
  font-family: 'Lucida Grande', -apple-system, sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.button-arrow {
  width: 20px;
  height: 20px;
}

.privacy-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.privacy-notice {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* RESULT SECTION */
.result-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--bg-tertiary);
}

.result-header {
  text-align: center;
  margin-bottom: 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.result-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.result-header p {
  font-size: 16px;
  color: var(--text-medium);
}

.appeal-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.copy-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--success);
  color: white;
  padding: 16px 32px;
  border-radius: var(--border-radius-md);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lucida Grande', -apple-system, sans-serif;
}

.copy-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}

.secondary-btn {
  flex: 1;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lucida Grande', -apple-system, sans-serif;
}

.secondary-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* Next Steps Section */
.next-steps {
  margin-top: 48px;
  background: linear-gradient(135deg, #F0EFFE 0%, #E6F2FF 100%);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 2px solid var(--primary-light);
}

.steps-header {
  text-align: center;
  margin-bottom: 40px;
}

.steps-header h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.steps-intro {
  font-size: 16px;
  color: var(--text-medium);
  margin: 0;
}

.submission-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

/* Step Cards */
.step-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(91, 81, 216, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 4px 16px rgba(91, 81, 216, 0.12);
  transform: translateY(-2px);
}

.step-card-final {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
  border-color: var(--success);
}

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

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.step-badge-success {
  background: var(--success);
  font-size: 16px;
}

.step-header h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.step-body {
  padding-left: 0;
}

.step-instruction {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.step-image-container {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.step-image-container img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--success);
  margin-top: 16px;
}

.success-note svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.success-note span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* Pro Tip */
.pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-radius: var(--border-radius-md);
  border: 2px solid #FCD34D;
}

.pro-tip svg {
  width: 24px;
  height: 24px;
  color: #F59E0B;
  flex-shrink: 0;
  margin-top: 2px;
}

.pro-tip strong {
  font-size: 15px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.pro-tip p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

.pro-tip a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pro-tip a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 24px;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

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

.testimonial-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.user-handle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.user-type {
  font-size: 12px;
  color: var(--text-lighter);
  font-style: italic;
}

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

.quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.recovery-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-item {
  display: inline-flex;
  align-items: center;
  background: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
}

/* FAQ */
.faq {
  padding: 80px 24px 100px;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  font-family: 'Lucida Grande', -apple-system, sans-serif;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* FOOTER */
.footer {
  background: var(--text-dark);
  padding: 40px 24px;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: var(--text-lighter);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

  .step-arrow {
    display: none;
  }

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

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

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

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .ai-title {
    font-size: 32px;
  }

  .features-grid-ai {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 60px 0;
  }

  .form-container {
    padding: 0 20px;
  }

  .appeal-form {
    padding: 32px 24px;
  }

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

  .radio-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .radio-card-content {
    padding: 16px;
  }

  .result-actions {
    flex-direction: column;
  }

  .faq {
    padding: 60px 20px 80px;
  }

  .faq-item {
    margin-bottom: 14px;
  }

  .faq-question {
    padding: 18px 22px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 22px 22px 22px;
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

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

  .section-title {
    font-size: 28px;
  }

  .ai-title {
    font-size: 28px;
  }

  .section-subtitle,
  .ai-subtitle {
    font-size: 16px;
  }

  .form-section {
    padding: 50px 0;
  }

  .form-container {
    padding: 0 16px;
  }

  .form-header {
    margin-bottom: 40px;
  }

  .form-header h2 {
    font-size: 32px;
  }

  .appeal-form {
    padding: 28px 20px;
    border-radius: var(--border-radius-md);
  }

  .form-section-header {
    gap: 12px;
    margin: 32px 0 20px 0;
  }

  .form-section-header h3 {
    font-size: 18px;
  }

  .form-field {
    margin-bottom: 20px;
  }

  .input-field {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-button {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

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

  .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq {
    padding: 60px 16px 80px;
  }

  .faq-list {
    padding: 0;
  }

  .faq-item {
    margin-bottom: 16px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-question span {
    line-height: 1.5;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }

  .faq-answer p {
    padding: 0 20px 24px 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  /* Submission Steps Mobile */
  .next-steps {
    padding: 24px 16px;
  }

  .next-steps h4 {
    font-size: 18px;
  }

  .steps-intro {
    font-size: 14px;
    padding: 12px;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-content h5 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 13px;
  }

  .step-content img {
    max-width: 100%;
  }

  .pro-tip {
    font-size: 13px;
    padding: 16px;
  }

  .copy-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .result-actions {
    flex-direction: column;
    gap: 12px;
  }
}
