/* ============================================================
   PET FOOD COLLAB — SHARED MAIN PAGE STYLESHEET
   Components:
   - Hero
   - Registration CTA band
   - Who should attend
   - Testimonials
   - Plan your visit
   - Student & Industry Collab
   - Event highlights
============================================================= */

/* ------------------------------------------------------------
   DESIGN TOKENS
------------------------------------------------------------- */

:root {
  --pfc-purple: #512888;
  --pfc-purple-dark: #3d1f6b;
  --pfc-purple-hover: #43206f;
  --pfc-lavender: #cdb5f3;
  --pfc-lavender-light: #eee7fa;
  --pfc-lavender-bg: #f8f6ff;
  --pfc-text: #1a1a2e;
  --pfc-text-muted: #5f5b72;
  --pfc-text-soft: #78658f;
  --pfc-border: #e7dff3;
  --pfc-border-hover: #c8b3e7;
  --pfc-white: #ffffff;
  --pfc-radius-sm: 7px;
  --pfc-radius-md: 12px;
  --pfc-radius-lg: 16px;
  --pfc-shadow-sm: 0 3px 12px rgba(81, 40, 136, 0.05);
  --pfc-shadow-md: 0 8px 24px rgba(81, 40, 136, 0.10);
  --pfc-section-pad: 48px 36px;
  --pfc-section-pad-tablet: 42px 28px;
  --pfc-section-pad-mobile: 36px 20px;
}

/* ------------------------------------------------------------
   SHARED RESET AND SECTION HEADING STYLES
------------------------------------------------------------- */

.pfc-hero *,
.pfc-hero *::before,
.pfc-hero *::after,
.pfc-cta-band *,
.pfc-cta-band *::before,
.pfc-cta-band *::after,
.pfc-who *,
.pfc-who *::before,
.pfc-who *::after,
.pfc-testimonials *,
.pfc-testimonials *::before,
.pfc-testimonials *::after,
.pfc-visit *,
.pfc-visit *::before,
.pfc-visit *::after,
.pfc-sic *,
.pfc-sic *::before,
.pfc-sic *::after,
.pfc-highlights *,
.pfc-highlights *::before,
.pfc-highlights *::after {
  box-sizing: border-box;
}

.pfc-who,
.pfc-testimonials,
.pfc-visit,
.pfc-sic,
.pfc-highlights {
  width: 100%;
  padding: var(--pfc-section-pad);
}

.pfc-who,
.pfc-visit {
  background-color: var(--pfc-white);
}

.pfc-testimonials,
.pfc-sic,
.pfc-highlights {
  background-color: var(--pfc-lavender-bg);
}

.pfc-who__heading,
.pfc-testimonials__heading,
.pfc-visit__heading,
.pfc-sic__heading,
.pfc-highlights__heading {
  margin-bottom: 24px;
}

.pfc-who__eyebrow,
.pfc-testimonials__eyebrow,
.pfc-visit__eyebrow,
.pfc-sic__eyebrow,
.pfc-highlights__eyebrow {
  margin: 0 0 7px;
  color: var(--pfc-text-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pfc-who__title,
.pfc-testimonials__title,
.pfc-visit__title,
.pfc-sic__section-title,
.pfc-highlights__title {
  margin: 0;
  color: var(--pfc-text);
  font-family: inherit;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
}


/* ============================================================
   HERO
============================================================= */

.pfc-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  background-color: var(--pfc-purple);
  border-radius: var(--pfc-radius-md);
  isolation: isolate;
}

.pfc-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pfc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(81, 40, 136, 0.96) 0%,
      rgba(81, 40, 136, 0.88) 35%,
      rgba(81, 40, 136, 0.72) 62%,
      rgba(81, 40, 136, 0.30) 100%
    );
}

.pfc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 52px 40px 42px;
  color: var(--pfc-white);
}

.pfc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 7px 15px;
  color: #eadffd;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pfc-hero__badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background-color: var(--pfc-lavender);
  border-radius: 50%;
  animation: pfc-badge-pulse 2s ease-in-out infinite;
}

@keyframes pfc-badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.pfc-hero__title {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--pfc-white);
  font-family: inherit;
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.pfc-hero__title em {
  color: var(--pfc-lavender);
  font-style: normal;
}

.pfc-hero__description {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pfc-hero__icon-image {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  object-fit: contain;
}

.pfc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 24px;
  margin: 0 0 30px;
}

.pfc-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.4;
}

.pfc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pfc-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: var(--pfc-radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.pfc-hero__button:hover,
.pfc-hero__button:focus {
  text-decoration: none !important;
  transform: translateY(-1px);
}

.pfc-hero__button:focus-visible {
  outline: 3px solid var(--pfc-white);
  outline-offset: 3px;
}

.pfc-hero__button--primary {
  color: var(--pfc-purple) !important;
  background-color: var(--pfc-white);
  border-color: var(--pfc-white);
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.16);
}

.pfc-hero__button--primary:hover,
.pfc-hero__button--primary:focus {
  color: var(--pfc-purple-dark) !important;
  background-color: #f7f3fd;
  border-color: #f7f3fd;
}

.pfc-hero__button--secondary {
  color: var(--pfc-white) !important;
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.42);
}

.pfc-hero__button--secondary:hover,
.pfc-hero__button--secondary:focus {
  color: var(--pfc-white) !important;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.pfc-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 1fr));
  gap: 20px 30px;
  width: 100%;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.pfc-hero__stat {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pfc-hero__stat-number {
  display: block;
  margin: 0 0 3px;
  color: var(--pfc-white);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.pfc-hero__stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}


/* ============================================================
   REGISTRATION CTA BAND
============================================================= */

.pfc-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 30px 36px;
  color: var(--pfc-white);
  background-color: var(--pfc-purple);
}

.pfc-cta-band__text {
  min-width: 0;
}

.pfc-cta-band__eyebrow {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pfc-cta-band__title {
  margin: 0;
  color: var(--pfc-white);
  font-family: inherit;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.pfc-cta-band__separator {
  display: inline-block;
  margin: 0 0.18em;
  color: var(--pfc-lavender);
}

.pfc-cta-band__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pfc-cta-band__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--pfc-radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    transform 150ms ease,
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.pfc-cta-band__button:hover,
.pfc-cta-band__button:focus {
  text-decoration: none !important;
  transform: translateY(-1px);
}

.pfc-cta-band__button:focus-visible {
  outline: 3px solid var(--pfc-white);
  outline-offset: 3px;
}

.pfc-cta-band__button--secondary {
  color: var(--pfc-white) !important;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.pfc-cta-band__button--secondary:hover,
.pfc-cta-band__button--secondary:focus {
  color: var(--pfc-white) !important;
  background-color: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.58);
}

.pfc-cta-band__button--primary {
  color: var(--pfc-purple) !important;
  background-color: var(--pfc-white);
  border-color: var(--pfc-white);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.14);
}

.pfc-cta-band__button--primary:hover,
.pfc-cta-band__button--primary:focus {
  color: var(--pfc-purple-dark) !important;
  background-color: #f7f3fd;
  border-color: #f7f3fd;
}

.pfc-cta-band__arrow,
.pfc-visit__arrow {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 150ms ease;
}

.pfc-cta-band__button--primary:hover .pfc-cta-band__arrow,
.pfc-cta-band__button--primary:focus .pfc-cta-band__arrow {
  transform: translateX(2px);
}


/* ============================================================
   WHO SHOULD ATTEND
============================================================= */

.pfc-who__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pfc-who__card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 22px 24px 24px;
  overflow: hidden;
  background-color: var(--pfc-lavender-bg);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-md);
  box-shadow: 0 2px 8px rgba(81, 40, 136, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pfc-who__card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--pfc-purple);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.pfc-who__card:hover {
  border-color: var(--pfc-border-hover);
  box-shadow: 0 7px 20px rgba(81, 40, 136, 0.10);
  transform: translateY(-2px);
}

.pfc-who__card:hover::before {
  opacity: 1;
}

.pfc-who__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background-color: var(--pfc-lavender-light);
  border-radius: 10px;
  font-size: 1.45rem;
  line-height: 1;
}

.pfc-who__card-title {
  margin: 0 0 8px;
  color: var(--pfc-text);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.pfc-who__card-text {
  margin: 0;
  color: var(--pfc-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================================
   TESTIMONIALS
============================================================= */

.pfc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pfc-testimonials__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 24px;
  background-color: var(--pfc-white);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-md);
  box-shadow: var(--pfc-shadow-sm);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pfc-testimonials__card:hover {
  border-color: var(--pfc-border-hover);
  box-shadow: 0 8px 22px rgba(81, 40, 136, 0.11);
  transform: translateY(-2px);
}

.pfc-testimonials__quote {
  position: relative;
  flex: 1 1 auto;
  margin: 0 0 22px;
  padding: 4px 0 0 22px;
  border: 0;
}

.pfc-testimonials__quote::before {
  position: absolute;
  top: -4px;
  left: 0;
  color: var(--pfc-purple);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.pfc-testimonials__quote p {
  margin: 0;
  color: #454159;
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.72;
}

.pfc-testimonials__author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid #eee9f6;
}

.pfc-testimonials__author-text {
  min-width: 0;
}

.pfc-testimonials__portrait-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  background-color: #ede5f8;
  border: 2px solid #d9c9ef;
  border-radius: 50%;
}

.pfc-testimonials__initials {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pfc-purple);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.pfc-testimonials__portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.pfc-testimonials__name {
  margin: 0 0 3px;
  color: var(--pfc-text);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.3;
}

.pfc-testimonials__role {
  margin: 0;
  color: #716680;
  font-size: 0.78rem;
  line-height: 1.45;
}

.pfc-testimonials__role span {
  display: inline-block;
  margin: 0 0.18em;
  color: #78658f;
}


/* ============================================================
   PLAN YOUR VISIT
============================================================= */

.pfc-visit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pfc-visit__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  color: inherit !important;
  background-color: var(--pfc-white);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-md);
  box-shadow: var(--pfc-shadow-sm);
  text-decoration: none !important;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pfc-visit__card::before {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 105px;
  height: 105px;
  background-color: #f4effc;
  border-radius: 50%;
  content: "";
  transition: transform 180ms ease;
}

.pfc-visit__card:hover,
.pfc-visit__card:focus {
  color: inherit !important;
  border-color: var(--pfc-border-hover);
  box-shadow: 0 9px 24px rgba(81, 40, 136, 0.12);
  text-decoration: none !important;
  transform: translateY(-3px);
}

.pfc-visit__card:hover::before,
.pfc-visit__card:focus::before {
  transform: scale(1.15);
}

.pfc-visit__card:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 3px;
}

.pfc-visit__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  background-color: var(--pfc-lavender-light);
  border-radius: 11px;
  font-size: 1.5rem;
  line-height: 1;
}

.pfc-visit__card-title {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 8px;
  color: var(--pfc-text);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
}

.pfc-visit__description {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1 1 auto;
  margin: 0 0 22px;
  color: #666078;
  font-size: 0.92rem;
  line-height: 1.62;
}

.pfc-visit__link-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  color: var(--pfc-purple);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.3;
}

.pfc-visit__card:hover .pfc-visit__arrow,
.pfc-visit__card:focus .pfc-visit__arrow {
  transform: translateX(3px);
}


/* ============================================================
   STUDENT & INDUSTRY COLLAB
============================================================= */

.pfc-sic__card {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 34px;
  padding: 28px;
  background: var(--pfc-white);
  border: 1px solid #e5def2;
  border-radius: var(--pfc-radius-lg);
  box-shadow: 0 8px 24px rgba(81, 40, 136, 0.06);
  align-items: center;
}

.pfc-sic__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--pfc-radius-md);
}

.pfc-sic__image-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(81, 40, 136, 0.12),
      rgba(81, 40, 136, 0)
    );
  content: "";
}

.pfc-sic__image {
  display: block;
  width: 100%;
  aspect-ratio: 600 / 330;
  object-fit: cover;
}

.pfc-sic__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pfc-sic__badge {
  padding: 7px 14px;
  border-radius: 999px;
  background: #efe9fa;
  color: var(--pfc-purple);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pfc-sic__badge--primary {
  background: var(--pfc-purple);
  color: var(--pfc-white);
}

.pfc-sic__title {
  margin: 0 0 14px;
  color: var(--pfc-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.pfc-sic__text {
  margin: 0 0 24px;
  color: var(--pfc-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.pfc-sic__button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--pfc-purple);
  color: var(--pfc-white) !important;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.pfc-sic__button:hover,
.pfc-sic__button:focus {
  background: var(--pfc-purple-hover);
  transform: translateY(-2px);
}

.pfc-sic__button:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 3px;
}

/* ============================================================
   SPONSORS
============================================================= */

.pfc-sponsors {
  width: 100%;
  padding: var(--pfc-section-pad);
  background-color: var(--pfc-white);
}

.pfc-sponsors *,
.pfc-sponsors *::before,
.pfc-sponsors *::after {
  box-sizing: border-box;
}


/* Section heading */

.pfc-sponsors__heading {
  margin-bottom: 28px;
}

.pfc-sponsors__eyebrow {
  margin: 0 0 7px;
  color: var(--pfc-text-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pfc-sponsors__title {
  margin: 0;
  color: var(--pfc-text);
  font-family: inherit;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
}


/* Sponsorship tiers */

.pfc-sponsors__tier {
  margin-top: 30px;
}

.pfc-sponsors__tier:first-of-type {
  margin-top: 0;
}

.pfc-sponsors__tier-title {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pfc-sponsors__tier-title--platinum {
  color: #512888;
  background-color: #eee7fa;
  border: 1px solid #d5c3ee;
}

.pfc-sponsors__tier-title--silver {
  color: #4b4b54;
  background-color: #ededf0;
  border: 1px solid #d4d4d9;
}

.pfc-sponsors__tier-title--bronze {
  color: #744c00;
  background-color: #f8ead5;
  border: 1px solid #e7cfaa;
}

.pfc-sponsors__tier-title--event {
  color: #28577e;
  background-color: #e6f0f9;
  border: 1px solid #c7dbea;
}


/* Logo grids */

.pfc-sponsors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
  gap: 14px;
}

.pfc-sponsors__grid--featured {
  grid-template-columns: minmax(220px, 340px);
}


/* Logo cards */

.pfc-sponsors__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 94px;
  padding: 18px 20px;
  background-color: var(--pfc-white);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-md);
  box-shadow: 0 2px 9px rgba(81, 40, 136, 0.04);
  color: inherit !important;
  text-decoration: none !important;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pfc-sponsors__logo-card:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 3px;
}

.pfc-sponsors__logo-card:hover,
.pfc-sponsors__logo-card:focus {
  border-color: var(--pfc-border-hover);
  box-shadow: 0 7px 18px rgba(81, 40, 136, 0.10);
  transform: translateY(-2px);
}

.pfc-sponsors__logo-card--featured {
  min-height: 125px;
  padding: 22px 28px;
  border-color: #d7c6ed;
  box-shadow: 0 5px 18px rgba(81, 40, 136, 0.08);
}


/* Logo images */

.pfc-sponsors__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.pfc-sponsors__logo-card--featured .pfc-sponsors__logo {
  max-height: 78px;
}


/* Sponsorship CTA */

.pfc-sponsors__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: 24px 26px;
  background-color: var(--pfc-lavender-bg);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-md);
}

.pfc-sponsors__cta-text {
  min-width: 0;
}

.pfc-sponsors__cta-title {
  margin: 0 0 5px;
  color: var(--pfc-text);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.35;
}

.pfc-sponsors__cta-description {
  max-width: 760px;
  margin: 0;
  color: var(--pfc-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pfc-sponsors__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 19px;
  color: var(--pfc-white) !important;
  background-color: var(--pfc-purple);
  border: 1px solid var(--pfc-purple);
  border-radius: var(--pfc-radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.pfc-sponsors__cta-button:hover,
.pfc-sponsors__cta-button:focus {
  color: var(--pfc-white) !important;
  background-color: var(--pfc-purple-dark);
  border-color: var(--pfc-purple-dark);
  text-decoration: none !important;
  transform: translateY(-1px);
}

.pfc-sponsors__cta-button:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 3px;
}

.pfc-sponsors__cta-arrow {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 150ms ease;
}

.pfc-sponsors__cta-button:hover .pfc-sponsors__cta-arrow,
.pfc-sponsors__cta-button:focus .pfc-sponsors__cta-arrow {
  transform: translateX(2px);
}


/* Tablet */

@media screen and (max-width: 900px) {
  .pfc-sponsors__grid {
    grid-template-columns: repeat(3, minmax(135px, 1fr));
  }

  .pfc-sponsors__grid--featured {
    grid-template-columns: minmax(220px, 340px);
  }

  .pfc-sponsors__cta {
    align-items: flex-start;
  }
}


/* Small tablet */

@media screen and (max-width: 750px) {
  .pfc-sponsors {
    padding: var(--pfc-section-pad-tablet);
  }

  .pfc-sponsors__grid {
    grid-template-columns: repeat(2, minmax(125px, 1fr));
  }

  .pfc-sponsors__grid--featured {
    grid-template-columns: minmax(200px, 320px);
  }

  .pfc-sponsors__cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pfc-sponsors__cta-button {
    justify-self: start;
  }
}


/* Mobile */

@media screen and (max-width: 500px) {
  .pfc-sponsors {
    padding: var(--pfc-section-pad-mobile);
  }

  .pfc-sponsors__heading {
    margin-bottom: 24px;
  }

  .pfc-sponsors__grid,
  .pfc-sponsors__grid--featured {
    grid-template-columns: 1fr;
  }

  .pfc-sponsors__logo-card {
    min-height: 88px;
  }

  .pfc-sponsors__logo-card--featured {
    min-height: 110px;
  }

  .pfc-sponsors__cta {
    padding: 21px;
  }

  .pfc-sponsors__cta-button {
    width: 100%;
  }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .pfc-sponsors__logo-card,
  .pfc-sponsors__cta-button,
  .pfc-sponsors__cta-arrow {
    transition: none;
  }

  .pfc-sponsors__logo-card:hover,
  .pfc-sponsors__cta-button:hover,
  .pfc-sponsors__cta-button:focus {
    transform: none;
  }
}

/* ============================================================
   EVENT HIGHLIGHTS
============================================================= */

.pfc-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pfc-highlights__photo {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 245px;
  overflow: hidden;
  background-color: var(--pfc-purple);
  border: 1px solid #e2d8f0;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(81, 40, 136, 0.08);
  color: var(--pfc-white) !important;
  text-decoration: none !important;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pfc-highlights__photo:hover,
.pfc-highlights__photo:focus {
  border-color: #bca2df;
  box-shadow: 0 10px 27px rgba(81, 40, 136, 0.16);
  color: var(--pfc-white) !important;
  text-decoration: none !important;
  transform: translateY(-3px);
}

.pfc-highlights__photo:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 4px;
}

.pfc-highlights__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 350ms ease,
    filter 250ms ease;
}

.pfc-highlights__photo:hover .pfc-highlights__image,
.pfc-highlights__photo:focus .pfc-highlights__image {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.pfc-highlights__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(26, 26, 46, 0.02) 25%,
      rgba(50, 25, 85, 0.18) 53%,
      rgba(81, 40, 136, 0.93) 100%
    );
}

.pfc-highlights__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 48px 22px 18px;
  color: var(--pfc-white);
}

.pfc-highlights__caption-label {
  display: block;
  color: var(--pfc-white);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.3;
}

.pfc-highlights__caption-detail {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.pfc-highlights__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 20px;
}

.pfc-highlights__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pfc-purple) !important;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none !important;
}

.pfc-highlights__link:hover,
.pfc-highlights__link:focus {
  color: var(--pfc-purple-dark) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.pfc-highlights__link:focus-visible {
  outline: 3px solid var(--pfc-purple);
  outline-offset: 4px;
  border-radius: 2px;
}

.pfc-highlights__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--pfc-purple);
  background-color: #ebe2f8;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 150ms ease;
}

.pfc-highlights__link:hover .pfc-highlights__link-icon,
.pfc-highlights__link:focus .pfc-highlights__link-icon {
  transform: translateY(-1px);
}

/* ============================================================
   FAQ
============================================================= */

.pfc-faq {
  width: 100%;
  padding: var(--pfc-section-pad);
  background-color: var(--pfc-white);
}

.pfc-faq *,
.pfc-faq *::before,
.pfc-faq *::after {
  box-sizing: border-box;
}


/* ------------------------------------------------------------
   SECTION HEADING
------------------------------------------------------------- */

.pfc-faq__heading {
  margin-bottom: 24px;
}

.pfc-faq__eyebrow {
  margin: 0 0 7px !important;
  color: var(--pfc-text-soft) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.pfc-faq__title {
  margin: 0 !important;
  color: var(--pfc-text) !important;
  font-family: inherit !important;
  font-size: clamp(1.65rem, 3vw, 2.25rem) !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.015em !important;
}


/* ------------------------------------------------------------
   FAQ LIST
------------------------------------------------------------- */

.pfc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


/* ------------------------------------------------------------
   FAQ ITEM
------------------------------------------------------------- */

.pfc-faq details.pfc-faq__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7dff3;
  border-radius: 11px;
  box-shadow: none;
}

.pfc-faq details.pfc-faq__item:hover {
  border-color: #c8b3e7;
}

.pfc-faq details.pfc-faq__item[open] {
  border-color: #d5c5e9;
}


/* ------------------------------------------------------------
   QUESTION
------------------------------------------------------------- */

.pfc-faq summary.pfc-faq__question {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  width: 100%;
  margin: 0 !important;
  padding: 15px 20px !important;

  color: #1a1a2e !important;
  background: #ffffff !important;
  border: 0 !important;

  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  cursor: pointer;
  list-style: none !important;
  text-decoration: none !important;
}

/* Chrome / Safari disclosure marker */
.pfc-faq summary.pfc-faq__question::-webkit-details-marker {
  display: none !important;
}

/* Firefox / modern marker */
.pfc-faq summary.pfc-faq__question::marker {
  content: "" !important;
  font-size: 0 !important;
}

/* Open question */
.pfc-faq details[open] > summary.pfc-faq__question {
  color: #512888 !important;
  border-bottom: 1px solid #f0ecfa !important;
}

/* Hover */
.pfc-faq summary.pfc-faq__question:hover {
  color: #512888 !important;
  background: #faf8fd !important;
}

/* Keyboard focus */
.pfc-faq summary.pfc-faq__question:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid #512888;
  outline-offset: -3px;
}


/* ------------------------------------------------------------
   PLUS / MINUS ICON
------------------------------------------------------------- */

.pfc-faq__toggle {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.pfc-faq__toggle::before,
.pfc-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 14px;
  height: 2px;

  background-color: #78658f;
  border-radius: 2px;

  content: "";

  transform: translate(-50%, -50%);
  transform-origin: center;

  transition:
    transform 200ms ease,
    background-color 200ms ease;
}

/* vertical portion of + */
.pfc-faq__toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.pfc-faq details[open] .pfc-faq__toggle::before,
.pfc-faq details[open] .pfc-faq__toggle::after {
  background-color: #512888;
}

.pfc-faq details[open] .pfc-faq__toggle {
  transform: rotate(45deg);
}


/* ------------------------------------------------------------
   ANSWER — SMOOTH OPEN / CLOSE
------------------------------------------------------------- */

.pfc-faq {
  interpolate-size: allow-keywords;
}

.pfc-faq details.pfc-faq__item::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    block-size 320ms cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 180ms ease,
    content-visibility 320ms allow-discrete;

  transition-behavior: allow-discrete;
}

.pfc-faq details.pfc-faq__item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pfc-faq details.pfc-faq__item::details-content,
  .pfc-faq__toggle,
  .pfc-faq__toggle::before,
  .pfc-faq__toggle::after {
    transition: none;
  }
}

.pfc-faq__answer {
  margin: 0 !important;
  padding: 14px 20px 16px !important;
  background: #ffffff;
}

.pfc-faq__answer p {
  margin: 0 !important;
  padding: 0 !important;
  color: #5f5b72 !important;
  font-size: 0.93rem !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

/* ------------------------------------------------------------
   TABLET
------------------------------------------------------------- */

@media screen and (max-width: 800px) {
  .pfc-faq {
    padding: var(--pfc-section-pad-tablet);
  }
}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------- */

@media screen and (max-width: 600px) {
  .pfc-faq {
    padding: var(--pfc-section-pad-mobile);
  }

  .pfc-faq__heading {
    margin-bottom: 20px;
  }

  .pfc-faq summary.pfc-faq__question {
    padding: 15px 17px !important;
    font-size: 0.94rem !important;
  }

  .pfc-faq__answer {
    padding: 14px 17px 16px !important;
  }
}


/* ------------------------------------------------------------
   REDUCED MOTION
------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .pfc-faq__toggle,
  .pfc-faq__toggle::before,
  .pfc-faq__toggle::after {
    transition: none;
  }
}

/* ============================================================
   BOTTOM CTA
============================================================= */

.pfc-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: 100%;
  padding: 40px 36px;
  color: #ffffff;
  background-color: #1a1a2e;
}

.pfc-bottom-cta *,
.pfc-bottom-cta *::before,
.pfc-bottom-cta *::after {
  box-sizing: border-box;
}


/* ------------------------------------------------------------
   CONTENT
------------------------------------------------------------- */

.pfc-bottom-cta__content {
  min-width: 0;
}

.pfc-bottom-cta__title {
  margin: 0 0 7px;
  color: #ffffff !important;
  font-family: inherit;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.pfc-bottom-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.96rem;
  line-height: 1.55;
}


/* ------------------------------------------------------------
   LINKEDIN
------------------------------------------------------------- */

.pfc-bottom-cta__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none !important;
  transition:
    color 150ms ease,
    transform 150ms ease;
}

.pfc-bottom-cta__linkedin:hover,
.pfc-bottom-cta__linkedin:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.pfc-bottom-cta__linkedin:focus-visible {
  outline: 3px solid #cdb5f3;
  outline-offset: 4px;
  border-radius: 3px;
}


/* CSS-drawn LinkedIn badge */

.pfc-bottom-cta__linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: #1a1a2e;
  background-color: #cdb5f3;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}


/* ------------------------------------------------------------
   BUTTON GROUP
------------------------------------------------------------- */

.pfc-bottom-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}


/* ------------------------------------------------------------
   SHARED BUTTON STYLES
------------------------------------------------------------- */

.pfc-bottom-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: var(--pfc-radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    transform 150ms ease,
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.pfc-bottom-cta__button:hover,
.pfc-bottom-cta__button:focus {
  text-decoration: none !important;
  transform: translateY(-1px);
}

.pfc-bottom-cta__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}


/* ------------------------------------------------------------
   CONTACT BUTTON
------------------------------------------------------------- */

.pfc-bottom-cta__button--secondary {
  color: rgba(255, 255, 255, 0.90) !important;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.30);
}

.pfc-bottom-cta__button--secondary:hover,
.pfc-bottom-cta__button--secondary:focus {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.50);
}


/* ------------------------------------------------------------
   REGISTER BUTTON
------------------------------------------------------------- */

.pfc-bottom-cta__button--primary {
  color: #ffffff !important;
  background-color: var(--pfc-purple);
  border-color: var(--pfc-purple);
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.18);
}

.pfc-bottom-cta__button--primary:hover,
.pfc-bottom-cta__button--primary:focus {
  color: #ffffff !important;
  background-color: var(--pfc-purple-hover);
  border-color: var(--pfc-purple-hover);
}

.pfc-bottom-cta__arrow {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 150ms ease;
}

.pfc-bottom-cta__button--primary:hover .pfc-bottom-cta__arrow,
.pfc-bottom-cta__button--primary:focus .pfc-bottom-cta__arrow {
  transform: translateX(3px);
}


/* ------------------------------------------------------------
   TABLET
------------------------------------------------------------- */

@media screen and (max-width: 800px) {
  .pfc-bottom-cta {
    align-items: flex-start;
    padding: 36px 28px;
  }
}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------- */

@media screen and (max-width: 650px) {
  .pfc-bottom-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px;
  }

  .pfc-bottom-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pfc-bottom-cta__button {
    width: 100%;
  }

  .pfc-bottom-cta__linkedin {
    align-items: flex-start;
  }
}


/* ------------------------------------------------------------
   REDUCED MOTION
------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .pfc-bottom-cta__linkedin,
  .pfc-bottom-cta__button,
  .pfc-bottom-cta__arrow {
    transition: none;
  }

  .pfc-bottom-cta__button:hover,
  .pfc-bottom-cta__button:focus {
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE STYLES
============================================================= */

@media screen and (max-width: 900px) {
  .pfc-sic__card {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 850px) {
  .pfc-hero {
    min-height: 570px;
  }

  .pfc-hero__overlay {
    background:
      linear-gradient(
        to right,
        rgba(81, 40, 136, 0.96) 0%,
        rgba(81, 40, 136, 0.87) 58%,
        rgba(81, 40, 136, 0.52) 100%
      );
  }

  .pfc-hero__content {
    max-width: 700px;
    padding: 46px 32px 36px;
  }

  .pfc-hero__stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .pfc-cta-band {
    align-items: flex-start;
    padding: 28px;
  }

  .pfc-cta-band__actions {
    justify-content: flex-start;
  }

  .pfc-visit {
    padding: var(--pfc-section-pad-tablet);
  }

  .pfc-visit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfc-visit__card:last-child {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 800px) {
  .pfc-who,
  .pfc-testimonials,
  .pfc-highlights {
    padding: var(--pfc-section-pad-tablet);
  }

  .pfc-who__grid,
  .pfc-testimonials__grid,
  .pfc-highlights__grid {
    gap: 14px;
  }

  .pfc-who__card {
    padding: 20px 20px 22px;
  }

  .pfc-testimonials__card {
    padding: 21px;
  }

  .pfc-highlights__photo {
    min-height: 220px;
  }
}

@media screen and (max-width: 650px) {
  .pfc-cta-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .pfc-cta-band__title {
    font-size: 1.25rem;
  }

  .pfc-cta-band__separator {
    display: none;
  }

  .pfc-cta-band__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pfc-cta-band__button {
    width: 100%;
  }

  .pfc-testimonials {
    padding: var(--pfc-section-pad-mobile);
  }

  .pfc-testimonials__heading {
    margin-bottom: 20px;
  }

  .pfc-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pfc-testimonials__card {
    padding: 20px;
  }

  .pfc-testimonials__portrait-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

@media screen and (max-width: 600px) {
  .pfc-hero {
    min-height: 680px;
    align-items: flex-end;
    border-radius: 8px;
  }

  .pfc-hero__image {
    object-position: 62% top;
  }

  .pfc-hero__overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(81, 40, 136, 0.48) 0%,
        rgba(81, 40, 136, 0.83) 31%,
        rgba(81, 40, 136, 0.98) 68%,
        rgba(81, 40, 136, 1) 100%
      );
  }

  .pfc-hero__content {
    padding: 34px 22px 30px;
  }

  .pfc-hero__badge {
    margin-bottom: 17px;
    font-size: 0.69rem;
  }

  .pfc-hero__title {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .pfc-hero__title br {
    display: none;
  }

  .pfc-hero__description {
    font-size: 1rem;
    line-height: 1.55;
  }

  .pfc-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pfc-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pfc-hero__button {
    width: 100%;
  }

  .pfc-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    margin-top: 30px;
  }

  .pfc-hero__stat-number {
    font-size: 1.4rem;
  }

  .pfc-hero__stat-label {
    font-size: 0.63rem;
  }

  .pfc-who,
  .pfc-visit,
  .pfc-sic,
  .pfc-highlights {
    padding: var(--pfc-section-pad-mobile);
  }

  .pfc-who__heading,
  .pfc-visit__heading,
  .pfc-highlights__heading {
    margin-bottom: 20px;
  }

  .pfc-who__grid,
  .pfc-visit__grid,
  .pfc-highlights__grid {
    grid-template-columns: 1fr;
  }

  .pfc-who__card {
    padding: 20px;
  }

  .pfc-who__icon {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .pfc-visit__card,
  .pfc-visit__card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 21px;
  }

  .pfc-visit__icon {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .pfc-sic__card {
    gap: 22px;
    padding: 20px;
  }

  .pfc-sic__title {
    font-size: 1.45rem;
  }

  .pfc-highlights__photo {
    min-height: 225px;
  }

  .pfc-highlights__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .pfc-highlights__link {
    align-items: flex-start;
  }
}


/* ============================================================
   TOUCH AND REDUCED MOTION
============================================================= */

@media (hover: none) {
  .pfc-who__card::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pfc-hero__badge-dot {
    animation: none;
  }

  .pfc-hero__button,
  .pfc-cta-band__button,
  .pfc-cta-band__arrow,
  .pfc-who__card,
  .pfc-who__card::before,
  .pfc-testimonials__card,
  .pfc-visit__card,
  .pfc-visit__card::before,
  .pfc-visit__arrow,
  .pfc-sic__button,
  .pfc-highlights__photo,
  .pfc-highlights__image,
  .pfc-highlights__link-icon {
    transition: none;
  }

  .pfc-hero__button:hover,
  .pfc-hero__button:focus,
  .pfc-cta-band__button:hover,
  .pfc-cta-band__button:focus,
  .pfc-who__card:hover,
  .pfc-testimonials__card:hover,
  .pfc-visit__card:hover,
  .pfc-visit__card:focus,
  .pfc-sic__button:hover,
  .pfc-sic__button:focus,
  .pfc-highlights__photo:hover,
  .pfc-highlights__photo:focus,
  .pfc-highlights__photo:hover .pfc-highlights__image,
  .pfc-highlights__photo:focus .pfc-highlights__image,
  .pfc-highlights__link:hover .pfc-highlights__link-icon,
  .pfc-highlights__link:focus .pfc-highlights__link-icon {
    transform: none;
  }
}
