/* Public marketing page — /affiliates/ */
.dap-page-affiliates .page-head {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #3730a3 100%);
  color: #fff;
  padding: 72px 0 56px;
}

.dap-page-affiliates .page-head h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.dap-page-affiliates .page-head .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.dap-page-affiliates .page-head .page-head-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 640px;
}

.dap-page-affiliates .inner-page {
  background: #f1f5f9;
  padding: 48px 0 64px;
}

.dap-aff-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dap-aff-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(55, 48, 163, 0.12);
}

.dap-aff-benefit-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #3730a3, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.dap-aff-benefit-icon i {
  font-size: 2rem;
  color: #fff;
}

.dap-aff-benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.dap-aff-benefit-card .dap-aff-benefit-sub {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 8px;
  font-weight: 600;
}

.dap-aff-benefit-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.dap-aff-steps-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
  text-align: center;
}

.dap-aff-step-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  height: 100%;
}

.dap-aff-step-num {
  width: 52px;
  height: 52px;
  background: #3730a3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  font-weight: 800;
}

.dap-aff-step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.dap-aff-step-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.dap-aff-cta {
  background: linear-gradient(135deg, #3730a3 0%, #6366f1 100%);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(55, 48, 163, 0.25);
}

.dap-aff-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.dap-aff-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.dap-aff-cta .btn-dap-aff {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #3730a3;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.dap-aff-cta .btn-dap-aff:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #312e81;
}

.dap-aff-faq {
  margin-top: 48px;
}

.dap-aff-faq h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0f172a;
}

.dap-aff-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.dap-aff-faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.dap-aff-faq-item summary::-webkit-details-marker {
  display: none;
}

.dap-aff-faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: #6366f1;
}

.dap-aff-faq-item[open] summary::after {
  content: '−';
}

.dap-aff-faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .dap-page-affiliates .page-head {
    padding: 48px 0 36px;
  }

  .dap-page-affiliates .inner-page {
    padding: 32px 0 48px;
  }
}
