/* Site-wide support theme: body background, footer, navbar (body.support-theme) */
/* Support content sections remain under .support-page */
/* Uses site theme: page #0f172a, text #94a3b8, link #60a5fa, hover #93c5fd */

body.support-theme {
  --support-radius: 16px;
  background: linear-gradient(to right, #0f172ac7 99%, #0f172ac7 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.support-theme .site-content {
  flex: 1 0 auto;
}
/* So contact/support page gradient continues to footer (no gray gap below short content) */
body.support-theme.page-support .site-content {
  display: flex;
  flex-direction: column;
}
body.support-theme.page-support .site-content .support-page {
  flex: 1 0 auto;
}
/* On non-support pages (/resources, /articles, /qna etc), show the same gradient as the homepage without touching the homepage */
body.support-theme:not(.page-support)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.22) 0%, rgba(15, 23, 42, 0.78) 100%);
}
body.support-theme footer {
  margin-top: 0;
}
/* Homepage: footer has its own gradient (body has solid-ish bg) */
body.support-theme.page-support footer {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.22) 0%, rgba(15, 23, 42, 0.78) 100%) !important;
  background-color: transparent !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #334155;
}
/* Non-home pages (/about, /resources, etc.): transparent footer so page gradient shows through – same shadow as home */
body.support-theme:not(.page-support) footer {
  background: transparent !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(51, 65, 85, 0.35);
}
/* Footer text/link colors identical to home on all support-theme pages (e.g. /about) */
body.support-theme footer p.text-muted,
body.support-theme footer .copyright,
body.support-theme footer .theme-by,
body.support-theme footer .footer-custom-content {
  color: #94a3b8 !important;
}
body.support-theme footer a {
  color: #60a5fa;
  transition: color 0.2s ease;
}
body.support-theme footer a:hover,
body.support-theme footer a:focus {
  color: #93c5fd;
}
body.support-theme footer a:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

/* Content page headers: white title, slightly dimmer white subheading */
body.support-theme .intro-header .page-heading h1 {
  color: #fff !important;
}
body.support-theme .intro-header .page-heading .page-subheading {
  color: rgba(255, 255, 255, 0.82) !important;
}
body.support-theme .intro-header .page-heading hr.small {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Body content text: same off-white on content pages (Articles, About, etc.) */
body.support-theme [role="main"].container-md,
body.support-theme [role="main"].container-fluid {
  color: rgba(255, 255, 255, 0.82);
}
body.support-theme [role="main"].container-md p,
body.support-theme [role="main"].container-fluid p,
body.support-theme [role="main"].container-md li,
body.support-theme [role="main"].container-fluid li,
body.support-theme [role="main"].container-md .text-muted,
body.support-theme [role="main"].container-fluid .text-muted {
  color: rgba(255, 255, 255, 0.82);
}

/* PGP page: extra padding below the key block */
body.support-theme.page-pgp [role="main"] {
  padding-bottom: 4rem;
}

/* /convert: same gradient as homepage, full page */
body.support-theme.page-convert {
  background: linear-gradient(to right, #0f172ac7 99%, #0f172ac7 100%) !important;
  background-attachment: fixed !important;
  min-height: 100vh !important;
}
body.support-theme.page-convert #container {
  background: transparent !important;
  min-height: 100vh;
}
body.support-theme.page-convert #container .footer {
  background: transparent !important;
}

/* Need Support CTA: match homepage gradient */
body.support-theme .support-cta {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.22) 0%, rgba(15, 23, 42, 0.78) 100%);
}
body.support-theme .support-cta:hover,
body.support-theme .support-cta:focus {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.28) 0%, rgba(30, 41, 59, 0.92) 100%);
}
body.support-theme .support-cta-sub {
  color: #fff !important;
}
body.support-theme .support-cta:hover .support-cta-sub,
body.support-theme .support-cta:focus .support-cta-sub {
  color: #fff !important;
}

/* Rounded-rectangle header (site-wide): narrow, centered, white text */
body.support-theme .navbar-wrapper {
  position: fixed;
  top: 1rem;
  z-index: 1030;
  border-radius: var(--support-radius);
  border: none;
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* Navbar load animation: fade + slide down (same feel as hero) */
@keyframes support-nav-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.support-theme .navbar-wrapper:not(.navbar-ready) .navbar-brand,
body.support-theme .navbar-wrapper:not(.navbar-ready) .navbar .nav-link,
body.support-theme .navbar-wrapper:not(.navbar-ready) .navbar .nav-item.dropdown .dropdown-toggle,
body.support-theme .navbar-wrapper:not(.navbar-ready) .navbar-toggler {
  opacity: 0;
  transform: translateY(-10px);
}
@media (prefers-reduced-motion: no-preference) {
  body.support-theme .navbar-wrapper.navbar-ready .navbar-brand {
    animation: support-nav-in 0.45s ease-out 0.05s both;
  }
  body.support-theme .navbar-wrapper.navbar-ready .navbar .nav-link,
  body.support-theme .navbar-wrapper.navbar-ready .navbar .nav-item.dropdown .dropdown-toggle {
    animation: support-nav-in 0.45s ease-out 0.15s both;
  }
  body.support-theme .navbar-wrapper.navbar-ready .navbar-toggler {
    animation: support-nav-in 0.45s ease-out 0.15s both;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.support-theme .navbar-wrapper .navbar-brand,
  body.support-theme .navbar-wrapper .navbar .nav-link,
  body.support-theme .navbar-wrapper .navbar .nav-item.dropdown .dropdown-toggle,
  body.support-theme .navbar-wrapper .navbar-toggler {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (min-width: 1200px) {
  body.support-theme .navbar-wrapper {
    width: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  body.support-theme .navbar-wrapper {
    left: 1.5rem;
    right: 1.5rem;
  }
}
body.support-theme .navbar-wrapper .navbar {
  position: relative;
  top: auto;
  border-radius: var(--support-radius);
  border: none;
  border-bottom: none;
  box-shadow: none;
  background: transparent;
}
body.support-theme .navbar-wrapper .navbar-brand,
body.support-theme .navbar-wrapper .navbar .nav-link {
  color: #fff !important;
}
body.support-theme .navbar-wrapper .navbar-brand:hover,
body.support-theme .navbar-wrapper .navbar-brand:focus,
body.support-theme .navbar-wrapper .navbar .nav-link:hover,
body.support-theme .navbar-wrapper .navbar .nav-link:focus {
  color: #e2e8f0 !important;
}
body.support-theme .navbar-wrapper .navbar .nav-link:hover,
body.support-theme .navbar-wrapper .navbar .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.08);
}
body.support-theme .navbar-wrapper .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent !important;
}
body.support-theme .navbar-wrapper .navbar-toggler:hover,
body.support-theme .navbar-wrapper .navbar-toggler:focus {
  border-color: rgba(255, 255, 255, 0.8) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
body.support-theme .navbar-wrapper .navbar-toggler[aria-expanded="true"] {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body.support-theme .navbar-wrapper .navbar-toggler-icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Dropdown (Other): dark glass to match header, white text */
body.support-theme .navbar-wrapper .dropdown-menu,
body.support-theme .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu {
  background: rgb(255 255 255 / 22%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
body.support-theme .navbar-wrapper .dropdown-item,
body.support-theme .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #fff !important;
  background-color: transparent !important;
}
body.support-theme .navbar-wrapper .dropdown-item:hover,
body.support-theme .navbar-wrapper .dropdown-item:focus,
body.support-theme .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
body.support-theme .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #e2e8f0 !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
body.support-theme .navbar-wrapper .nav-item.dropdown .dropdown-toggle::after {
  border-top-color: #fff;
}

/* Homepage header links: match rest of site (white, same hover) */
body.support-theme.page-support .navbar-wrapper .navbar-brand,
body.support-theme.page-support .navbar-wrapper .navbar .nav-link {
  color: #fff !important;
}
body.support-theme.page-support .navbar-wrapper .navbar-brand:hover,
body.support-theme.page-support .navbar-wrapper .navbar-brand:focus,
body.support-theme.page-support .navbar-wrapper .navbar .nav-link:hover,
body.support-theme.page-support .navbar-wrapper .navbar .nav-link:focus {
  color: #e2e8f0 !important;
}
body.support-theme.page-support .navbar-wrapper .dropdown-item,
body.support-theme.page-support .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #fff !important;
}
body.support-theme.page-support .navbar-wrapper .dropdown-item:hover,
body.support-theme.page-support .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
body.support-theme.page-support .navbar-wrapper .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #e2e8f0 !important;
}
body.support-theme.page-support .navbar-wrapper .nav-item.dropdown .dropdown-toggle::after {
  border-top-color: #fff;
}

/* Mobile menu: white text, toggler matches header */
@media (max-width: 1199px) {
  body.support-theme .navbar-wrapper .navbar-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 -1rem;
    background: transparent;
    max-height: 70vh;
    overflow-y: auto;
  }
  body.support-theme .navbar-wrapper .navbar-nav .nav-link {
    color: #fff !important;
  }
  body.support-theme .navbar-wrapper .navbar-nav .nav-link:hover,
  body.support-theme .navbar-wrapper .navbar-nav .nav-link:focus {
    color: #e2e8f0 !important;
    background-color: rgba(255, 255, 255, 0.08);
  }
  body.support-theme .navbar-wrapper .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08) !important;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 2px 12px rgba(0, 0, 0, 0.12);
  }
  body.support-theme .navbar-wrapper .navbar-toggler:hover,
  body.support-theme .navbar-wrapper .navbar-toggler:focus {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), 0 2px 12px rgba(0, 0, 0, 0.14);
  }
  body.support-theme .navbar-wrapper .navbar-toggler[aria-expanded="true"] {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  body.support-theme .navbar-wrapper .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  body.support-theme .navbar-wrapper .nav-item.dropdown .dropdown-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  body.support-theme .navbar-wrapper .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #fff !important;
  }
  body.support-theme .navbar-wrapper .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
  body.support-theme .navbar-wrapper .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
    color: #e2e8f0 !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
  }
}

@media (max-width: 575px) {
  body.support-theme .navbar-wrapper {
    top: 0.5rem;
    left: 0.75rem;
    right: 0.75rem;
    border-radius: var(--support-radius);
  }
  body.support-theme .navbar-wrapper .navbar {
    border-radius: var(--support-radius);
  }
}

/* Search overlay: input text same off-white as body content */
body.support-theme #nav-search-input {
  color: rgba(255, 255, 255, 0.82);
}
body.support-theme #nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Card styling on /resources, /articles, /qna etc – match homepage (support) radii and shadow */
body.support-theme .home-card {
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.support-theme .home-card:hover,
body.support-theme .home-card:focus {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
body.support-theme .home-card-image-wrap {
  border-radius: var(--support-radius) var(--support-radius) 0 0;
}
body.support-theme .home-section-title {
  color: #fff !important;
}
body.support-theme .home-card-title {
  color: #fff !important;
}
body.support-theme .home-card-desc,
body.support-theme .home-card-meta {
  color: rgba(255, 255, 255, 0.78) !important;
}
body.support-theme .dir-jump-card {
  color: #fff;
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.support-theme .dir-jump-card-label {
  color: #fff !important;
}
body.support-theme .dir-jump-card:hover,
body.support-theme .dir-jump-card:focus {
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

/* Extra space between header and content on /resources */
body.support-theme .page-home [role="main"].container-md {
  padding-top: 6rem !important;
}
body.support-theme .page-home .home-section:first-of-type {
  margin-top: 2rem;
}

.support-page {
  --support-bg: #0f172a;
  --support-text: #94a3b8;
  --support-link: #60a5fa;
  --support-link-hover: #93c5fd;
  --support-muted: #64748b;
  --support-border: #334155;
  --support-section-height: 520px;
  --support-section-spacing: 4rem;
  /* Single gradient for entire page (benchmark: support options) */
  background: linear-gradient(to right, rgba(59, 130, 246, 0.22) 0%, rgba(15, 23, 42, 0.78) 100%);
}

/* Hero – full-viewport; bg extends behind floating header, content below nav */
.support-page .support-hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 1rem var(--support-section-spacing);
  text-align: left;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.support-page .support-hero-has-image .support-hero-bg {
  position: absolute;
  inset: 0;
}

.support-page .support-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.support-page .support-hero-inner {
  position: relative;
  z-index: 1;
}

.support-page .support-hero-inner--full {
  max-width: 44em;
  margin-left: 0;
  margin-right: auto;
}

.support-page .support-hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.support-page .support-hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.support-page .support-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  max-width: 38em;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Hero CTA: glassy pill button, no pulse */
.support-page .support-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #fff !important;
  background: rgba(40, 40, 40, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.support-page .support-hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #3b82f6;
  color: #fff;
  font-size: 0.85rem;
}

.support-page .support-hero-cta:hover,
.support-page .support-hero-cta:focus {
  color: #fff !important;
  background: rgba(55, 65, 81, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

/* Hero text load animation: staggered fade + slide up (only when ready class is set) */
@keyframes support-hero-text-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Initial hidden state until support-hero-ready is added (avoids FOUC) */
.support-page .support-hero:not(.support-hero-ready) .support-hero-tagline,
.support-page .support-hero:not(.support-hero-ready) .support-hero-title,
.support-page .support-hero:not(.support-hero-ready) .support-hero-subtitle,
.support-page .support-hero:not(.support-hero-ready) .support-hero-cta {
  opacity: 0;
  transform: translateY(14px);
}
@media (prefers-reduced-motion: no-preference) {
  .support-page .support-hero.support-hero-ready .support-hero-tagline {
    animation: support-hero-text-in 0.55s ease-out 0.1s both;
  }
  .support-page .support-hero.support-hero-ready .support-hero-title {
    animation: support-hero-text-in 0.55s ease-out 0.25s both;
  }
  .support-page .support-hero.support-hero-ready .support-hero-subtitle {
    animation: support-hero-text-in 0.55s ease-out 0.4s both;
  }
  .support-page .support-hero.support-hero-ready .support-hero-cta {
    animation: support-hero-text-in 0.55s ease-out 0.55s both;
  }
}
@media (prefers-reduced-motion: reduce) {
  .support-page .support-hero .support-hero-tagline,
  .support-page .support-hero .support-hero-title,
  .support-page .support-hero .support-hero-subtitle,
  .support-page .support-hero .support-hero-cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Stats row */
.support-page .support-stats {
  padding: 2rem 1rem;
}

.support-page .support-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-page .support-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.support-page .support-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--support-link);
}

.support-page .support-stat-label {
  font-size: 0.9rem;
  color: var(--support-muted);
}

/* Section tagline (small text above section titles) */
.support-page .support-section-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--support-link);
  margin-bottom: 0.35rem;
  text-align: center;
}

/* Section titles (shared) */
.support-page .support-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-align: center;
}

.support-page .support-subsection-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--support-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Audience section */
.support-page .support-audience {
  display: flex;
  align-items: center;
  padding: var(--support-section-spacing) 1rem;
  box-sizing: border-box;
  background: transparent;
}

.support-page .support-audience .container-md {
  width: 100%;
}

.support-page .support-audience-intro {
  text-align: center;
  color: var(--support-text);
  margin-bottom: 1.5rem;
}

.support-page .support-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.support-page .support-audience-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--support-radius);
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--support-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s ease, transform 0.2s ease;
}
.support-page .support-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.support-page .support-audience-card:hover::before {
  opacity: 0;
}

.support-page .support-audience-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.support-page .support-audience-card-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-page .support-audience-card-emoji {
  font-size: 3rem;
  line-height: 1;
}

.support-page .support-audience-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  background: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 12px rgba(0, 0, 0, 0.5);
}

.support-page .support-audience-card:hover {
  border-color: var(--support-link);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.support-page .support-audience-cta-line {
  text-align: center;
  color: var(--support-text);
  font-size: 1rem;
  max-width: 32em;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.support-page .support-not-for {
  padding-top: 1rem;
}

.support-page .support-not-for-list {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--support-muted);
  font-size: 0.95rem;
}

/* How it works – card with bg image, overlay, 4 steps + timeline */
.support-page .support-how {
  padding: var(--support-section-spacing) 1rem;
  background: transparent;
}

.support-page .support-how--with-bg {
  position: relative;
  margin: 0 1rem 0;
  padding: var(--support-section-spacing) 1.5rem;
  border-radius: var(--support-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.support-page .support-how-bg {
  position: absolute;
  inset: 0;
}

.support-page .support-how-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-page .support-how-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
}

.support-page .support-how-inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
}

.support-page .support-how-inner > *:first-child {
  margin-top: 0;
}

.support-page .support-how-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--support-link);
  margin-bottom: 0.5rem;
  text-align: center;
}

.support-page .support-how-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-align: center;
}

.support-page .support-how-intro {
  font-size: 1rem;
  color: var(--support-text);
  line-height: 1.6;
  text-align: center;
  max-width: 36em;
  margin: 0 auto 2.5rem;
}

.support-page .support-how-timeline {
  position: relative;
}

.support-page .support-how-line {
  position: absolute;
  top: 1.25rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(148, 163, 184, 0.4);
}

.support-page .support-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 4rem;
  position: relative;
}

.support-page .support-how-step {
  text-align: center;
  padding-top: 2.5rem;
}

.support-page .support-how-step-marker {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.support-page .support-how-step-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.6);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.support-page .support-how-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.support-page .support-how-step-desc {
  font-size: 0.875rem;
  color: var(--support-text);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.support-page .support-how-step-desc p {
  margin: 0 0 0.5rem;
}

.support-page .support-how-step-desc p:last-child {
  margin-bottom: 0;
}

.support-page .support-how-step-desc a {
  color: var(--support-link);
  text-decoration: none;
}

.support-page .support-how-step-desc a:hover {
  color: var(--support-link-hover);
  text-decoration: underline;
}

.support-page .support-how-step-desc code {
  font-size: 0.8em;
  background: rgba(51, 65, 85, 0.6);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
}

@media (max-width: 991px) {
  .support-page .support-how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
  .support-page .support-how-line {
    display: none;
  }
  .support-page .support-how-step-marker {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 575px) {
  .support-page .support-how--with-bg {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .support-page .support-how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .support-page .support-how-step,
  .support-page .support-how-step-desc {
    text-align: center;
  }
}

/* Support options pricing – three cards, center highlighted */
.support-page .support-pricing {
  padding: var(--support-section-spacing) 1rem;
  background: transparent;
}

.support-page .support-pricing .container-md > *:first-child {
  margin-top: 0;
}

.support-page .support-pricing .container-md > *:last-child {
  margin-bottom: 0;
}

.support-page .support-pricing-subtitle {
  text-align: center;
  color: var(--support-text);
  font-size: 1rem;
  margin: -0.5rem 0 1.5rem;
}

.support-page .support-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.support-page .support-pricing-card {
  position: relative;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--support-border);
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.support-page .support-pricing-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.support-page .support-pricing-card--highlighted {
  background: #1e293b;
  border-color: var(--support-link);
}

.support-page .support-pricing-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--support-bg);
  background: var(--support-link);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}

.support-page .support-pricing-card-tag--gold {
  color: #1a1510;
  background: linear-gradient(
    110deg,
    #c9a227 0%,
    #e8d48b 25%,
    #d4af37 50%,
    #e8d48b 75%,
    #c9a227 100%
  );
  background-size: 200% 100%;
  animation: support-tag-gold-shimmer 4s ease-in-out infinite;
}

@keyframes support-tag-gold-shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

.support-page .support-pricing-card-tag--shimmer {
  background: linear-gradient(
    110deg,
    #3b82f6 0%,
    #93c5fd 25%,
    #60a5fa 50%,
    #93c5fd 75%,
    #3b82f6 100%
  );
  background-size: 200% 100%;
  animation: support-tag-shimmer 4s ease-in-out infinite;
}

@keyframes support-tag-shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

.support-page .support-pricing-card-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  padding-right: 5rem;
}

.support-page .support-pricing-card-audience {
  font-size: 0.95rem;
  color: var(--support-text);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.support-page .support-pricing-card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--support-link);
  margin: 0 0 0.25rem;
}

.support-page .support-pricing-card-billing {
  font-size: 0.85rem;
  color: var(--support-muted);
  margin: 0 0 1.25rem;
}

.support-page .support-pricing-card-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  color: #94a3b8 !important;
  background-color: #1e293b;
  border: 1px solid var(--support-border);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  margin-bottom: 1.25rem;
}

.support-page .support-pricing-card-btn:hover,
.support-page .support-pricing-card-btn:focus {
  color: #fff !important;
  background-color: #334155 !important;
  border-color: var(--support-link) !important;
  text-decoration: none;
}

.support-page .support-pricing-card-form {
  margin: 0;
}

.support-page .support-pricing-card-form .support-pricing-card-btn {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid var(--support-border);
}

.support-page .support-pricing-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--support-text);
  line-height: 1.5;
}

.support-page .support-pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.support-page .support-pricing-card-features li i.fa-check {
  flex-shrink: 0;
  color: var(--support-link);
}

@media (max-width: 991px) and (min-width: 768px) {
  .support-page .support-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-page .support-pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .support-page .support-pricing {
    padding: var(--support-section-spacing) 1rem;
  }
}

@media (max-width: 767px) {
  .support-page .support-pricing-grid {
    grid-template-columns: 1fr;
  }
  .support-page .support-pricing {
    padding: var(--support-section-spacing) 1rem;
  }
}

/* Contact page – methods section */
.support-page .support-contact-methods {
  padding: 2.5rem 1rem var(--support-section-spacing);
}

/* Hi I'm Ben section when embedded on About page */
.support-page--about-ben .support-trust--contact {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.support-page--about-ben {
  margin-top: 2.5rem;
  border-radius: var(--support-radius);
  overflow: hidden;
}

/* Contact methods when embedded on About page (below avatar) */
.support-page--about-contact {
  margin-top: 2.5rem;
  border-radius: var(--support-radius);
  overflow: hidden;
}

.support-page .contact-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .support-page .contact-method-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.support-page .contact-method-card {
  display: block;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--support-border);
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.support-page .contact-method-card:hover,
.support-page .contact-method-card:focus {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
  border-color: var(--support-link);
  color: inherit;
  text-decoration: none;
}

.support-page .contact-method-card:focus-visible {
  outline: 2px solid var(--support-link);
  outline-offset: 2px;
}

.support-page .contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--support-link);
  font-size: 1.5rem;
}

.support-page .contact-method-emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.support-page .contact-method-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.support-page .contact-method-desc {
  font-size: 0.95rem;
  color: var(--support-text);
  line-height: 1.5;
  margin: 0;
}

/* 50/50 image + text block */
.support-page .support-fifty {
  display: flex;
  align-items: center;
  padding: var(--support-section-spacing) 1rem;
  box-sizing: border-box;
  background: transparent;
}

.support-page .support-fifty .support-fifty-inner {
  width: 100%;
}

.support-page .support-fifty-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.support-page .support-fifty-col-image {
  display: flex;
  align-items: stretch;
}

.support-page .support-fifty-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 462px;
  aspect-ratio: 1.1;
  margin: 0 auto;
}

.support-page .support-fifty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.support-page .support-fifty-content-wrap {
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
}

.support-page .support-fifty-content {
  max-width: 28em;
  margin: 0 auto;
}

.support-page .support-fifty-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.support-page .support-fifty-body {
  font-size: 1rem;
  color: var(--support-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.support-page .support-fifty-body p:last-child {
  margin-bottom: 0;
}

.support-page .support-fifty-body a {
  color: var(--support-link);
  text-decoration: none;
}

.support-page .support-fifty-body a:hover {
  color: var(--support-link-hover);
  text-decoration: underline;
}

.support-page .support-fifty-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  color: #94a3b8 !important;
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.support-page .support-fifty-cta:hover,
.support-page .support-fifty-cta:focus {
  color: #fff !important;
  background-color: #334155 !important;
  border-color: #60a5fa !important;
  text-decoration: none;
}

/* Trust / credibility section */
.support-page .support-trust {
  padding: var(--support-section-spacing) 0;
}

.support-page .support-trust--contact {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.support-page .support-trust-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--support-border);
  border-radius: var(--support-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.support-page .support-trust-col-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-page .support-trust-image-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 2.5rem 2.25rem;
}

.support-page .support-trust-image {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
  border: 3px solid var(--support-border);
  flex-shrink: 0;
  min-width: 0;
  aspect-ratio: 1;
}

.support-page .support-trust-image--photo {
  width: 190px;
  height: 190px;
  object-position: center 15%;
}

.support-page .support-trust-image--avatar {
  width: 190px;
  height: 190px;
}

.support-page .support-trust-content-wrap {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem 2.25rem;
}

.support-page .support-trust-content {
  max-width: 32em;
  margin: 0 auto;
}

.support-page .support-trust-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.support-page .support-trust-body {
  font-size: 1rem;
  color: var(--support-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.support-page .support-trust-body p:last-child {
  margin-bottom: 0;
}

.support-page .support-trust-body a {
  color: var(--support-link);
  text-decoration: none;
}

.support-page .support-trust-body a:hover {
  color: var(--support-link-hover);
  text-decoration: underline;
}

.support-page .support-trust-credentials {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.support-page .support-trust-credentials li {
  padding: 0.4rem 0;
  color: var(--support-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.support-page .support-trust-credentials li i {
  color: #60a5fa;
  margin-right: 0.6rem;
  font-size: 0.85rem;
}

/* Carousel section */
.support-page .support-carousel-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--support-section-spacing) 1rem;
  box-sizing: border-box;
  background: transparent;
}

.support-page .support-carousel-section .container-md {
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.support-page .support-carousel-section .container-md > *:first-child {
  margin-top: 0;
}

.support-page .support-carousel-section .container-md > *:last-child {
  margin-bottom: 0;
}

.support-page .support-carousel {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--support-radius);
  overflow: hidden;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--support-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.support-page .support-carousel-slide {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 280px;
}

.support-page .support-carousel-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 160px;
  height: 200px;
  min-height: 200px;
  text-align: center;
}

.support-page .support-carousel-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.support-page .support-carousel-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.75rem 0;
  min-height: 200px;
  max-width: 320px;
}

.support-page .support-carousel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem 0;
}

.support-page .support-carousel-desc {
  font-size: 0.95rem;
  color: var(--support-text);
  margin: 0;
  line-height: 1.6;
}

.support-page .support-carousel-desc p:last-child {
  margin-bottom: 0;
}

.support-page .support-carousel .carousel-indicators {
  bottom: -0.5rem;
}

.support-page .support-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--support-border);
}

.support-page .support-carousel .carousel-indicators li.active {
  background-color: var(--support-link);
}

.support-page .support-carousel .carousel-control-prev,
.support-page .support-carousel .carousel-control-next {
  opacity: 0.8;
  width: 40px;
}

.support-page .support-carousel .carousel-control-prev-icon,
.support-page .support-carousel .carousel-control-next-icon {
  filter: none;
}

/* FAQ section – 50/50 layout, accordion (theme colors) */
.support-page .support-faq {
  padding: var(--support-section-spacing) 1rem;
  background: transparent;
}

.support-page .support-faq-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.support-page .support-faq-left {
  padding-top: 0.5rem;
}

.support-page .support-faq-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.support-page .support-faq-supporting {
  font-size: 1rem;
  color: var(--support-text);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.support-page .support-faq-cta {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8 !important;
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--support-border);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.support-page .support-faq-cta:hover,
.support-page .support-faq-cta:focus {
  color: #fff !important;
  background-color: #334155 !important;
  border-color: var(--support-link) !important;
  text-decoration: none;
}

.support-page .support-faq-right {
  min-width: 0;
}

.support-page .support-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-page .support-faq-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--support-border);
  border-radius: var(--support-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.support-page .support-faq-question-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
}

.support-page .support-faq-question-wrap:hover {
  background: rgba(51, 65, 85, 0.3);
}

.support-page .support-faq-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  flex: 1;
}

.support-page .support-faq-chevron {
  flex-shrink: 0;
  color: var(--support-text);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.support-page .support-faq-item:has(.collapse.show) .support-faq-chevron {
  transform: rotate(180deg);
}

.support-page .support-faq-answer-wrap {
  border-top: 1px solid var(--support-border);
}

.support-page .support-faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--support-text);
  line-height: 1.6;
}

.support-page .support-faq-answer p {
  margin: 0 0 0.5rem;
}

.support-page .support-faq-answer p:last-child {
  margin-bottom: 0;
}

.support-page .support-faq-answer a {
  color: var(--support-link);
  text-decoration: none;
}

.support-page .support-faq-answer a:hover {
  color: var(--support-link-hover);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .support-page .support-faq-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .support-page .support-faq-left {
    text-align: center;
  }
  .support-page .support-faq-cta {
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .support-page .support-faq {
    padding: var(--support-section-spacing) 0.75rem;
  }
  .support-page .support-faq-question-wrap {
    padding: 0.9rem 1rem;
  }
  .support-page .support-faq-answer {
    padding: 0.9rem 1rem 1rem;
  }
}

/* CTA row – card with contrasting line work (theme colors) */
.support-page .support-cta-row {
  padding: var(--support-section-spacing) 1rem;
  box-sizing: border-box;
  background: transparent;
}

.support-page .support-cta-row-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--support-radius);
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--support-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.support-page .support-cta-row-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.support-page .support-cta-row-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.support-page .support-cta-row-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 32em;
  margin: 0 auto;
}

.support-page .support-cta-row-inner > *:first-child {
  margin-top: 0;
}

.support-page .support-cta-row-inner > *:last-child {
  margin-bottom: 0;
}

.support-page .support-cta-row-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.support-page .support-cta-row-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.support-page .support-cta-row-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.support-page .support-cta-row-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

/* Final card CTA: same size and shape as FAQ "Contact our team", keep hero styling and hover */
.support-page .support-cta-row .support-hero-cta {
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
.support-page .support-cta-row .support-hero-cta-arrow {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.7rem;
}

.support-page .support-cta-row-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.5rem;
}

.support-page .support-cta-row-btn-secondary {
  color: #94a3b8 !important;
  font-weight: 600;
  background-color: #1e293b;
  border: 1px solid #334155;
  border-color: #334155 !important;
  border-radius: 0.5rem;
  text-decoration: none;
}

.support-page .support-cta-row-btn-secondary:hover,
.support-page .support-cta-row-btn-secondary:focus {
  color: #fff !important;
  background-color: #334155 !important;
  border-color: #60a5fa !important;
  text-decoration: none;
}

@media (max-width: 575px) {
  .support-page .support-cta-row-card {
    padding: 2rem 1.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

/* Payment CTA */
.support-page .support-payment-cta {
  padding: 3rem 1rem 4rem;
  text-align: center;
}

.support-page .support-payment-intro {
  color: var(--support-text);
  margin-bottom: 1.5rem;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.support-page .support-payment-form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive: stack and spacing on small screens */
@media (max-width: 991px) {
  /* Allow sections to grow on mobile; keep unified spacing */
  .support-page .support-audience,
  .support-page .support-fifty,
  .support-page .support-carousel-section {
    height: auto;
    min-height: 0;
    padding: var(--support-section-spacing) 1rem;
  }

  .support-page .support-fifty-content-wrap {
    padding: 2rem 1rem;
  }

  .support-page .support-fifty-image-wrap {
    min-height: 240px;
  }

  .support-page .support-carousel-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem;
  }

  .support-page .support-carousel-image-wrap {
    height: 180px;
    min-height: 180px;
    max-width: none;
  }

  .support-page .support-carousel-image {
    width: 144px;
    height: 144px;
  }

  .support-page .support-carousel-caption {
    order: -1;
    text-align: center;
    align-items: center;
    min-height: 0;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .support-page .support-hero {
    padding: 6rem 0.75rem var(--support-section-spacing);
  }

  .support-page .support-hero-has-image .support-hero-bg img {
    opacity: 0.45;
  }

  .support-page .support-cta-row-card-bg img {
    opacity: 0.45;
  }

  .support-page .support-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .support-page .support-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .support-page .support-audience-card {
    aspect-ratio: 0.85;
  }

  .support-page .support-audience-card-text {
    padding: 0.5rem 0.5rem 0.4rem;
    font-size: 0.8rem;
  }

  .support-page .support-fifty-image-wrap {
    min-height: 200px;
  }

  .support-page .support-cta-row-buttons {
    flex-direction: column;
    align-items: center;
  }

  .support-page .support-cta-row-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .support-page .support-cta-row-inner {
    width: 100%;
  }

  /* Trust section: stack on tablet */
  .support-page .support-trust-content-wrap {
    padding: 2rem 1.5rem;
  }
}

/* Small mobile refinements */
@media (max-width: 575px) {
  .support-page .support-hero {
    padding-top: 4.5rem;
  }

  .support-page .support-fifty-content-wrap {
    padding: 1.5rem 0.75rem;
  }

  .support-page .support-carousel-title {
    font-size: 1.1rem;
  }
  .support-page .support-carousel-desc {
    font-size: 0.85rem;
  }

  /* Trust section: tighten on small screens */
  .support-page .support-trust-image--photo {
    width: 140px;
    height: 140px;
  }
  .support-page .support-trust-image--avatar {
    width: 140px;
    height: 140px;
  }
  .support-page .support-trust-image-wrap {
    padding: 1rem;
  }
  .support-page .support-trust-content-wrap {
    padding: 1.5rem 0.75rem;
  }
}

/* =========================================
   Focus-visible states for accessibility
   ========================================= */
.support-page .support-pricing-card-btn:focus-visible,
.support-page .support-fifty-cta:focus-visible,
.support-page .support-faq-cta:focus-visible,
.support-page .support-faq-question-wrap:focus-visible,
.support-page .support-hero-cta:focus-visible,
.support-page .support-cta-row-btn-secondary:focus-visible,
.support-page .support-trust-body a:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

/* =========================================
   Podcasts page – card grid, drop shadows, logos
   ========================================= */
.page-podcasts .podcasts-page {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.page-podcasts .podcasts-intro {
  margin-bottom: 1.5rem;
}

.page-podcasts .podcasts-intro-tagline {
  font-size: 1.125rem;
  color: #94a3b8;
  margin: 0 0 0.5rem;
}

.page-podcasts .podcasts-section {
  margin-top: 2rem;
}

.page-podcasts .podcasts-section-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.page-podcasts .podcasts-section-desc {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.page-podcasts .podcast-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Regular shows: strict 50/50, larger cards */
.page-podcasts .podcast-card-grid-50 {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.page-podcasts .podcasts-regular .podcast-card {
  padding: 1rem;
}

/* With logo, fill to corners like highlight/guest cards */
.page-podcasts .podcasts-regular .podcast-card.podcast-card-has-logo {
  padding: 0;
}

/* Shorter image area: 25% less height than square */
.page-podcasts .podcasts-regular .podcast-card .podcast-card-logo-wrap {
  aspect-ratio: 4 / 3;
}

.page-podcasts .podcasts-regular .podcast-card-placeholder {
  aspect-ratio: 4 / 3;
  font-size: 2.5rem;
}

.page-podcasts .podcasts-regular .podcast-card-title {
  font-size: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-podcasts .podcasts-regular .podcast-card-desc {
  font-size: 0.9375rem;
}

.page-podcasts .podcast-card {
  display: block;
  min-width: 0;
  background-color: #1e293b;
  border: 2px solid #475569;
  border-radius: 0.75rem;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-podcasts .podcast-card:hover,
.page-podcasts .podcast-card:focus {
  border-color: #60a5fa;
  background-color: #334155;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.page-podcasts .podcast-card:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

.page-podcasts .podcast-card-has-logo {
  padding: 0;
}

.page-podcasts .podcast-card-logo-wrap {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  /* Match card inner corner (card radius minus border width) */
  border-radius: calc(0.75rem - 2px) calc(0.75rem - 2px) 0 0;
}

.page-podcasts .podcast-card-logo {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  /* Match wrapper so image corners align with card inner radius */
  border-radius: calc(0.75rem - 2px) calc(0.75rem - 2px) 0 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.page-podcasts .podcast-card:hover .podcast-card-logo,
.page-podcasts .podcast-card:focus .podcast-card-logo {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.page-podcasts .podcast-card-has-logo .podcast-card-title {
  padding: 0.625rem 1.25rem 0.25rem 1.25rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-podcasts .podcast-card-has-logo .podcast-card-date {
  padding: 0 1.25rem;
}

.page-podcasts .podcast-card-has-logo .podcast-card-desc {
  padding: 0 1.25rem 0.875rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  line-height: 1.4;
}

.page-podcasts .podcast-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #475569;
  background-color: #334155;
  /* Match card inner corner (card radius minus border width) */
  border-radius: calc(0.75rem - 2px) calc(0.75rem - 2px) 0 0;
  text-transform: uppercase;
}

.page-podcasts .podcast-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-podcasts .podcast-card:hover .podcast-card-title,
.page-podcasts .podcast-card:focus .podcast-card-title {
  color: #fff;
}

.page-podcasts .podcast-card-date {
  font-size: 0.8125rem;
  margin: 0 0 0.25rem;
  color: #64748b;
}

.page-podcasts .podcast-card-desc {
  font-size: 0.875rem;
  margin: 0;
  color: #94a3b8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  line-height: 1.4;
}

.page-podcasts .podcast-card:hover .podcast-card-desc,
.page-podcasts .podcast-card:focus .podcast-card-desc {
  color: #cbd5e1;
}

/* Highlights section – single prominent card(s) */
/* Same shape and size as regular show cards */
.page-podcasts .podcast-card-grid-highlight {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  /* Match gap below section title to sections that have a desc (title margin + desc margin) */
  margin-top: 1rem;
}

.page-podcasts .podcast-card-highlight {
  padding: 0;
}

.page-podcasts .podcast-card-highlight .podcast-card-logo-wrap {
  aspect-ratio: 4 / 3;
}

/* Match placeholder to logo area so cards without images align with others */
.page-podcasts .podcast-card-highlight .podcast-card-placeholder {
  aspect-ratio: 4 / 3;
  font-size: 2.5rem;
}

.page-podcasts .podcast-card-highlight .podcast-card-title {
  font-size: 1.25rem;
  padding: 0.625rem 1.25rem 0.25rem 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-podcasts .podcast-card-highlight .podcast-card-desc {
  font-size: 0.9375rem;
  padding: 0 1.25rem 0.875rem;
  color: #94a3b8;
}

/* Featured guest card – slightly larger / more prominent (legacy, used in grid) */
.page-podcasts .podcast-card-featured {
  grid-column: 1 / -1;
  max-width: 400px;
  justify-self: start;
}

.page-podcasts .podcast-card-featured .podcast-card-logo-wrap {
  aspect-ratio: 16 / 9;
}

@media (max-width: 767px) {
  .page-podcasts .podcast-card-grid {
    grid-template-columns: 1fr;
  }

  .page-podcasts .podcast-card-grid-50,
  .page-podcasts .podcast-card-grid-highlight {
    grid-template-columns: 1fr;
  }

  /* Historical: 2 compact cards per row on small screens */
  .page-podcasts .podcasts-guest .podcast-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .page-podcasts .podcasts-guest .podcast-card .podcast-card-logo-wrap {
    aspect-ratio: 1;
  }

  .page-podcasts .podcasts-guest .podcast-card-has-logo .podcast-card-title {
    padding: 0.375rem 0.5rem 0.125rem 0.5rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page-podcasts .podcasts-guest .podcast-card-has-logo .podcast-card-desc {
    padding: 0 0.5rem 0.5rem;
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .page-podcasts .podcasts-guest .podcast-card-placeholder {
    aspect-ratio: 1;
    font-size: 1.25rem;
  }

  .page-podcasts .podcasts-guest .podcast-card:not(.podcast-card-has-logo) .podcast-card-title {
    font-size: 0.8125rem;
    padding: 0.375rem 0.5rem 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page-podcasts .podcasts-guest .podcast-card:not(.podcast-card-has-logo) .podcast-card-desc {
    font-size: 0.6875rem;
    padding: 0 0.5rem 0.5rem;
  }
}
