/* industries.css — styles for vertical industry landing pages (/restaurants, /contractors, /retail) */

/* ===== HEADER ===== */
.ind-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 22, 41, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}
.ind-header-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f8f7f4;
  font-weight: 600;
  font-size: 15px;
}
.ind-apply-btn {
  background: #f59e0b;
  color: #0f1629;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.ind-apply-btn:hover { background: #d97706; transform: translateY(-1px); }

/* ===== SHARED CONTAINER ===== */
.ind-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS ===== */
.ind-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 12px;
}
.ind-section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  color: #f8f7f4;
  line-height: 1.2;
  margin: 0 0 12px;
}
.ind-section-sub {
  color: #9aa3b2;
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 40px;
}

/* ===== HERO ===== */
.ind-hero {
  padding: 80px 0 72px;
  background: linear-gradient(135deg, #0f1629 0%, #131f38 60%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}
.ind-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ind-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.ind-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.ind-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 52px);
  color: #f8f7f4;
  line-height: 1.12;
  max-width: 780px;
  margin: 0 0 20px;
}
.ind-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #b0bac9;
  max-width: 620px;
  line-height: 1.7;
  margin: 0 0 36px;
}
.ind-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ind-btn-primary {
  background: #f59e0b;
  color: #0f1629;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.ind-btn-primary:hover { background: #d97706; transform: translateY(-1px); }
.ind-btn-secondary {
  background: transparent;
  color: #f8f7f4;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ind-btn-secondary:hover { border-color: rgba(245, 158, 11, 0.5); color: #f59e0b; }
.ind-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ind-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9aa3b2;
}

/* ===== DEAL EXAMPLES ===== */
.ind-deals {
  padding: 80px 0;
  background: #0c1423;
}
.ind-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.ind-deal-card {
  background: #131f38;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.ind-deal-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}
.ind-deal-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.ind-deal-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 6px;
}
.ind-deal-use {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa3b2;
  margin-bottom: 12px;
}
.ind-deal-detail {
  font-size: 14px;
  color: #b0bac9;
  line-height: 1.65;
  margin: 0 0 16px;
}
.ind-deal-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.ind-process {
  padding: 80px 0;
  background: #0f1629;
}
.ind-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.ind-step {
  position: relative;
}
.ind-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ind-step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f8f7f4;
  margin: 0 0 8px;
}
.ind-step-body p {
  font-size: 14px;
  color: #9aa3b2;
  line-height: 1.65;
  margin: 0;
}

/* ===== PRE-QUALIFIER / APPLY ===== */
.ind-apply {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c1423 0%, #131f38 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ind-apply-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 38px);
  color: #f8f7f4;
  margin: 0 0 10px;
}
.ind-apply-sub {
  color: #9aa3b2;
  font-size: 16px;
  margin: 0 0 36px;
}
.ind-prequal-wrap {
  max-width: 600px;
}
.ind-prequal-form {
  background: #131f38;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}
.ind-prequal-form h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f8f7f4;
  margin: 0 0 6px;
}
.ind-prequal-sub {
  font-size: 13px;
  color: #9aa3b2;
  margin: 0 0 24px;
}
.ind-prequal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.ind-prequal-full { grid-column: 1 / -1; }
.ind-prequal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ind-prequal-field label {
  font-size: 13px;
  font-weight: 500;
  color: #9aa3b2;
}
.ind-prequal-field input,
.ind-prequal-field select {
  background: #0f1629;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #f8f7f4;
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.ind-prequal-field input:focus,
.ind-prequal-field select:focus {
  border-color: #f59e0b;
}
.ind-prequal-field select option { background: #0f1629; }
.ind-prequal-submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ind-prequal-submit {
  background: #f59e0b;
  color: #0f1629;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.ind-prequal-submit:hover:not(:disabled) { background: #d97706; transform: translateY(-1px); }
.ind-prequal-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.ind-prequal-trust {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}
.ind-prequal-error {
  display: none;
  color: #f87171;
  font-size: 14px;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(248, 113, 113, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.ind-prequal-error.visible { display: block; }

/* Success / DocuSeal state */
.ind-success-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
}
.ind-success-icon { font-size: 24px; flex-shrink: 0; }
.ind-success-header h4 { font-size: 16px; font-weight: 600; color: #f8f7f4; margin: 0 0 4px; }
.ind-success-header p { font-size: 14px; color: #9aa3b2; margin: 0; }
.ind-docuseal-header { margin-bottom: 16px; }
.ind-docuseal-header h3 { font-size: 18px; font-weight: 600; color: #f8f7f4; margin: 0 0 4px; }
.ind-docuseal-header p { font-size: 14px; color: #9aa3b2; margin: 0; }
.ind-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ind-embed-wrap.is-errored .ind-docuseal-iframe { display: none; }
.ind-embed-wrap.is-errored .ind-embed-fallback { display: flex; }
.ind-docuseal-iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}
.ind-embed-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  flex-direction: column;
  text-align: center;
  background: #131f38;
}
.ind-embed-fallback p { color: #9aa3b2; font-size: 14px; margin: 0; }

/* ===== FAQ ===== */
.ind-faq {
  padding: 80px 0;
  background: #0c1423;
}
.ind-faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
}
.ind-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  background: #131f38;
}
.ind-faq-q {
  list-style: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #f8f7f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.ind-faq-q::-webkit-details-marker { display: none; }
.ind-faq-q::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: #f59e0b;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.ind-faq-item[open] .ind-faq-q::after {
  content: '–';
}
.ind-faq-q:hover { color: #f59e0b; }
.ind-faq-a {
  padding: 0 20px 18px;
}
.ind-faq-a p {
  font-size: 14px;
  color: #9aa3b2;
  line-height: 1.75;
  margin: 0;
}

/* ===== COMPARE INTERNAL LINKS ===== */
.ind-compare {
  padding: 40px 0;
  background: #0f1629;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ind-compare-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ind-compare-label {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  flex-shrink: 0;
}
.ind-compare-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ind-compare-link {
  font-size: 13px;
  color: #9aa3b2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.ind-compare-link:hover { color: #f59e0b; border-color: rgba(245, 158, 11, 0.5); }

/* ===== FOOTER ===== */
.ind-footer {
  padding: 40px 24px;
  background: #0c1423;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ind-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ind-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #f8f7f4;
}
.ind-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ind-footer-links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.ind-footer-links a:hover { color: #9aa3b2; }
.ind-footer-copy {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .ind-prequal-grid { grid-template-columns: 1fr; }
  .ind-hero-cta { flex-direction: column; }
  .ind-hero-cta a { text-align: center; }
  .ind-compare-inner { flex-direction: column; align-items: flex-start; }
}
