/* ============================================================
   BECOME A SITTER — APPLY PAGE
   ============================================================ */

/* --- Hero -------------------------------------------------- */

.apply-hero {
  background-image: linear-gradient(
      rgba(46, 58, 77, 0.52),
      rgba(46, 58, 77, 0.52)
    ),
    url('../../assets/images/apply-v1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-neutral-000);
  padding: 6rem var(--space-4) 5rem;
  text-align: center;
}

.apply-hero-content {
  max-width: 740px;
  margin: 0 auto;
}

.apply-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.apply-hero-subtitle {
  font-size: var(--text-xl);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* Shared CTA button used across all sections */
.apply-cta-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: var(--color-accent-base);
  color: var(--color-neutral-900);
  font-size: var(--text-lg);
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.apply-cta-btn:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* --- Benefits ---------------------------------------------- */

.benefits-section {
  background-color: var(--bg-surface);
  padding: 5rem var(--space-4);
}

.benefits-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.benefits-col {
  flex: 1;
}

.benefits-divider {
  width: 1px;
  background-color: var(--border-subtle);
  align-self: stretch;
  flex-shrink: 0;
}

.benefits-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-6);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.5;
}

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

@media (max-width: 700px) {
  .benefits-inner {
    flex-direction: column;
    gap: var(--space-8);
  }
  .benefits-divider { display: none; }
}

/* --- How It Works ------------------------------------------ */

.how-section {
  background-color: var(--bg-app);
  padding: 5rem var(--space-4);
  text-align: center;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4rem;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--space-4);
}

.how-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background-color: var(--border-subtle);
  margin-top: 1.75rem;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  background-color: var(--bg-surface);
  color: var(--text-main);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.step-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

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

@media (max-width: 700px) {
  .how-steps { flex-direction: column; align-items: center; gap: var(--space-6); }
  .how-connector { display: none; }
  .step-desc { max-width: 100%; }
}

/* --- Services + Trust -------------------------------------- */

.services-trust-section {
  background-color: var(--bg-surface);
  padding: 5rem var(--space-4);
}

.services-trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.services-col,
.trust-col {
  flex: 1;
}

.services-divider {
  width: 1px;
  background-color: var(--border-subtle);
  align-self: stretch;
  flex-shrink: 0;
}

.services-heading,
.trust-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-6);
}

/* Services list */

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.service-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: var(--badge-verified-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--badge-verified-text);
}

.services-list strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-1);
}

.services-list p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Trust list */

.trust-intro {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .services-trust-inner { flex-direction: column; gap: var(--space-8); }
  .services-divider { display: none; }
}

/* --- Final CTA --------------------------------------------- */

.final-cta-section {
  background-color: var(--bg-app);
  padding: 5rem var(--space-4);
  text-align: center;
}

.final-cta-heading {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-3);
}

.final-cta-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

