:root {
    --blue:      #2563eb;
    --blue-dark: oklch(48.8% .243 264.376);
    --navy:      #0f172a;
    --bg:        #f8faff;
    --text:      #0f172a;
    --muted:     #64748b;
    --border:    #e2e8f0;
    --radius:    16px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'DM Sans', sans-serif; background: #fff; color: var(--text); }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  .section-wrap-headings{
    text-align: center;
  }

  .how-it-works-section{
    background: #f8faff;
  }
  .why-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) {
    .why-partner-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 560px) {
    .why-partner-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .why-partner-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .why-partner-card p{
    width: 73%;
  }
  .why-partner-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 40px rgba(37,99,235,0.1);
    transform: translateY(-3px);
  }




  /* ── HERO ── */
  .partner-hero {
    position: relative;
    min-height: 480px;
    background: linear-gradient(to bottom, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.65) 100%),
                url('/static/img/partners_hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 145px 24px 80px;
    overflow: hidden;
  }
  .partner-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .partner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .partner-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .partner-hero h1 span {
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
  .partner-hero p {
    font-size: 1rem;
    color: #fff;
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 36px;
  }
  .partner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-hero-blue {
    background: var(--blue);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-hero-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
  .btn-hero-outline {
    background: transparent;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-hero-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

  /* ── PARTNER LOGOS STRIP ── */
  .logos-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
  }
  .logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .logo-item svg { width: 16px; height: 16px; stroke: #94a3b8; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  /* ── SHARED ── */
  .section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 32px;
  }
  .eyebrow {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 12px;
    text-align: center;
  }
  .sec-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: center;
  }
  .sec-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 56px;
    text-align: center;
  }

  /* ── PARTNERSHIP PATH ── */
  .path-section { background: var(--bg); }
  .path-section .sec-title { text-align: center; }
  .path-section .sec-sub { text-align: center; max-width: 480px; margin: 0 auto 56px; }

  .path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 768px) { .path-grid { grid-template-columns: 1fr; } }

  .path-card {
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.path-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(37,99,235,0.1);
  transform: translateY(-3px);
}
.path-card.featured {
  border-color: transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.path-card.featured:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(37,99,235,0.1);
}

  .path-tag {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(37,99,235,0.1);
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }
  .path-icon {
    width: 52px; height: 52px;
    background: rgba(37,99,235,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .path-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .path-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .path-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .path-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
    flex: 1;
  }
  .path-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--navy);
  }
  .path-perk::before {
    content: '';
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center/contain;
    flex-shrink: 0;
  }
  .btn-path-ghost {
    width: 100%;
    padding: 13px;
    background: transparent;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
  }
  .btn-path-ghost:hover { border-color: var(--blue); background: rgba(37,99,235,0.04); }
  .btn-path-blue {
    width: 100%;
    padding: 13px;
    background: var(--blue);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: block;
  }
  .btn-path-blue:hover { background: var(--blue-dark); }

  /* ── ENGAGEMENT MODEL ── */
  .engagement-section { background: #fff; }
  .engagement-section .sec-title { text-align: center; }
  .engagement-section .eyebrow { text-align: center; display: block; }

  .engagement-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
  }
  @media (max-width: 768px) { .engagement-steps { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 480px) { .engagement-steps { grid-template-columns: 1fr; } }

  .engagement-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--border);
  z-index: 0;
}
  @media (max-width: 768px) { .engagement-steps::before { display: none; } }

 .eng-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.eng-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.eng-step:hover .eng-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.eng-name {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.eng-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 180px;
}

  /* ── TWO COL ── */
  .two-col-section { background: var(--bg); }
  .two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 800px) { .two-col-grid { grid-template-columns: 1fr; } }

  /* Incentive table */
  .incentive-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
  }
  .incentive-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: #fff;
  }
  .incentive-table th {
    background: var(--bg);
    padding: 12px 16px;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
  }
  .incentive-table th:last-child { color: var(--blue); }
  .incentive-table td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--navy);
    border-top: 1px solid var(--border);
  }
  .incentive-table td:first-child { color: var(--muted); }
  .incentive-table td:nth-child(2) { text-align: center; color: var(--muted); }
  .incentive-table td:last-child { text-align: center; }
  .check-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 1rem;
  }
  .val-highlight { color: var(--blue); font-weight: 700; }
  .val-muted { color: #cbd5e1; font-size: 1.2rem; }

  /* First 30 days */
  .days-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .days-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
  }
  .days-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: var(--border);
  }
  .day-item {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
  }
  .day-item:last-child { padding-bottom: 0; }
  .day-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-left: -20px;
  margin-top: 3px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}
.day-dot--active {
  border-color: var(--blue);
  background: #fff;
}
  .day-tag {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
  }
  .day-name {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .day-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── CTA ── */
  .partner-cta {
    background: #184172;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .partner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
  }
  .partner-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
  .partner-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .partner-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  .partner-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-white {
    background: #fff;
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-cta-white:hover { background: #f0f4ff; transform: translateY(-2px); }
  .btn-cta-outline {
    background: transparent;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-cta-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }




.pf-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.pf-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.pf-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.pf-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}

.pf-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
}

.pf-tab.active {
  background: #fff;
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.pf-heading {
  margin: 24px 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pf-card input,
.pf-card select,
.pf-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  margin-top: 10px;
}
.pf-card input[type="checkbox"]{
  width: fit-content;
  margin-top: 0;
}

.pf-card input:focus,
.pf-card select:focus,
.pf-card textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.pf-full {
  grid-column: span 2;
}

.pf-field {
  margin-bottom: 14px;
}

.pf-card textarea {
  min-height: 90px;
  margin-top: 10px;
}

.pf-checks {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.pf-checks label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.pf-checks label:hover {
  border-color: #2563eb;
  background: rgba(37,99,235,0.04);
}

.pf-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.pf-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }

  .pf-full {
    grid-column: span 1;
  }
}

.pf-section {
  background: #f8faff;
  padding: 100px 20px;
}

.pf-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.pf-header .eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  display: block;
  margin-bottom: 12px;
}

.pf-header .sec-title {
  margin-bottom: 16px;
}

.pf-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
}