/*
Theme Name: ISST Mumbai Theme
Author: Infineural Technologies
Description: Custom WordPress theme for ISST Mumbai, optimized for Google Ads structure.
Version: 1.1.0
*/

:root {
  /* ISST admissions.isst.co.in purple scheme (matches the Layout v2 pages) */
  --navy: #24063F;        /* deep purple  */
  --navy-mid: #50197F;    /* mid purple   */
  --navy-light: #6B2C9E;  /* light purple */
  --orange: #FFA300;      /* amber CTA    */
  --orange-hover: #E89200;
  --gold: #C9B3E0;        /* light lilac accent (readable on purple) */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #f7f9fc;
  --mid-gray: #E2E8F0;
  --text-gray: #5b6a79;
  --text-dark: #15151E;
  --border: #e5eaf1;
  --success: #16A34A;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'DM Sans', sans-serif; line-height: 1.15; }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--navy);
  border-bottom: 2px solid var(--orange);
  color: #CBD5E1;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: sticky; top: 0; z-index: 1000;
  line-height: 1.4;
}
.announce-bar strong { color: var(--gold); font-weight: 700; }
.announce-link { color: var(--orange); text-decoration: underline; cursor: pointer; font-weight: 600; margin-left: 8px; }

/* HEADER */
header {
  background: rgba(36, 6, 63, 0.98);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex; align-items: stretch; justify-content: space-between;
  position: sticky; top: 36px; z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.header-logo-img { height: 48px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 6px; }

/* WP Nav specific adjustments */
.nav ul.primary-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav ul.primary-menu li { margin: 0; padding: 0; }
.nav ul.primary-menu a { color: #94A3B8; font-size: 13px; font-weight: 500; text-decoration: none; padding: 8px 12px; border-radius: 6px; transition: all 0.2s; }
.nav ul.primary-menu a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav ul.primary-menu a.active-nav-item { color: var(--orange); }
.custom-logo-link img { max-width: 200px; height: auto; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { color: var(--gold); font-weight: 600; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.header-phone:hover { color: #fff; }
.btn-apply {
  background: var(--orange); color: #1b1200; border: none;
  padding: 10px 22px; border-radius: 6px; font-weight: 700;
  font-size: 13px; cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: inline-block; letter-spacing: 0.3px;
}
.btn-apply:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,163,0,0.4); }

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #3a0f5e 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 80px 5%;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(232,72,28,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 15% 80%, rgba(212,160,23,0.06) 0%, transparent 50%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 2.5px; text-transform: uppercase;
  border-left: 3px solid var(--orange); padding-left: 12px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 50px; font-weight: 900; color: white;
  line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--orange); }
.hero-story {
  font-size: 18px; color: #94A3B8; line-height: 1.75;
  margin-bottom: 32px; max-width: 580px;
  font-weight: 400;
}
.hero-story strong { color: #CBD5E1; font-weight: 600; }
.proof-bar {
  display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap;
}
.proof-item { }
.proof-num { font-size: 28px; font-weight: 800; color: white; font-family: 'DM Sans', sans-serif; }
.proof-label { font-size: 12px; color: #64748B; margin-top: 2px; font-weight: 500; letter-spacing: 0.3px; }
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary-lg {
  background: var(--orange); color: white; padding: 15px 32px;
  border-radius: 7px; font-weight: 700; font-size: 16px;
  text-decoration: none; transition: all 0.25s; display: inline-block;
  border: 2px solid var(--orange);
}
.btn-primary-lg:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,72,28,0.35); }
.btn-secondary-lg {
  background: transparent; color: #CBD5E1; padding: 15px 30px;
  border-radius: 7px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.25s; display: inline-block;
  border: 2px solid rgba(255,255,255,0.18);
}
.btn-secondary-lg:hover { border-color: rgba(255,255,255,0.4); color: white; }
.trust-note { margin-top: 16px; font-size: 13px; color: #475569; }
.trust-note span { color: var(--success); font-weight: 600; }

/* LEAD FORM */
/* JETFORMBUILDER STYLING OVERRIDES */
.jet-form-builder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jet-form-builder__field-wrap {
  margin-bottom: 0;
}

.jet-form-builder__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.jet-form-builder__field, 
.jet-form-builder-field-wrap input, 
.jet-form-builder-field-wrap select,
.jet-form-builder-field-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.jet-form-builder__field:focus,
.jet-form-builder-field-wrap input:focus,
.jet-form-builder-field-wrap select:focus,
.jet-form-builder-field-wrap textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 72, 28, 0.1);
  background: #fff;
}

.jet-form-builder__submit {
  width: 100%;
  background: var(--orange);
  color: #1b1200;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
  margin-top: 10px;
  text-transform: uppercase;
}

.jet-form-builder__submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 72, 28, 0.35);
}

.jet-form-builder__submit:active {
  transform: translateY(0);
}

.form-card, .lead-form-mba, .lead-form-mpss, .form-card-pgd, .form-card-sci {
  background: white; border-radius: 14px; padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 100;
}
.form-header { margin-bottom: 24px; }
.form-tag { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.form-title { font-size: 22px; font-weight: 800; color: var(--navy); font-family: 'DM Sans', sans-serif; line-height: 1.2; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--text-gray); line-height: 1.5; }
.form-divider { height: 1px; background: var(--border); margin: 0 0 20px; }
.form-footer { margin-top: 12px; display: flex; align-items: center; gap: 6px; font-size: 12px; color: #94A3B8; }
.form-footer::before { content: ''; display: inline-block; width: 14px; height: 14px; background: var(--success); border-radius: 50%; flex-shrink: 0; }
.form-note { font-size: 12px; color: #94A3B8; text-align: center; margin-top: 10px; }

/* GLOBAL UTILITIES */
.accent { color: var(--orange); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

/* CREDENTIAL BAR */
.cred-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 5%;
}
.cred-bar-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 10px; }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cred-text { font-size: 13px; color: #94A3B8; font-weight: 500; }
.cred-text strong { color: #CBD5E1; font-weight: 700; }

/* SECTION BASE */
.section { padding: 80px 5%; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-heading { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-gray); line-height: 1.7; max-width: 600px; }
.rule { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 18px 0 40px; }

/* STORY SECTION */
.story-section { background: var(--off-white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text { }
.story-text p { font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.story-text p:last-child { margin-bottom: 0; }
.story-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.story-stat { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 22px; border-left: 3px solid var(--orange); }
.story-stat .num { font-size: 34px; font-weight: 800; color: var(--navy); font-family: 'DM Sans', sans-serif; }
.story-stat .lbl { font-size: 13px; color: var(--text-gray); margin-top: 4px; }

/* COURSES GRID */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.course-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.28s; background: white;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: #C4CAD3; }
.course-card-img { height: 180px; overflow: hidden; background: var(--navy); }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-top { padding: 26px 24px 20px; background: var(--navy); }
.card-track { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.course-card h3 { font-size: 19px; font-weight: 700; color: white; line-height: 1.25; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.meta-tag { font-size: 11px; background: rgba(255,255,255,0.1); color: #94A3B8; padding: 4px 10px; border-radius: 4px; font-weight: 500; }
.course-card-body { padding: 20px 24px; flex: 1; }
.course-card-body p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 16px; }
.card-points { list-style: none; }
.card-points li { font-size: 13px; color: #374151; padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; border-bottom: 1px solid #F1F4F8; }
.card-points li:last-child { border: none; }
.card-points li::before { content: '—'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.course-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--light-gray); }
.card-cta {
  display: block; text-align: center; color: var(--orange);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all 0.2s; padding: 10px;
  border: 1.5px solid var(--orange); border-radius: 6px;
}
.card-cta:hover { background: var(--orange); color: white; }

/* WHY ISST */
.why-section { background: var(--navy); }
.why-section .section-heading { color: white; }
.why-section .section-sub { color: #64748B; }
.why-section .eyebrow { color: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 30px;
  transition: all 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(232,72,28,0.4); transform: translateY(-3px); }
.why-num { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 14px; letter-spacing: 1px; font-family: 'DM Sans', sans-serif; }
.why-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.why-card p { font-size: 14px; color: #64748B; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; display: flex; flex-direction: column;
}
.testi-quote { font-size: 36px; color: var(--orange); line-height: 1; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; opacity: 0.6; }
.testi-text { font-size: 14px; color: #374151; line-height: 1.8; font-style: italic; flex: 1; margin-bottom: 20px; }
.testi-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; font-family: 'DM Sans', sans-serif; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-gray); margin-top: 2px; }

/* PLACEMENT */
.placement-section { background: var(--off-white); }
.placement-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 50px; }
.placement-copy p { font-size: 16px; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.placement-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.p-stat { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 20px; text-align: center; }
.p-stat .num { font-size: 32px; font-weight: 800; color: var(--navy); font-family: 'DM Sans', sans-serif; }
.p-stat .lbl { font-size: 12px; color: var(--text-gray); margin-top: 4px; font-weight: 500; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.partner-cell {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 12px; text-align: center;
  font-size: 12px; font-weight: 600; color: #475569;
  transition: all 0.2s; cursor: default;
}
.partner-cell:hover { border-color: var(--orange); color: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* FAQ */
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; transition: all 0.2s; }
.faq-item:hover { border-color: var(--orange); box-shadow: 0 3px 16px rgba(232,72,28,0.08); }
.faq-q { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; justify-content: space-between; gap: 12px; cursor: pointer; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--orange); flex-shrink: 0; font-weight: 400; line-height: 1; }
.faq-a { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* CTA FINAL */
.final-cta {
  background: var(--orange);
  padding: 80px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 60%);
}
.final-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-size: 44px; font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.1; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 36px; line-height: 1.6; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white { background: white; color: var(--orange); padding: 15px 36px; border-radius: 7px; font-weight: 800; font-size: 16px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-cta-outline { border: 2px solid rgba(255,255,255,0.6); color: white; padding: 15px 34px; border-radius: 7px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.12); }

/* FOOTER */
footer { background: #160326; padding: 56px 5% 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo-img { height: 54px; width: auto; display: block; }
.footer-brand-text { font-size: 13px; color: #475569; line-height: 1.7; margin-bottom: 20px; }
.footer-creds { display: flex; flex-direction: column; gap: 6px; }
.footer-cred { font-size: 12px; color: #475569; display: flex; align-items: center; gap: 6px; }
.footer-cred::before { content: ''; width: 6px; height: 6px; background: var(--success); border-radius: 50%; flex-shrink: 0; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #94A3B8; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #475569; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #94A3B8; }
.footer-bottom { border-top: 1px solid #2E1147; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner, .hero-mpss-inner, .hero-mba-inner, .hero-inner-sci, .hero-inner-pgd { grid-template-columns: 1fr; gap: 40px; }
  .form-card, .lead-form-mpss, .lead-form-mba, .form-card-sci, .form-card-pgd { max-width: 520px; margin: 0 auto; }
  .story-grid, .story-grid-mpss, .story-grid-mba, .story-grid-sci { grid-template-columns: 1fr; gap: 40px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-intro { grid-template-columns: 1fr; gap: 40px; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero, .hero-mpss, .hero-mba, .hero-sci, .hero-pgd { padding: 40px 5%; min-height: auto; }
  .hero h1, .hero-mpss h1, .hero-mba h1, .hero-sci h1, .hero-pgd h1 { font-size: 32px; }
  .hero-story, .hero-story-mpss, .hero-story-mba, .hero-story-sci { font-size: 15px; }
  .form-card, .lead-form-mpss, .lead-form-mba, .form-card-sci, .form-card-pgd { padding: 28px 20px; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid, .why-grid-mpss, .why-grid-mba { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-heading { font-size: 28px; }
  .nav { display: none; }
  .cred-bar-inner, .cred-bar-inner-mpss, .cred-bar-inner-mba, .cred-bar-inner-pgd { gap: 16px; }
  .proof-bar { gap: 16px; }
  .final-cta h2, .final-cta-section-mpss h2 { font-size: 28px; }
  .story-stat-row { grid-template-columns: 1fr 1fr; }
}

/* Page specific overrides or extra classes */
.page-hero {
  background: var(--navy);
  padding: 60px 5%;
  text-align: center;
  color: white;
}
.page-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── PAGE SECTION NAV (course pages in-page scrollspy bar) ─── */
.page-section-nav {
  background: rgba(36, 6, 63, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 5%;
  position: sticky;
  top: 108px;
  z-index: 998;
  transition: box-shadow 0.3s;
}

/* Stick to top once the main header scrolls away */
.page-section-nav.psn-sticky {
  position: sticky;
  top: 108px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.psn-inner {
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.psn-inner::-webkit-scrollbar { display: none; }

.psn-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.psn-item { flex-shrink: 0; }

.psn-link {
  display: inline-block;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #64748b;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.psn-link:hover {
  color: #cbd5e1;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.psn-link.psn-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 768px) {
  .page-section-nav { padding: 0 16px; }
  .psn-link { padding: 12px 12px; font-size: 11px; }
}
