/* ========== PARTNER INTRO ========== */
.p-intro { padding: 80px 0; background: var(--white); }
.p-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.p-intro__text p { font-size: 16px; }
.p-intro__cards { display: flex; flex-direction: column; gap: 16px; }
.p-intro__card { display: flex; gap: 20px; align-items: flex-start; padding: 28px 32px; border-radius: 16px; background: var(--cream); border: 1px solid var(--border); }
.p-intro__card--gold { background: var(--dark); border-color: transparent; }
.p-intro__card--gold h3 { color: var(--white); }
.p-intro__card--gold p { color: rgba(255,255,255,0.55); }
.p-intro__card--gold .p-intro__icon { color: var(--gold); }
.p-intro__icon { width: 48px; height: 48px; flex-shrink: 0; color: var(--green-mid); }
.p-intro__card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.p-intro__card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== WHO CAN ========== */
.who-can { padding: 100px 0; background: var(--dark-green); }
.who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; }
.who__card { background: var(--dark-green); padding: 36px 32px; transition: background 0.2s; }
.who__card:hover { background: var(--green); }
.who__icon { font-size: 32px; margin-bottom: 16px; }
.who__card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.who__card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ========== HOW ========== */
.p-how { padding: 100px 0; background: var(--cream); }
.p-how__tabs { display: flex; gap: 4px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 4px; width: fit-content; margin: 0 auto 48px; }
.p-how__tab { padding: 10px 28px; border-radius: 7px; border: none; background: none; font-size: 15px; font-weight: 500; color: var(--text-light); font-family: var(--font-sans); cursor: pointer; transition: all 0.2s; }
.p-how__tab.active { background: var(--dark); color: var(--white); }
.p-how__content.hidden { display: none; }
.p-how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.p-how__step { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--border); }
.p-how__step-num { font-family: var(--font-serif); font-size: 56px; font-weight: 700; color: var(--cream-dark); line-height: 1; margin-bottom: 16px; }
.p-how__step h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.p-how__step p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ========== RATES ========== */
.rates { padding: 100px 0; background: var(--dark); }
.rates__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.rates__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px 36px; display: flex; flex-direction: column; gap: 0; position: relative; }
.rates__card--featured { background: var(--dark-green); border-color: var(--gold); }
.rates__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.rates__type { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.rates__amount { font-family: var(--font-serif); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.rates__desc { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rates__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.rates__list li { font-size: 14px; color: rgba(255,255,255,0.6); padding-left: 20px; position: relative; line-height: 1.5; }
.rates__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
.rates__note { text-align: center; font-size: 14px; color: rgba(255,255,255,0.35); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ========== PARTNER CONTACT ========== */
.p-contact { padding: 100px 0; background: var(--white); }
.p-contact__highlight { display: flex; align-items: flex-start; gap: 16px; background: var(--cream); border-radius: 12px; padding: 20px 24px; margin: 24px 0 32px; border: 1px solid var(--border); }
.p-contact__hl-icon { font-size: 24px; flex-shrink: 0; }
.p-contact__hl-title { font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.p-contact__hl-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .p-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .who__grid { grid-template-columns: repeat(2, 1fr); }
  .rates__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .who__grid { grid-template-columns: 1fr; }
  .p-how__steps { grid-template-columns: 1fr; }
  .p-how__tabs { width: 100%; }
  .p-how__tab { flex: 1; text-align: center; font-size: 13px; padding: 10px 12px; }
}
