/* ============================================================
   PARTNER PAGE - Frontora AI V2-Pre
   ============================================================ */

.pt-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16,185,129,0.1);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}

.pt-h1 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--neutral-900);
}

.pt-h1-accent {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pt-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--neutral-900);
}

.pt-section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HERO ===== */
.pt-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(16,185,129,0.08), transparent 60%), var(--neutral-0);
  text-align: center;
}

.pt-hero-inner { max-width: 800px; margin: 0 auto; }

.pt-lede {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  color: var(--neutral-700);
  margin: 0 auto;
  max-width: 700px;
}

/* ===== TYPES GRID ===== */
.pt-types {
  background: var(--neutral-100);
  padding: clamp(60px, 8vw, 100px) 0;
}

.pt-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pt-type-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pt-type-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-500);
  box-shadow: 0 12px 28px -8px rgba(16,185,129,0.18);
}

.pt-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-type-icon svg { width: 22px; height: 22px; }

.pt-type-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--neutral-900);
  line-height: 1.25;
}

.pt-type-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--neutral-700);
  margin: 0;
  flex: 1;
}

.pt-type-payout {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(196,163,90,0.12);
  color: #c4a35a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 4px;
  border: 1px solid rgba(196,163,90,0.25);
}

/* ===== FORM SECTION ===== */
.pt-form-section {
  background: var(--neutral-0);
  padding: clamp(60px, 8vw, 100px) 0;
}

.pt-form-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.pt-form-side {
  position: sticky;
  top: 100px;
}

.pt-form-side-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--neutral-700);
  margin: 0 0 24px;
}

.pt-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pt-side-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--neutral-800);
}

.pt-side-list svg {
  width: 18px;
  height: 18px;
  color: var(--brand-600);
  flex-shrink: 0;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  padding: 3px;
}

/* Form */
.pt-form {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 28px -12px rgba(16,185,129,0.12);
}

.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.pt-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-800);
  font-family: var(--font-display);
}

.pt-req {
  color: #dc2626;
  font-weight: 700;
}

html .pt-field input[type="text"],
html .pt-field input[type="email"],
html .pt-field input[type="tel"],
html .pt-field input[type="url"],
html .pt-field select,
html .pt-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--neutral-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--neutral-900);
  background: white;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

html .pt-field input:focus,
html .pt-field select:focus,
html .pt-field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.pt-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

.pt-help {
  font-size: 11.5px;
  color: var(--neutral-500);
  margin-top: 2px;
}

.pt-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.pt-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--neutral-800);
  cursor: pointer;
  user-select: none;
}

.pt-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--brand-600);
  cursor: pointer;
  flex-shrink: 0;
}

.pt-consent {
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-check-sms,
.pt-check-tcpa {
  font-size: 12px;
  line-height: 1.55;
  color: var(--neutral-700);
}

.pt-check-tcpa a {
  color: var(--brand-700);
  text-decoration: underline;
}

#partnerSubmit {
  width: 100%;
  justify-content: center;
}

.pt-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pt-status.is-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid var(--brand-500);
  color: var(--brand-700);
}

.pt-status.is-error {
  background: rgba(220,38,38,0.08);
  border: 1px solid #dc2626;
  color: #dc2626;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pt-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pt-form-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .pt-types-grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1fr; gap: 0; }
  .pt-checkbox-grid { grid-template-columns: 1fr; }
  .pt-form { padding: 22px; }
  .pt-h1 { font-size: 28px !important; }
  .pt-side-list li { font-size: 13px; }
}
