/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  /* Prevent arrow from wrapping to new line */
  white-space: nowrap;
  flex-wrap: nowrap;
}
/* CTA arrow stays inline with text on all screen sizes */
.btn .arrow, .btn-cta .arrow, .cta-primary .arrow {
  flex-shrink: 0;
  display: inline-block;
}
@media (max-width: 360px) {
  .btn-cta { font-size: 15px; padding: 16px 12px; }
  .btn { font-size: 14px; padding: 13px 16px; }
}
/* Value rows (mobile alignment fix) */
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.value-row span:first-child {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.value-row strong {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover  { background: var(--brand-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #FFFFFF; }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn-cta {
  width: 100%;
  padding: 18px 24px;
  font-size: 17px;
  border-radius: var(--radius-lg);
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0,135,95,0.25);
}
.btn-cta:hover  { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,135,95,0.3); color: #FFFFFF; }
.btn-cta:active { transform: translateY(0); }

.btn-gold {
  background: var(--accent-gold);
  color: var(--accent-gold-dark);
  box-shadow: 0 4px 16px rgba(250,204,21,0.3);
}
.btn-gold:hover { background: #EAB308; transform: translateY(-1px); color: var(--accent-gold-dark); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card-pad { padding: 20px; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-brand   { background: var(--brand-light); color: var(--brand-deep); }
.badge-amber   { background: var(--accent-amber-bg); border: 1px solid var(--accent-amber-border); color: var(--accent-amber-text); }
.badge-danger  { background: var(--danger-bg); color: var(--danger-text); }
.badge-success { background: #DCFCE7; color: #14532D; }

/* ── Inputs ── */
.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-field::placeholder { color: var(--text-tertiary); }
.input-field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,135,95,0.12);
}

/* ── Trust badges row ── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-tertiary);
}
.trust-item { display: flex; align-items: center; gap: 4px; }
.trust-item i { color: var(--brand); font-size: 14px; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border-subtle); margin: 24px 0; }

/* ── Section Dark ── */
.section-dark {
  background: var(--bg-section-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

/* ── Testimonial card ── */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.testi-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.testi-name  { font-size: 14px; font-weight: 600; margin: 0; color: var(--text-primary); }
.testi-meta  { font-size: 12px; color: var(--text-tertiary); margin: 2px 0 0; }
.testi-stars { color: #FACC15; font-size: 13px; margin-left: auto; }
.testi-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 10px; }
.testi-amount {
  background: var(--brand-light);
  color: var(--brand-deep);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

/* ── FAQ ── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text-primary);
}
.faq-q i { color: var(--text-tertiary); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: all 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 16px 16px; }

/* ── Progress bar ── */
.progress-track {
  height: 6px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--success) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ── Spinner ── */
.spinner {
  width: 56px; height: 56px;
  border: 4px solid var(--brand-light);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
