/* ===================================
   PUBLIC RELATIONS PAGE
   =================================== */

/* ==================
   HERO
   ================== */
.pr-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pr-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(52, 211, 153, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(129, 140, 248, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pr-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 0 100px;
}

.pr-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 24px 0 28px;
}

.pr-hero__sub {
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 18px;
}

.pr-hero__sub em {
  color: var(--accent-green);
  font-style: italic;
}

.pr-hero__sub--secondary {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  max-width: 620px;
}

.pr-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ==================
   THE SHIFT
   ================== */
.pr-shift {
  padding: 120px 0;
  background: var(--bg-section-alt);
}

.pr-shift__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.pr-shift__col {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.pr-shift__col--accent {
  border-color: rgba(52, 211, 153, 0.2);
  background:
    linear-gradient(180deg, rgba(52, 211, 153, 0.04) 0%, transparent 60%),
    var(--bg-card);
}

.pr-shift__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.pr-shift__label i {
  font-size: 18px;
  color: var(--text-muted);
}

.pr-shift__col--accent .pr-shift__label i {
  color: var(--accent-green);
}

.pr-shift__label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pr-shift__col--accent .pr-shift__label span {
  color: var(--accent-green);
}

.pr-shift__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: shift;
}

.pr-shift__list li {
  counter-increment: shift;
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pr-shift__list li:not(:last-child) {
  padding-bottom: 18px;
}

.pr-shift__list li::before {
  content: counter(shift);
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.pr-shift__col--accent .pr-shift__list li::before {
  color: var(--accent-green);
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.2);
}

.pr-shift__callout {
  margin-top: 40px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent-green);
  border-radius: var(--radius-lg);
}

.pr-shift__callout p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pr-shift__callout p:not(:last-of-type) {
  margin-bottom: 18px;
}

.pr-shift__callout strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pr-shift__callout em {
  color: var(--accent-green);
  font-style: italic;
}

.pr-shift__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-green);
  text-decoration: none;
  transition: gap 0.3s var(--ease-out);
}

.pr-shift__link:hover {
  gap: 14px;
}

.pr-shift__link i {
  font-size: 15px;
}

/* ==================
   MECHANISM
   ================== */
.pr-mechanism {
  padding: 120px 0;
}

.pr-mechanism__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
  margin-top: 64px;
}

.pr-mechanism__step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.4s var(--ease-out);
}

.pr-mechanism__step:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.pr-mechanism__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pr-mechanism__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.pr-mechanism__icon i {
  font-size: 18px;
  color: var(--accent-green);
}

.pr-mechanism__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pr-mechanism__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.pr-mechanism__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.pr-mechanism__arrow i {
  font-size: 16px;
}

.pr-mechanism__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: var(--radius-lg);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pr-mechanism__note i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent-green);
  margin-top: 3px;
}

/* ==================
   SERVICES
   ================== */
.pr-services {
  padding: 120px 0;
  background: var(--bg-section-alt);
}

.pr-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pr-service {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 36px 30px;
  transition: all 0.4s var(--ease-out);
}

.pr-service:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.pr-service__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pr-service__icon i {
  font-size: 22px;
}

.pr-service__icon--green {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.18);
}
.pr-service__icon--green i { color: var(--accent-green); }

.pr-service__icon--indigo {
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.18);
}
.pr-service__icon--indigo i { color: var(--accent-indigo); }

.pr-service__icon--coral {
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.18);
}
.pr-service__icon--coral i { color: var(--accent-coral); }

.pr-service__name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pr-service__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.pr-service__list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--border-subtle);
}

.pr-service__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pr-service__list li:not(:last-child) {
  margin-bottom: 14px;
}

.pr-service__list i {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--accent-green);
  margin-top: 3px;
}

/* ==================
   TRADITIONAL
   ================== */
.pr-traditional {
  padding: 120px 0;
}

.pr-traditional__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.pr-traditional__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 20px 0 24px;
}

.pr-traditional__copy p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pr-traditional__copy p:not(:last-child) {
  margin-bottom: 18px;
}

.pr-traditional__copy strong {
  color: var(--accent-green);
  font-weight: 600;
}

.pr-traditional__panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
}

.pr-traditional__panel-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border-subtle);
}

.pr-traditional__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pr-traditional__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pr-traditional__panel-list li:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pr-traditional__panel-list > li > i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--accent-green);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.pr-traditional__panel-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.pr-traditional__panel-list span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================
   ACCOUNTABILITY
   ================== */
.pr-accountability {
  padding: 120px 0;
  background: var(--bg-section-alt);
}

.pr-accountability__table {
  max-width: 940px;
  margin: 64px auto 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pr-accountability__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pr-accountability__row:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
}

.pr-accountability__row--head .pr-accountability__cell {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 18px 24px;
}

.pr-accountability__row--head .pr-accountability__cell--accent {
  color: var(--accent-green);
}

.pr-accountability__cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pr-accountability__cell:first-child {
  border-right: 1px solid var(--border-subtle);
}

.pr-accountability__cell--accent {
  color: var(--text-secondary);
  background: rgba(52, 211, 153, 0.03);
}

.pr-accountability__cell i {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 3px;
}

.pr-accountability__cell .icon-x {
  color: var(--accent-coral);
}

.pr-accountability__cell .icon-check {
  color: var(--accent-green);
}

.pr-accountability__note {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==================
   PROCESS
   ================== */
.pr-process {
  padding: 120px 0;
}

.pr-process__steps {
  max-width: 820px;
  margin: 64px auto 0;
}

.pr-process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
}

.pr-process__marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.pr-process__num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-green);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.pr-process__step:not(:last-child) .pr-process__marker::after {
  content: '';
  position: absolute;
  top: 48px;
  bottom: -8px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.2) 0%, var(--border-subtle) 100%);
}

.pr-process__body {
  padding-bottom: 44px;
}

.pr-process__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pr-process__timing {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.pr-process__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==================
   FAQ
   ================== */
.pr-faq {
  padding: 120px 0;
  background: var(--bg-section-alt);
}

.pr-faq__list {
  max-width: 820px;
  margin: 56px auto 0;
}

.pr-faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.pr-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s var(--ease-out);
}

.pr-faq__question span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.pr-faq__question i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out), color 0.3s var(--ease-out);
}

.pr-faq__question:hover i {
  color: var(--accent-green);
}

.pr-faq__item.is-open .pr-faq__question i {
  transform: rotate(45deg);
  color: var(--accent-green);
}

.pr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
  padding: 0 0;
}

.pr-faq__item.is-open .pr-faq__answer {
  max-height: 400px;
  padding-bottom: 26px;
}

.pr-faq__answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-right: 48px;
}

/* ==================
   FINAL CTA
   ================== */
.pr-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.pr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(52, 211, 153, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pr-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pr-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pr-cta__sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.pr-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .pr-mechanism__flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pr-mechanism__arrow {
    display: none;
  }

  .pr-services__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .pr-traditional__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pr-shift,
  .pr-mechanism,
  .pr-services,
  .pr-traditional,
  .pr-accountability,
  .pr-process,
  .pr-faq,
  .pr-cta {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  .pr-hero {
    min-height: 85vh;
  }

  .pr-hero__content {
    padding: 110px 0 80px;
  }

  .pr-hero__title br {
    display: none;
  }

  .pr-shift__grid {
    grid-template-columns: 1fr;
  }

  .pr-shift__callout {
    padding: 28px 24px;
  }

  .pr-mechanism__flow {
    grid-template-columns: 1fr;
  }

  .pr-accountability__row {
    grid-template-columns: 1fr;
  }

  .pr-accountability__cell:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .pr-accountability__row--head {
    display: none;
  }

  .pr-process__step {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .pr-process__num {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .pr-process__step:not(:last-child) .pr-process__marker::after {
    top: 40px;
  }

  .pr-faq__question span {
    font-size: 16px;
  }

  .pr-faq__answer p {
    padding-right: 0;
  }

  .pr-hero__actions .btn,
  .pr-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pr-service {
    padding: 28px 22px;
  }

  .pr-traditional__panel {
    padding: 28px 22px;
  }

  .pr-mechanism__note {
    padding: 20px;
    font-size: 14px;
  }
}
