/* ═══════════════════════════════════════════════
   PARTNERSHIP PAGE — partnership.css v2
   Jetlify AI Automation Agency
═══════════════════════════════════════════════ */

:root {
  --pship-blue: #0270de;
  --pship-dark: #1a3a6b;
  --pship-bg: #e0ebf5;
  --pship-radius: 18px;
}

/* ── Shared ── */
.py-section { padding: 80px 0; }

.section-badge {
  display: inline-block;
  background: #e8f0fe;
  color: var(--pship-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Hero Stat Grid ── */
.pship-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
}

.pship-stat-card {
  background: #fff;
  border-radius: var(--pship-radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 24px rgba(2,112,222,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pship-stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(2,112,222,0.18); }

.pship-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pship-blue);
  line-height: 1;
}
.pship-stat-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 6px;
  text-align: center;
}

/* ── Partnership Type Cards ── */
.pship-type-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--pship-radius);
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.pship-type-card:hover { box-shadow: 0 12px 40px rgba(2,112,222,0.13); transform: translateY(-4px); }

.pship-type-card--featured {
  background: linear-gradient(135deg, var(--pship-blue) 0%, var(--pship-dark) 100%);
  border-color: transparent;
  color: #fff;
}
.pship-type-card--featured h4,
.pship-type-card--featured p { color: #fff; }
.pship-type-card--featured .pship-type-perks li { color: rgba(255,255,255,0.9); }
.pship-type-card--featured .pship-type-perks i { color: #7dd3fc; }

.pship-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pship-type-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.pship-type-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.pship-type-card p { font-size: 0.9rem; color: #64748b; line-height: 1.65; }

.pship-type-perks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.pship-type-perks li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.pship-type-perks i { color: var(--pship-blue); flex-shrink: 0; }

/* ── Why Partner Reasons ── */
.pship-reason-list { display: flex; flex-direction: column; gap: 22px; }
.pship-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pship-reason-icon {
  width: 46px;
  height: 46px;
  background: #e8f0fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--pship-blue);
  flex-shrink: 0;
}
.pship-reason strong { display: block; font-size: 0.97rem; color: #1e293b; margin-bottom: 4px; }
.pship-reason p { font-size: 0.87rem; color: #64748b; margin: 0; line-height: 1.6; }

/* ── Proof Cards ── */
.pship-proof-card {
  background: #fff;
  border-radius: var(--pship-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(2,112,222,0.08);
  transition: transform 0.2s;
}
.pship-proof-card:hover { transform: translateY(-4px); }
.pship-proof-num { font-size: 2rem; font-weight: 800; color: var(--pship-blue); line-height: 1; }
.pship-proof-label { font-size: 0.78rem; color: #64748b; margin-top: 6px; font-weight: 500; }

/* ── Who We're Looking For ── */
.pship-fit-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--pship-radius);
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pship-fit-card:hover {
  border-color: var(--pship-blue);
  box-shadow: 0 8px 28px rgba(2,112,222,0.12);
  transform: translateY(-3px);
}
.pship-fit-icon {
  font-size: 2rem;
  color: var(--pship-blue);
  margin-bottom: 14px;
}
.pship-fit-card h6 { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.pship-fit-card p { font-size: 0.85rem; color: #64748b; margin: 0; line-height: 1.6; }

.pship-not-fit {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
  border-radius: var(--pship-radius);
  padding: 22px 28px;
}
.pship-not-fit h6 { font-weight: 700; color: #b91c1c; margin: 0; font-size: 0.95rem; }

/* ── What Partners Earn ── */
.pship-earn-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--pship-radius);
  padding: 28px 24px;
  color: #fff;
  height: 100%;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.pship-earn-card:hover { background: rgba(255,255,255,0.20); transform: translateY(-3px); }
.pship-earn-icon { font-size: 2rem; color: #93c5fd; display: block; margin-bottom: 14px; }
.pship-earn-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.pship-earn-card p { font-size: 0.87rem; opacity: 0.85; line-height: 1.65; margin: 0; }

/* ── How It Works Steps ── */
.pship-step {
  text-align: center;
  padding: 10px;
}
.pship-step-num {
  font-size: 3rem;
  font-weight: 900;
  color: #e8f0fe;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.pship-step h6 { font-size: 1rem; font-weight: 700; color: var(--pship-blue); margin-bottom: 8px; }
.pship-step p { font-size: 0.87rem; color: #64748b; line-height: 1.65; margin: 0; }

/* ── Featured Partner Logos ── */
.pship-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pship-logo-pill {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pship-logo-pill:hover { border-color: var(--pship-blue); box-shadow: 0 4px 16px rgba(2,112,222,0.12); }
.pship-logo-pill.open-spot {
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  border-style: dashed;
  border-color: var(--pship-blue);
  color: var(--pship-blue);
  font-weight: 700;
  cursor: pointer;
}
.pship-logo-pill.open-spot:hover { background: #dbeafe; }

/* ── Application Form ── */
.pship-form-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 40px;
  box-shadow: 0 8px 40px rgba(2,112,222,0.08);
}

.pship-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.pship-input {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pship-input:focus {
  border-color: var(--pship-blue);
  box-shadow: 0 0 0 3px rgba(2,112,222,0.12);
  background: #fff;
  outline: none;
}

.pship-submit-btn {
  background: linear-gradient(135deg, var(--pship-blue), var(--pship-dark));
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pship-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(2,112,222,0.38); }
.pship-submit-btn .submit-icon { font-size: 1.25rem; }

/* ── Success State ── */
.pship-success {
  text-align: center;
  padding: 48px 24px;
}
.pship-success-icon {
  font-size: 4rem;
  color: #16a34a;
  margin-bottom: 16px;
}
.pship-success h4 { font-weight: 800; color: #1e293b; margin-bottom: 10px; }
.pship-success p { color: #64748b; font-size: 0.95rem; }

/* ── FAQ Accordion ── */
.pship-faq-item {
  background: #fff;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.pship-faq-btn {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b !important;
  background: #fff !important;
  padding: 18px 22px;
  box-shadow: none !important;
}
.pship-faq-btn:not(.collapsed) { color: var(--pship-blue) !important; }
.pship-faq-btn::after { filter: none; }
.pship-faq-body {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  padding: 4px 22px 20px;
}

/* ── Hero visual — replaces fake stats grid ── */
.pship-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}
.pship-reach-card {
  background: #fff;
  border-radius: var(--pship-radius);
  padding: 26px 28px;
  box-shadow: 0 4px 24px rgba(2,112,222,0.10);
}
.pship-reach-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0270de;
  margin-bottom: 16px;
}
.pship-reach-flags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.pship-flag-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}
.pship-reach-note {
  font-size: 0.8rem;
  color: #64748b;
  font-style: italic;
  border-top: 1px solid #f0f2f6;
  padding-top: 12px;
  line-height: 1.5;
}
.pship-reach-badge {
  background: linear-gradient(135deg, #0270de, #1a3a6b);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.pship-reach-badge i { font-size: 1.5rem; flex-shrink: 0; }

@media (max-width: 767.98px) {
  .pship-hero-visual { max-width: 100%; }
  .pship-reach-card { padding: 20px; }
  .pship-reach-flags { gap: 8px; }
  .pship-flag-item { font-size: 0.82rem; padding: 8px 12px; }
}

/* ── Highlighted Stat Card ── */
.pship-stat-highlight {
  background: linear-gradient(135deg, var(--pship-blue), var(--pship-dark));
  grid-column: span 2;
}
.pship-stat-highlight .pship-stat-num { color: #fff; }
.pship-stat-highlight .pship-stat-label { color: rgba(255,255,255,0.8); }

/* ── Type Price Line ── */
.pship-type-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pship-blue);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

/* ── Light version of earn card (on white bg sections) ── */
.pship-earn-card-light {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--pship-radius);
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pship-earn-card-light:hover {
  border-color: var(--pship-blue);
  box-shadow: 0 8px 28px rgba(2,112,222,0.10);
  transform: translateY(-3px);
}
.pship-earn-card-light h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 12px 0 8px;
}
.pship-earn-card-light p { font-size: 0.87rem; color: #64748b; line-height: 1.65; margin: 0; }
.pship-icon-blue { font-size: 1.8rem; color: var(--pship-blue); display: block; }

/* ── Terms list (Our Terms section) ── */
.pship-terms-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.pship-term-item {
  display: flex;
  align-items: center;
  font-size: 0.93rem;
  color: #334155;
  padding: 6px 0;
}

/* ── Value / Buyer Card ── */
.pship-value-card {
  background: #fff;
  border-radius: var(--pship-radius);
  padding: 32px;
  box-shadow: 0 8px 36px rgba(2,112,222,0.10);
}
.pship-value-header {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #e2e8f0;
}
.pship-buyer-pill {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.pship-buyer-pill:hover { background: #e8f0fe; }

/* ── No list (dark section) ── */
.pship-no-list {
  background: rgba(0,0,0,0.2);
  border-radius: var(--pship-radius);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.pship-no-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── Form Disclaimer ── */
.pship-disclaimer {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.84rem;
  color: #1e40af;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.pship-disclaimer i { margin-top: 2px; flex-shrink: 0; }

/* ── Mobile Responsive ── */
@media (max-width: 767.98px) {
  .py-section { padding: 56px 0; }
  .section-title { font-size: 1.65rem; }
  .pship-hero-stats { max-width: 100%; gap: 14px; }
  .pship-stat-card { padding: 20px 14px; }
  .pship-stat-num { font-size: 1.9rem; }
  .pship-form-card { padding: 24px 20px; }
  .pship-step-num { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.45rem; }
  .pship-type-card { padding: 24px 20px; }
  .pship-earn-card { padding: 22px 18px; }
  .pship-form-card { padding: 20px 16px; border-radius: 18px; }
}
