/* ============================================================
   CROL PARTNERS — Page-specific styles
   ============================================================ */

/* ---------- Hero ---------- */
.partners-hero {
  background: var(--crol-timeless-green);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.partners-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(0,225,0,0.22), transparent 60%),
    radial-gradient(circle at 15% 80%, rgba(0,225,0,0.12), transparent 55%);
  pointer-events: none;
}
.partners-hero .container { position: relative; z-index: 1; }

.partners-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 225, 0, 0.12);
  border: 1px solid rgba(0, 225, 0, 0.35);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.partners-hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.partners-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 28px;
  max-width: 980px;
}
.partners-hero h1 .accent { color: var(--accent); display: block; }
.partners-hero .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 780px;
  margin: 0 0 16px;
}
.partners-hero .lede strong { color: #fff; font-weight: 800; }
.partners-hero .bullets {
  list-style: none;
  padding: 0; margin: 28px 0 40px;
  display: grid;
  gap: 12px;
  max-width: 640px;
}
.partners-hero .bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.partners-hero .bullets li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.partners-hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero 2-col grid */
.partners-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1100px) {
  .partners-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.partners-hero-copy h1 { max-width: 600px; }
.partners-hero-copy .lede { max-width: 600px; }

/* Hero visual — orbital composition */
.partners-hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.partners-hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
}
.ph-orbit {
  position: absolute;
  inset: 0;
}
.ph-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,225,0,0.18), rgba(0,225,0,0.04));
  border: 1px solid rgba(0,225,0,0.32);
  box-shadow:
    0 0 0 8px rgba(0,225,0,0.04),
    0 20px 60px -12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.ph-core img {
  width: 150px;
  height: auto;
  display: block;
}
.ph-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.ph-ring-1 {
  width: 280px; height: 280px;
  margin: -140px 0 0 -140px;
  border-color: rgba(0,225,0,0.18);
  animation: phSpin 28s linear infinite;
}
.ph-ring-2 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border-color: rgba(255,255,255,0.06);
  border-style: dashed;
  animation: phSpin 50s linear infinite reverse;
}
.ph-ring-3 {
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-color: rgba(255,255,255,0.04);
}
@keyframes phSpin {
  to { transform: rotate(360deg); }
}

.ph-card {
  position: absolute;
  background: rgba(19, 38, 36, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 18px;
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
  z-index: 3;
  animation: phFloat 7s ease-in-out infinite;
}
.ph-card-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.ph-card-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ph-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,225,0,0.16);
  border: 1px solid rgba(0,225,0,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}
.ph-card-title {
  font-size: 15px;
  font-weight: 800;
}
.ph-card-sub {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.ph-card-1 { top: 4%;  left: 0%;   animation-delay: 0s; }
.ph-card-2 { top: 18%; right: 2%;  animation-delay: -2s; }
.ph-card-3 { bottom: 8%; right: 6%; animation-delay: -4s; }
.ph-card-4 { bottom: 16%; left: 4%; animation-delay: -1s; }
@keyframes phFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (max-width: 640px) {
  .partners-hero h1 { font-size: clamp(30px, 9.5vw, 48px); letter-spacing: -0.025em; }
}
@media (max-width: 720px) {
  .partners-hero-visual-wrap { min-height: 380px; }
  .ph-core { width: 140px; height: 140px; }
  .ph-core img { width: 88px; }
  .ph-ring-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
  .ph-ring-2 { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
  .ph-ring-3 { display: none; }
  .ph-card { padding: 10px 14px; }
  .ph-card-num { font-size: 22px; }
  .ph-card-label { font-size: 10px; }
  .ph-card-title { font-size: 13px; }
  .ph-card-icon { width: 30px; height: 30px; margin-bottom: 6px; }
}

/* ---------- Stats / Why ---------- */
.partners-why {
  background: #fff;
  padding: 60px 0;
}
.partners-why .head { max-width: 820px; margin-bottom: 48px; }
.partners-why-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.partners-why-head .head { margin-bottom: 0; max-width: none; }
.partners-why-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-why-logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}
@media (min-width: 980px) {
  .partners-why-head { grid-template-columns: 1.4fr 1fr; gap: 56px; }
  .partners-why-logo { justify-content: flex-end; }
}
.partners-why .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.partners-why h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--fg);
}
.partners-why .kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--crol-timeless-green);
  margin: 0 0 20px;
}
.partners-why p.body {
  font-size: 17px; line-height: 1.6; color: var(--fg-2);
  max-width: 760px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-block {
  background: var(--crol-timeless-green);
  color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out);
}
.stat-block:hover { transform: translateY(-4px); }
.stat-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle at center, rgba(0,225,0,0.25), transparent 60%);
  pointer-events: none;
}
.stat-block .stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}
.stat-block .stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  position: relative;
}

/* ---------- Types (4 ways) ---------- */
.partners-types {
  background: #F7F9F9;
  padding: 60px 0;
}
.partners-types .head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.partners-types .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.partners-types h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .types-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1200px) { .types-grid { grid-template-columns: repeat(4, 1fr); } }

.type-card {
  background: #fff;
  border: 1px solid #E2E8E7;
  border-radius: 22px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(19,38,36,0.18); border-color: var(--accent); }
.type-card:hover::before { transform: scaleX(1); }

.type-card .type-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.type-card .type-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--crol-timeless-green);
  margin: 0 0 14px;
}
.type-card .type-lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.45;
  margin: 0 0 14px;
}
.type-card .type-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.type-card .type-commission {
  background: linear-gradient(135deg, rgba(0,225,0,0.08), rgba(0,225,0,0.02));
  border: 1px solid rgba(0,225,0,0.25);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
.type-card .type-commission .label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crol-timeless-green);
  opacity: 0.6;
  margin-bottom: 6px;
}
.type-card .type-commission .value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.25;
  color: var(--crol-timeless-green);
  letter-spacing: -0.01em;
}
.type-card .type-extras {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.type-card .type-extras li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.45;
}
.type-card .type-extras li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ---------- Quote band ---------- */
.partners-quote {
  background: var(--accent);
  color: var(--crol-timeless-green);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.partners-quote::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.partners-quote .container { position: relative; z-index: 1; text-align: center; max-width: 920px; }
.partners-quote h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--crol-timeless-green);
}
.partners-quote p {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--crol-timeless-green);
  margin: 0;
  opacity: 0.85;
}

/* ---------- Mid CTA ---------- */
.partners-cta {
  background: var(--crol-timeless-green);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.partners-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.partners-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.partners-testimonials {
  background: #fff;
  padding: 60px 0;
}
.partners-testimonials .head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.partners-testimonials .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.partners-testimonials h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}

.ptestimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .ptestimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.ptestimonial {
  background: #F7F9F9;
  border: 1px solid #E2E8E7;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
}
.ptestimonial:hover { transform: translateY(-4px); box-shadow: 0 14px 32px -16px rgba(19,38,36,0.18); border-color: var(--accent); }
.ptestimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}
.ptestimonial .quote-body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 600;
  margin: 0 0 24px;
  flex: 1;
}
.ptestimonial .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #E2E8E7;
}
.ptestimonial .author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--crol-timeless-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.ptestimonial .author .name {
  font-weight: 800;
  color: var(--fg);
  font-size: 15px;
  line-height: 1.2;
}
.ptestimonial .author .role {
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

/* ---------- Final CTA ---------- */
.partners-final {
  background: var(--crol-timeless-green);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.partners-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,225,0,0.2), transparent 50%);
  pointer-events: none;
}
.partners-final .container { position: relative; z-index: 1; max-width: 840px; }
.partners-final h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.partners-final h2 .accent { color: var(--accent); }
.partners-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 36px;
}
