/* ============================================================
   FIT REWARDS — GLOBAL STYLES
   Update the custom properties below when brand tokens arrive.
   ============================================================ */

/* === BRAND TOKENS ========================================== */
:root {
  /* Primary — teal */
  --color-primary:        #00C2AE;
  --color-primary-dark:   #009e8c;
  --color-primary-light:  #e0f8f6;
  --color-primary-text:   #FFFFFF;

  /* Accent — purple */
  --color-accent:         #4f3f6f;
  --color-accent-dark:    #3d2f56;
  --color-accent-light:   #f1eef2;
  --color-accent-text:    #FFFFFF;

  /* Neutrals */
  --color-ink:            #1a1a1a;
  --color-ink-muted:      #6B7280;
  --color-ink-faint:      #9CA3AF;
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #f1eef2;
  --color-bg-dark:        #4f3f6f;
  --color-border:         #E5E7EB;
  --color-border-dark:    #D1D5DB;

  /* Semantic */
  --color-success:        #22C55E;
  --color-warning:        #F59E0B;
  --color-error:          #EF4444;

  /* --- TYPOGRAPHY --- */
  --font-heading:  'degular', 'ApfelGrotezk', sans-serif;
  --font-body:     'ApfelGrotezk', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;

  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    0.875rem;  /* 14px */
  --text-base:  1rem;      /* 16px */
  --text-lg:    1.125rem;  /* 18px */
  --text-xl:    1.25rem;   /* 20px */
  --text-2xl:   1.5rem;    /* 24px */
  --text-3xl:   1.875rem;  /* 30px */
  --text-4xl:   2.25rem;   /* 36px */
  --text-5xl:   3rem;      /* 48px */
  --text-6xl:   3.75rem;   /* 60px */

  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold: 600;
  --weight-bold:    700;
  --weight-black:   900;

  /* --- SPACING --- */
  --space-1:  0.25rem;   /* 4px  */
  --space-2:  0.5rem;    /* 8px  */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* --- LAYOUT --- */
  --container-max:   1200px;
  --container-prose: 720px;
  --container-narrow: 640px;

  /* --- BORDERS & RADII --- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- SHADOWS --- */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 48px rgba(0,0,0,0.14);

  /* --- TRANSITIONS --- */
  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   300ms ease;

  /* --- NAV --- */
  --nav-height: 96px;
  --nav-bg:        #4f3f6f;
  --font-nav:      var(--font-body);
}

/* === FONTS ================================================= */
@font-face {
  font-family: 'ApfelGrotezk';
  src: url('/assets/fonts/ApfelGrotezk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ApfelGrotezk';
  src: url('/assets/fonts/ApfelGrotezk-Mittel.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ApfelGrotezk';
  src: url('/assets/fonts/ApfelGrotezk-Fett.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === RESET ================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #f1eef2;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: var(--leading-normal);
  color: var(--color-ink);
  background: #4f3f6f;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-ink);
}

/* === LAYOUT ================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 640px) {
  .container { padding-inline: var(--space-4); }
}

/* === NAVIGATION ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  transition: transform var(--transition-slow);
}
.site-header.nav-hidden { transform: translateY(-100%); }

/* Single flex bar: [logo] [center: toggle+links] [download] */
.nav {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: var(--space-8);
  padding-right: 260px;
}

/* Logo — far left, ~160px wide */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: var(--space-4) 0;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; }

/* Center: toggle + links stacked, both horizontally centered */
.nav-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
}

/* Audience toggle — full-bleed active state fills exactly half; overflow:hidden clips to container radius */
.nav-audience-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.nav-audience-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex: 1;
  padding: 8px var(--space-5);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: white;
  background: transparent;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.nav-audience-btn:first-child { border-radius: 14px 0 0 14px; }
.nav-audience-btn:last-child  { border-radius: 0 14px 14px 0; }
.nav-audience-btn img { width: 16px; height: 16px; flex-shrink: 0; }
.nav-audience-btn.is-active { background: white; color: var(--nav-bg); border-radius: 14px; }

/* data-audience on <html> set by inline <head> script — overrides server-rendered is-active */
[data-audience="individuals"] .nav-audience-btn[data-audience="individuals"] { background: white; color: var(--nav-bg); border-radius: 14px; }
[data-audience="individuals"] .nav-audience-btn[data-audience="business"]    { background: transparent; color: white; }
[data-audience="business"] .nav-audience-btn[data-audience="business"]       { background: white; color: var(--nav-bg); border-radius: 14px; }
[data-audience="business"] .nav-audience-btn[data-audience="individuals"]    { background: transparent; color: white; }

/* Nav links row — centered below toggle */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  line-height: 1;
  transition: color var(--transition-fast);
}
.nav-link:hover { color: white; }
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: white;
  border-radius: 1px;
}
.nav-link.is-active { color: white; }

.nav-chevron { transition: transform var(--transition-fast); flex-shrink: 0; }
.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Resources dropdown — centered under trigger */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: 200;
}
.nav-dropdown.is-open { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: #000000;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
}
.nav-dropdown-item span {
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.nav-dropdown-item:hover {
  background: rgba(79, 63, 111, 0.12);
}
.nav-dropdown-item:hover span {
  border-bottom: 2px solid #4f3f6f;
}
.nav-dropdown-item img { width: 20px; height: 20px; flex-shrink: 0; }

/* Download App — absolute right, angled left cut */
.nav-download {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 56px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  background: white;
  color: var(--nav-bg);
  min-width: 220px;
  padding: 0 64px 0 calc(64px + 20px);
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.nav-download:hover { opacity: 0.9; }

/* Mobile toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* === HERO ================================================== */
/* === HOME HERO ============================================= */
.hero-home {
  position: relative;
  background: #4f3f6f;
  min-height: 680px;
  padding-top: 0px;
  padding-bottom: 0;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-home-inner {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-home-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}
.hero-home-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
}
.hero-home-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.hero-home-tag-sep { opacity: 0.5; }
.hero-home-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-bottom: 20px;
}
.hero-home-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-home-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-home-badges img { height: 56px; width: auto; display: block; }
.hero-home-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* === STATS & PARTNERS ====================================== */
.stats-partners {
  background: #f1eef2;
  padding-top: 96px;
  padding-bottom: 96px;
}
.stats-partners-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 160px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: #666;
  margin-top: 6px;
}
.partners-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #1a1a1a;
  text-align: center;
  margin-top: 64px;
  margin-bottom: 40px;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.carousel-wrapper-second {
  margin-top: 0;
}
.carousel-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.carousel-track-left {
  animation: scrollLeft 80s linear infinite;
  animation-play-state: running;
}
.carousel-track-right {
  animation: scrollRight 80s linear infinite;
  animation-play-state: running;
}
@keyframes scrollLeft {
  from { transform: translateZ(0) translateX(0); }
  to   { transform: translateZ(0) translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateZ(0) translateX(-50%); }
  to   { transform: translateZ(0) translateX(0); }
}
.carousel-logo {
  width: 140px;
  height: 44px;
  background: #ccc;
  border-radius: 6px;
  flex-shrink: 0;
  margin-right: 64px;
}
.carousel-item {
  display: block;
  flex-shrink: 0;
  margin-right: 56px;
  filter: grayscale(1);
  height: 100px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

/* === PARTNER PAGE ========================================== */
.partner-page-hero {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.partner-page-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.partner-page-body {
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}
.partner-back-link {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-bottom: var(--space-8);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.partner-back-link:hover { color: var(--color-ink); }
.partner-page-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.partner-page-logo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}
.partner-page-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-page-category {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-2);
}
.partner-page-name {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}
.partner-page-website {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.partner-page-website:hover { color: var(--color-ink); }
.partner-page-description {
  max-width: var(--container-prose);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-ink-muted);
}
.partner-page-description p + p { margin-top: var(--space-4); }

/* Partner listing card */
.partner-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: var(--space-6);
}
.partner-card-logo img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
}

/* === HOW IT WORKS ========================================== */
.hiw-section {
  background: #4f3f6f;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hiw-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.hiw-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--leading-tight);
  margin-bottom: 8px;
}
.hiw-subtext {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 680px;
}

/* Tabs */
.hiw-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 64px;
}
.hiw-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-medium);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.hiw-tab img {
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.hiw-tab.is-active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}
.hiw-tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Panels */
.hiw-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hiw-panel.is-active {
  display: flex;
  align-items: center;
  gap: 100px;
  opacity: 1;
}

/* Visual column */
.hiw-panel-visual {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.hiw-phone {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Copy column */
.hiw-panel-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.hiw-panel-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hiw-panel-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hiw-panel-body a {
  color: #00C2AE;
  text-decoration: underline;
}

/* === PARTNERS GRID ========================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.partner-card-logo {
  height: 120px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.partner-card-logo img { max-height: 60px; object-fit: contain; }
.partner-card-logo .partner-logo-placeholder {
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  color: var(--color-ink-faint);
}
.partner-card-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.partner-card-body h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.partner-category {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.partner-card-body p { color: var(--color-ink-muted); font-size: var(--text-sm); flex: 1; margin-bottom: var(--space-4); }
.partner-offer {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: inline-block;
}

/* === LEARN ================================================== */
.learn-hero {
  background: #4f3f6f;
  padding: 96px 60px 80px;
  text-align: center;
}
.learn-hero-inner {
  max-width: 760px;
  margin-inline: auto;
}
.learn-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00C2AE;
  background: rgba(0, 194, 174, 0.15);
  padding: 6px 14px;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.learn-hero-tag-sep { opacity: 0.5; }
.learn-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
}
.learn-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 32px;
}
.learn-index {
  background: #f1eef2;
  padding: 96px 60px;
}
.learn-index-inner {
  max-width: 1200px;
  margin-inline: auto;
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.learn-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #e8e4ed;
  border-radius: 20px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.learn-card:hover {
  box-shadow: 0 16px 48px rgba(79, 63, 111, 0.12);
  transform: translateY(-3px);
  border-color: #c8bedd;
}
.learn-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.learn-card-category {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f3f6f;
  background: #f1eef2;
  padding: 5px 12px;
  border-radius: 8px;
}
.learn-card-meta time {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 13px;
  color: #888;
}
.learn-card-title {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}
.learn-card-excerpt {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.learn-card-read {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00C2AE;
}
.learn-empty {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 16px;
  color: #888;
}

/* === LISTING INDEX (learn/events/help) ===================== */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}
.listing-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
}
.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.listing-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.listing-card-meta time {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}
.listing-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.listing-card p {
  color: var(--color-ink-muted);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  flex: 1;
}
.listing-card-footer {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

/* === ARTICLES ============================================== */
.article-hero {
  background: #4f3f6f;
  padding: 80px 60px 96px;
}
.article-hero-inner {
  max-width: 760px;
  margin-inline: auto;
}
.article-hero-back {
  display: inline-block;
  font-family: ApfelGrotezk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.15s ease;
}
.article-hero-back:hover { color: #ffffff; }
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.article-hero-category {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00C2AE;
  background: rgba(0, 194, 174, 0.15);
  padding: 6px 14px;
  border-radius: 8px;
}
.article-hero-date {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.article-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.article-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.article-body {
  background: #ffffff;
  padding: 80px 60px;
}
.article-body-inner {
  max-width: 760px;
  margin-inline: auto;
}
.article-footer-back {
  display: inline-block;
  font-family: ApfelGrotezk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4f3f6f;
  text-decoration: none;
  margin-top: 48px;
  transition: opacity 0.15s ease;
}
.article-footer-back:hover { opacity: 0.7; }
.article-cta {
  background: #4f3f6f;
  padding: 80px 60px;
  text-align: center;
}
.article-cta-inner {
  max-width: 600px;
  margin-inline: auto;
}
.article-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.article-cta-lead {
  font-family: ApfelGrotezk, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}
.article-cta-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-cta-badge img {
  height: 44px;
  display: block;
}

/* === PROSE ================================================= */
.prose {
  max-width: var(--container-prose);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-ink);
}
.prose h2 { font-size: var(--text-3xl); margin: var(--space-12) 0 var(--space-5); letter-spacing: -0.02em; }
.prose h3 { font-size: var(--text-2xl); margin: var(--space-10) 0 var(--space-4); }
.prose h4 { font-size: var(--text-xl);  margin: var(--space-8) 0 var(--space-3); }
.prose p  { margin-bottom: var(--space-6); }
.prose a  { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--color-primary-dark); }
.prose ul, .prose ol { margin: 0 0 var(--space-6) var(--space-6); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--space-2); }
.prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  color: var(--color-ink-muted);
  font-style: italic;
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.125em 0.375em;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-12) 0;
}
.prose img {
  border-radius: var(--radius-lg);
  margin: var(--space-8) 0;
  width: 100%;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-8) 0;
  font-size: var(--text-base);
}
.prose th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  background: #f1eef2;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4f3f6f;
  border-bottom: 2px solid #e8e4ed;
}
.prose td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid #e8e4ed;
  color: var(--color-ink);
}
.prose tr:last-child td { border-bottom: none; }

/* === PAGE LAYOUT (simple text pages) ====================== */
.page-hero {
  padding: var(--space-16) 0 var(--space-12);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  letter-spacing: -0.02em;
}
.page-hero .lead {
  font-size: var(--text-xl);
  color: var(--color-ink-muted);
  max-width: 52ch;
  margin-top: var(--space-5);
  line-height: var(--leading-relaxed);
}
.page-body { padding: var(--space-16) 0; }

/* === FORM ================================================== */
.form { max-width: 560px; }
.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--color-ink);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* === FOOTER ================================================ */
.site-footer {
  background: #4f3f6f;
}

/* Two-column main area: brand left, sitemap right */
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 140px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 48px 40px 0;
}

/* Left column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.footer-logo { display: inline-flex; }
.footer-logo img { height: 48px; width: auto; }
.footer-badges {
  display: flex;
  flex-direction: row;
  gap: var(--space-3);
  align-items: center;
}
.footer-badges img { height: 40px; width: auto; display: block; }

/* Right column: 4-column sitemap */
.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Desktop: accordion trigger looks like a plain heading */
.footer-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 var(--space-2) 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: default;
  pointer-events: none;
}
.footer-chevron { display: none; }

/* Desktop: content always visible */
.footer-accordion-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-sitemap-col a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-sitemap-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0 24px;
}

/* Bottom row */
.footer-bottom {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 40px 28px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}
.footer-social a:hover { opacity: 0.75; }
.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* === SECTION PADDING ======================================= */
.section-pad {
  padding-left: 60px;
  padding-right: 60px;
}

/* === UTILITY =============================================== */
.lead {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
}
.text-center { text-align: center; }
.text-muted   { color: var(--color-ink-muted); }
.mt-auto      { margin-top: auto; }

/* CTA photo section */
.cta-photo {
  background: #f1eef2;
  padding-top: 96px;
  padding-bottom: 96px;
}
.cta-photo-content {
  text-align: center;
}
.cta-photo-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #1a1a1a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.15;
}
.cta-photo-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: #666;
  max-width: 500px;
  margin: 20px auto 36px;
  line-height: 1.6;
}
.cta-photo-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
.cta-photo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
.cta-photo-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLeft 90s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.cta-photo-item {
  height: 360px;
  width: 360px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  margin-right: 24px;
}

/* === RESPONSIVE ============================================ */
@media (max-width: 1280px) {
  .section-pad { padding-left: 48px; padding-right: 48px; }
}

@media (max-width: 1024px) {
  .section-pad { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 768px) {
  /* Mobile nav height: logo 32px + 16px padding top + 16px padding bottom */
  :root { --nav-height: 64px; }

  .section-pad { padding-left: 20px; padding-right: 20px; }

  /* Mobile hero */
  .hero-home {
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-home-copy {
    max-width: unset;
    padding: 40px 0 20px;
    text-align: center;
    order: 2;
  }
  .hero-home-visual {
    order: 1;
    justify-content: center;
    align-self: auto;
  }
  .hero-home-image {
    max-height: 260px;
    width: auto;
    margin-inline: auto;
  }
  .hero-home-h1 { white-space: normal; }
  .hero-home-lead { max-width: unset; }
  .hero-home-badges { justify-content: center; }

  /* Mobile stats */
  .stats-row { gap: 48px; }

  /* Mobile HIW */
  .hiw-section { padding-top: 48px; padding-bottom: 48px; }
  .hiw-tabs { flex-wrap: wrap; }
  .hiw-tab { flex: 1 1 calc(50% - 6px); }
  .hiw-panel.is-active {
    flex-direction: column;
    gap: 40px;
  }
  .hiw-panel-visual {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .hiw-phone { max-height: 360px; }
  .hiw-panel-copy { width: 100%; }

  /* Mobile nav: hamburger left, logo right */
  .nav {
    padding: 0 20px;
  }
  .nav-toggle { display: flex; margin-left: 0; }
  .nav-logo   { margin-left: auto; }
  .nav-logo img { height: 32px; }
  .nav-center { display: none !important; }
  .nav-download { display: none; }

  .footer-main { grid-template-columns: 1fr; gap: var(--space-8); padding: 40px 24px 0; }
  .footer-brand { align-items: center; }
  .footer-sitemap { display: block; }
  .footer-badges { flex-direction: row; justify-content: center; align-items: center; }
  .footer-bottom { padding: 0 24px 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; gap: var(--space-4); text-align: center; }

  /* Accordion: interactive on mobile */
  .footer-accordion-trigger {
    cursor: pointer;
    pointer-events: auto;
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer-chevron { display: block; flex-shrink: 0; transition: transform 0.3s ease; }
  .footer-accordion-trigger[aria-expanded="true"] .footer-chevron { transform: rotate(180deg); }
  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-accordion-trigger[aria-expanded="true"] + .footer-accordion-content { max-height: 300px; }
  .footer-accordion-content li a {
    display: block;
    padding: 10px 0 10px 12px;
  }
}

/* === HAMBURGER → X ANIMATION =============================== */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE OVERLAY ======================================== */
.nav-overlay {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* === MOBILE SLIDE-IN MENU ================================== */
.nav-mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  height: calc(100vh - var(--nav-height));
  width: 340px;
  max-width: 85vw;
  background: var(--nav-bg);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.nav-mobile-menu.is-open {
  transform: translateX(0);
}
.nav-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  min-height: 100%;
  gap: var(--space-5);
}

/* Full-width toggle inside mobile menu */
.nav-mobile-menu .nav-audience-toggle {
  display: flex;
  width: 100%;
}

/* Mobile nav links */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  text-decoration: none;
  border-radius: var(--radius-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.nav-mobile-link.is-active {
  font-weight: var(--weight-semibold);
}

/* Mobile Resources submenu */
.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: var(--space-4);
  gap: 0;
}
.nav-mobile-submenu.is-open { display: flex; }
.nav-mobile-dropdown-trigger.is-open .nav-chevron { transform: rotate(180deg); }

.nav-mobile-sublink {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile-sublink:hover,
.nav-mobile-sublink:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.nav-mobile-sublink.is-active { color: white; }

/* Mobile Download CTA */
.nav-mobile-cta {
  margin-top: auto;
  padding-top: var(--space-6);
}
.nav-mobile-download-btn {
  display: block;
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: white;
  color: var(--nav-bg);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-mobile-download-btn:hover { opacity: 0.9; }

@media (max-width: 480px) {
  .section { padding: var(--space-16) 0; }
  .footer-badges { flex-direction: column; align-items: center; }
  .listing-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 32px; flex-direction: column; align-items: center; }
}

/* === PARTNERS PAGE ========================================= */

.partners-hero {
  position: relative;
  background: #4f3f6f;
  min-height: 680px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.partners-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partners-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}
.partners-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
}
.partners-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.partners-hero-tag-sep { opacity: 0.5; }
.partners-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.partners-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.partners-hero-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.partners-hero-badges img { height: 56px; width: auto; display: block; }
.partners-hero-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.partners-filter-bar {
  background: #f1eef2;
  padding: 40px 60px 8px;
}
.partners-filter-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 1400px;
  margin-inline: auto;
}
.partners-filter-scroll::-webkit-scrollbar { display: none; }
.partner-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
  color: #4f3f6f;
  border: 1.5px solid rgba(79, 63, 111, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.partner-filter-btn:hover {
  border-color: #4f3f6f;
  background: rgba(79, 63, 111, 0.04);
}
.partner-filter-btn.active {
  background: rgba(79, 63, 111, 0.12);
  color: #4f3f6f;
  border-color: #4f3f6f;
  font-weight: 500;
}

.partners-listing {
  background: #f1eef2;
  padding: 32px 60px 96px;
}
.partners-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin-inline: auto;
}
.partners-listing .partner-card {
  display: block;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.partners-listing .partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.partner-listing-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.partner-listing-body {
  display: flex;
  align-items: stretch;
  height: 96px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
.partner-listing-logo-panel {
  width: 38%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px 16px 24px;
  flex-shrink: 0;
  z-index: 1;
}
.partner-listing-logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.partner-listing-info-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px 16px 32px;
  z-index: 2;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: -8%;
}
.partner-listing-name {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.partner-listing-category {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partners-cta {
  background: #4f3f6f;
  padding: 96px 60px;
}
.partners-cta-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.partners-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.partners-cta-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px 0;
}
.partners-cta--light {
  background: #f1eef2;
}
.partners-cta--light .partners-cta-h2 {
  color: #1a1a1a;
}
.partners-cta--light .partners-cta-lead {
  color: #4a4a4a;
}
.partners-cta-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-cta-badge {
  height: 52px;
  width: auto;
}

.partners-photo-strip {
  background: #f1eef2;
  padding-bottom: 96px;
}

.partners-filter-bar-mobile {
  display: none;
  background: #f1eef2;
  padding: 24px 24px 8px;
}

.partner-filter-select {
  width: 100%;
  padding: 14px 44px 14px 20px;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4f3f6f;
  background: #ffffff;
  border: 1.5px solid rgba(79, 63, 111, 0.25);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234f3f6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

@media (max-width: 900px) {
  .partners-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .partners-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .partners-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .partners-hero-copy {
    max-width: unset;
    padding: 40px 0 20px;
    text-align: center;
    order: 2;
  }
  .partners-hero-visual {
    order: 1;
    justify-content: center;
    align-self: auto;
  }
  .partners-hero-image {
    max-height: 260px;
    width: auto;
    margin-inline: auto;
  }
  .partners-hero-badges { justify-content: center; }
  .partners-filter-bar { display: none; }
  .partners-filter-bar-mobile { display: block; }
}

@media (max-width: 600px) {
  .partners-listing {
    padding: 24px 20px 64px;
  }
  .partners-listing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .partner-listing-body {
    height: 88px;
  }
  .partner-listing-logo-panel {
    width: 32%;
    padding: 14px 20px 14px 20px;
  }
  .partner-listing-logo {
    height: 44px;
    max-height: 44px;
  }
  .partner-listing-info-panel {
    padding: 14px 20px 14px 44px;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -5%;
  }
  .partner-listing-name {
    font-size: 17px;
  }
  .partner-listing-category {
    font-size: 11px;
  }
  .partners-filter-bar-mobile {
    padding: 20px 20px 8px;
  }
  .partners-cta {
    padding: 64px 24px;
  }
  .partners-cta-h2 {
    font-size: 34px;
  }
  .partners-cta-lead {
    font-size: 16px;
  }
  .partners-cta-badge {
    height: 44px;
  }
}

/* === PARTNER DETAIL PAGE =================================== */

.partner-hero {
  position: relative;
  background: #f1eef2;
}
.partner-hero-cover {
  position: relative;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
}
.partner-hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}
.partner-hero-band {
  position: relative;
  margin-top: -80px;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
  padding: 120px 60px 96px;
  color: #ffffff;
}
.partner-hero-band-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.partner-back-link {
  display: inline-block;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}
.partner-back-link:hover { color: #ffffff; }
.partner-hero-identity {
  display: flex;
  align-items: center;
  gap: 32px;
}
.partner-hero-logo-panel {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.partner-hero-logo {
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
}
.partner-hero-category {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px 0;
}
.partner-hero-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
.partner-content-wrap {
  background: #f1eef2;
  padding: 0 60px 96px;
}
.partner-content-card {
  max-width: 880px;
  margin: -64px auto 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 64px 72px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.partner-content-body {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: #2a2a2a;
}
.partner-content-body p { margin: 0 0 20px 0; }
.partner-content-body p:last-child { margin-bottom: 0; }
.partner-content-actions {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.partner-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-visit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.partner-related {
  background: #f1eef2;
  padding: 48px 60px 96px;
}
.partner-related-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.partner-related-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin: 0 0 32px 0;
}
.partner-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 600px) {
  .partner-hero-cover { height: 280px; }
  .partner-hero-band {
    margin-top: -40px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    padding: 72px 24px 48px;
  }
  .partner-hero-identity {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .partner-hero-logo-panel {
    width: 80px;
    height: 80px;
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
  }
  .partner-hero-text {
    flex: 1;
    min-width: 0;
  }
  .partner-hero-category {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .partner-hero-name {
    word-wrap: break-word;
  }
  .partner-content-wrap { padding: 0 20px 64px; }
  .partner-content-card {
    margin-top: -32px;
    padding: 32px 24px;
    border-radius: 18px;
  }
  .partner-content-body { font-size: 16px; }
  .partner-related { padding: 32px 20px 64px; }
  .partner-related-grid { grid-template-columns: 1fr; }
  .partner-related-h2 { font-size: 26px; }
}


/* ============== EVENTS ============== */

/* Hero */
.events-hero {
  background: #4f3f6f;
  padding: 80px 60px 96px;
}

.events-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.events-hero-copy {
  max-width: 560px;
}

.events-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
  width: fit-content;
}

.events-hero-tag-sep {
  opacity: 0.5;
}

.events-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.events-hero-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  max-width: 480px;
}

/* Featured event card — inside hero, right column */
.events-hero-featured {
  display: block;
  background: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.events-hero-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.events-hero-featured:focus-visible {
  outline: 3px solid #00C2AE;
  outline-offset: 3px;
}

.events-hero-featured-body {
  padding: 32px 36px 36px;
}

.events-hero-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.events-hero-featured-date-text {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
}

.events-hero-featured-name {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 14px 0;
}

.events-hero-featured-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  margin: 0 0 24px 0;
}

.events-hero-featured-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

/* Shared category pill */
.event-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(0, 194, 174, 0.12);
  color: #00a895;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 6px;
  white-space: nowrap;
}

.events-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Filter bar */
.events-filter-bar {
  background: #f1eef2;
  padding: 40px 60px 8px;
}

.events-filter-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 1400px;
  margin-inline: auto;
}

.event-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
  color: #4f3f6f;
  border: 1.5px solid rgba(79, 63, 111, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.event-filter-btn:hover {
  border-color: #4f3f6f;
  background: rgba(79, 63, 111, 0.04);
}

.event-filter-btn.active {
  background: rgba(79, 63, 111, 0.12);
  border-color: #4f3f6f;
}

.events-filter-bar-mobile {
  display: none;
  background: #f1eef2;
  padding: 24px 24px 8px;
}

.event-filter-select {
  width: 100%;
  padding: 14px 44px 14px 20px;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4f3f6f;
  background: #ffffff;
  border: 1.5px solid rgba(79, 63, 111, 0.25);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234f3f6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

/* Events grid listing */
.events-grid-section {
  background: #f1eef2;
  padding: 40px 60px 96px;
}

.events-grid-inner {
  max-width: 1400px;
  margin-inline: auto;
}

.events-month-group {
  margin-bottom: 56px;
}

.events-month-group:last-child {
  margin-bottom: 0;
}

.events-month-heading {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

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

.event-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.event-card:focus-visible {
  outline: 3px solid #00C2AE;
  outline-offset: 2px;
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.event-card-date {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 13px;
  color: #6a6a6a;
}

.event-card-name {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0;
}

.event-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 13px;
  color: #4a4a4a;
  margin-top: auto;
  padding-top: 14px;
}

/* Event detail page */
.event-detail-hero {
  background: #4f3f6f;
  padding: 80px 60px 180px;
  position: relative;
}

.event-detail-hero-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.event-back-link {
  display: inline-block;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s ease;
}

.event-back-link:hover {
  color: #ffffff;
}

.event-detail-hero-identity {
  display: flex;
  align-items: center;
  gap: 28px;
}

.event-detail-hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.event-detail-hero-icon img {
  width: 44px;
  height: 44px;
}

.event-detail-hero-category {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
}

.event-detail-hero-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

/* Body two-column layout */
.event-detail-body {
  background: transparent;
  padding: 0 60px 96px;
  margin-top: -140px;
  position: relative;
  z-index: 2;
}

.event-detail-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
  bottom: 0;
  background: #f1eef2;
  z-index: -1;
}

.event-detail-body-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Left content card */
.event-detail-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.event-detail-section-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 24px 0;
}

.event-detail-prose {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #2a2a2a;
}

.event-detail-prose p { margin: 0 0 18px 0; }

.event-detail-prose h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin: 36px 0 18px 0;
}

.event-detail-prose h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 28px 0 14px 0;
}

.event-detail-prose ul,
.event-detail-prose ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
}

.event-detail-prose ul { list-style: disc; }
.event-detail-prose ol { list-style: decimal; }
.event-detail-prose li { margin-bottom: 8px; }
.event-detail-prose strong { font-weight: 700; }
.event-detail-prose a { color: #4f3f6f; text-decoration: underline; }

.event-detail-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px 0;
  font-size: 15px;
}

.event-detail-prose th,
.event-detail-prose td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.event-detail-prose th {
  font-weight: 700;
  color: #1a1a1a;
}

/* Right sidebar */
.event-detail-sidebar {
  position: sticky;
  top: 24px;
}

.event-detail-sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.event-detail-meta-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.event-detail-meta-row:first-child { padding-top: 4px; }

.event-detail-meta-row-last {
  border-bottom: none;
  padding-bottom: 20px;
}

.event-detail-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-detail-meta-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.55;
}

.event-detail-meta-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6a6a6a;
}

.event-detail-meta-value {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-align: right;
}

.event-detail-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 18px 24px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-detail-register-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.event-detail-register-note {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 12px;
  color: #6a6a6a;
  text-align: center;
  margin: 14px 0 0 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .event-detail-body-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .event-detail-sidebar {
    position: static;
    order: -1;
  }
}

.event-related {
  background: #f1eef2;
  padding: 48px 60px 96px;
}

.event-related-inner {
  max-width: 1400px;
  margin-inline: auto;
}

.event-related-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin: 0 0 32px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .events-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .events-hero { padding: 48px 20px 64px; }
  .events-hero-featured-name { font-size: 22px; }
  .events-filter-bar { display: none; }
  .events-filter-bar-mobile { display: block; }
  .events-grid-section { padding: 24px 20px 64px; }
  .events-month-heading { font-size: 20px; }
  .events-grid { grid-template-columns: 1fr; }

  .event-detail-hero { padding: 56px 20px 140px; }
  .event-detail-hero-identity { gap: 20px; }
  .event-detail-hero-icon { width: 72px; height: 72px; border-radius: 16px; }
  .event-detail-hero-icon img { width: 32px; height: 32px; }
  .event-back-link { margin-bottom: 32px; }

  .event-detail-body { padding: 0 20px 64px; margin-top: -110px; }
  .event-detail-body::before { top: 110px; }
  .event-detail-content { padding: 32px 24px; border-radius: 18px; }
  .event-detail-section-h2 { font-size: 24px; }
  .event-detail-prose { font-size: 16px; }
  .event-detail-sidebar-card { padding: 24px 24px 22px; border-radius: 18px; }

  .event-related { padding: 32px 20px 64px; }
  .event-related-h2 { font-size: 26px; }
}

/* ============== HELP CENTRE ============== */

/* Hero */
.help-hero {
  background: #4f3f6f;
  padding: 80px 60px 96px;
}

.help-hero-inner {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.help-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}

.help-hero-tag-sep {
  opacity: 0.5;
}

.help-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.help-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}

/* Search bar */
.help-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 8px 8px 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.help-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.help-search-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.help-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  padding: 14px 0;
}

.help-search-input::placeholder {
  color: #8a8a8a;
}

/* Suppress the browser-native search clear icon for this input only.
   Without these rules, type="search" renders its own × in Chrome/Safari/Edge
   alongside the custom circular clear button. */
#help-q::-webkit-search-cancel-button,
#help-q::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
#help-q::-ms-clear,
#help-q::-ms-reveal {
  display: none;
}

.help-search-btn {
  padding: 14px 28px;
  background: #4f3f6f;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.help-search-btn:hover {
  background: #3d3057;
}

/* Popular links */
.help-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
}

.help-popular-label {
  color: rgba(255, 255, 255, 0.6);
}

.help-popular-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
}

.help-popular-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 0.2s ease;
}

.help-popular-link:hover {
  text-decoration-color: #ffffff;
}

/* Topics section */
.help-topics {
  background: #f1eef2;
  padding: 96px 60px;
}

.help-topics-inner {
  max-width: 1280px;
  margin-inline: auto;
}

.help-topics-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 40px 0;
}

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

.help-topic-card {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.help-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(79, 63, 111, 0.08);
  margin-bottom: 20px;
}

.help-topic-icon img {
  width: 28px;
  height: 28px;
}

.help-topic-name {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.help-topic-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #6a6a6a;
  margin: 0 0 16px 0;
}

.help-topic-arrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #4f3f6f;
}

/* CTA */
.help-cta {
  background: #4f3f6f;
  padding: 80px 60px;
  text-align: center;
}

.help-cta-inner {
  max-width: 640px;
  margin-inline: auto;
}

.help-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.help-cta-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px 0;
}

.help-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Topic landing page */
.help-topic-hero,
.help-article-hero {
  background: #4f3f6f;
  padding: 64px 60px 80px;
}

.help-topic-hero-inner,
.help-article-hero-inner {
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.help-back-link {
  display: inline-block;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-bottom: 24px;
}

.help-back-link:hover {
  color: #ffffff;
}

.help-topic-hero-tag,
.help-article-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}

.help-topic-hero-h1,
.help-article-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

/* Articles list under a topic */
.help-articles-list {
  background: #f1eef2;
  padding: 64px 60px 96px;
}

.help-articles-list-inner {
  max-width: 920px;
  margin-inline: auto;
}

.help-articles-grid {
  display: grid;
  gap: 12px;
}

.help-article-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-article-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.help-article-card-title {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  margin: 0;
}

.help-article-card-arrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #4f3f6f;
}

.help-empty-state {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  color: #6a6a6a;
  text-align: center;
  padding: 48px 0;
}

/* Article body */
.help-article-body {
  background: #f1eef2;
  padding: 64px 60px 40px;
}

.help-article-body-inner {
  max-width: 720px;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

.help-article-prose {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #2a2a2a;
}

.help-article-prose p { margin: 0 0 18px 0; }
.help-article-prose h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin: 32px 0 16px 0;
}
.help-article-prose h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 28px 0 12px 0;
}
.help-article-prose ul { list-style: disc; margin: 0 0 18px 0; padding-left: 24px; }
.help-article-prose ol { list-style: decimal; margin: 0 0 18px 0; padding-left: 24px; }
.help-article-prose ul ul { list-style: circle; margin: 8px 0; }
.help-article-prose li { margin-bottom: 8px; font-size: 17px; line-height: 1.6; color: #2a2a2a; }
.help-article-prose a { color: #4f3f6f; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .help-topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .help-hero { padding: 56px 20px 72px; }
  .help-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
    align-items: stretch;
  }
  .help-search-input { padding: 14px 16px; }
  .help-search-icon { display: none; }
  .help-search-btn { width: 100%; }

  .help-topics { padding: 56px 20px; }
  .help-topics-h2 { font-size: 28px; margin-bottom: 28px; }
  .help-topics-grid { grid-template-columns: 1fr; gap: 16px; }
  .help-topic-card { padding: 24px 24px 20px; }

  .help-cta { padding: 56px 20px; }
  .help-cta-h2 { font-size: 28px; }

  .help-topic-hero, .help-article-hero { padding: 48px 20px 64px; }

  .help-articles-list { padding: 40px 20px 64px; }
  .help-article-card { padding: 20px 24px; }

  .help-article-body { padding: 40px 20px 64px; }
  .help-article-body-inner { padding: 32px 24px; border-radius: 18px; }
  .help-article-prose { font-size: 16px; }
}



/* Related articles */
.help-related {
  background: #f1eef2;
  padding: 40px 60px 64px;
}

.help-related-inner {
  max-width: 760px;
  margin-inline: auto;
}

.help-related-title {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 32px 0;
}

.help-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-related-item {
  margin: 0;
}

.help-related-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-related-link:hover {
  border-color: #4f3f6f;
  box-shadow: 0 4px 16px rgba(79, 63, 111, 0.1);
}

.help-related-article-title {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
}

.help-related-excerpt {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .help-related {
    padding: 48px 20px;
  }
}

/* ============== HELP CENTRE SEARCH ============== */

/* Visually hidden — accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Clear button inside the search form */
.help-search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-right: 4px;
  border: none;
  border-radius: 50%;
  background: rgba(79, 63, 111, 0.1);
  color: #4f3f6f;
  cursor: pointer;
  transition: background 0.15s ease;
}

/* display:flex on .help-search-clear would otherwise win over the browser's
   low-specificity [hidden]{display:none} user-agent rule. */
.help-search-clear[hidden] {
  display: none !important;
}

.help-search-clear:hover {
  background: rgba(79, 63, 111, 0.2);
}

.help-search-clear:focus-visible {
  outline: 3px solid #00C2AE;
  outline-offset: 2px;
}

/* Search results section */
.help-search-results {
  background: #f1eef2;
  padding: 40px 60px 64px;
}

.help-search-results-inner {
  max-width: 920px;
  margin-inline: auto;
}

/* Result count line */
.help-search-count {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
  margin: 0 0 20px 0;
  min-height: 1.4em;
}

/* Results list */
.help-search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Result card — visual language matches .help-related-link */
.help-result-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-result-card:hover {
  border-color: #4f3f6f;
  box-shadow: 0 4px 16px rgba(79, 63, 111, 0.1);
}

.help-result-card:focus-visible {
  outline: 3px solid #00C2AE;
  outline-offset: 2px;
  border-color: transparent;
}

/* Result title */
.help-result-title {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  line-height: 1.35;
}

/* Topic badge */
.help-result-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.help-result-topic {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4f3f6f;
  background: rgba(79, 63, 111, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
}

.help-result-topic--resource {
  color: #00857a;
  background: rgba(0, 194, 174, 0.12);
}

/* Excerpt */
.help-result-excerpt {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.5;
}

/* Match highlight — teal tint, no colour-only communication */
.help-search-mark {
  background: rgba(0, 194, 174, 0.2);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

/* No-results state */
.help-search-empty {
  text-align: center;
  padding: 56px 0 40px;
}

.help-search-empty-msg {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.help-search-empty-hint {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.6;
}

.help-search-empty-hint a {
  color: #4f3f6f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Fade topics section while search is active */
.help-topics--searching {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .help-topics--searching {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .help-search-results {
    padding: 24px 20px 48px;
  }

  .help-result-card {
    padding: 16px 20px;
  }

  .help-result-title {
    font-size: 16px;
  }
}

/* ============== BUSINESS HUB PAGE ============== */

/* Hero — same 80px top/bottom rhythm as Individuals .hero-home-copy */
.business-hero {
  background: #4f3f6f;
  padding: 80px 60px;
  overflow: hidden;
}

.business-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.business-hero-copy {
  max-width: 560px;
}

.business-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}

.business-hero-tag-sep { opacity: 0.5; }

.business-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.business-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}

.business-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.business-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 28px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.business-hero-cta-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* 2×2 image grid */
.business-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  aspect-ratio: 1 / 1;
}

.business-hero-grid-tile {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Anchor stats — exactly matches .stats-partners padding */
.business-anchor {
  background: #f1eef2;
  padding: 96px 60px;
}

.business-anchor-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
}

.business-anchor-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Exactly matches .stat-number */
.business-anchor-num {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1;
  color: #1a1a1a;
}

/* Exactly matches .stat-label */
.business-anchor-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  color: #666;
  margin-top: 6px;
}

/* Trusted by — same padding as .stats-partners, heading matches .partners-heading size */
.business-trusted {
  background: #f1eef2;
  padding-top: 96px;
  padding-bottom: 96px;
}

.business-trusted-inner {
  max-width: 1400px;
  margin-inline: auto;
  text-align: center;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 0;
}

.business-trusted-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 12px 0;
}

/* Exactly matches .partners-heading font-size — clamp(1.6rem, 2.5vw, 2.2rem) */
.business-trusted-h2 {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #1a1a1a;
  margin: 0 0 40px 0;
}

/* Two-path alternating blocks — same 96px/60px rhythm */
.business-paths {
  background: #f1eef2;
  padding: 80px 60px 96px;
}

.business-paths-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.business-path {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.business-path-visual {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.business-path-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-path-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-path-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 16px 0;
}

.business-path-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 18px 0;
}

.business-path-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 24px 0;
}

.business-path-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.business-path-bullets li {
  position: relative;
  padding-left: 26px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2a;
}

.business-path-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: #00C2AE;
  border-radius: 2px;
}

.business-path-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  align-self: flex-start;
}

/* Final CTA — purple, same 96px vertical rhythm as stats/trusted */
.business-final-cta {
  background: #4f3f6f;
  padding: 96px 60px;
  text-align: center;
}

.business-final-cta-inner {
  max-width: 720px;
  margin-inline: auto;
}

.business-final-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.business-final-cta-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
}

.business-final-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-final-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 1100px) {
  .business-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .business-hero-grid { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .business-paths-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .business-hero { padding: 56px 20px; }
  .business-hero-grid { gap: 12px; }
  .business-hero-grid-tile { border-radius: 14px; }

  .business-anchor { padding: 64px 20px; }
  .business-anchor-inner { grid-template-columns: 1fr; gap: 28px; }

  .business-trusted { padding-top: 64px; padding-bottom: 64px; }
  .business-trusted-inner { padding-left: 20px; padding-right: 20px; }

  .business-paths { padding: 56px 20px 72px; }
  .business-path-visual { height: 200px; }
  .business-path-content { padding: 28px; }
  .business-path-h2 { font-size: 28px; }

  .business-final-cta { padding: 72px 20px; }
}



/* ============================================================
   ORGANISATIONS PAGE
   ============================================================ */

/* Shared section primitives */
.organisations-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 24px 0;
}

.organisations-section-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.organisations-section-h2-light { color: #ffffff; }

/* === HERO === */
.organisations-hero {
  background: #4f3f6f;
  padding: 80px 60px 96px;
  overflow: hidden;
}
.organisations-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.organisations-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.organisations-hero-tag-sep { opacity: 0.5; }
.organisations-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.organisations-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}
.organisations-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.organisations-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.organisations-hero-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  width: 100%;
}
.organisations-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === SEGMENT SWITCHER === */
.organisations-segments {
  background: #f1eef2;
  padding: 96px 60px;
}
.organisations-segments-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.organisations-segments-header {
  margin-bottom: 48px;
  max-width: 720px;
}
.organisations-segments-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.organisations-segment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.organisations-segment-tab {
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  color: #4f3f6f;
  border: 1.5px solid rgba(79, 63, 111, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}
.organisations-segment-tab:hover {
  border-color: #4f3f6f;
  background: rgba(79, 63, 111, 0.04);
}
.organisations-segment-tab.is-active {
  background: #4f3f6f;
  color: #ffffff;
  border-color: #4f3f6f;
  font-weight: 700;
}
.organisations-segment-panels {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
}
.organisations-segment-panel {
  display: none;
}
.organisations-segment-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.organisations-segment-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 540px;
}
.organisations-segment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.organisations-segment-h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}
.organisations-segment-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 32px 0;
}
.organisations-segment-outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.organisations-segment-outcome {
  padding: 14px 18px;
  background: #f1eef2;
  border-radius: 12px;
}
.organisations-segment-outcome-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 4px 0;
}
.organisations-segment-outcome-value {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0;
}
.organisations-segment-example {
  background: #f1eef2;
  border-radius: 14px;
  padding: 24px 26px;
  margin: 28px 0;
}
.organisations-segment-example-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 10px 0;
}
.organisations-segment-example-body {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0;
}
.organisations-segment-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 14px 26px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.organisations-segment-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 63, 111, 0.25);
}

/* === FINAL CTA === */
.organisations-final-cta {
  background: #4f3f6f;
  padding: 112px 60px;
  text-align: center;
}
.organisations-final-cta-inner {
  max-width: 720px;
  margin-inline: auto;
}
.organisations-final-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
.organisations-final-cta-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
}
.organisations-final-cta-btn {
  display: inline-flex;
  padding: 20px 40px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.organisations-final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .organisations-hero-inner,
  .organisations-segment-panel.is-active { grid-template-columns: 1fr; gap: 40px; }
  .organisations-hero-visual { max-width: 480px; }
}

@media (max-width: 700px) {
  .organisations-hero,
  .organisations-segments,
  .organisations-final-cta { padding-left: 20px; padding-right: 20px; }
  .organisations-hero { padding-top: 56px; padding-bottom: 72px; }
  .organisations-section-h2 { font-size: 32px; }
  .organisations-segments { padding-top: 64px; padding-bottom: 64px; }
  .organisations-segment-panels { padding: 28px; border-radius: 18px; }
  .organisations-segment-tab { padding: 10px 16px; font-size: 13px; }
  .organisations-segment-h3 { font-size: 26px; }
  .organisations-final-cta { padding-top: 72px; padding-bottom: 72px; }
  .organisations-final-cta-h2 { font-size: 36px; }
}



/* ============================================================
   PARTNER WITH US PAGE
   ============================================================ */

/* Shared section primitives */
.partner-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 24px 0;
}

.partner-section-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.partner-section-h2-light { color: #ffffff; }

/* === HERO === */
.pwu-hero {
  background: #4f3f6f;
  padding: 80px 60px 96px;
  overflow: hidden;
}
.pwu-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pwu-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.pwu-hero-tag-sep { opacity: 0.5; }
.pwu-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.pwu-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}
.pwu-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pwu-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Logo grid composition */
.pwu-hero-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.pwu-hero-logo {
  position: absolute;
  width: 30%;
  height: 22%;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}
.pwu-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Clean 3x3 grid — rows aligned, columns aligned, no rotation */
.pwu-hero-logo-1 { top: 4%;  left: 2%;  }
.pwu-hero-logo-2 { top: 4%;  left: 35%; }
.pwu-hero-logo-3 { top: 4%;  left: 68%; }
.pwu-hero-logo-4 { top: 39%; left: 2%;  }
.pwu-hero-logo-5 { top: 39%; left: 35%; }
.pwu-hero-logo-6 { top: 39%; left: 68%; }
.pwu-hero-logo-7 { top: 74%; left: 2%;  }
.pwu-hero-logo-8 { top: 74%; left: 35%; }
.pwu-hero-logo-9 { top: 74%; left: 68%; }

/* === CHANNELS SWITCHER === */
.partner-channels {
  background: #4f3f6f;
  padding: 96px 60px;
}
.partner-channels-inner {
  max-width: 1400px;
  margin-inline: auto;
}
.partner-channels-header {
  max-width: 720px;
  margin-bottom: 40px;
}
.partner-channels-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.partner-channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.partner-channel-tab {
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}
.partner-channel-tab:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.partner-channel-tab.is-active {
  background: #ffffff;
  color: #4f3f6f;
  border-color: #ffffff;
  font-weight: 700;
}

.partner-channel-panels {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.partner-channel-panel {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.partner-channel-panel.is-active { display: grid; }

.partner-channel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-channel-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

.partner-channel-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 14px 0;
}
.partner-channel-h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}
.partner-channel-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 28px 0;
}

.partner-channel-outcomes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.partner-channel-outcome {
  padding: 14px 18px;
  background: #f1eef2;
  border-radius: 12px;
}
.partner-channel-outcome-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 4px 0;
}
.partner-channel-outcome-value {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0;
}

.partner-channel-best-for {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}
.partner-channel-best-for-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a6a6a;
  margin: 0 0 12px 0;
}
.partner-channel-best-for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partner-channel-tag {
  padding: 6px 14px;
  background: rgba(79, 63, 111, 0.08);
  color: #4f3f6f;
  border-radius: 8px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.partner-channel-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-channel-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 63, 111, 0.25);
}

/* === TRUSTED === */
.partner-trusted {
  background: #f1eef2;
  padding: 96px 0 80px;
}
.partner-trusted-header {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 60px 48px;
  text-align: center;
}
.partner-trusted-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 12px 0;
}
.partner-trusted-footer {
  max-width: 1280px;
  margin-inline: auto;
  padding: 32px 60px 0;
  text-align: center;
}
.partner-trusted-footnote {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
  text-align: center;
  margin: 0;
}

/* === FINAL CTA === */
.partner-final-cta {
  background: #4f3f6f;
  padding: 112px 60px;
  text-align: center;
}
.partner-final-cta-inner {
  max-width: 720px;
  margin-inline: auto;
}
.partner-final-cta-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
.partner-final-cta-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
}
.partner-final-cta-btn {
  display: inline-flex;
  padding: 20px 40px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .pwu-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pwu-hero-visual { margin-inline: auto; max-width: 440px; }
  .partner-channel-panel.is-active { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .pwu-hero,
  .partner-channels,
  .partner-final-cta { padding-left: 20px; padding-right: 20px; }
  .pwu-hero { padding-top: 56px; padding-bottom: 72px; }
  .partner-section-h2 { font-size: 32px; }
  .pwu-hero-visual { max-width: 320px; }
  .partner-channels { padding-top: 64px; padding-bottom: 64px; }
  .partner-channel-panels { padding: 28px; border-radius: 18px; }
  .partner-channel-tab { padding: 10px 16px; font-size: 13px; }
  .partner-channel-h3 { font-size: 26px; }
  .partner-trusted { padding-top: 64px; padding-bottom: 56px; }
  .partner-trusted-header { padding-left: 20px; padding-right: 20px; padding-bottom: 32px; }
  .partner-trusted-footer { padding-left: 20px; padding-right: 20px; }
  .partner-final-cta { padding-top: 72px; padding-bottom: 72px; }
  .partner-final-cta-h2 { font-size: 36px; }
}



/* ============================================================
   TALK TO US PAGE
   ============================================================ */

/* HERO */
.talk-hero {
  background: #4f3f6f;
  padding: 80px 60px 64px;
}
.talk-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  text-align: center;
}
.talk-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.talk-hero-tag-sep { opacity: 0.5; }
.talk-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.talk-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 32px;
  max-width: 640px;
  text-align: center;
}

/* CONTENT (form + sidebar) */
.talk-content {
  background: #f1eef2;
  padding: 80px 60px 96px;
}
.talk-content-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* FORM card */
.talk-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.talk-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.talk-form-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.talk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.talk-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.talk-form-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}
.talk-form-input,
.talk-form-textarea {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1.5px solid rgba(79, 63, 111, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.talk-form-input:focus,
.talk-form-textarea:focus {
  outline: none;
  border-color: #4f3f6f;
  box-shadow: 0 0 0 4px rgba(79, 63, 111, 0.08);
}
.talk-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: 'ApfelGrotezk', sans-serif;
}
.talk-form-textarea::placeholder,
.talk-form-input::placeholder {
  color: #9a9a9a;
}

.talk-form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.talk-form-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.talk-form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(79, 63, 111, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.talk-form-radio:hover {
  border-color: rgba(79, 63, 111, 0.4);
}
.talk-form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4f3f6f;
  margin: 0;
  flex-shrink: 0;
}
.talk-form-radio:has(input:checked) {
  border-color: #4f3f6f;
  background: rgba(79, 63, 111, 0.04);
}

.talk-form-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 32px;
  background: #4f3f6f;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.talk-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 63, 111, 0.25);
}
.talk-form-submit:disabled {
  background: #9b8fb5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* SUCCESS state */
.talk-form-success {
  text-align: center;
  padding: 16px;
}
.talk-form-success-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.talk-form-success-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* SIDEBAR */
.talk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.talk-sidebar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.talk-sidebar-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 12px 0;
}
.talk-sidebar-h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.talk-sidebar-email {
  display: inline-block;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #4f3f6f;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(79, 63, 111, 0.3);
  transition: text-decoration-color 0.15s ease;
}
.talk-sidebar-email:hover { text-decoration-color: #4f3f6f; }
.talk-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.talk-sidebar-list li {
  position: relative;
  padding-left: 26px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
}
.talk-sidebar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: #00C2AE;
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .talk-content-inner { grid-template-columns: 1fr; gap: 32px; }
  .talk-sidebar { position: static; }
}
@media (max-width: 700px) {
  .talk-hero { padding: 56px 20px 48px; }
  .talk-content { padding: 48px 20px 64px; }
  .talk-form-wrapper { padding: 28px; border-radius: 18px; }
  .talk-form-row { grid-template-columns: 1fr; gap: 24px; }
  .talk-sidebar-card { padding: 24px; }
}



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

/* HERO */
.contact-hero {
  background: #4f3f6f;
  padding: 80px 60px 64px;
}
.contact-hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  text-align: center;
}
.contact-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.contact-hero-tag-sep { opacity: 0.5; }
.contact-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.contact-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 32px;
  max-width: 640px;
  text-align: center;
}

/* CONTENT */
.contact-content {
  background: #f1eef2;
  padding: 80px 60px 96px;
}
.contact-content-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* FORM card */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-label {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}
.contact-form-input,
.contact-form-textarea {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1.5px solid rgba(79, 63, 111, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #4f3f6f;
  box-shadow: 0 0 0 4px rgba(79, 63, 111, 0.08);
}
.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: 'ApfelGrotezk', sans-serif;
}
.contact-form-textarea::placeholder,
.contact-form-input::placeholder {
  color: #9a9a9a;
}

.contact-form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(79, 63, 111, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form-radio:hover { border-color: rgba(79, 63, 111, 0.4); }
.contact-form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4f3f6f;
  margin: 0;
  flex-shrink: 0;
}
.contact-form-radio:has(input:checked) {
  border-color: #4f3f6f;
  background: rgba(79, 63, 111, 0.04);
}

.contact-form-file-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-file-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px dashed rgba(79, 63, 111, 0.25);
  border-radius: 12px;
  background: #ffffff;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #6a6a6a;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.contact-file-trigger:hover {
  border-color: #4f3f6f;
  background: #f5f3f7;
  color: #1a1a1a;
}
.contact-file-selected {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid rgba(79, 63, 111, 0.18);
  border-radius: 12px;
  background: #ffffff;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
}
.contact-file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-file-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 2px 6px;
  font-size: 18px;
  line-height: 1;
  color: #6a6a6a;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.contact-file-remove:hover {
  color: #1a1a1a;
  background: rgba(79, 63, 111, 0.08);
}
.contact-form-help {
  margin: 8px 0 0 0;
  font-size: 13px;
  color: #6a6a6a;
}

.contact-form-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 32px;
  background: #4f3f6f;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 63, 111, 0.25);
}
.contact-form-submit:disabled {
  background: #9b8fb5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* SUCCESS state */
.contact-form-success {
  text-align: center;
  padding: 16px;
}
.contact-form-success-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.contact-form-success-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.contact-sidebar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.contact-sidebar-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00C2AE;
  margin: 0 0 12px 0;
}
.contact-sidebar-h3 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.contact-sidebar-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 16px 0;
}
.contact-sidebar-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: #4f3f6f;
  color: #ffffff;
  border-radius: 10px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-sidebar-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79, 63, 111, 0.25);
}
.contact-sidebar-email {
  display: inline-block;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #4f3f6f;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(79, 63, 111, 0.3);
  transition: text-decoration-color 0.15s ease;
}
.contact-sidebar-email:hover { text-decoration-color: #4f3f6f; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .contact-content-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-sidebar { position: static; }
}
@media (max-width: 700px) {
  .contact-hero { padding: 56px 20px 48px; }
  .contact-content { padding: 48px 20px 64px; }
  .contact-form-wrapper { padding: 28px; border-radius: 18px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-sidebar-card { padding: 24px; }
}

/* ============================================================
   LEGAL (Terms & Privacy)
   ============================================================ */

.legal-hero {
  background: #4f3f6f;
  padding: 72px 60px 80px;
}
.legal-hero-inner {
  max-width: 800px;
  margin-inline: auto;
}
.legal-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.legal-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.legal-hero-updated {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.legal-content {
  background: #f1eef2;
  padding: 64px 60px 96px;
}
.legal-content-inner {
  max-width: 800px;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 64px;
}

/* Prose styles inside the legal card */
.legal-content-inner p {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 20px;
}
.legal-content-inner h2 {
  font-family: 'Degular Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 48px 0 12px;
  padding-top: 8px;
}
.legal-content-inner h2:first-child { margin-top: 0; }
.legal-content-inner h3 {
  font-family: 'Degular Display', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 8px;
}
.legal-content-inner ul,
.legal-content-inner ol {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 20px;
  padding-left: 24px;
}
.legal-content-inner li { margin-bottom: 6px; }
.legal-content-inner strong {
  font-weight: 600;
  color: #1a1a1a;
}
.legal-content-inner a {
  color: #4f3f6f;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(79, 63, 111, 0.35);
  transition: text-decoration-color 0.15s ease;
}
.legal-content-inner a:hover { text-decoration-color: #4f3f6f; }
.legal-content-inner blockquote {
  border-left: 3px solid #00C2AE;
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  color: #555;
}
.legal-content-inner hr {
  border: none;
  border-top: 1px solid #e8e4ee;
  margin: 40px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .legal-content-inner { padding: 40px 36px; }
}
@media (max-width: 700px) {
  .legal-hero { padding: 56px 20px 64px; }
  .legal-content { padding: 40px 16px 72px; }
  .legal-content-inner { padding: 28px 24px; border-radius: 18px; }
  .legal-content-inner h2 { font-size: 20px; margin-top: 36px; }
}

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

.about-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 20px 0;
}
.about-section-h2 {
  font-family: 'Degular Display', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* HERO */
.about-hero {
  background: #4f3f6f;
  padding: 96px 60px 56px;
  text-align: center;
}
.about-hero-inner { max-width: 800px; margin-inline: auto; }
.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 28px 0;
}
.about-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.about-hero-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 32px;
  max-width: 640px;
  text-align: center;
}

/* TIMELINE — editorial, light lavender background */
.about-timeline {
  background: #f1eef2;
  padding: 80px 60px 96px;
}
.about-timeline-inner {
  max-width: 900px;
  margin-inline: auto;
}
.about-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-timeline-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}
.about-timeline-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-timeline-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 3px;
}
.about-timeline-number {
  font-family: 'Degular Display', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #00C2AE;
  letter-spacing: -0.01em;
}
.about-milestone-today-badge {
  display: inline-flex;
  align-items: center;
  background: #00C2AE;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.about-milestone-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0;
  padding-top: 2px;
}

/* LETTER FROM CEO — purple background */
.about-letter {
  background: #4f3f6f;
  padding: 96px 60px;
}
.about-letter-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-letter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.2);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  margin: 0 0 24px 0;
}
.about-letter-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.02;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}
.about-letter-blurb {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 36px 0;
}
.about-letter-cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: #ffffff;
  color: #4f3f6f;
  border-radius: 14px;
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-letter-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.about-letter-photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.about-letter-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* COMMUNITY (light, scrolling carousel matching home page) */
.about-community {
  background: #f1eef2;
  padding: 96px 0 96px;
  overflow: hidden;
}
.about-community-header {
  max-width: 800px;
  margin: 0 auto 64px;
  padding: 0 60px;
  text-align: center;
}
.about-community-h2 {
  font-family: 'Degular Display', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.about-community-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* CLOSING */
.about-closing {
  background: #4f3f6f;
  padding: 96px 60px 112px;
  text-align: center;
}
.about-closing-inner { max-width: 800px; margin-inline: auto; }
.about-supporters {
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.about-supporters-eyebrow {
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
}
.about-supporters-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
}
.about-supporter-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.about-supporter-logo:hover { opacity: 1; }
.about-closing-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}
.about-closing-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px 0;
}
.about-closing-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.about-closing-badge img { height: 56px; width: auto; display: block; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-letter-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-letter-photo { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 700px) {
  .about-hero { padding: 64px 20px 32px; }
  .about-section-h2 { font-size: 32px; }
  .about-timeline { padding: 48px 20px 64px; }
  .about-timeline-row { grid-template-columns: 64px 1fr; gap: 16px; padding: 32px 0; }
  .about-milestone-desc { font-size: 16px; }
  .about-letter { padding: 64px 20px; }
  .about-letter-h2 { font-size: 32px; }
  .about-letter-blurb { font-size: 16px; }
  .about-community { padding: 64px 0 64px; }
  .about-community-header { padding: 0 20px; margin-bottom: 48px; }
  .about-community-h2 { font-size: 32px; }
  .about-closing { padding: 56px 20px 72px; }
  .about-supporters { margin-bottom: 56px; padding-bottom: 48px; }
  .about-supporters-logos { gap: 32px; }
  .about-supporter-logo { height: 56px; }
  .about-closing-h2 { font-size: 36px; }
  .about-closing-badge img { height: 48px; }
}

/* === LEARN + ARTICLE RESPONSIVE ============================ */
@media (max-width: 900px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .learn-hero { padding: 64px 24px 56px; }
  .learn-index { padding: 64px 24px; }
  .learn-grid { grid-template-columns: 1fr; gap: 20px; }
  .learn-card { padding: 24px; }
  .article-hero { padding: 56px 24px 72px; }
  .article-hero-back { margin-bottom: 28px; }
  .article-body { padding: 56px 24px; }
  .article-cta { padding: 64px 24px; }
  .article-cta-h2 { font-size: 32px; }
  .article-cta-lead { font-size: 16px; }
}


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

.notfound-hero {
  background: #4f3f6f;
  padding: 96px 60px 112px;
  text-align: center;
}

.notfound-hero-inner {
  max-width: 680px;
  margin-inline: auto;
}

.notfound-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 194, 174, 0.15);
  color: #00C2AE;
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  margin: 0 0 32px 0;
}

.notfound-tag-sep {
  opacity: 0.5;
}

.notfound-illustration {
  display: block;
  margin: 0 auto 40px;
}

.notfound-h1 {
  font-family: 'degular', sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.notfound-lead {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
}

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

.notfound-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-family: 'ApfelGrotezk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.notfound-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.notfound-links {
  background: #f1eef2;
  padding: 80px 60px;
}

.notfound-links-inner {
  max-width: 960px;
  margin-inline: auto;
}

.notfound-links-h2 {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 32px 0;
  text-align: center;
}

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

.notfound-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.notfound-link-card:hover {
  border-color: #4f3f6f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 63, 111, 0.1);
}

.notfound-link-name {
  font-family: 'degular', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}

.notfound-link-desc {
  font-family: 'ApfelGrotezk', sans-serif;
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .notfound-hero { padding: 72px 24px 88px; }
  .notfound-links { padding: 64px 20px; }
  .notfound-links-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .notfound-links-grid { grid-template-columns: 1fr; }
}
