/* ============================================================
   JETEDCO PARTNERS / REPRESENTATIVE PAGE — Styles
   ============================================================ */

/* --- Hero --- */
.pt-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.pt-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sky-start) 0%, var(--sky-end) 60%, var(--white) 100%);
  z-index: 0;
}
.pt-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 80px;
  max-width: 820px;
}
.pt-hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 24px;
  max-width: 780px;
}
.pt-hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Intro --- */
.pt-intro {
  padding: 100px 0 80px;
}
.pt-intro-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pt-intro-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.pt-intro-content p:last-child {
  margin-bottom: 0;
}
.pt-intro-highlight {
  font-weight: 700 !important;
  color: var(--black) !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  padding: 12px 0;
}

/* --- Section Title (shared) --- */
.pt-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 20px;
}

/* --- Program Includes --- */
.pt-program {
  padding: 80px 0 100px;
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pt-program-header {
  text-align: center;
  margin-bottom: 56px;
}
.pt-program-header .hp-label-dot {
  margin: 0 auto;
}
.pt-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pt-program-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pt-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.pt-program-card:hover::before {
  transform: scaleY(1);
}
.pt-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.pt-program-card--wide {
  grid-column: 1 / -1;
}
.pt-program-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(86,145,218,0.08);
  color: var(--accent);
  border-radius: 14px;
  margin-bottom: 20px;
}
.pt-program-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
}
.pt-program-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Role Clarity --- */
.pt-role {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.pt-role-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pt-role .hp-label--accent {
  color: var(--accent-light);
}
.pt-role .hp-label-dot {
  background: var(--accent);
}
.pt-role .pt-section-title {
  color: var(--white);
}
.pt-role-right p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pt-role-right p:last-child {
  margin-bottom: 0;
}

/* --- Who It's For --- */
.pt-who {
  padding: 100px 0;
}
.pt-who-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pt-who-content .hp-label-dot {
  margin: 0 auto;
}
.pt-who-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 20px;
}
.pt-who-emphasis {
  font-weight: 600 !important;
  color: var(--black) !important;
  font-size: 17px !important;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  margin-top: 28px !important;
}

/* --- Audience Tags --- */
.pt-tags {
  padding: 0 0 80px;
}
.pt-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.pt-tag {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  background: rgba(86,145,218,0.06);
  border: 1px solid rgba(86,145,218,0.12);
  border-radius: 100px;
  transition: all var(--transition);
}
.pt-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- Apply CTA --- */
.pt-apply {
  padding: 40px 0 100px;
}
.pt-apply-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--black);
  border-radius: 20px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.pt-apply-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(86,145,218,0.1);
  pointer-events: none;
}
.pt-apply-content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.pt-apply-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 460px;
}
.pt-apply-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.pt-apply-btn:hover {
  background: #3d7ac4;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(86,145,218,0.3);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .pt-program-grid {
    grid-template-columns: 1fr;
  }
  .pt-program-card--wide {
    grid-column: auto;
  }
  .pt-role-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pt-apply-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .pt-hero-content {
    padding: 120px 20px 60px;
  }
  .pt-apply-card {
    padding: 36px 24px;
  }
}
