/* For Companies landing page */

.jd-fc-wrap {
  padding-bottom: 64px;
}

.jd-fc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.jd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  border: 2px solid transparent;
}
.jd-btn-company-outline {
  background: #fff;
  color: var(--jd-navy, #0c2d4a) !important;
  border-color: var(--jd-navy, #0c2d4a);
}
.jd-btn-company-outline:hover {
  background: var(--jd-bg-soft, #f4f8fc);
  color: var(--jd-navy, #0c2d4a) !important;
}
.jd-btn-company-solid {
  background: var(--jd-green, #1e8e4a);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(30, 142, 74, 0.3);
}
.jd-btn-company-solid:hover {
  background: var(--jd-green-dk, #167a3f);
  color: #fff !important;
}
.jd-btn-full {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.jd-fc-section {
  margin-top: 48px;
}
.jd-fc-section-soft {
  background: #f4f8fc;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px calc(50vw - 50%);
  border-radius: 0;
}
.jd-fc-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.jd-fc-section-head h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--jd-navy, #0c2d4a);
  margin: 0 0 10px;
}
.jd-fc-section-head p {
  margin: 0;
  color: var(--jd-text, #334155);
  line-height: 1.6;
}

.jd-fc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jd-fc-benefit-card {
  background: #fff;
  border: 1px solid var(--jd-border, #e2e8f0);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(12, 45, 74, 0.06);
}
.jd-fc-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f5ee;
  color: #1a7a4a;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.jd-fc-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jd-navy, #0c2d4a);
  margin: 0 0 8px;
}
.jd-fc-benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--jd-text, #334155);
}

.jd-fc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}
.jd-fc-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--jd-border, #e2e8f0);
  border-radius: 14px;
  padding: 20px 22px;
}
.jd-fc-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--jd-navy, #0c2d4a);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.jd-fc-step-text {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--jd-text, #334155);
}

.jd-fc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
}
.jd-fc-compare-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--jd-border, #e2e8f0);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 32px rgba(12, 45, 74, 0.07);
}
.jd-fc-compare-premium {
  border-color: #22a55b;
  box-shadow: 0 16px 40px rgba(26, 122, 74, 0.12);
}
.jd-fc-compare-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #22a55b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.jd-fc-compare-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--jd-navy, #0c2d4a);
}
.jd-fc-compare-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--jd-navy, #0c2d4a);
  margin: 0 0 20px;
}
.jd-fc-compare-price small {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--jd-text, #64748b);
}
.jd-fc-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jd-fc-compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--jd-text, #334155);
}
.jd-fc-compare-card li i {
  color: #22a55b;
  margin-top: 3px;
}
.jd-fc-compare-card li.jd-fc-no {
  color: #94a3b8;
}
.jd-fc-compare-card li.jd-fc-no i {
  color: #cbd5e1;
}

.jd-fc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin-inline: auto;
}
.jd-fc-price-card {
  background: #fff;
  border: 1px solid var(--jd-border, #e2e8f0);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
}
.jd-fc-price-card.is-featured {
  border-color: #22a55b;
  box-shadow: 0 8px 24px rgba(26, 122, 74, 0.15);
}
.jd-fc-price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #22a55b;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.jd-fc-price-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--jd-navy, #0c2d4a);
}
.jd-fc-price-total {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--jd-navy, #0c2d4a);
}
.jd-fc-price-sub {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--jd-text, #64748b);
}
.jd-fc-price-save {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a7a4a;
}
.jd-fc-pricing-note {
  text-align: center;
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: var(--jd-text, #64748b);
}

.jd-fc-faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jd-fc-faq-item {
  background: #fff;
  border: 1px solid var(--jd-border, #e2e8f0);
  border-radius: 12px;
  padding: 0 20px;
}
.jd-fc-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--jd-navy, #0c2d4a);
  padding: 16px 0;
  list-style: none;
}
.jd-fc-faq-item summary::-webkit-details-marker {
  display: none;
}
.jd-fc-faq-item[open] summary {
  border-bottom: 1px solid var(--jd-border, #e2e8f0);
}
.jd-fc-faq-item p {
  margin: 0;
  padding: 0 0 16px;
  line-height: 1.6;
  color: var(--jd-text, #334155);
  font-size: 0.95rem;
}

.jd-fc-cta-band {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--jd-navy, #0c2d4a), #164a72);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
}
.jd-fc-cta-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.jd-fc-cta-inner h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 800;
}
.jd-fc-cta-inner p {
  margin: 0 0 22px;
  opacity: 0.92;
  line-height: 1.55;
}
.jd-fc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.jd-fc-cta-band .jd-btn-company-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
  background: transparent;
}
.jd-fc-cta-band .jd-btn-company-outline:hover {
  background: #fff;
  color: var(--jd-navy, #0c2d4a) !important;
}

@media (max-width: 900px) {
  .jd-fc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jd-fc-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .jd-fc-benefits-grid,
  .jd-fc-compare,
  .jd-fc-steps {
    grid-template-columns: 1fr;
  }
  .jd-fc-pricing-grid {
    grid-template-columns: 1fr;
  }
  .jd-fc-hero-actions,
  .jd-fc-cta-actions {
    flex-direction: column;
  }
  .jd-fc-hero-actions .jd-btn,
  .jd-fc-cta-actions .jd-btn {
    width: 100%;
    justify-content: center;
  }
}
