/* ============================================================
   PRS Website — Main Stylesheet
   Fonts: Anton (headings), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:          #a10611;
  --red-dark:     #c41e3a;
  --blue:         #2b659f;
  --navy:         #1e3a5f;
  --navy-mid:     #243f6b;
  --text-dark:    #364153;
  --text-gray:    #4f4f4f;
  --text-muted:   #99a1af;
  --text-dim:     #6a7282;
  --bg-light:     #f5f5f5;
  --bg-gray:      #d9d9d9;
  --black:        #000000;
  --white:        #ffffff;
  --prs-gray:     #979797;
  --navy-gradient: linear-gradient(to right, #1e3a5f 0%, #2b659f 50%, #1e3a5f 100%);
  --container-max: 1200px;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: #f5f5f5;
  line-height: 1.6;
}

.page-body {
  max-width: 1440px;
  margin: 0 auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover { opacity: 0.88; }

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 83px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 55px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link.active {
  color: var(--red);
}

/* SERIES dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}

.nav-dropdown-toggle:hover { color: var(--red); }

.nav-dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 200;
  border-top: 3px solid var(--red);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--red);
}

/* Header right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-sponsor-logo {
  height: 47px;
  width: auto;
  flex-shrink: 0;
}

.btn-join {
  background: var(--red);
  color: var(--white);
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-join:hover {
  background: #880510;
}

/* Hamburger menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 0;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-light);
  color: var(--red);
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-dropdown-toggle:hover { color: var(--red); }

.mobile-nav-dropdown-toggle .arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}

.mobile-nav-dropdown-toggle.open .arrow {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: none;
  background: var(--bg-light);
}

.mobile-nav-submenu.open {
  display: block;
}

.mobile-nav-submenu a {
  display: block;
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.15s;
}

.mobile-nav-submenu a:hover { color: var(--red); }

.mobile-nav-bottom {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 541px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1e33;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px;
  width: 100%;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 179px;
  font-size: 16px;
}

/* ============================================================
   PRS BANNER SLIDER
   ============================================================ */
.prs-banner-slider {
  position: relative;
  background: #111;
  overflow: hidden;
  aspect-ratio: 1440 / 250;
}

.prs-slider-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.prs-slider-slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.prs-slider-slide.active {
  display: block;
}

.prs-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  background: rgba(217,217,217,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  border-radius: 50%;
}

.slider-arrow:hover { background: rgba(217,217,217,1); }

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-arrow svg {
  width: 40px;
  height: 40px;
  color: var(--red);
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  display: grid;
  grid-template-columns: 702fr 522fr;
  padding: 67px 108px 90px;
  background-color: #fcfcfc;
}

.welcome-text-col {
  background: var(--bg-light);
  padding: 40px 28px 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.welcome-heading {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.33;
  text-transform: uppercase;
  margin: 0;
}

.welcome-top {
  color: #000;
}

.welcome-series {
  color: var(--red);
}

.welcome-text-col p {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.625;
  letter-spacing: -0.024em;
  margin: 0;
}

.welcome-text-col .btn {
  align-self: flex-start;
  margin-top: 7px;
}

.welcome-image-col {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.welcome-image-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 7px 7px 11px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.upcoming-events {
  background: var(--white);
  padding: 60px 0 70px;
}

.upcoming-events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.upcoming-events-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
}

.upcoming-events-header .view-all {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}

.upcoming-events-header .view-all:hover {
  background: var(--blue);
  color: var(--white);
}

.upcoming-events-subtitle {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.events-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-gray);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  min-width: 153px;
  position: relative;
}

.filter-select select {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
}

.filter-select-wrapper {
  position: relative;
  min-width: 153px;
}

.filter-select-wrapper select {
  width: 100%;
  padding: 8px 36px 8px 14px;
  background: var(--bg-gray);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.filter-select-wrapper::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #444;
  pointer-events: none;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.event-card-stripe {
  height: 13px;
  background: linear-gradient(to right, #2b659f, #0F2439);
}

.event-card-body {
  padding: 20px 20px 20px;
}

.event-card-category {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.event-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.event-meta-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--text-gray);
}

.event-card-status {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.event-card-register {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 4px;
}

.event-card-register:hover { background: #880510; }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--navy-gradient);
  padding: 60px 0;
}

.newsletter-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.newsletter-inner p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  max-width: 918px;
  margin: 0 auto;
  height: 65px;
}

.newsletter-input {
  flex: 1;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  border: none;
  outline: none;
}

.newsletter-input::placeholder { color: #aaa; }

.newsletter-btn {
  background: var(--red);
  color: var(--white);
  padding: 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover { background: #880510; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-gradient);
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child,
.stat-item:nth-child(3) { border-right: none; }

.stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--red);
}

.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SPONSOR BAR
   ============================================================ */
.sponsor-bar {
  background: var(--black);
  padding: 26px 0;
}

.sponsor-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.sponsor-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.sponsor-logo:hover { opacity: 1; }

/* ============================================================
   WHO CAN COMPETE
   ============================================================ */
.who-compete {
  background: var(--navy-gradient);
  padding: 70px 0;
}

.who-compete .container {
  text-align: center;
}

.who-compete h2 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.who-compete-subtitle {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.who-compete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.compete-card {
  background: var(--blue);
  padding: 36px 28px 32px;
  text-align: center;
}

.compete-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}

.compete-card-icon svg {
  width: 40px;
  height: 40px;
}

.compete-card-icon svg * {
  stroke: var(--red);
}

.compete-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.compete-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.who-compete .btn,
.membership-section .btn {
  padding: 16px 48px;
  font-size: 17px;
}

/* ============================================================
   PRS MEMBERSHIP BENEFITS
   ============================================================ */
.membership-section {
  background: var(--navy-gradient);
  padding: 70px 0;
}

.membership-section .container {
  text-align: center;
}

.membership-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.membership-subtitle {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.membership-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 750px;
  margin: 0 auto 36px;
}

.membership-benefit-item {
  font-size: 20px;
  color: var(--white);
  line-height: 1.1;
}

/* ============================================================
   LATEST POSTS
   ============================================================ */
.latest-posts {
  background: var(--bg-gray);
  padding: 60px 0 70px;
}

.latest-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.latest-posts-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
}

.view-more-posts {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  border-radius: 4px;
}

.view-more-posts:hover { background: #880510; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.post-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.post-card-image {
  width: 100%;
  height: 291px;
  object-fit: cover;
  background: #fff;
  display: block;
}

.post-card-body {
  padding: 24px;
}

.post-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.post-card-date {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.post-card-excerpt {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}

/* ============================================================
   PODCAST SECTION
   ============================================================ */
.podcast-section {
  background: var(--white);
  padding: 70px 0 80px;
}

.podcast-section .container {
  text-align: center;
}

.podcast-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.podcast-video {
  width: 1102px;
  max-width: 100%;
  margin: 0 auto 36px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.podcast-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.podcast-stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.podcast-store-btn img {
  height: 54px;
  width: auto;
  transition: opacity 0.2s;
}

.podcast-store-btn:hover img { opacity: 0.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: 60px 0 0;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 58px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  background: #1e2939;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-icon-link:hover { background: #2d3f55; }

.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-newsletter-heading svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-newsletter-heading h3 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-newsletter-form {
  display: flex;
  height: 42px;
  max-width: 520px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0 16px;
  background: #1e2939;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
}

.footer-newsletter-form input::placeholder { color: var(--text-dim); }

.footer-newsletter-btn {
  background: var(--red-dark);
  color: var(--white);
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-newsletter-btn:hover { background: #a01a2f; }

/* Footer nav columns */
.footer-nav-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.footer-nav-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover { color: var(--white); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid #1e2939;
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1239px) {
  .header-sponsor-logo { display: none; }
}

@media (max-width: 1068px) {
  .header-logo { display: none; }
}

@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item { border-right: none; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .footer-nav-row {
    padding: 0 24px;
  }
}

@media (max-width: 991px) {
  /* Header */
  .header-nav { display: none; }
  .header-right { display: none; }
  .header-logo { display: block; }
  .header-sponsor-logo { display: block; }
  .hamburger-btn { display: flex; }

  .header-inner {
    gap: 16px;
    padding: 0 20px;
  }

  /* Hero */
  .hero-content {
    padding: 60px 32px;
  }

  .hero-title { font-size: 38px; }

  /* Welcome */
  .welcome-section {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .welcome-text-col {
    padding: 40px 32px 48px;
  }

  .welcome-image-col {
    min-height: 320px;
    padding-top: 0;
  }

  .welcome-image-col img {
    height: 100%;
  }

  /* Upcoming Events */
  .upcoming-events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Who compete */
  .who-compete-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer-nav-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  /* Slider arrows */
  .slider-arrow { width: 36px; height: 36px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .slider-arrow svg { width: 24px; height: 24px; }

  /* Header */
  .header-logo img { height: 35px; }
  .header-sponsor-logo {
    height: 35px;
  }
  /* Hero */
  .hero-content { padding: 48px 20px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { min-width: unset; width: 100%; max-width: 260px; }

  /* Sections */
  .welcome-text-col { padding: 28px 24px 36px; }
  .welcome-heading { font-size: 32px; }
  .welcome-text-col p { font-size: 16px; }

  .upcoming-events { padding: 48px 0 56px; }
  .events-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .newsletter-inner h2 { font-size: 32px; }
  .newsletter-inner p { font-size: 16px; }
  .newsletter-form { flex-direction: column; height: auto; }
  .newsletter-input { padding: 16px; width: 100%; }
  .newsletter-btn { padding: 16px 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 30px; }

  .sponsor-bar { padding: 16px 0; }
  .sponsor-bar-inner { gap: 28px; }
  .sponsor-logo { height: 36px; }

  .who-compete h2 { font-size: 32px; }
  .who-compete-subtitle { font-size: 16px; }

  .membership-section h2 { font-size: 32px; }
  .membership-subtitle { font-size: 16px; }
  .membership-benefit-item { font-size: 16px; }

  .latest-posts { padding: 48px 0 56px; }
  .posts-grid { grid-template-columns: 1fr; }
  .latest-posts-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .podcast-section h2 { font-size: 30px; }
  /* podcast-video uses aspect-ratio, no fixed height override needed */

  .footer-nav-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal-links { flex-direction: column; gap: 8px; }

}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 24px; margin-bottom: 0; }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   NEW COMPETITOR PAGE
   ============================================================ */

/* ── Banner ─────────────────────────────────────────────────── */
.nc-banner {
  aspect-ratio: 1440 / 219;
  overflow: hidden;
  background: #1e3a5f;
}
.nc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Sub-navigation ─────────────────────────────────────────── */
.nc-subnav {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 83px;
  z-index: 99;
  overflow-x: auto;
}

.nc-subnav-inner {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
}

.nc-subnav-link {
  display: flex;
  align-items: center;
  height: 76px;
  padding: 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  border-right: 1px solid #e5e7eb;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.nc-subnav-link:first-child { border-left: 1px solid #e5e7eb; }

.nc-subnav-link:hover { color: var(--red); }

.nc-subnav-link.active {
  background: var(--red);
  color: var(--white);
}

/* ── Section Base ───────────────────────────────────────────── */
.nc-section {
  padding: 70px 0;
  scroll-margin-top: 167px; /* header 83px + subnav 76px + 8px buffer */
}

.nc-section-white { background: var(--white); }

.nc-section-gradient { background: var(--navy-gradient); }

.nc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ─────────────────────────────────────────────── */
.nc-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.nc-title-40 { font-size: 40px; }

.nc-title-center { text-align: center; }

.nc-white { color: var(--white); }

.nc-text-center { text-align: center; }

.nc-subtitle {
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.nc-subtitle.nc-white { color: var(--white); }

.nc-subtitle-lg {
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.nc-subtitle-lg.nc-white { color: var(--white); }

.nc-intro-lead {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
  text-align: center;
  max-width: 1174px;
  margin: 0 auto 40px;
}

/* ── Video Placeholder ─────────────────────────────────────── */
.nc-video-wrap {
  max-width: 1013px;
  margin: 0 auto 48px;
}

.nc-video-placeholder {
  background: var(--bg-gray);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1920 / 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 17px;
}

.nc-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nc-video-placeholder:hover .nc-play-btn {
  background: rgba(0, 0, 0, 0.55);
}

.nc-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
  background: #000;
}

/* ── Accordion (base) ──────────────────────────────────────── */
.nc-accordion {
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
}

.nc-acc-item {
  border-bottom: 1px solid #e5e7eb;
}

.nc-acc-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.nc-acc-hd:hover .nc-acc-title { color: var(--red); }

.nc-acc-title {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nc-acc-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.nc-acc-icon::before { content: '+'; }

.nc-acc-hd[aria-expanded="true"] .nc-acc-icon::before { content: '−'; }

.nc-acc-bd {
  padding: 0 0 28px;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
}

.nc-acc-bd p + p { margin-top: 16px; }

/* Large accordion (memberships) */
.nc-acc-hd-lg { padding: 24px 0; }

.nc-acc-title-lg {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  text-transform: none;
}

.nc-acc-bd-lg {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
  padding: 0 0 32px;
}

.nc-acc-bd-lg p + p { margin-top: 16px; }

/* ── Bullet / Check lists ────────────────────────────────────── */
.nc-bullet-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-bullet-list li {
  padding-left: 20px;
  position: relative;
  font-size: 20px;
  color: var(--white);
  line-height: 1.5;
}

.nc-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.nc-bullet-list-dark {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-bullet-list-dark li {
  padding-left: 20px;
  position: relative;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-bullet-list-dark li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.nc-check-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-check-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.nc-dot-list {
  list-style: none;
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-dot-list li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.nc-arrow-list {
  list-style: none;
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nc-arrow-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-arrow-list li::before {
  content: '›';
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* ── CTA Buttons ─────────────────────────────────────────────── */
.nc-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.nc-cta-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  text-decoration: none;
}

.nc-cta-btn-dark:hover { background: var(--red-dark); }

/* ── Series Section ─────────────────────────────────────────── */
.nc-series-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nc-series-entry {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.nc-series-entry:first-child { border-top: none; }

.nc-series-heading {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nc-series-body {
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-left: 25px;
}

.nc-series-body p { margin-bottom: 8px; }
.nc-series-body p:last-child { margin-bottom: 0; }

.nc-series-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  background: var(--red);
  color: var(--white);
  padding: 18px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 4px;
}

.nc-series-btn:hover { background: #880510; }

/* ── Step Cards (Find Matches) ──────────────────────────────── */
.nc-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nc-step-card {
  background: var(--white);
  padding: 28px 32px 32px;
  border-radius: 22px;
  text-align: center;
}

.nc-step-num {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 16px;
}

.nc-step-icon {
  margin-bottom: 16px;
}

.nc-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.nc-step-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.15;
}

.nc-step-btn {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  padding: 7px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.nc-step-btn:hover { background: #880510; }

/* ── Gear Section ───────────────────────────────────────────── */
.nc-gear-group {
  margin-bottom: 48px;
}

.nc-gear-label {
  margin-bottom: 20px;
}

.nc-gear-badge {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.nc-gear-group-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nc-gear-group-desc {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-gear-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-gear-row {
  display: flex;
  align-items: center;
  padding: 28px 45px 28px 52px;
  gap: 24px;
  min-height: 149px;
  border-radius: 22px;
}

.nc-gear-rows-red .nc-gear-row { background: var(--red); }
.nc-gear-rows-blue .nc-gear-row { background: var(--blue); }

.nc-gear-row-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nc-gear-item-name {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.nc-gear-item-desc {
  font-size: 24px;
  color: var(--white);
  line-height: 1.4;
}

.nc-gear-badge-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  height: 38px;
  padding: 0 24px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.nc-gear-badge-red { color: var(--red); background: rgba(255,255,255,0.77);
 }
.nc-gear-badge-blue { color: var(--blue); background: rgba(255,255,255,0.77)}

.nc-gear-tips {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e5e7eb;
}

.nc-gear-tips-separator {
  width: 1px;
  background: #000;
  align-self: stretch;
}

.nc-gear-tip-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.nc-gear-tip p {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ── Divisions / Categories / Classifications ────────────────── */
.nc-div-overview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nc-div-col {
  text-align: center;
}

.nc-div-icon {
  margin-bottom: 16px;
}

.nc-div-icon svg {
  width: 55px;
  height: 55px;
}

.nc-div-icon svg,
.nc-div-icon svg * {
  stroke: var(--red);
}

.nc-div-col-title {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.nc-div-col-text {
  font-size: 20px;
  line-height: 1.6;
}

.nc-series-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(255,255,255,1);
  padding-bottom: 0;
}

.nc-series-tab {
  background: none;
  border: none;
  border-bottom: 4px solid transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 28px 2px;
  margin-bottom: -3px;
  text-align: center;
  transition: color 0.2s, border-color 0.2s;
}

.nc-series-tab.active,
.nc-series-tab:hover { color: var(--white); }

.nc-series-tab.active { border-bottom-color: var(--red); }

.nc-div-block {
  margin-bottom: 36px;
  padding-top: 28px;
}

.nc-div-block-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.nc-division-cards {
  display: flex;
  gap: 26px;
  overflow-x: auto;
}

.nc-division-card {
  background: var(--blue);
  flex: 1;
  min-width: 0;
  padding: 20px 18px 20px;
  border-radius: 15px;
  overflow: hidden;
}

.nc-division-card-bar {
  height: 22px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
  margin: -20px -18px 14px;
}

.nc-division-card strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.nc-division-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.nc-category-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nc-cat-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.55);
  color: var(--white);
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 7px;
}

.nc-classification-pyramid {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-end;
}

.nc-class-tier {
  flex: 1;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  padding: 18px 24px;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-class-pro     { background: #8d060f; height: 188px; }
.nc-class-semipro { background: var(--red);  height: 144px; }
.nc-class-marksman{ background: #be0613; height: 100px; }
.nc-class-amateur { background: #ce1623; height: 56px; }

.nc-no-classifications {
  min-height: 188px;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  opacity: 0.5;
}

/* ── Numbered Accordion (Match Day) ─────────────────────────── */
.nc-accordion-numbered {
  border-top: none;
  margin-top: 32px;
}

.nc-acc-item-numbered {
  border-bottom: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  position: relative;
}

.nc-acc-item-numbered:last-child {
  margin-bottom: 0;
}

.nc-acc-item-numbered:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 47px;
  bottom: -16px;
  width: 2px;
  background: #adb5bd;
}

.nc-acc-box {
  flex: 1;
  border: 1px solid #c8cdd3;
}

.nc-acc-hd-numbered {
  align-items: center;
  padding: 20px 24px;
  gap: 0;
}

.nc-acc-num {
  flex-shrink: 0;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-acc-title-numbered {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
}

.nc-acc-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-acc-chevron::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  margin-top: -4px;
}

.nc-acc-hd-numbered[aria-expanded="true"] .nc-acc-chevron::before {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.nc-acc-bd-numbered {
  padding: 0 24px 28px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.65;
}

.nc-acc-bd-numbered p + p { margin-top: 12px; }

.nc-quote-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-quote-list li {
  padding-left: 16px;
  border-left: 3px solid var(--red);
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-sub-heading {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 24px 0 8px;
}

/* Shooting stage step cards */
.nc-stage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 12px 0;
}

.nc-stage-step {
  background: var(--blue);
  padding: 20px 22px 24px;
  color: var(--white);
  border-radius: 6px;
  text-align: center;
}

.nc-stage-step-num {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nc-stage-step-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.nc-stage-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

/* ── Scoring Section ─────────────────────────────────────────── */
.nc-impact-block {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--bg-light);
  padding: 40px 48px;
  margin-bottom: 48px;
}

.nc-impact-icon { flex-shrink: 0; }

.nc-impact-heading {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  margin-bottom: 20px;
}

.nc-impact-text p {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
}

.nc-scoring-standout {
  margin-bottom: 48px;
}

.nc-scoring-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.nc-standings-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-light);
}

.nc-standings-box {
  padding: 20px 24px;
  border-right: 1px solid #e5e7eb;
}

.nc-standings-box:last-child { border-right: none; }

.nc-standings-box p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.nc-qualifier-block {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}

.nc-qualifier-info {
  margin-bottom: 40px;
}

.nc-qualifier-left {
  background: var(--white);
  border-left: 15px solid var(--red);
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 980px;
}

.nc-qualifier-icon { margin-bottom: 16px; }

.nc-qualifier-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.nc-qualifier-left > p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.nc-series-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 4px solid var(--red);
}

.nc-series-col {
  padding: 24px 24px;
  border-right: 1px solid #e5e7eb;
}

.nc-series-col:last-child { border-right: none; }

.nc-series-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

/* ── Scoring Section — gradient background overrides ─────────── */
#scoring .nc-title-center { color: var(--white); }
#scoring .nc-scoring-section-title { color: var(--white); }
#scoring .nc-standings-boxes { background: rgba(255,255,255,0.1); }
#scoring .nc-standings-box { border-right: 1px solid rgba(255,255,255,0.2); }
#scoring .nc-standings-box:last-child { border-right: none; }
#scoring .nc-standings-box p { color: var(--white); }
#scoring .nc-qualifier-block { border-top: 1px solid rgba(255,255,255,0.2); }
#scoring .nc-impact-block { background: rgba(255,255,255,0.1); }
#scoring .nc-impact-heading { color: var(--white); }
#scoring .nc-impact-text p { color: rgba(255,255,255,0.85); }
#scoring .nc-qualifier-left { background: rgba(255,255,255,0.1); }
#scoring .nc-qualifier-title { color: var(--white); }
#scoring .nc-qualifier-left > p { color: rgba(255,255,255,0.85); }
#scoring .nc-dot-list li { color: rgba(255,255,255,0.85); }
#scoring .nc-series-col { border-right: 1px solid rgba(255,255,255,0.2); }
#scoring .nc-series-col:last-child { border-right: none; }
#scoring .nc-series-col-title { color: var(--white); }
#scoring .nc-arrow-list li { color: rgba(255,255,255,0.85); }

/* ── Safety Section ─────────────────────────────────────────── */
.nc-safety-quote {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  padding: 28px 48px;
  background: var(--bg-light);
  margin-bottom: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.nc-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto 0;
  background: var(--white);
}

.nc-safety-rule {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.nc-safety-rule:nth-child(odd) { border-right: 1px solid #e5e7eb; }

.nc-safety-rule-bar {
  width: 15px;
  flex-shrink: 0;
  background: var(--red);
}

.nc-safety-rule-content {
  padding: 24px 24px 24px 20px;
}

.nc-safety-rule-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nc-safety-rule-content p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.nc-safety-footer {
  background: var(--red);
  padding: 28px 32px;
  max-width: 980px;
  margin: 0 auto 0;
}

.nc-safety-footer h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nc-safety-footer p {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

/* ── FAQ Section ─────────────────────────────────────────────── */
.nc-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.nc-faq-tab {
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  padding: 10px 16px;
  transition: color 0.2s, background 0.2s;
}

.nc-faq-tab:hover { color: var(--red); }

.nc-faq-tab.active {
  background: var(--red);
  color: var(--white);
}

.nc-faq-list {
  border-top: 1px solid #e5e7eb;
  margin-bottom: 48px;
}

.nc-faq-hd {
  padding: 18px 0;
}

.nc-faq-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-transform: none;
}

.nc-faq-bd {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.65;
  padding: 0 0 20px;
}

.nc-faq-item.hidden { display: none; }

/* ── FAQ Section — gradient background overrides ──────────────── */
#faq .nc-title-center { color: var(--white); }
#faq .nc-faq-tab { color: rgba(255,255,255,0.75); border: 1px solid var(--white); border-radius: 100px; }
#faq .nc-faq-tab:hover { color: var(--white); }
#faq .nc-faq-tab.active { background: var(--red); color: var(--white); border: 1px solid var(--red); border-radius: 100px; }
#faq .nc-faq-list { border-top: 1px solid rgba(255,255,255,0.2); }
#faq .nc-faq-title { color: var(--white); }
#faq .nc-faq-bd { color: rgba(255,255,255,0.8); }
#faq .nc-acc-icon { color: var(--white); }
#faq .nc-acc-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
#faq .nc-quick-links { border-top: 1px solid rgba(255,255,255,0.2); }
#faq .nc-quick-links-title { color: var(--white); }
#faq .nc-quick-links-grid { border: 1px solid rgba(255,255,255,0.2); }
#faq .nc-quick-link { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2); }
#faq .nc-quick-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* Quick Links */
.nc-quick-links {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
}

.nc-quick-links-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 20px;
}

.nc-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
}

.nc-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  gap: 12px;
  min-width: 0;
  overflow-wrap: break-word;
}

.nc-quick-link:nth-child(4n) { border-right: none; }
.nc-quick-link:nth-last-child(-n+4) { border-bottom: none; }

.nc-quick-link:hover {
  background: var(--bg-light);
  color: var(--red);
}

/* ============================================================
   NEW COMPETITOR — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nc-div-overview {
    grid-template-columns: 1fr 1fr;
  }
  .nc-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nc-series-breakdown {
    grid-template-columns: 1fr;
  }
  .nc-series-col { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .nc-standings-boxes { grid-template-columns: 1fr; }
  .nc-standings-box { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .nc-quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .nc-quick-link:nth-child(4n) { border-right: 1px solid #e5e7eb; }
  .nc-quick-link:nth-last-child(-n+4) { border-bottom: 1px solid #e5e7eb; }
  .nc-quick-link:nth-child(2n) { border-right: none; }
  .nc-quick-link:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 991px) {
  .nc-subnav { top: 0; }
  .nc-gear-row { padding: 20px 24px; }
  .nc-gear-item-name { font-size: 28px; }
  .nc-gear-item-desc { font-size: 18px; }
  .nc-division-cards { display: grid; grid-template-columns: 1fr 1fr; overflow-x: visible; }
  .nc-division-card { flex: unset; min-width: unset; }
  .nc-stage-steps { grid-template-columns: 1fr; }
  .nc-impact-block { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .nc-impact-heading { font-size: 48px; }
  .nc-safety-grid { grid-template-columns: 1fr; }
  .nc-safety-rule:nth-child(odd) { border-right: none; }
  .nc-gear-tips { grid-template-columns: 1fr; gap: 32px; }
  .nc-gear-tips-separator { display: none; }
  .nc-div-overview { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nc-title { font-size: 36px; }
  .nc-title-40 { font-size: 30px; }
  .nc-acc-title { font-size: 22px; }
  .nc-acc-title-lg { font-size: 22px; }
  .nc-steps-grid { grid-template-columns: 1fr; }
  .nc-series-btn { font-size: 18px; padding: 14px 28px; }
  .nc-cta-btn-dark { font-size: 18px; padding: 14px 28px; }
  .nc-impact-heading { font-size: 36px; }
  .nc-gear-row { padding: 16px 18px; }
  .nc-gear-item-name { font-size: 22px; }
  .nc-gear-item-desc { font-size: 15px; }
  .nc-gear-badge-pill { font-size: 15px; padding: 0 14px; }
  .nc-gear-group-title { font-size: 28px; }
  .nc-gear-tip-title { font-size: 28px; }
  .nc-classification-pyramid { flex-direction: column; gap: 2px; align-items: stretch; }
  .nc-classification-pyramid .nc-class-tier { height: auto !important; align-items: center; }
  .nc-faq-tabs { gap: 4px; }
  .nc-faq-tab { font-size: 13px; padding: 8px 10px; }
  .nc-quick-links-grid { grid-template-columns: 1fr 1fr; }
  .nc-quick-link { font-size: 14px; padding: 10px 10px; }
  .nc-subnav-link { font-size: 14px; padding: 0 14px; height: 60px; }
  .nc-safety-quote { font-size: 18px; padding: 20px 24px; }
  .nc-subtitle { font-size: 18px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.ab-hero {
  position: relative;
  min-height: 543px;
  display: flex;
  align-items: flex-end;
  background: #0d1e33;
  overflow: hidden;
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.ab-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 170px 60px;
}

.ab-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.ab-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 500px;
}

.ab-hero-sub {
  font-size: 20px;
  color: var(--white);
  max-width: 500px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.ab-hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ab-hero-cta:hover { opacity: 0.88; }

/* ── Shared container ─────────────────────────────────────── */
.ab-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Split sections (text + image) ───────────────────────── */
.ab-split {
  background: var(--white);
  padding: 80px 0;
}

.ab-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  align-items: center;
}

.ab-red-bar {
  display: block;
  width: 48px;
  height: 5px;
  background: var(--red);
  margin-bottom: 20px;
}

.ab-split-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ab-split-body {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

.ab-split-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Why PRS Exists ───────────────────────────────────────── */
.ab-why {
  background: var(--navy-gradient);
  padding: 80px 0 64px;
}

.ab-why-top {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}

.ab-why-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ab-why-body {
  font-size: 20px;
  color: var(--white);
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto;
}

.ab-stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 48px;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.ab-stat:last-child { border-right: none; }

.ab-stat-icon {
  color: var(--red);
  margin-bottom: 16px;
}

.ab-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.ab-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── What Makes PRS Unique? ───────────────────────────────── */
.ab-unique {
  background: var(--bg-light);
  padding: 80px 0;
}

.ab-unique-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ab-unique-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ab-unique-sub {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.ab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.ab-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0 0 28px;
}

.ab-card-top-bar {
  height: 8px;
  background: var(--red);
  margin-bottom: 24px;
}

.ab-card-icon {
  padding: 0 24px;
  margin-bottom: 16px;
}

.ab-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  padding: 0 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ab-card-body {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.65;
  padding: 0 24px;
}

/* ── The Experience ───────────────────────────────────────── */
.ab-experience {
  position: relative;
  min-height: 364px;
  display: flex;
  align-items: center;
  background: #0d1e33;
  overflow: hidden;
}

.ab-exp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.ab-experience::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.2));
  z-index: 0;
  pointer-events: none;
}

.ab-exp-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 170px;
}

.ab-exp-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ab-exp-sub {
  font-size: 20px;
  color: var(--white);
  max-width: 520px;
  line-height: 1.55;
}

/* ── Learn More About the PRS ─────────────────────────────── */
.ab-learn {
  background: var(--navy-gradient);
  padding: 80px 0;
}

.ab-learn-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ab-learn-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.ab-learn-sub {
  font-size: 20px;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.55;
}

.ab-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
}

.ab-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: background 0.15s;
  gap: 12px;
}

.ab-link-item:nth-child(3n) { border-right: none; }
.ab-link-item:nth-last-child(-n+3) { border-bottom: none; }

.ab-link-item:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stat:nth-child(2) { border-right: none; }
  .ab-stat:nth-child(1),
  .ab-stat:nth-child(2) { padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .ab-cards { grid-template-columns: 1fr 1fr; }
  .ab-links-grid { grid-template-columns: 1fr 1fr; }
  .ab-link-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.25); }
  .ab-link-item:nth-child(2n) { border-right: none; }
  .ab-link-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .ab-link-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 991px) {
  .ab-split-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ab-hero-inner { padding: 48px 36px; }
  .ab-exp-inner { padding: 48px 36px; }
  .ab-split-title { font-size: 34px; }
  .ab-unique-title { font-size: 34px; }
}

@media (max-width: 767px) {
  .ab-hero { min-height: 420px; }
  .ab-hero-inner { padding: 36px 24px; }
  .ab-hero-title { font-size: 32px; }
  .ab-hero-sub { font-size: 17px; }
  .ab-split { padding: 56px 0; }
  .ab-split-title { font-size: 28px; }
  .ab-split-body { font-size: 16px; }
  .ab-why { padding: 56px 0 48px; }
  .ab-why-title { font-size: 32px; }
  .ab-why-body { font-size: 17px; }
  .ab-stat-number { font-size: 34px; }
  .ab-stat-label { font-size: 14px; }
  .ab-unique { padding: 56px 0; }
  .ab-unique-title { font-size: 28px; }
  .ab-cards { grid-template-columns: 1fr; }
  .ab-experience { min-height: 280px; }
  .ab-exp-inner { padding: 36px 24px; }
  .ab-exp-title { font-size: 36px; }
  .ab-exp-sub { font-size: 16px; }
  .ab-learn { padding: 56px 0; }
  .ab-learn-title { font-size: 36px; }
  .ab-learn-sub { font-size: 17px; }
  .ab-links-grid { grid-template-columns: 1fr; }
  .ab-link-item { border-right: none; }
  .ab-link-item:nth-child(3n) { border-right: none; }
  .ab-link-item:nth-child(2n) { border-right: none; }
  .ab-link-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .ab-link-item:last-child { border-bottom: none; }
}

/* ============================================================
   FAQS PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.faq-hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: center;
  background: #0d1e33;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 170px;
}

.faq-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 620px;
}

.faq-hero-sub {
  font-size: 18px;
  color: var(--white);
  max-width: 520px;
  line-height: 1.55;
  opacity: 0.9;
}

/* ── Category Tabs ───────────────────────────────────────── */
.faq-tabs {
  position: sticky;
  top: 83px;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
}

.faq-tabs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 19px 24px;
}

.faq-tab-btn {
  height: 37px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #d1d5db;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.faq-tab-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.faq-tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── FAQ Content Area ────────────────────────────────────── */
.faq-content {
  background: var(--white);
  padding: 64px 0 80px;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section {
  margin-bottom: 56px;
}

.faq-section:last-child { margin-bottom: 0; }

.faq-section-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-flame {
  flex-shrink: 0;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-acc {
  border-top: 1px solid #e5e7eb;
}

.faq-acc-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-acc-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}

.faq-acc-hd:hover .faq-acc-title { color: var(--red); }

.faq-acc-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  flex: 1;
  transition: color 0.15s;
}

.faq-acc-icon {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  transition: background 0.15s;
  user-select: none;
  border-radius: 50%;
}

.faq-acc-icon::before { content: '+'; }

.faq-acc-hd[aria-expanded="true"] .faq-acc-icon::before { content: '−'; }

.faq-acc-hd[aria-expanded="true"] .faq-acc-icon {
  background: var(--red);
  color: var(--white);
}

.faq-acc-bd {
  padding-bottom: 24px;
}

.faq-acc-bd p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── Quick Links grid: 3 cols × 3 rows for 8 items ──────── */
.faq-links-grid .ab-link-item:nth-last-child(-n+3) {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.faq-links-grid .ab-link-item:nth-last-child(-n+2) { border-bottom: none; }

/* ============================================================
   FAQS PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .faq-links-grid .ab-link-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .faq-links-grid .ab-link-item:last-child { border-bottom: none; }
}

@media (max-width: 991px) {
  .faq-hero-inner { padding: 64px 36px; }
  .faq-hero-title { font-size: 40px; }
}

@media (max-width: 767px) {
  .faq-hero { min-height: 320px; }
  .faq-hero-inner { padding: 48px 24px; }
  .faq-hero-title { font-size: 32px; }
  .faq-hero-sub { font-size: 16px; }
  .faq-section-title { font-size: 28px; }
  .faq-links-grid { grid-template-columns: 1fr; }
  .faq-links-grid .ab-link-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .faq-links-grid .ab-link-item:last-child { border-bottom: none; }
  .faq-tabs { overflow-x: auto; }
  .faq-tabs-inner { flex-wrap: nowrap; }
  .faq-tab-btn { flex-shrink: 0; }
}

/* ============================================================
   NEWS & MEDIA PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.nm-hero {
  position: relative;
  height: 405px;
  overflow: hidden;
  background: #0d1a2a;
}

.nm-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nm-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.nm-hero-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 172px 40px;
}

.nm-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.nm-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.nm-hero-sub {
  font-size: 18px;
  color: var(--white);
  max-width: 476px;
  line-height: 1.6;
}

/* ── Tab bar ─────────────────────────────────────────────── */
.nm-tabs-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 83px;
  z-index: 99;
}

.nm-tabs-inner {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.nm-tab {
  height: 76px;
  padding: 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nm-tab--active {
  background: var(--red);
  color: var(--white);
}

.nm-tab:not(.nm-tab--active):hover {
  background: var(--bg-light);
}

/* ── Featured article ────────────────────────────────────── */
.nm-featured {
  background: var(--white);
  padding: 44px 0;
  border-bottom: 1px solid #e5e7eb;
}

.nm-featured-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.nm-featured-img {
  flex-shrink: 0;
  width: 454px;
  background: #fff;
}

.nm-featured-img img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.nm-featured-content {
  flex: 1;
  padding-top: 36px;
}

.nm-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.nm-badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nm-badge--blue  { background: var(--blue);  color: var(--white); }
.nm-badge--red   { background: var(--red);   color: var(--white); }
.nm-badge--black { background: var(--black); color: var(--white); }
.nm-badge--white { background: var(--white); color: var(--black); border: 1px solid #ccc; }

.nm-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
}

.nm-featured-title {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.nm-featured-body {
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 28px;
}

.nm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s;
}

.nm-read-more:hover { gap: 10px; }

/* ── Latest Posts ────────────────────────────────────────── */
.nm-posts {
  background: var(--bg-gray);
  padding: 60px 0 80px;
}

.nm-posts-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.nm-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.nm-posts-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
}

.nm-filters {
  display: flex;
  align-items: center;
  gap: 0;
}

.nm-filter {
  height: 37px;
  padding: 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nm-filter--active {
  background: var(--red);
  color: var(--white);
}

.nm-filter:not(.nm-filter--active):hover {
  background: var(--bg-light);
}

.nm-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.nm-post-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nm-post-img {
  position: relative;
  flex-shrink: 0;
  height: 291px;
  overflow: hidden;
  background: #fff;
}

.nm-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nm-post-cats {
  position: absolute;
  top: 15px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-start;
}

.nm-post-body {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nm-post-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.2;
}

.nm-post-excerpt {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

.nm-load-wrap {
  display: flex;
  justify-content: center;
}

.nm-load-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  padding: 0 36px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 7px;
}

.nm-load-btn:hover { background: #880510; }

/* ── Listen and Watch ────────────────────────────────────── */
.nm-listen {
  background: var(--white);
  padding: 60px 0 80px;
}

.nm-listen-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.nm-listen-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nm-listen-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.nm-listen-label--recent {
  margin-top: 32px;
}

.nm-main-video {
  margin-bottom: 24px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.nm-main-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nm-podcast-apps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.nm-podcast-apps img {
  height: 48px;
  width: auto;
}

.nm-episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.nm-episode-thumb {
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.nm-episode-thumb img {
  width: 100%;
  height: 267px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.nm-episode-thumb:hover img {
  transform: scale(1.03);
}

/* ============================================================
   NEWS & MEDIA — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nm-hero-inner   { padding: 0 80px 36px; }
  .nm-featured-inner { gap: 36px; }
  .nm-featured-img { width: 360px; }
}

@media (max-width: 991px) {
  .nm-hero         { height: 340px; }
  .nm-hero-inner   { padding: 0 40px 28px; }
  .nm-hero-title   { font-size: 42px; }
  .nm-featured-inner { flex-direction: column; gap: 24px; }
  .nm-featured-img { width: 100%; }
  .nm-featured-img img { height: 220px; }
  .nm-featured-content { padding-top: 0; }
}

@media (max-width: 767px) {
  .nm-hero         { height: auto; min-height: 280px; }
  .nm-hero-inner   { position: relative; padding: 200px 24px 24px; }
  .nm-hero-title   { font-size: 32px; }
  .nm-hero-sub     { font-size: 16px; }
  .nm-tab          { height: 54px; padding: 0 20px; font-size: 14px; }
  .nm-featured     { padding: 32px 0; }
  .nm-featured-inner { padding: 0 24px; }
  .nm-posts-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nm-posts-title  { font-size: 36px; }
  .nm-filters      { flex-wrap: wrap; gap: 4px; }
  .nm-posts-grid   { grid-template-columns: 1fr; }
  .nm-post-img     { height: 220px; }
  .nm-episodes-grid { grid-template-columns: 1fr; }
  .nm-episode-thumb img { height: 200px; }
  .nm-listen-title  { font-size: 28px; }
  .nm-podcast-apps { flex-wrap: wrap; }
}

/* ============================================================
   SERIES PAGE
   ============================================================ */

/* ── Shared helpers ─────────────────────────────────────────── */
.sp-section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.sp-section-label--light {
  color: rgba(255,255,255,0.75);
}

.sp-section-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}

.sp-section-title--light {
  color: var(--white);
}

.sp-section-head {
  margin-bottom: 28px;
}

.sp-section-head--spread {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

/* ── Filter controls ────────────────────────────────────────── */
.sp-filter-wrap {
  position: relative;
  min-width: 160px;
}

.sp-filter-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #444;
  pointer-events: none;
}

.sp-filter-wrap--sm { min-width: 80px; }

.sp-filter-select {
  width: 100%;
  padding: 8px 32px 8px 14px;
  background: var(--white);
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.sp-filter-wrap--light::after {
  border-top-color: rgba(255,255,255,0.7);
}

.sp-filter-select--light {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}

.sp-filter-select--light option {
  background: var(--navy);
  color: var(--white);
}

.sp-filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  min-width: 180px;
  min-width: unset;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}

.sp-filter-search::after { display: none; }

.sp-filter-search svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  width: 16px;
  height: 16px;
}

.sp-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  min-width: 0;
}

.sp-search-input::placeholder { color: rgba(255,255,255,0.5); }

.sp-filter-show {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  white-space: nowrap;
}

/* ── Load more button ───────────────────────────────────────── */
.sp-load-wrap {
  text-align: center;
  margin-top: 36px;
}

.sp-load-btn {
  background: var(--blue);
  color: var(--white);
  padding: 12px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.sp-load-btn:hover { background: #1e4f82; }

/* ============================================================
   HERO
   ============================================================ */
.sp-hero {
  position: relative;
  min-height: 503px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 80px;
}

.sp-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.sp-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 680px;
}

.sp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
}

.sp-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.sp-hero-btn:hover { background: #880510; }

/* ============================================================
   ABOUT
   ============================================================ */
.sp-about {
  background: var(--white);
  padding: 72px 0 80px;
}

.sp-about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.sp-about-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: none;
}

.sp-about-body {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================================
   AD BANNER
   ============================================================ */
.sp-ad-banner {
  height: 220px;
  background: var(--prs-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-ad-banner-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

/* ============================================================
   UPCOMING MATCHES
   ============================================================ */
.sp-matches {
  background: var(--bg-gray);
  padding: 60px 0 72px;
}

.sp-matches-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-matches-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sp-matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Match card */
.sp-match-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.sp-match-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.sp-match-stripe {
  height: 13px;
  background: var(--red);
  flex-shrink: 0;
}

.sp-match-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sp-match-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.sp-match-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sp-match-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.sp-match-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.sp-match-meta-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--text-gray);
}

.sp-match-register {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: auto;
}

.sp-match-register:hover { background: #880510; }

/* ============================================================
   SEASON STANDINGS
   ============================================================ */
.sp-standings {
  background: var(--navy-gradient);
  padding: 60px 0 72px;
}

.sp-standings-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-standings-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-standings-btn:hover { background: #880510; }

.sp-standings-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

/* Table */
.sp-table-wrap {
  background: var(--white);
  overflow-x: auto;
  border-radius: 17px;
}

.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sp-table thead tr {
  background: #d9d9d9;
}

.sp-table th {
  padding: 14px 28px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #374151;
  white-space: nowrap;
  border-bottom: 1px solid #e5e7eb;
}

.sp-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.sp-table tbody tr:hover {
  background: #f9fafb;
}

.sp-table td {
  padding: 14px 28px;
  color: var(--text-dark);
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
}

/* Rank circle */
.sp-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #374151;
}

.sp-rank--gold {
  background: #c59700;
}

/* Shooter avatar in table */
.sp-shooter-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Shooter name bold */
.sp-table td:nth-child(2) {
  font-weight: 600;
  color: #111827;
}

/* Points bold */
.sp-table td:nth-child(6) {
  font-weight: 700;
  color: #111827;
}

/* Classification PRO badge */
.sp-pro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 4px;
  background: #1a90ff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #fff;
  letter-spacing: 0.03em;
}

/* State badge */
.sp-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #374151;
  letter-spacing: 0.03em;
}

/* Qualifier circle */
.sp-qualifier {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  vertical-align: middle;
}

.sp-qualifier--check {
  background: #16a34a;
  border-color: #16a34a;
  position: relative;
}

.sp-qualifier--check::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.sp-standings-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.sp-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.sp-powered-logo-img {
  height: 96px;
  width: auto;
  display: block;
}

/* ============================================================
   TOP SHOOTERS
   ============================================================ */
.sp-shooters {
  background: var(--white);
  padding: 60px 0 80px;
}

.sp-shooters-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-shooters-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-shooters-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.sp-shooters-btn:hover { background: #880510; }

.sp-shooters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Shooter card */
.sp-shooter-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  border-radius: 7px;
  transition: box-shadow 0.2s;
}

.sp-shooter-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.sp-shooter-stripe {
  height: 13px;
  background: linear-gradient(to right, var(--blue), #0F2439);
}

.sp-shooter-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-shooter-avatar-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.sp-shooter-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sp-shooter-state {
  font-size: 14px;
  color: #a5a5a5;
  margin-bottom: 12px;
}

.sp-shooter-class {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.sp-shooter-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sp-shooter-stats strong {
  font-weight: 700;
}

.sp-shooter-divider {
  width: 1px;
  height: 16px;
  background: #ccc;
  flex-shrink: 0;
}

.sp-shooter-achievement {
  font-size: 13px;
  color: #a5a5a5;
  margin-bottom: 16px;
}

.sp-shooter-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.2s;
}

.sp-shooter-profile:hover { gap: 10px; }

/* ============================================================
   RULES OVERVIEW
   ============================================================ */
.sp-rules {
  background: var(--navy-gradient);
  padding: 60px 0 80px;
}

.sp-rules-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-rules .sp-section-label,
.sp-rules .sp-section-title {
  text-align: center;
}

.sp-rules .sp-section-title {
  margin-bottom: 40px;
}

.sp-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sp-rule-card {
  background: rgba(255, 255, 255,0.22);
  overflow: hidden;
  border-radius: 17px;
}

.sp-rule-stripe {
  height: 9px;
  background: var(--red);
}

.sp-rule-icon {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
}

.sp-rule-icon svg {
  width: 55px;
  height: 55px;
}

.sp-rule-icon svg,
.sp-rule-icon svg * {
  stroke: var(--red);
}

.sp-rule-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  padding: 16px 20px 0;
  text-transform: uppercase;
}

.sp-rule-body {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  padding: 12px 20px 28px;
  text-align: center;
}

.sp-rules-download {
  text-align: center;
}

.sp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.sp-download-btn:hover { background: #880510; }

/* ============================================================
   SERIES PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sp-matches-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-rules-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .sp-hero-inner  { padding: 60px 32px; }
  .sp-hero-title  { font-size: 36px; }
  .sp-section-title { font-size: 36px; }

  .sp-section-head--spread {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-shooters-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-shooters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .sp-hero-inner   { padding: 48px 20px; }
  .sp-hero-title   { font-size: 28px; }
  .sp-hero-sub     { font-size: 15px; }
  .sp-hero-buttons { flex-direction: column; }
  .sp-hero-btn     { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  .sp-about-inner  { padding: 0 20px; }
  .sp-about-title  { font-size: 30px; }
  .sp-about-body   { font-size: 16px; }

  .sp-section-title { font-size: 28px; }

  .sp-matches-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sp-matches      { padding: 48px 0 56px; }

  .sp-standings-filters { flex-direction: column; }
  .sp-filter-search { width: 100%; }
  .sp-table th, .sp-table td { padding: 8px 18px; font-size: 12px; }

  .sp-shooters-grid { grid-template-columns: 1fr; }
  .sp-shooters-btn  { width: 100%; justify-content: center; }
  .sp-powered-logo-img { height: 64px; }

  .sp-rules-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }

  .sp-ad-banner     { height: 160px; }
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: center;
  background: #0d1e33;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 170px;
}

.ct-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ct-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 520px;
}

.ct-hero-sub {
  font-size: 18px;
  color: var(--white);
  max-width: 520px;
  line-height: 1.55;
  opacity: 0.9;
  margin-bottom: 36px;
}

.ct-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 180px;
}

.ct-btn-red:hover { background: #880510; }

.ct-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  min-width: 180px;
}

.ct-btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* ── Contact Form Section ─────────────────────────────────── */
.ct-form-section {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.ct-form-outer {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.ct-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.ct-form-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}

.ct-form-sub {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.55;
}

.ct-form {
  background: var(--white);
  padding: 48px 52px 52px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.ct-req {
  color: var(--red);
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #d1d5db;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #aab0ba;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: var(--blue);
}

.ct-field textarea {
  min-height: 140px;
  resize: vertical;
}

.ct-select-wrap {
  position: relative;
}

.ct-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6b7280;
  pointer-events: none;
}

.ct-select-wrap select {
  width: 100%;
  padding: 11px 38px 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #d1d5db;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ct-select-wrap select:focus { border-color: var(--blue); }

.ct-submit-btn {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  padding: 15px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.ct-submit-btn:hover { background: #880510; }
.ct-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.ct-form-msg {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 16px;
}
.ct-form-msg--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.ct-form-msg--error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
  margin-bottom: 0;
}

/* ── FAQ Preview Section ──────────────────────────────────── */
.ct-faq-preview {
  background: var(--white);
  padding: 80px 0 90px;
}

.ct-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ct-faq-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.ct-faq-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-faq-label-sm {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.ct-faq-heading {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
}

.ct-faq-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 20px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.ct-faq-view-all:hover {
  background: var(--blue);
  color: var(--white);
}

.ct-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e5e7eb;
}

.ct-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding-right: 48px;
}

.ct-faq-item:nth-child(even) {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid #e5e7eb;
}

.ct-faq-hd {
  padding: 28px 0;
}

.ct-faq-q {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.3;
  flex: 1;
  transition: color 0.15s;
}

.ct-faq-bd {
  padding-bottom: 28px;
}

.ct-faq-bd p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================================
   CONTACT US — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .ct-hero-inner { padding: 64px 36px; }
  .ct-hero-title  { font-size: 44px; }

  .ct-faq-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .ct-hero-inner { padding: 48px 24px; }
  .ct-hero-title  { font-size: 36px; }
  .ct-hero-sub    { font-size: 16px; }
  .ct-hero-btns   { flex-direction: column; }
  .ct-btn-red, .ct-btn-outline { min-width: unset; width: 100%; max-width: 280px; }

  .ct-form-section { padding: 56px 0 64px; }
  .ct-form-title  { font-size: 36px; }
  .ct-form        { padding: 32px 24px 36px; }
  .ct-field-row   { grid-template-columns: 1fr; }

  .ct-faq-preview  { padding: 56px 0 64px; }
  .ct-faq-heading  { font-size: 32px; }
  .ct-faq-grid     { grid-template-columns: 1fr; }
  .ct-faq-item:nth-child(even) { padding-left: 0; border-left: none; }
}

@media (max-width: 480px) {
  .ct-hero-title { font-size: 30px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */

.nf-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1e33;
  overflow: hidden;
  text-align: center;
}

.nf-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.nf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
}

.nf-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 640px;
}

.nf-code {
  font-family: 'Anton', sans-serif;
  font-size: 160px;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.nf-title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.nf-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}

.nf-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nf-btn-red {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.nf-btn-red:hover { opacity: 0.88; }

.nf-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, border-color 0.2s;
}

.nf-btn-outline:hover { opacity: 0.8; }

/* ── Quick-links strip ─────────────────────────────────────── */
.nf-links {
  background: var(--white);
  padding: 64px 0 72px;
}

.nf-links-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.nf-links-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nf-links-heading {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.nf-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nf-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--bg-light);
  border-top: 3px solid var(--red);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.18s, box-shadow 0.18s;
}

.nf-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nf-link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
}

.nf-link-icon svg {
  width: 22px;
  height: 22px;
}

.nf-link-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nf-link-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 767px) {
  .nf-code      { font-size: 110px; }
  .nf-title     { font-size: 30px; }
  .nf-sub       { font-size: 16px; }
  .nf-links-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .nf-code  { font-size: 88px; }
  .nf-title { font-size: 26px; }
  .nf-btns  { flex-direction: column; align-items: center; }
  .nf-btn-red, .nf-btn-outline { width: 100%; max-width: 260px; justify-content: center; }
}

/* ── Post card link behaviour ────────────────────────────── */
.nm-post-card--link {
  cursor: pointer;
}

.nm-post-card--link .nm-post-img img {
  transition: transform 0.3s ease;
}

.nm-post-card--link:hover .nm-post-img img {
  transform: scale(1.04);
}

.nm-posts-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 40px 0;
}

/* ── Blog Post Page ──────────────────────────────────────── */
.bp-hero {
  background: var(--navy);
  padding: 56px 24px 64px;
}

.bp-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s;
}

.bp-back:hover { color: #fff; }

.bp-hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.bp-hero-cats:empty { display: none; }

.bp-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}

.bp-hero-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.bp-content {
  background: var(--white);
  padding: 48px 24px 80px;
}

.bp-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bp-image {
  max-height: 480px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
  border-radius: 4px;
}

.bp-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.bp-body a {
  color: var(--red);
  text-decoration: none;
}

.bp-body a:hover { text-decoration: underline; }

.bp-body p { margin-bottom: 1em; }

.bp-body h1,
.bp-body h2,
.bp-body h3,
.bp-body h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 1.5em 0 0.5em;
}

.bp-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.bp-body ul,
.bp-body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.bp-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 15px;
  overflow-x: auto;
  display: block;
}

.bp-body table th,
.bp-body table td {
  border: 1px solid #d1d5db;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.bp-body table thead tr {
  background: var(--navy);
  color: #fff;
}

.bp-body table thead th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-color: #1a3356;
}

.bp-body table tbody tr:nth-child(even) {
  background: #f5f7fa;
}

.bp-body table tbody tr:hover {
  background: #edf0f5;
}

@media (max-width: 767px) {
  .bp-hero-title { font-size: 30px; }
  .bp-image      { max-height: 260px; }
}

/* ── Newsletter feedback messages ───────────────────────────── */
.newsletter-msg {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  border-radius: 4px;
}
.newsletter-msg--success {
  background: #e6f4ea;
  color: #1a5c28;
  border: 1px solid #a8d5b0;
}
.newsletter-msg--error {
  background: #fce8e6;
  color: #9c1a12;
  border: 1px solid #f5a9a3;
}
.footer-newsletter-form + .newsletter-msg {
  margin-top: 10px;
  font-size: 13px;
}

/* ── Newsletter confirmation page ───────────────────────────── */
.nl-confirm-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background: var(--bg-light);
}
.nl-confirm-box {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nl-confirm-icon {
  margin-bottom: 24px;
}
.nl-confirm-icon--loading svg { color: #99a1af; animation: nl-spin 1.2s linear infinite; }
.nl-confirm-icon--success svg { color: #2a7a3b; }
.nl-confirm-icon--error svg   { color: #a10611; }
@keyframes nl-spin { to { transform: rotate(360deg); } }
.nl-confirm-title {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.nl-confirm-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 32px;
}
.nl-confirm-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  text-transform: uppercase;
}
.nl-confirm-btn:hover { background: #880510; }
@media (max-width: 600px) {
  .nl-confirm-box { padding: 40px 24px; }
  .nl-confirm-title { font-size: 24px; }
}
