/* FGI Roundtables landing page
 * AIDEV-NOTE: fgi-roundtables-styles; mirrors sponsorship page design system, scoped under .fgi-roundtables-page
 */

:root {
  --psn-blue: #005fbf;
  --psn-hero-blue: #1c7dff;
  --psn-midnight: #020b25;
  --psn-navy: #0b2d66;
  --psn-orange: #ff7a21;
  --psn-ice: #f2f7fb;
  --psn-slate: #0e2238;
  --psn-muted: #6c7d92;
  --psn-lilac: #c188ff;
  --psn-purple: #6b46c1;
  --nav-height: calc(2rem + 2.5rem);
}

/* ------------------------------------------------
   1. Base styles
   ------------------------------------------------ */
.fgi-roundtables-page {
  background-color: #ffffff;
  color: var(--psn-slate);
}

html {
  scroll-behavior: smooth;
}

.fgi-roundtables-page section[id] {
  scroll-margin-top: var(--nav-height);
}

.fgi-roundtables-page h1,
.fgi-roundtables-page h2,
.fgi-roundtables-page h3 {
  color: var(--psn-slate);
  font-weight: 700;
}

.fgi-roundtables-page p {
  color: var(--psn-muted);
}

/* ------------------------------------------------
   2. Eyebrow
   ------------------------------------------------ */
.fgi-roundtables-page .eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--psn-orange);
  margin-bottom: 0.5rem;
}

/* ------------------------------------------------
   3. Section heading with underline
   ------------------------------------------------ */
.fgi-roundtables-page .section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.fgi-roundtables-page .section-heading h2 {
  position: relative;
  display: inline-block;
  white-space: normal;
  text-wrap: balance;
}

.fgi-roundtables-page .section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--psn-blue), rgba(28, 125, 255, 0.6));
  border-radius: 2px;
}

.fgi-roundtables-page .section-heading p {
  margin-bottom: 0;
}

/* ------------------------------------------------
   4. Buttons
   ------------------------------------------------ */
.fgi-roundtables-page .btn-primary-blue {
  background: var(--psn-hero-blue);
  border-color: var(--psn-hero-blue);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 18px 38px rgba(28, 125, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fgi-roundtables-page .btn-primary-blue:hover,
.fgi-roundtables-page .btn-primary-blue:focus {
  background: #0c63e6;
  border-color: #0c63e6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(28, 125, 255, 0.28);
}

.fgi-roundtables-page .btn-outline-light {
  border-radius: 0.75rem;
  font-weight: 600;
  border-width: 2px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 0.85rem 2.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.fgi-roundtables-page .btn-outline-light:hover {
  color: var(--psn-navy);
  background: #ffffff;
}

/* ------------------------------------------------
   5. Sticky nav
   ------------------------------------------------ */
.fgi-roundtables-page .roundtables-nav {
  background: #fff;
  border-bottom: 1px solid #e6edf3;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fgi-roundtables-page .roundtables-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.fgi-roundtables-page .roundtables-nav .nav-links li {
  margin: 0;
}

.fgi-roundtables-page .roundtables-nav .nav-links a {
  color: var(--psn-slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  display: block;
}

.fgi-roundtables-page .roundtables-nav .nav-links a:hover {
  color: var(--psn-blue);
}

/* ------------------------------------------------
   6. Hero
   ------------------------------------------------ */
.fgi-roundtables-page .hero {
  background: #001a2e;
  overflow: hidden;
  min-height: clamp(520px, 68vh, 720px);
  display: flex;
  align-items: center;
}

.fgi-roundtables-page .hero .hero-container {
  width: 100%;
  padding-block: clamp(5rem, 8vw, 9rem);
  position: relative;
  z-index: 1;
}

.fgi-roundtables-page .hero .row {
  min-height: clamp(420px, 52vh, 560px);
}

.fgi-roundtables-page .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.fgi-roundtables-page .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 1rem;
}

.fgi-roundtables-page .hero-title {
  font-size: clamp(2.75rem, 3vw + 1.75rem, 3.9rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.fgi-roundtables-page .hero-highlight {
  color: #c39bff;
}

.fgi-roundtables-page .hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.fgi-roundtables-page .hero-cta .btn {
  min-width: 190px;
}

.fgi-roundtables-page .hero-btn {
  border-radius: 0.75rem;
  padding: 0.85rem 2.1rem;
  font-size: 1rem;
}

.fgi-roundtables-page .hero .btn-primary-blue {
  background: var(--psn-hero-blue);
  border-color: var(--psn-hero-blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(28, 125, 255, 0.28);
}

.fgi-roundtables-page .hero .btn-primary-blue:hover {
  background: #0c63e6;
  border-color: #0c63e6;
}

.fgi-roundtables-page .hero-media {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
}

.fgi-roundtables-page .hero-media-backdrop {
  position: absolute;
  inset: -30px 0 -30px 40px;
  background: linear-gradient(140deg, rgba(5, 40, 70, 0.85), rgba(24, 76, 117, 0.35));
  border-radius: 48px;
  z-index: 0;
}

.fgi-roundtables-page .hero-media-image {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 36px;
  border: 6px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* ------------------------------------------------
   7. Proof strip (static logos, no carousel)
   ------------------------------------------------ */
.fgi-roundtables-page .proof-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
}

.fgi-roundtables-page .proof-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 95, 191, 0.1) 50%, transparent);
}

.fgi-roundtables-page .proof-strip .section-heading {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

{# AIDEV-NOTE: logo-carousel; infinite-scroll carousel copied from sponsorship.css — keep synchronized #}
.fgi-roundtables-page .proof-strip .logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 1.5rem 0;
  min-height: 140px;
}

.fgi-roundtables-page .proof-strip .logo-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: fgi-scroll-logos linear infinite;
  animation-duration: calc(var(--logo-count, 10) * 6s);
  width: fit-content;
}

.fgi-roundtables-page .proof-strip .logo-track:hover {
  animation-play-state: paused;
}

.fgi-roundtables-page .proof-strip .partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fgi-roundtables-page .proof-strip .partner-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 95, 191, 0.15);
}

.fgi-roundtables-page .proof-strip .partner-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes fgi-scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------------
   7b. What & Why section (background image with text overlay)
   ------------------------------------------------ */
.fgi-roundtables-page .what-why-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  padding: 5rem 0;
  overflow: hidden;
}

.fgi-roundtables-page .what-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.95) 55%, rgba(255, 255, 255, 0.4) 75%, transparent 90%);
  z-index: 1;
}

.fgi-roundtables-page .what-why-content {
  max-width: 640px;
}

.fgi-roundtables-page .what-why-content .section-heading h2::after {
  left: 0;
  transform: none;
}

.fgi-roundtables-page .what-why-content p {
  line-height: 1.7;
}

/* ------------------------------------------------
   8. Value tiles (glass-morphism on dark bg)
   ------------------------------------------------ */
.fgi-roundtables-page .value-tiles-section {
  background: linear-gradient(135deg, #14334a 0%, #0b2d66 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.fgi-roundtables-page .value-tiles-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 125, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .value-tiles-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .value-tiles-section .section-heading h2 {
  color: #ffffff;
}

.fgi-roundtables-page .value-tiles-section .section-heading h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
}

.fgi-roundtables-page .value-tiles-section .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.fgi-roundtables-page .value-tiles-section .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.fgi-roundtables-page .value-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.fgi-roundtables-page .value-tile {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fgi-roundtables-page .value-tile:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.fgi-roundtables-page .value-tile-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 1.75rem;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.fgi-roundtables-page .value-tile:hover .value-tile-icon {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.fgi-roundtables-page .value-tile h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.fgi-roundtables-page .value-tile p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.fgi-roundtables-page .value-tile-title {
  background: linear-gradient(135deg, rgba(28, 125, 255, 0.9), rgba(0, 95, 191, 0.9));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(28, 125, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  margin: 0;
}

.fgi-roundtables-page .value-tile-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* ------------------------------------------------
   9. Who It Is For
   ------------------------------------------------ */
.fgi-roundtables-page .who-for {
  background: var(--psn-ice);
  padding: 5rem 0;
}

.fgi-roundtables-page .who-for .section-heading {
  text-align: left;
  max-width: none;
  margin: 0 0 1.5rem;
}

.fgi-roundtables-page .who-for .section-heading h2::after {
  left: 0;
  transform: none;
}

.fgi-roundtables-page .who-for-intro {
  font-size: 1.05rem;
  color: var(--psn-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.fgi-roundtables-page .who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 960px;
}

.fgi-roundtables-page .who-for-item {
  border-left: 3px solid var(--psn-hero-blue);
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--psn-slate);
  line-height: 1.5;
  background: rgba(0, 95, 191, 0.03);
  border-radius: 0 6px 6px 0;
  text-align: left;
  width: 100%;
}

.fgi-roundtables-page .who-for-item:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------
   10. Format section
   ------------------------------------------------ */
.fgi-roundtables-page .format-card {
  background: #ffffff;
  border: 1px solid rgba(0, 95, 191, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 79, 146, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fgi-roundtables-page .format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 79, 146, 0.1);
}

.fgi-roundtables-page .format-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--psn-blue), var(--psn-hero-blue));
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fgi-roundtables-page .format-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.fgi-roundtables-page .format-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------
   11. Pillar / outcome cards (Gov 3.0 pillars)
   ------------------------------------------------ */
.fgi-roundtables-page .pillars-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  position: relative;
  padding: 5rem 0;
}

.fgi-roundtables-page .pillars-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.04), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .pillar-card {
  border: 1px solid rgba(0, 95, 191, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 20px 40px rgba(0, 79, 146, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fgi-roundtables-page .pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(28, 125, 255, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(40%, -40%);
  transition: transform 0.3s ease;
}

.fgi-roundtables-page .pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 79, 146, 0.15);
  border-color: rgba(28, 125, 255, 0.15);
}

.fgi-roundtables-page .pillar-card:hover::before {
  transform: translate(30%, -30%);
}

.fgi-roundtables-page .pillar-card-icon {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 95, 191, 0.85), rgba(28, 125, 255, 0.85));
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.fgi-roundtables-page .pillar-card h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.fgi-roundtables-page .pillar-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ------------------------------------------------
   12. WIFM Government section
   ------------------------------------------------ */
.fgi-roundtables-page .wifm-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 50%, #f8fbfd 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.fgi-roundtables-page .wifm-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.08), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .wifm-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .wifm-section .cta-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 79, 146, 0.12), 0 8px 24px rgba(0, 79, 146, 0.08);
  border: 1px solid rgba(0, 95, 191, 0.08);
}

.fgi-roundtables-page .wifm-section .cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--psn-blue), var(--psn-hero-blue), var(--psn-orange));
  border-radius: 24px 24px 0 0;
}

.fgi-roundtables-page .cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  flex: 1 1 auto;
}

.fgi-roundtables-page .cta-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(0, 95, 191, 0.05);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(0, 95, 191, 0.1);
  box-shadow: 0 18px 32px rgba(0, 79, 146, 0.08);
}

.fgi-roundtables-page .cta-benefit + .cta-benefit {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 95, 191, 0.06);
  padding-top: 1rem;
}

.fgi-roundtables-page .cta-benefit-icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 95, 191, 0.18), rgba(255, 122, 33, 0.18));
  color: var(--psn-slate);
  font-size: 1.75rem;
  margin-top: 0.15rem;
}

.fgi-roundtables-page .cta-benefit-title {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--psn-slate);
}

.fgi-roundtables-page .cta-benefit-copy {
  color: var(--psn-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.fgi-roundtables-page .cta-benefit > div:last-child {
  flex: 1 1 auto;
}

.fgi-roundtables-page .cta-sidecard {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid rgba(0, 95, 191, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 79, 146, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}

.fgi-roundtables-page .cta-sidecard::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.fgi-roundtables-page .cta-sidecard-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--psn-slate);
  margin-bottom: 1.5rem;
}

.fgi-roundtables-page .cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fgi-roundtables-page .cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--psn-muted);
  margin-bottom: 0.95rem;
}

.fgi-roundtables-page .cta-checklist li:last-child {
  margin-bottom: 0;
}

.fgi-roundtables-page .cta-checklist i {
  flex: 0 0 auto;
  color: var(--psn-hero-blue);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* ------------------------------------------------
   13. Session cards (content-only, no image)
   ------------------------------------------------ */
.fgi-roundtables-page .sessions-section {
  background: linear-gradient(135deg, #eef5f9 0%, #e8f2f8 50%, #f0f6fa 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.fgi-roundtables-page .sessions-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.05), transparent 65%);
  pointer-events: none;
}

.fgi-roundtables-page .session-card {
  border: 1px solid rgba(0, 95, 191, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 79, 146, 0.08), 0 2px 6px rgba(0, 79, 146, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.fgi-roundtables-page .session-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--psn-blue), var(--psn-hero-blue));
  z-index: 1;
}

.fgi-roundtables-page .session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 79, 146, 0.12), 0 4px 8px rgba(0, 79, 146, 0.06);
}

.fgi-roundtables-page .session-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
}

.fgi-roundtables-page .session-content h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--psn-slate);
  font-weight: 700;
}

.fgi-roundtables-page .session-content > p {
  line-height: 1.65;
  color: var(--psn-slate);
  font-size: 1rem;
  opacity: 0.85;
}

.fgi-roundtables-page .session-content details {
  border: 1px solid rgba(0, 95, 191, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  margin-top: auto;
}

.fgi-roundtables-page .session-content details[open] {
  border-color: rgba(0, 95, 191, 0.2);
}

.fgi-roundtables-page .session-content details summary {
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--psn-slate);
  cursor: pointer;
  background: rgba(0, 95, 191, 0.04);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}

.fgi-roundtables-page .session-content details summary::-webkit-details-marker {
  display: none;
}

.fgi-roundtables-page .session-content details summary::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--psn-hero-blue);
  transition: transform 0.2s ease;
}

.fgi-roundtables-page .session-content details[open] summary::before {
  transform: rotate(90deg);
}

.fgi-roundtables-page .session-content details summary:hover {
  background: rgba(0, 95, 191, 0.08);
}

.fgi-roundtables-page .session-content details .details-body {
  padding: 1rem 1.25rem;
}

.fgi-roundtables-page .session-content details .details-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--psn-slate);
  margin: 0.75rem 0 0.5rem;
}

.fgi-roundtables-page .session-content details .details-body h4:first-child {
  margin-top: 0;
}

.fgi-roundtables-page .session-content details .details-body ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.fgi-roundtables-page .session-content details .details-body ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--psn-muted);
  line-height: 1.55;
}

.fgi-roundtables-page .session-content details .details-body ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--psn-hero-blue);
  font-weight: 700;
}

/* ------------------------------------------------
   14. Outputs section
   ------------------------------------------------ */
.fgi-roundtables-page .outputs-section {
  background: var(--psn-ice);
  padding: 5rem 0;
}

.fgi-roundtables-page .outputs-intro {
  font-size: 1.05rem;
  color: var(--psn-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.fgi-roundtables-page .outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fgi-roundtables-page .output-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.fgi-roundtables-page .output-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--psn-blue);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
}

.fgi-roundtables-page .output-item-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--psn-slate);
  margin: 0;
}

.fgi-roundtables-page .output-item-desc {
  font-size: 0.92rem;
  color: var(--psn-muted);
  line-height: 1.55;
  margin: 0;
}

/* ------------------------------------------------
   15. House rules
   ------------------------------------------------ */
.fgi-roundtables-page .house-rules {
  background: #ffffff;
  padding: 5rem 0;
}

.fgi-roundtables-page .house-rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.fgi-roundtables-page .house-rule {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.fgi-roundtables-page .house-rule-icon {
  flex: 0 0 auto;
  color: var(--psn-orange);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.fgi-roundtables-page .house-rule-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--psn-slate);
  margin-bottom: 0.25rem;
}

.fgi-roundtables-page .house-rule-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ------------------------------------------------
   16. Prework section
   ------------------------------------------------ */
.fgi-roundtables-page .prework-section {
  background: var(--psn-ice);
  padding: 5rem 0;
}

.fgi-roundtables-page .prework-steps {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: prework-step;
}

.fgi-roundtables-page .prework-step {
  counter-increment: prework-step;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.fgi-roundtables-page .prework-step:last-child {
  margin-bottom: 0;
}

.fgi-roundtables-page .prework-step-number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--psn-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
}

.fgi-roundtables-page .prework-step-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--psn-slate);
  margin-bottom: 0.25rem;
}

.fgi-roundtables-page .prework-step-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ------------------------------------------------
   17. Schedule section
   ------------------------------------------------ */
.fgi-roundtables-page .schedule-section {
  background: #ffffff;
  padding: 5rem 0;
}

.fgi-roundtables-page .schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fgi-roundtables-page .schedule-tile {
  background: #ffffff;
  border: 1px solid #e6edf3;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fgi-roundtables-page .schedule-tile .card-img-top {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.fgi-roundtables-page .schedule-tile .card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.fgi-roundtables-page .schedule-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 79, 146, 0.1);
}

/* TinySlider carousel for >3 roundtable tiles */
.fgi-roundtables-page .fgi-roundtable-tiles-wrapper {
  position: relative;
}

.fgi-roundtables-page .fgi-roundtable-tiles-wrapper .fgi-roundtable-slide {
  padding: 0 0.25rem;
}

.fgi-roundtables-page .fgi-slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.fgi-roundtables-page .fgi-slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e6edf3;
  background: #fff;
  color: var(--psn-slate);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.fgi-roundtables-page .fgi-slider-controls button:hover {
  background: var(--psn-hero-blue);
  color: #fff;
  border-color: var(--psn-hero-blue);
  box-shadow: 0 4px 12px rgba(28, 125, 255, 0.25);
}

.fgi-roundtables-page .fgi-slider-controls button[disabled] {
  opacity: 0.4;
  cursor: default;
  background: #fff;
  color: var(--psn-slate);
  border-color: #e6edf3;
  box-shadow: none;
}

.fgi-roundtables-page .fgi-roundtable-tiles-wrapper .tns-nav {
  text-align: center;
  margin-top: 1rem;
}

.fgi-roundtables-page .fgi-roundtable-tiles-wrapper .tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d9e0;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fgi-roundtables-page .fgi-roundtable-tiles-wrapper .tns-nav button.tns-nav-active {
  background: var(--psn-hero-blue);
}

.fgi-roundtables-page .schedule-tile-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--psn-muted);
}

.fgi-roundtables-page .schedule-tile-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--psn-slate);
}

.fgi-roundtables-page .schedule-tile .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Flag fallback when no image is set but a country is chosen */
.fgi-roundtables-page .fgi-roundtable-flag-fallback {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--psn-ice);
  overflow: hidden;
}

.fgi-roundtables-page .fgi-roundtable-flag-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

/* Location + date meta line */
.fgi-roundtables-page .fgi-roundtable-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-size: 0.9rem;
  color: var(--psn-muted);
}

.fgi-roundtables-page .fgi-roundtable-meta i {
  margin-right: 0.3rem;
  color: var(--psn-hero-blue);
}

/* ------------------------------------------------
   18. CTA band (fellowship CTA)
   ------------------------------------------------ */
.fgi-roundtables-page .fellowship-cta {
  background: linear-gradient(135deg, #14334a 0%, #0b2d66 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.fgi-roundtables-page .fellowship-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 125, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .fellowship-cta::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.08), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .fellowship-cta .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.fgi-roundtables-page .fellowship-cta h2 {
  color: #fff;
  font-weight: 700;
}

.fgi-roundtables-page .fellowship-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.fgi-roundtables-page .fellowship-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.fgi-roundtables-page .fellowship-cta .btn-light {
  border-radius: 50px;
  font-weight: 700;
  padding: 0.9rem 2rem;
  background: #fff;
  color: var(--psn-blue);
  border: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fgi-roundtables-page .fellowship-cta .btn-light:hover {
  background: #fff;
  color: var(--psn-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

.fgi-roundtables-page .fellowship-cta .btn-outline-light {
  border-radius: 50px;
  padding: 0.9rem 2rem;
}

/* ------------------------------------------------
   19. Industry partners (how / closing-cta style)
   ------------------------------------------------ */
.fgi-roundtables-page .industry-how {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 50%, #f8fbfd 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.fgi-roundtables-page .industry-how::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.08), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .industry-how::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
}

.fgi-roundtables-page .industry-how .cta-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 79, 146, 0.12), 0 8px 24px rgba(0, 79, 146, 0.08);
  border: 1px solid rgba(0, 95, 191, 0.08);
}

.fgi-roundtables-page .industry-how .cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--psn-blue), var(--psn-hero-blue), var(--psn-orange));
  border-radius: 24px 24px 0 0;
}

.fgi-roundtables-page .industry-how .cta-checklist i {
  color: var(--psn-orange);
}

.fgi-roundtables-page .industry-value {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 95, 191, 0.1);
  font-style: italic;
  color: var(--psn-muted);
  font-size: 0.95rem;
}

/* ------------------------------------------------
   20. Bottom CTA
   ------------------------------------------------ */
.fgi-roundtables-page .bottom-cta {
  background: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.fgi-roundtables-page .bottom-cta h2 {
  margin-bottom: 1rem;
}

.fgi-roundtables-page .bottom-cta p {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.fgi-roundtables-page .bottom-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ------------------------------------------------
   21. HubSpot modal overrides
   ------------------------------------------------ */
.fgi-roundtables-page .hs-form-modal .modal-content {
  border-radius: 16px;
}

.fgi-roundtables-page .hs-form-modal .modal-header {
  border-bottom-color: #e6edf3;
}

.fgi-roundtables-page .hs-form-modal .modal-body {
  padding: 1.5rem;
}

/* ------------------------------------------------
   22. Responsive breakpoints
   ------------------------------------------------ */

/* Tablet: <= 991.98px */
@media (max-width: 991.98px) {
  .fgi-roundtables-page .hero-media {
    margin: 0 auto;
  }

  .fgi-roundtables-page .hero-media-backdrop {
    inset: -40px -40px -50px 20px;
  }

  .fgi-roundtables-page .roundtables-nav .nav-links {
    gap: 1.5rem;
  }

  .fgi-roundtables-page .value-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fgi-roundtables-page .pillar-card {
    margin-bottom: 1.5rem;
  }

  .fgi-roundtables-page .outputs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fgi-roundtables-page .cta-benefit {
    flex-direction: column;
    align-items: flex-start;
  }

  .fgi-roundtables-page .cta-benefit-icon {
    margin-bottom: 0;
  }
}

/* Desktop up: >= 992px */
@media (min-width: 992px) {
  .fgi-roundtables-page .cta-benefits {
    grid-template-columns: 1fr;
  }

  .fgi-roundtables-page .cta-benefit {
    flex-direction: row;
  }

  .fgi-roundtables-page .cta-benefit-icon {
    margin-bottom: 0;
  }
}

/* Mobile: <= 767.98px */
@media (max-width: 767.98px) {
  :root {
    --nav-height: calc(2rem + 4rem);
  }

  .fgi-roundtables-page .hero {
    text-align: center;
    min-height: auto;
    height: auto;
    padding-block: 2rem 3rem;
    overflow: visible;
  }

  .fgi-roundtables-page .hero .hero-container {
    padding-block: 1.5rem;
  }

  .fgi-roundtables-page .hero-copy {
    align-items: center;
  }

  .fgi-roundtables-page .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .fgi-roundtables-page .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.875rem;
  }

  .fgi-roundtables-page .hero-lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .fgi-roundtables-page .hero-cta {
    align-items: stretch;
    width: 100%;
    gap: 0.75rem !important;
  }

  .fgi-roundtables-page .hero-cta .btn {
    min-width: auto;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .fgi-roundtables-page .hero .row {
    min-height: auto;
  }

  .fgi-roundtables-page .hero-media {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .fgi-roundtables-page .hero-media-backdrop {
    inset: -20px -15px -20px -15px;
  }

  .fgi-roundtables-page .roundtables-nav .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .fgi-roundtables-page .section-heading h2 {
    white-space: normal;
  }

  .fgi-roundtables-page .value-tiles-grid {
    grid-template-columns: 1fr;
  }

  .fgi-roundtables-page .value-tiles-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .who-for-grid {
    grid-template-columns: 1fr;
  }

  .fgi-roundtables-page .pillars-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .wifm-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .wifm-section .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .fgi-roundtables-page .cta-benefit {
    padding: 1.35rem 1.4rem;
    gap: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .fgi-roundtables-page .cta-benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .fgi-roundtables-page .cta-benefit + .cta-benefit {
    margin-top: 0.4rem;
  }

  .fgi-roundtables-page .cta-sidecard {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .fgi-roundtables-page .cta-checklist li {
    text-align: left;
  }

  .fgi-roundtables-page .sessions-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .outputs-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .outputs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fgi-roundtables-page .house-rules {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .prework-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .schedule-section {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .schedule-grid {
    grid-template-columns: 1fr;
  }

  .fgi-roundtables-page .fellowship-cta {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .fellowship-cta .container {
    padding: 2rem 1.5rem;
  }

  .fgi-roundtables-page .fellowship-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .fgi-roundtables-page .fellowship-cta .btn-light,
  .fgi-roundtables-page .fellowship-cta .btn-outline-light {
    width: 100%;
    text-align: center;
  }

  .fgi-roundtables-page .industry-how {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .industry-how .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .fgi-roundtables-page .bottom-cta {
    padding: 3rem 0;
  }

  .fgi-roundtables-page .bottom-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .fgi-roundtables-page .bottom-cta .cta-buttons .btn {
    width: 100%;
  }

  .fgi-roundtables-page .proof-strip {
    padding: 2rem 0;
  }

  .fgi-roundtables-page .proof-strip .partner-logo-item {
    width: 160px;
    height: 80px;
  }

  .fgi-roundtables-page .proof-strip .logo-track {
    gap: 2rem;
  }
}
