/*! Open House 2026 - Complete Standalone CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --oh26-primary: #383566;
  --oh26-primary-rgb: 56, 53, 102;
  --oh26-primary-light: #4a4780;
  --oh26-primary-dark: #2a2850;
  --oh26-primary-darker: #1a1833;
  --oh26-accent: #fa6400;
  --oh26-accent-hover: #ff7b1a;
  --oh26-gold: #d4af37;
  --oh26-text: #2d2b54;
  --oh26-text-light: #5a5875;
  --oh26-text-muted: #8a8a9a;
  --oh26-bg: #f7f8fc;
  --oh26-white: #ffffff;
  --oh26-border: rgba(56, 53, 102, 0.08);
  --oh26-shadow-sm: 0 2px 8px rgba(56, 53, 102, 0.06);
  --oh26-shadow: 0 8px 32px rgba(56, 53, 102, 0.12);
  --oh26-shadow-lg: 0 20px 60px rgba(56, 53, 102, 0.15);
  --oh26-shadow-xl: 0 32px 80px rgba(56, 53, 102, 0.18);
  --oh26-radius-sm: 8px;
  --oh26-radius: 16px;
  --oh26-radius-lg: 24px;
  --oh26-radius-xl: 32px;
  --oh26-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --oh26-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --oh26-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --oh26-duration: 0.4s;
  --oh26-duration-fast: 0.25s;
  --oh26-duration-slow: 0.6s;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--oh26-text);
  background: var(--oh26-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.oh26-menu-open {
  overflow: hidden;
}

.oh26-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.oh26-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: rgba(var(--oh26-primary-rgb), 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1001;
  transform: translateY(0);
  transition: transform var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-topbar.oh26-hidden {
  transform: translateY(-100%);
}

.oh26-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.oh26-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.oh26-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.oh26-meta-item i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.oh26-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.oh26-topbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.oh26-topbar-link {
  padding: 6px 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-topbar-link:hover {
  color: var(--oh26-white);
  background: rgba(255, 255, 255, 0.1);
}

.oh26-lang {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3px;
}

.oh26-lang a {
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
  letter-spacing: 0.02em;
}

.oh26-lang a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--oh26-white);
}

.oh26-lang a:hover:not(.active) {
  color: var(--oh26-white);
}

/* ========== MAIN NAV ========== */
.oh26-nav {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary-darker) 0%,
    var(--oh26-primary) 100%
  );
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: top var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-nav.oh26-nav-top {
  top: 0;
}

.oh26-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.oh26-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.oh26-logo img {
  height: 42px;
  width: auto;
  transition: opacity var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-logo:hover img {
  opacity: 0.85;
}

.oh26-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh26-menu-link {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--oh26-accent);
  transform: scaleX(0);
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-menu-link:hover {
  color: var(--oh26-white);
}

.oh26-menu-link:hover::after {
  transform: scaleX(1);
}

.oh26-menu-link.active {
  color: var(--oh26-white);
  font-weight: 500;
}

.oh26-menu-link.active::after {
  transform: scaleX(1);
}

.oh26-menu-link.disabled {
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.oh26-menu-link.disabled::after {
  display: none;
}

.oh26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(250, 100, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-btn:hover {
  background: var(--oh26-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 100, 0, 0.45);
  color: var(--oh26-white);
}

.oh26-btn:active {
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.oh26-mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary-darker) 0%,
    var(--oh26-primary) 100%
  );
  z-index: 1001;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.oh26-mobile-logo img {
  height: 36px;
  width: auto;
}

.oh26-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.oh26-hamburger-box {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.oh26-hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--oh26-white);
  border-radius: 2px;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-hamburger-line:nth-child(1) {
  top: 0;
}
.oh26-hamburger-line:nth-child(2) {
  top: 8px;
}
.oh26-hamburger-line:nth-child(3) {
  top: 16px;
}

.oh26-menu-open .oh26-hamburger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.oh26-menu-open .oh26-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.oh26-menu-open .oh26-hamburger-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.oh26-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--oh26-primary-darker);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-menu-open .oh26-mobile-menu {
  transform: translateX(0);
}

.oh26-mobile-menu-inner {
  padding: 24px 20px 100px;
}

.oh26-mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.oh26-mobile-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.oh26-mobile-meta-item i {
  width: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.oh26-mobile-nav {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.oh26-mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-nav-link.active {
  color: var(--oh26-white);
  font-weight: 500;
}
.oh26-mobile-nav-link.disabled {
  color: rgba(255, 255, 255, 0.3);
}
.oh26-mobile-nav-link small {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 8px;
}

.oh26-mobile-secondary {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oh26-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.oh26-mobile-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-link:hover {
  color: var(--oh26-white);
}

.oh26-mobile-lang {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.oh26-mobile-lang a {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-lang a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--oh26-white);
}

.oh26-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oh26-floating-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 360px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 30px rgba(250, 100, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oh26-floating-btn i {
  margin-right: 8px;
}

/* ========== HERO ========== */
/* ========== HERO ========== */
.oh26-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.oh26-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.oh26-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.oh26-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 51, 0.5) 0%,
    rgba(56, 53, 102, 0.4) 100%
  );
  z-index: -1;
}

/* Bottom fade to white 
.oh26-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--oh26-white), transparent);
  pointer-events: none;
  z-index: 0;
}*/

/* Bottom fade to white - DISABLED */
.oh26-hero::after {
  display: none;
}

/* Hide default video controls and play button */
.oh26-hero-video video::-webkit-media-controls {
  display: none !important;
}

.oh26-hero-video video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.oh26-hero-video video::-webkit-media-controls-play-button {
  display: none !important;
}

.oh26-hero-video video::--webkit-media-controls-enclosure {
  display: none !important;
}

/* Firefox */
.oh26-hero-video video::-moz-media-controls {
  display: none !important;
}

/* General - prevent controls from showing */
.oh26-hero-video video {
  pointer-events: none;
}

.oh26-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.oh26-hero-content {
  flex: 1;
  max-width: 600px;
}

.oh26-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh26-white);
  margin-bottom: 24px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) both;
}

.oh26-badge i {
  color: var(--oh26-gold);
}

.oh26-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--oh26-white);
  line-height: 1.1;
  margin: 0 0 16px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.1s both;
}

.oh26-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.2s both;
}

.oh26-hero-info {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.3s both;
}

.oh26-hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--oh26-white);
}

.oh26-hero-info-item i {
  opacity: 0.75;
}

/* Hero Countdown */

@media (max-width: 1024px) {
  .oh26-hero-countdown {
    width: 100%;
  }

  .oh26-countdown-card {
    padding: 24px;
    text-align: center;
  }

  .oh26-countdown {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .oh26-countdown {
    justify-content: center;
  }

  .oh26-countdown-card {
    text-align: center;
  }

  .oh26-countdown-label {
    text-align: center;
  }
}

.oh26-hero-countdown {
  flex-shrink: 0;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.4s both;
}

.oh26-countdown-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--oh26-radius-lg);
  padding: 32px 40px;
  text-align: center;
}

.oh26-countdown-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.oh26-countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.oh26-countdown-item {
  text-align: center;
  min-width: 60px;
}

.oh26-countdown-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--oh26-white);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.oh26-countdown-unit {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.oh26-countdown-sep {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  padding-top: 2px;
}

/* ========== INVITATION ========== */
.oh26-invitation {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-invitation-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.oh26-invitation-main {
  max-width: 720px;
}

.oh26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.06),
    rgba(var(--oh26-primary-rgb), 0.1)
  );
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.oh26-eyebrow i {
  font-size: 0.8125rem;
}

.oh26-invitation-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 32px;
  line-height: 1.25;
}

.oh26-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--oh26-text);
  margin: 0 0 20px;
}

.oh26-lead em {
  color: var(--oh26-primary);
  font-style: italic;
}
.oh26-lead strong {
  font-weight: 600;
}

.oh26-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 20px;
}

.oh26-body:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.oh26-sidebar {
  position: sticky;
  top: 140px;
}

.oh26-ceo-card {
  background: linear-gradient(145deg, var(--oh26-bg), #f0eef7);
  border-radius: var(--oh26-radius-lg);
  padding: 28px;
  border: 1px solid var(--oh26-border);
}

.oh26-ceo-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--oh26-border);
}

.oh26-ceo-avatar {
  position: relative;
  flex-shrink: 0;
}

.oh26-ceo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--oh26-white);
  box-shadow: var(--oh26-shadow);
}

.oh26-ceo-sig {
  position: absolute;
  bottom: -6px;
  right: -10px;
  width: 48px;
  filter: brightness(0) opacity(0.5);
  transform: rotate(-8deg);
}

.oh26-ceo-info h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 4px;
}

.oh26-ceo-info p {
  font-size: 0.875rem;
  color: var(--oh26-text-muted);
  margin: 0;
  line-height: 1.4;
}

.oh26-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oh26-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-sm);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-highlight:hover {
  transform: translateX(4px);
  box-shadow: var(--oh26-shadow-sm);
}

.oh26-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.oh26-highlight-text h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 2px;
}

.oh26-highlight-text p {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
  margin: 0;
}

/* ========== VIDEO ========== */
.oh26-video-section {
  padding: 80px 0 100px;
  background: var(--oh26-bg);
}

.oh26-video-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-xl);
  overflow: hidden;
  box-shadow: var(--oh26-shadow-lg);
  position: relative;
}

.oh26-video-info {
  padding: 56px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary) 0%,
    var(--oh26-primary-light) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.oh26-video-info::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-video-label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.oh26-video-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--oh26-white);
  line-height: 1.3;
  margin: 0 0 20px;
}

.oh26-video-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.oh26-video-thumb {
  position: relative;
  background: var(--oh26-primary-darker);
  overflow: hidden;
  min-height: 400px;
}

.oh26-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: all var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-video-card:hover .oh26-video-thumb img {
  opacity: 1;
  transform: scale(1.05);
}

.oh26-video-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh26-white);
  z-index: 2;
}

.oh26-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--oh26-ease);
}

.oh26-play::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.4s var(--oh26-ease);
}

.oh26-play:hover {
  background: rgba(255, 107, 53, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 107, 53, 0.9);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 
    0 12px 40px rgba(255, 107, 53, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.oh26-play:hover::before {
  inset: -8px;
  border-color: rgba(255, 107, 53, 0.5);
}

.oh26-play i {
  color: var(--oh26-white);
  font-size: 1.75rem;
  margin-left: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Modal */
.oh26-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-modal.oh26-show {
  display: flex;
  opacity: 1;
}

.oh26-modal-box {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--oh26-radius);
  overflow: hidden;
  position: relative;
}

.oh26-modal-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.oh26-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--oh26-white);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ========== STRATEGIC ROADMAP ========== */
.oh26-roadmap {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--oh26-white) 0%, var(--oh26-bg) 100%);
  position: relative;
  overflow: hidden;
}

.oh26-roadmap::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--oh26-primary-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.oh26-roadmap-header {
  text-align: center;
  margin-bottom: 48px;
}

.oh26-roadmap-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--oh26-accent);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}

/* Briefing Box */
.oh26-briefing {
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border-radius: var(--oh26-radius-xl);
  padding: 48px 56px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.oh26-briefing::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.oh26-briefing::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.oh26-briefing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-white);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.oh26-briefing-badge i {
  color: var(--oh26-gold);
}

.oh26-briefing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-white);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.oh26-briefing-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* Pillars */
.oh26-pillars {
  margin-bottom: 48px;
}

.oh26-pillars-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--oh26-text);
  text-align: center;
  margin: 0 0 36px;
}

.oh26-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.oh26-pillar-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 36px;
  border: 1px solid var(--oh26-border);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--oh26-primary), var(--oh26-accent));
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-pillar-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-4px);
}

.oh26-pillar-card:hover::before {
  opacity: 1;
}

.oh26-pillar-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(var(--oh26-primary-rgb), 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color var(--oh26-duration) var(--oh26-ease);
}

.oh26-pillar-card:hover .oh26-pillar-number {
  color: rgba(var(--oh26-primary-rgb), 0.1);
}

.oh26-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.08), rgba(var(--oh26-primary-rgb), 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-primary);
  font-size: 1.375rem;
  margin-bottom: 20px;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-pillar-card:hover .oh26-pillar-icon {
  background: linear-gradient(135deg, var(--oh26-primary), var(--oh26-primary-light));
  color: var(--oh26-white);
  transform: scale(1.05);
}

.oh26-pillar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
  padding-right: 40px;
}

.oh26-pillar-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0;
}

/* Bottom CTA */
.oh26-roadmap-cta {
  text-align: center;
  padding: 32px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  border: 2px dashed var(--oh26-border);
}

.oh26-roadmap-cta-text {
  font-size: 1.125rem;
  color: var(--oh26-text-light);
  margin: 0;
  line-height: 1.6;
}

.oh26-roadmap-cta-text strong {
  color: var(--oh26-primary);
  font-size: 1.25rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .oh26-roadmap {
    padding: 60px 0;
  }

  .oh26-briefing {
    padding: 36px 32px;
  }

  .oh26-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oh26-pillar-card {
    padding: 28px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .oh26-roadmap-tagline {
    font-size: 1.0625rem;
  }

  .oh26-briefing {
    padding: 28px 24px;
  }

  .oh26-briefing-title {
    font-size: 1.25rem;
  }

  .oh26-briefing-text {
    font-size: 1rem;
  }

  .oh26-pillars-title {
    font-size: 1.125rem;
  }

  .oh26-pillar-card {
    padding: 24px;
  }

  .oh26-pillar-number {
    font-size: 2.5rem;
    top: 16px;
    right: 16px;
  }

  .oh26-pillar-icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }

  .oh26-pillar-title {
    font-size: 1rem;
    padding-right: 32px;
  }

  .oh26-pillar-text {
    font-size: 0.875rem;
  }

  .oh26-roadmap-cta {
    padding: 24px 20px;
  }

  .oh26-roadmap-cta-text {
    font-size: 1rem;
  }

  .oh26-roadmap-cta-text strong {
    font-size: 1.125rem;
  }
}

/* ========== INNOVATION SPARK ========== */
.oh26-spark {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--oh26-bg) 0%,
    var(--oh26-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.oh26-spark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(var(--oh26-primary-rgb), 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-spark-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.oh26-spark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.oh26-spark-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-4px);
}

.oh26-spark-card:hover::before {
  transform: scaleX(1);
}

.oh26-spark-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.08),
    rgba(var(--oh26-primary-rgb), 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-primary);
  font-size: 1.25rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card:hover .oh26-spark-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
  transform: scale(1.05);
}

.oh26-spark-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.oh26-spark-content p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--oh26-text-light);
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .oh26-spark {
    padding: 60px 0;
  }

  .oh26-spark-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .oh26-spark-card {
    padding: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .oh26-spark-grid {
    grid-template-columns: 1fr;
  }

  .oh26-spark-card {
    padding: 20px;
    gap: 16px;
  }

  .oh26-spark-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    font-size: 1.125rem;
  }

  .oh26-spark-content h3 {
    font-size: 1rem;
  }

  .oh26-spark-content p {
    font-size: 0.875rem;
  }
}

/* ========== ACCESS ========== */
.oh26-access {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.oh26-section-header .oh26-eyebrow {
  background: linear-gradient(
    135deg,
    rgba(250, 100, 0, 0.08),
    rgba(250, 100, 0, 0.12)
  );
  color: var(--oh26-accent);
}

.oh26-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-section-subtitle {
  font-size: 1.0625rem;
  color: var(--oh26-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.oh26-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.oh26-access-card {
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-6px);
}

.oh26-access-card:hover::before {
  opacity: 1;
}

.oh26-access-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.08),
    rgba(var(--oh26-primary-rgb), 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--oh26-primary);
  font-size: 1.5rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card:hover .oh26-access-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
}

.oh26-access-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 10px;
}

.oh26-access-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--oh26-text-light);
  margin: 0;
}

/* CTA Box */
.oh26-cta {
  background: linear-gradient(
    135deg,
    var(--oh26-primary) 0%,
    var(--oh26-primary-light) 100%
  );
  border-radius: var(--oh26-radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oh26-cta::before,
.oh26-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-cta::before {
  top: -150px;
  right: -150px;
}
.oh26-cta::after {
  bottom: -150px;
  left: -150px;
  width: 250px;
  height: 250px;
}

.oh26-cta-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--oh26-white);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.oh26-cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.oh26-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--oh26-white);
  color: var(--oh26-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: var(--oh26-primary);
}

.oh26-cta-btn i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}
.oh26-cta-btn:hover i {
  transform: translateX(4px);
}

.oh26-cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
}

.oh26-cta-note i {
  margin-right: 6px;
  opacity: 0.8;
}

/* ========== TEASER ========== */
.oh26-teaser {
  padding: 100px 0;
  background: var(--oh26-bg);
}

.oh26-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.oh26-teaser-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--oh26-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--oh26-shadow-lg);
}

.oh26-teaser-card:hover::before {
  transform: scaleX(1);
}

.oh26-teaser-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.06),
    rgba(var(--oh26-primary-rgb), 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--oh26-primary);
  font-size: 1.75rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card:hover .oh26-teaser-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
  transform: scale(1.1);
}

.oh26-teaser-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-teaser-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--oh26-text-light);
  margin: 0 0 24px;
}

.oh26-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(var(--oh26-primary-rgb), 0.06);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
}

.oh26-teaser-badge i {
  font-size: 0.6875rem;
}

/* ========== VENUE ========== */
.oh26-venue {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-venue-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius-xl);
  overflow: hidden;
  box-shadow: var(--oh26-shadow-lg);
}

.oh26-venue-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.oh26-venue-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Hide video controls and play button */
.oh26-venue-img video::-webkit-media-controls {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-play-button {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Firefox */
.oh26-venue-img video::-moz-media-controls {
  display: none !important;
}

/* Keep the gradient overlay */
.oh26-venue-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.15),
    transparent
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .oh26-venue-img {
    min-height: 280px;
  }
}

.oh26-venue-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oh26-venue-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 24px;
}

.oh26-venue-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--oh26-text-light);
  margin: 0 0 20px;
}

.oh26-venue-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--oh26-white);
  padding: 24px;
  border-radius: var(--oh26-radius);
  margin-bottom: 20px;
}

.oh26-venue-address i {
  color: var(--oh26-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.oh26-venue-address-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--oh26-text);
}

.oh26-venue-address-text strong {
  display: block;
  margin-bottom: 4px;
}

.oh26-venue-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-venue-link:hover {
  color: var(--oh26-primary-light);
}
.oh26-venue-link i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}
.oh26-venue-link:hover i {
  transform: translateX(5px);
}

/* ========== FOOTER ========== */
.oh26-footer {
  background: #0a0a0a;
  color: var(--oh26-white);
  padding: 48px 0;
}

.oh26-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.oh26-footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oh26-copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.oh26-copyright a {
  color: #8080b0;
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-copyright a:hover {
  color: var(--oh26-white);
}

.oh26-footer-links {
  display: flex;
  gap: 24px;
}

.oh26-footer-link {
  font-size: 0.875rem;
  color: #8080b0;
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-footer-link:hover {
  color: var(--oh26-white);
}

.oh26-social {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh26-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--oh26-white);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.oh26-social-link i {
  font-size: 1.125rem;
}

/* ========== ANIMATIONS ========== */
@keyframes oh26FadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
  .oh26-container {
    padding: 0 20px;
  }
  .oh26-topbar {
    display: none;
  }
  .oh26-nav {
    display: none;
  }
  .oh26-mobile-header {
    display: flex;
  }
  .oh26-hamburger {
    display: flex;
  }
  .oh26-floating-btn {
    display: block;
  }
  body {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .oh26-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .oh26-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .oh26-hero-content {
    max-width: 100%;
  }
  .oh26-hero-countdown {
    width: 100%;
  }
  .oh26-countdown-card {
    padding: 24px;
  }
  .oh26-countdown-num {
    font-size: 2rem;
  }

  .oh26-invitation {
    padding: 60px 0;
  }
  .oh26-invitation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oh26-sidebar {
    position: static;
  }

  .oh26-video-section {
    padding: 60px 0 80px;
  }
  .oh26-video-card {
    grid-template-columns: 1fr;
  }
  .oh26-video-info {
    padding: 40px;
  }
  .oh26-video-thumb {
    min-height: 320px;
  }

  .oh26-access {
    padding: 60px 0;
  }
  .oh26-access-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .oh26-cta {
    padding: 40px 24px;
  }

  .oh26-teaser {
    padding: 60px 0;
  }
  .oh26-teaser-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oh26-venue {
    padding: 60px 0;
  }
  .oh26-venue-card {
    grid-template-columns: 1fr;
  }
  .oh26-venue-img {
    min-height: 280px;
  }
  .oh26-venue-content {
    padding: 40px;
  }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 640px) {
  .oh26-container {
    padding: 0 16px;
  }
  .oh26-hero {
    padding: 60px 0 50px;
  }
  .oh26-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  .oh26-hero-info {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  .oh26-countdown {
    gap: 6px;
  }
  .oh26-countdown-item {
    min-width: 50px;
  }
  .oh26-countdown-num {
    font-size: 1.5rem;
  }
  .oh26-countdown-unit {
    font-size: 0.625rem;
  }
  .oh26-countdown-sep {
    font-size: 1.25rem;
  }
  .oh26-section-header {
    margin-bottom: 40px;
  }
  .oh26-ceo-header {
    flex-direction: column;
    text-align: center;
  }
  .oh26-ceo-sig {
    right: 50%;
    transform: translateX(50%) rotate(-8deg);
  }
  .oh26-video-info {
    padding: 32px 24px;
  }
  .oh26-video-title {
    font-size: 1.375rem;
  }
  .oh26-play {
    width: 70px;
    height: 70px;
  }
  .oh26-play i {
    font-size: 1.375rem;
  }
  .oh26-access-card {
    padding: 24px;
  }
  .oh26-cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .oh26-teaser-card {
    padding: 32px 24px;
  }
  .oh26-venue-content {
    padding: 32px 24px;
  }
  .oh26-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .oh26-footer-left {
    align-items: center;
  }
  .oh26-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .oh26-social {
    justify-content: center;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .oh26-badge,
  .oh26-hero-title,
  .oh26-hero-subtitle,
  .oh26-hero-info,
  .oh26-hero-countdown {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========== FOCUS ========== */
.oh26-btn:focus-visible,
.oh26-cta-btn:focus-visible,
.oh26-menu-link:focus-visible,
.oh26-footer-link:focus-visible,
.oh26-social-link:focus-visible,
.oh26-play:focus-visible {
  outline: 2px solid var(--oh26-accent);
  outline-offset: 3px;
}



.oh26-badge-link {
  text-decoration: none;
  display: inline-block;
}

.oh26-badge-link .oh26-badge {
  cursor: pointer;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-badge-link:hover .oh26-badge {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.oh26-badge-link:hover .oh26-badge i {
  animation: oh26-pulse 0.6s ease;
}

@keyframes oh26-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}


/* ========== HOTELS SECTION ========== */

/* Hotel booking link */
.oh26-hotel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--oh26-primary);
  color: var(--oh26-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-hotel-link:hover {
  background: var(--oh26-primary-light);
  transform: translateY(-2px);
}

.oh26-hotel-link i {
  font-size: 0.75rem;
}

.oh26-hotels {
  padding: 0 0 100px;
  background: var(--oh26-white);
}

.oh26-hotels-card {
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius-xl);
  padding: 48px;
  box-shadow: var(--oh26-shadow);
}

.oh26-hotels-header {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.oh26-hotels-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--oh26-primary), var(--oh26-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1.5rem;
}

.oh26-hotels-intro {
  flex: 1;
}

.oh26-hotels-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-hotels-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0;
}

.oh26-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.oh26-hotel-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 28px;
  border: 1px solid var(--oh26-border);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-hotel-card:hover {
  border-color: var(--oh26-primary);
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-4px);
}

.oh26-hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.oh26-hotel-card .oh26-hotel-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0;
}

.oh26-hotel-price {
  font-size: 0.775rem;
  color: var(--oh26-text-muted);
  white-space: nowrap;
}

.oh26-hotel-price strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--oh26-primary);
}

.oh26-hotel-card .oh26-hotel-details {
  font-size: 0.9375rem;
  color: var(--oh26-text-light);
  margin: 0 0 16px;
  line-height: 1.5;
}

.oh26-hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--oh26-border);
}

.oh26-hotel-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
}

.oh26-hotel-amenities i {
  color: var(--oh26-primary);
  font-size: 0.75rem;
}

.oh26-hotels-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(var(--oh26-primary-rgb), 0.06);
  border-radius: var(--oh26-radius-sm);
  font-size: 0.875rem;
  color: var(--oh26-text-light);
}

.oh26-hotels-note i {
  color: var(--oh26-primary);
  font-size: 1rem;
}


/* Hotel section link */
.oh26-hotels-link {
  color: var(--oh26-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-hotels-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--oh26-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-hotels-link:hover {
  color: var(--oh26-accent);
}

.oh26-hotels-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.oh26-hotels-link:focus-visible {
  outline: 2px solid var(--oh26-accent);
  outline-offset: 3px;
  border-radius: 2px;
}


/* Responsive - Tablet */
@media (max-width: 1024px) {
  .oh26-hotels {
    padding: 0 0 60px;
  }

  .oh26-hotels-card {
    padding: 32px;
  }

  .oh26-hotels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .oh26-hotel-card {
    padding: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .oh26-hotels-card {
    padding: 24px;
  }

  .oh26-hotels-header {
    flex-direction: column;
    gap: 16px;
  }

  .oh26-hotels-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.25rem;
  }

  .oh26-hotels-title {
    font-size: 1.25rem;
  }

  .oh26-hotels-text {
    font-size: 0.9375rem;
  }

  .oh26-hotel-header {
    flex-direction: column;
    gap: 8px;
  }

  .oh26-hotel-card .oh26-hotel-name {
    font-size: 1rem;
  }

  .oh26-hotels-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* ========== SPLIT HERO (New Design) ========== */
.oh26-split-hero {
  display: flex;
  min-height: 420px;
  margin-top: 112px;
  background: var(--oh26-white);
}

.oh26-split-hero-content {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 80px;
}

.oh26-split-hero-text {
  max-width: 640px;
}

.oh26-split-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--oh26-primary);
  line-height: 1.1;
  margin: 0 0 20px;
}

.oh26-split-hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--oh26-white);
  border: 2px solid var(--oh26-primary);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-primary);
  margin-bottom: 24px;
}

.oh26-split-hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--oh26-text-light);
  margin: 0;
}

.oh26-split-hero-image {
  flex: 0 0 45%;
  max-width: 45%;
  background-size: cover;
  background-position: center left;
  position: relative;
}

.oh26-split-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, var(--oh26-white), transparent);
  pointer-events: none;
}

/* ========== PAGE INTRO (Cleaner - No Icon) ========== */
.oh26-page-intro {
  padding: 60px 0;
  background: var(--oh26-white);
}

.oh26-page-intro-content {
  max-width: 900px;
}

.oh26-page-intro-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 16px;
}

.oh26-page-intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
}

.oh26-page-intro-text:last-child {
  margin-bottom: 0;
}

.oh26-page-intro-text strong {
  color: var(--oh26-text);
  font-weight: 600;
}

/* ========== SPEAKERS SECTION ========== */
.oh26-speakers-section {
  padding: 80px 0;
  background: var(--oh26-white);
}

.oh26-speakers-section:nth-child(even) {
  background: var(--oh26-bg);
}

.oh26-section-divider {
  height: 1px;
  background: var(--oh26-border);
  margin: 0;
}

/* Speaker Card */
.oh26-speaker-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  border: 1px solid var(--oh26-border);
  margin-bottom: 32px;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-speaker-card:last-child {
  margin-bottom: 0;
}

.oh26-speaker-card:hover {
  box-shadow: var(--oh26-shadow-lg);
  border-color: transparent;
}

.oh26-speaker-image {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: var(--oh26-radius);
  overflow: hidden;
  background: var(--oh26-bg);
}

.oh26-speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh26-speaker-info {
  flex: 1;
}

.oh26-speaker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.oh26-speaker-details {
  flex: 1;
}

.oh26-speaker-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 8px;
}

.oh26-speaker-position {
  font-size: 0.9375rem;
  color: var(--oh26-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.oh26-speaker-company {
  font-size: 0.875rem;
  color: var(--oh26-text-muted);
}

.oh26-speaker-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-left: 20px;
}

.oh26-speaker-bio p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
}

.oh26-speaker-bio p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   KEYNOTE PRESENTATION CARDS - Premium Styling
   Replace existing .oh26-speaker-topic styles with these
   ===================================================== */

/* Main Keynote Container */
.oh26-keynote {
  margin-top: 32px;
  background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 100%);
  border-radius: var(--oh26-radius);
  overflow: hidden;
  position: relative;
}

.oh26-keynote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--oh26-primary) 0%, var(--oh26-accent) 100%);
}

/* Keynote Header */
.oh26-keynote-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px 24px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.06) 0%, rgba(var(--oh26-primary-rgb), 0.02) 100%);
  border-bottom: 1px solid rgba(var(--oh26-primary-rgb), 0.08);
}

.oh26-keynote-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(var(--oh26-primary-rgb), 0.25);
}

.oh26-keynote-icon i {
  font-size: 1.375rem;
  color: var(--oh26-white);
}

.oh26-keynote-meta {
  flex: 1;
}

.oh26-keynote-label {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(var(--oh26-primary-rgb), 0.1);
  color: var(--oh26-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 10px;
}

.oh26-keynote-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oh26-text);
  line-height: 1.4;
  margin: 0;
}

.oh26-keynote-subtitle {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--oh26-text-light);
  margin-top: 6px;
  font-style: italic;
}

/* Keynote Body - Synopsis */
.oh26-keynote-body {
  padding: 28px 32px;
}

.oh26-keynote-synopsis {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 16px;
}

.oh26-keynote-synopsis:last-child {
  margin-bottom: 0;
}

/* Key Takeaways Section */
.oh26-keynote-takeaways {
  padding: 28px 32px 32px;
  background: var(--oh26-white);
  border-top: 1px solid rgba(var(--oh26-primary-rgb), 0.06);
}

.oh26-keynote-takeaways-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh26-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.oh26-keynote-takeaways-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--oh26-primary-rgb), 0.2), transparent);
}

.oh26-keynote-takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Individual Takeaway Card */
.oh26-keynote-takeaway {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fafbfd 0%, #f5f7fa 100%);
  border-radius: var(--oh26-radius-sm);
  border: 1px solid rgba(var(--oh26-primary-rgb), 0.06);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-keynote-takeaway:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--oh26-primary-rgb), 0.1);
  border-color: rgba(var(--oh26-primary-rgb), 0.12);
}

.oh26-keynote-takeaway-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--oh26-primary-rgb), 0.2);
}

.oh26-keynote-takeaway-icon i {
  font-size: 1rem;
  color: var(--oh26-white);
}

.oh26-keynote-takeaway-content {
  flex: 1;
  min-width: 0;
}

.oh26-keynote-takeaway-content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.oh26-keynote-takeaway-content span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--oh26-text-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .oh26-keynote-takeaways-grid {
    grid-template-columns: 1fr;
  }
  
  .oh26-keynote-header {
    padding: 24px;
  }
  
  .oh26-keynote-body {
    padding: 24px;
  }
  
  .oh26-keynote-takeaways {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .oh26-keynote-header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .oh26-keynote-icon {
    width: 48px;
    height: 48px;
  }
  
  .oh26-keynote-icon i {
    font-size: 1.125rem;
  }
  
  .oh26-keynote-title {
    font-size: 1.125rem;
  }
  
  .oh26-keynote-body {
    padding: 20px;
  }
  
  .oh26-keynote-synopsis {
    font-size: 0.875rem;
  }
  
  .oh26-keynote-takeaways {
    padding: 20px;
  }
  
  .oh26-keynote-takeaway {
    padding: 16px;
  }
  
  .oh26-keynote-takeaway-icon {
    width: 40px;
    height: 40px;
  }
  
  .oh26-keynote-takeaway-content strong {
    font-size: 0.875rem;
  }
  
  .oh26-keynote-takeaway-content span {
    font-size: 0.8125rem;
  }
}

/* Hide old speaker-topic styles (keep for backward compatibility with thought leaders) */
.oh26-speaker-topic {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.04), rgba(var(--oh26-primary-rgb), 0.08));
  border-radius: var(--oh26-radius-sm);
  border-left: 4px solid var(--oh26-primary);
}

.oh26-speaker-topic-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-speaker-topic-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
}

.oh26-speaker-topic-desc:last-child {
  margin-bottom: 0;
}

/* More Speakers Coming Soon */
.oh26-speakers-more {
  background: var(--oh26-bg);
}

.oh26-speakers-coming-soon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oh26-coming-soon-card {
  padding: 36px 32px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  border: 2px dashed var(--oh26-border);
  text-align: center;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-coming-soon-card:hover {
  border-color: var(--oh26-primary);
  border-style: solid;
}

.oh26-coming-soon-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.08), rgba(var(--oh26-primary-rgb), 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-primary);
  font-size: 1.5rem;
}

.oh26-coming-soon-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 8px;
}

.oh26-coming-soon-card p {
  font-size: 0.875rem;
  color: var(--oh26-text-muted);
  margin: 0;
  line-height: 1.5;
}

.oh26-speakers-cta {
  padding: 0 0 100px;
  background: var(--oh26-bg);
}

/* ========== MANAGEMENT CIRCLE (Updated) ========== */
.oh26-mc-intro {
  padding: 60px 0;
  background: var(--oh26-white);
}

.oh26-mc-intro-content {
  max-width: 900px;
}

.oh26-mc-intro-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 16px;
}

.oh26-mc-intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
}

.oh26-mc-intro-text:last-child {
  margin-bottom: 0;
}

.oh26-mc-intro-text strong {
  color: var(--oh26-text);
  font-weight: 600;
}

/* ========== MANAGEMENT CIRCLE TOPICS ========== */
.oh26-mc-topics {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--oh26-white) 0%, var(--oh26-bg) 100%);
}

.oh26-mc-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.oh26-mc-topic-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 36px;
  border: 1px solid var(--oh26-border);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-mc-topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-mc-topic-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-6px);
}

.oh26-mc-topic-card:hover::before {
  transform: scaleX(1);
}

.oh26-mc-topic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.oh26-mc-topic-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(var(--oh26-primary-rgb), 0.08);
  line-height: 1;
  transition: color var(--oh26-duration) var(--oh26-ease);
}

.oh26-mc-topic-card:hover .oh26-mc-topic-number {
  color: rgba(var(--oh26-primary-rgb), 0.15);
}

.oh26-mc-topic-time {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.08), rgba(var(--oh26-primary-rgb), 0.04));
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
}

.oh26-mc-topic-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oh26-mc-topic-category i {
  font-size: 0.875rem;
}

.oh26-mc-topic-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  line-height: 1.4;
  margin: 0 0 24px;
}

.oh26-mc-topic-hook {
  padding: 24px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.04), rgba(var(--oh26-primary-rgb), 0.08));
  border-radius: var(--oh26-radius-sm);
  border-left: 4px solid var(--oh26-primary);
}

.oh26-mc-topic-hook-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--oh26-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.oh26-mc-topic-hook p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--oh26-text-light);
  margin: 0;
  font-style: italic;
}

/* ========== MANAGEMENT CIRCLE MODERATORS ========== */
.oh26-mc-moderators {
  padding: 80px 0;
  background: var(--oh26-bg);
}

.oh26-mc-moderators-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 40px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  border: 2px dashed var(--oh26-border);
  font-size: 1.0625rem;
  color: var(--oh26-text-light);
  max-width: 620px;
  margin: 0 auto;
}



.oh26-mc-moderators-note i {
  color: var(--oh26-primary);
  font-size: 1.5rem;
}

.oh26-mc-moderators-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.oh26-mc-cta {
  padding: 0 0 100px;
  background: var(--oh26-bg);
}

/* ========== WORKSHOPS (Updated) ========== */
.oh26-ws-intro {
  padding: 60px 0;
  background: var(--oh26-white);
}

.oh26-ws-intro-content {
  max-width: 900px;
}

.oh26-ws-intro-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 16px;
}

.oh26-ws-intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
}

.oh26-ws-intro-text:last-child {
  margin-bottom: 0;
}

.oh26-ws-intro-text strong {
  color: var(--oh26-text);
  font-weight: 600;
}

/* ========== WORKSHOPS GRID ========== */
.oh26-ws-grid-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--oh26-white) 0%, var(--oh26-bg) 100%);
}

.oh26-ws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.oh26-ws-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 0;
  border: 1px solid var(--oh26-border);
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-ws-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-6px);
}

.oh26-ws-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
}

.oh26-ws-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1.5rem;
}

.oh26-ws-card-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.oh26-ws-card-day {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oh26-ws-card-hours {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--oh26-white);
}

.oh26-ws-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0;
  padding: 28px 32px 20px;
}

.oh26-ws-card-list {
  list-style: none;
  padding: 0 32px 32px;
  margin: 0;
}

.oh26-ws-card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--oh26-text-light);
}

.oh26-ws-card-list li:last-child {
  margin-bottom: 0;
}

.oh26-ws-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oh26-accent);
}

.oh26-ws-cta {
  padding: 0 0 100px;
  background: var(--oh26-bg);
}

/* ========== SHARED CTA STYLES ========== */
.oh26-cta {
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border-radius: var(--oh26-radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oh26-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.oh26-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.oh26-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--oh26-white);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.oh26-cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.oh26-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--oh26-white);
  color: var(--oh26-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--oh26-radius-sm);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.oh26-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.oh26-cta-btn i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-cta-btn:hover i {
  transform: translateX(4px);
}

.oh26-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
}

.oh26-cta-note i {
  font-size: 1rem;
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
  .oh26-split-hero {
    flex-direction: column;
    margin-top: 70px;
    min-height: auto;
  }

  .oh26-split-hero-content {
    flex: none;
    max-width: 100%;
    padding: 50px 24px;
    order: 1;
  }

  .oh26-split-hero-image {
    flex: none;
    max-width: 100%;
    height: 280px;
    order: 0;
  }

  .oh26-split-hero-image::before {
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--oh26-white), transparent);
    top: auto;
    bottom: 0;
    left: 0;
  }

  .oh26-mc-intro,
  .oh26-ws-intro,
  .oh26-page-intro {
    padding: 50px 0;
  }

  .oh26-mc-topics,
  .oh26-ws-grid-section {
    padding: 60px 0 80px;
  }

  .oh26-mc-topics-grid,
  .oh26-ws-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oh26-mc-topic-card {
    padding: 28px;
  }

  .oh26-mc-moderators {
    padding: 60px 0;
  }

  .oh26-mc-cta,
  .oh26-ws-cta,
  .oh26-speakers-cta {
    padding: 0 0 60px;
  }

  .oh26-cta {
    padding: 48px 32px;
  }

  .oh26-speakers-section {
    padding: 60px 0;
  }

  .oh26-speaker-card {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
  }

  .oh26-speaker-image {
    flex: none;
    width: 160px;
    height: 160px;
  }

  .oh26-speakers-coming-soon {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 640px) {
  .oh26-split-hero-content {
    padding: 40px 20px;
  }

  .oh26-split-hero-image {
    height: 220px;
  }

  .oh26-split-hero-badge {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .oh26-split-hero-desc {
    font-size: 1rem;
  }

  .oh26-mc-intro-title,
  .oh26-ws-intro-title,
  .oh26-page-intro-title {
    font-size: 1.25rem;
  }

  .oh26-mc-intro-text,
  .oh26-ws-intro-text,
  .oh26-page-intro-text {
    font-size: 1rem;
  }

  .oh26-mc-topic-card {
    padding: 24px;
  }

  .oh26-mc-topic-number {
    font-size: 2.5rem;
  }

  .oh26-mc-topic-title {
    font-size: 1.125rem;
  }

  .oh26-mc-topic-hook {
    padding: 18px;
  }

  .oh26-mc-moderators-note {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .oh26-ws-card-header {
    padding: 20px 24px;
  }

  .oh26-ws-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .oh26-ws-card-title {
    font-size: 1.125rem;
    padding: 24px 24px 16px;
  }

  .oh26-ws-card-list {
    padding: 0 24px 24px;
  }

  .oh26-ws-card-list li {
    font-size: 0.875rem;
  }

  .oh26-cta {
    padding: 40px 24px;
  }

  .oh26-cta-title {
    font-size: 1.5rem;
  }

  .oh26-cta-subtitle {
    font-size: 1rem;
  }

  .oh26-cta-btn {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .oh26-cta-note {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .oh26-speaker-card {
    padding: 24px;
  }

  .oh26-speaker-image {
    width: 120px;
    height: 120px;
  }

  .oh26-speaker-name {
    font-size: 1.25rem;
  }

  .oh26-speaker-header {
    flex-direction: column;
    gap: 16px;
  }

  .oh26-speaker-logo {
    margin-left: 0;
  }

  .oh26-speaker-topic {
    padding: 18px;
  }

  .oh26-coming-soon-card {
    padding: 28px 24px;
  }
}


/* =====================================================
   WORKSHOP REGISTRATION - Additional CSS
   Add this to your oh26-global.css file
   ===================================================== */

/* ========== WORKSHOP CARD SELECT BUTTON ========== */
.oh26-ws-card-select {
  display: block;
  padding: 0 32px 32px;
  cursor: pointer;
}

.oh26-ws-card-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.oh26-ws-card-select-default,
.oh26-ws-card-select-active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--oh26-radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-ws-card-select-default {
  background: transparent;
  border: 2px solid var(--oh26-border);
  color: var(--oh26-text-light);
}

.oh26-ws-card-select:hover .oh26-ws-card-select-default {
  border-color: var(--oh26-primary);
  color: var(--oh26-primary);
  background: rgba(var(--oh26-primary-rgb), 0.03);
}

.oh26-ws-card-select-active {
  display: none;
  background: var(--oh26-primary);
  border: 2px solid var(--oh26-primary);
  color: var(--oh26-white);
}

.oh26-ws-card-select input:checked ~ .oh26-ws-card-select-default {
  display: none;
}

.oh26-ws-card-select input:checked ~ .oh26-ws-card-select-active {
  display: flex;
}

.oh26-ws-card-select:hover .oh26-ws-card-select-active {
  background: var(--oh26-primary-light);
  border-color: var(--oh26-primary-light);
}

/* Card checked state */
.oh26-ws-card.oh26-ws-card-checked {
  border-color: var(--oh26-primary);
  box-shadow: 0 0 0 3px rgba(var(--oh26-primary-rgb), 0.1), var(--oh26-shadow-lg);
}

.oh26-ws-card.oh26-ws-card-checked::before {
  transform: scaleX(1);
}

/* ========== REGISTRATION SECTION ========== */
.oh26-ws-register {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--oh26-bg) 0%, var(--oh26-white) 100%);
}

.oh26-ws-register-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Info */
.oh26-ws-register-info {
  position: sticky;
  top: 140px;
}

.oh26-ws-register-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.1), rgba(var(--oh26-primary-rgb), 0.05));
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.oh26-ws-register-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--oh26-text);
  line-height: 1.2;
  margin: 0 0 16px;
}

.oh26-ws-register-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0 0 32px;
}

/* Selected Workshops Display */
.oh26-ws-selected {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  border: 1px solid var(--oh26-border);
  overflow: hidden;
  margin-bottom: 32px;
}

.oh26-ws-selected-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  color: var(--oh26-white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.oh26-ws-selected-header i {
  font-size: 1.125rem;
}

.oh26-ws-selected-list {
  padding: 20px 24px;
  min-height: 100px;
}

.oh26-ws-selected-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--oh26-text-muted);
  font-size: 0.9375rem;
  padding: 20px 0;
  margin: 0;
}

.oh26-ws-selected-empty i {
  font-size: 1.5rem;
  color: var(--oh26-border);
}

.oh26-ws-selected-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--oh26-border);
}

.oh26-ws-selected-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.oh26-ws-selected-item:first-child {
  padding-top: 0;
}

.oh26-ws-selected-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.1), rgba(var(--oh26-primary-rgb), 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.oh26-ws-selected-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh26-ws-selected-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-text);
}

.oh26-ws-selected-time {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
}

/* Benefits */
.oh26-ws-register-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oh26-ws-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--oh26-text-light);
}

.oh26-ws-benefit i {
  color: var(--oh26-accent);
  font-size: 1rem;
}

/* Right Side - Form */
.oh26-ws-register-form-wrap {
  position: relative;
}

.oh26-ws-register-form-inner {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.oh26-ws-register-form-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
}

/* Form Styles */
.oh26-ws-form-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--oh26-text);
  margin: 0 0 32px;
  padding: 18px 22px;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius);
  position: relative;
}

.oh26-ws-form-note::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--oh26-accent);
  flex-shrink: 0;
}

.oh26-ws-form-required {
  font-size: 0.8125rem;
  color: #e53935;
  margin: 0 0 24px;
}

.oh26-ws-form-optional {
  font-weight: 400;
  color: var(--oh26-text-muted);
}

/* Form disabled state when no workshops selected */
.oh26-ws-form-disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.oh26-ws-form-select-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  color: var(--oh26-text-muted);
}

.oh26-ws-form-select-prompt i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--oh26-border);
}

.oh26-ws-form-select-prompt h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 8px;
}

.oh26-ws-form-select-prompt p {
  font-size: 0.9375rem;
  margin: 0;
  max-width: 280px;
}

.oh26-ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.oh26-ws-form-group {
  margin-bottom: 20px;
}

.oh26-ws-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--oh26-text);
  margin-bottom: 8px;
}

.oh26-ws-form-input-wrap {
  position: relative;
}

.oh26-ws-form-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--oh26-text-muted);
  font-size: 0.9375rem;
  pointer-events: none;
  transition: color var(--oh26-duration) var(--oh26-ease);
}

.oh26-ws-form-textarea-wrap i {
  top: 18px;
  transform: none;
}

.oh26-ws-form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--oh26-bg);
  border: 2px solid transparent;
  border-radius: var(--oh26-radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--oh26-text);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-ws-form-input::placeholder {
  color: var(--oh26-text-muted);
}

.oh26-ws-form-input:focus {
  outline: none;
  background: var(--oh26-white);
  border-color: var(--oh26-primary);
  box-shadow: 0 0 0 4px rgba(var(--oh26-primary-rgb), 0.1);
}

.oh26-ws-form-input:focus ~ i,
.oh26-ws-form-input-wrap:focus-within i {
  color: var(--oh26-primary);
}

.oh26-ws-form-textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 14px;
}

.oh26-ws-form-error {
  display: none;
  font-size: 0.8125rem;
  color: #e53935;
  margin-top: 6px;
}

.oh26-ws-form-error-show .oh26-ws-form-error {
  display: block;
}

.oh26-ws-form-error-show .oh26-ws-form-input {
  border-color: #e53935;
  background: rgba(229, 57, 53, 0.03);
}

/* reCAPTCHA */
.oh26-ws-form-recaptcha {
  margin-bottom: 24px;
}

.oh26-ws-form-recaptcha .g-recaptcha {
  transform-origin: left;
}

.oh26-ws-form-recaptcha-error {
  display: none;
  margin-top: 8px;
}

.oh26-ws-form-recaptcha.oh26-ws-form-error-show .oh26-ws-form-recaptcha-error {
  display: block;
}

/* Submit Button */
.oh26-ws-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border: none;
  border-radius: var(--oh26-radius-sm);
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--oh26-white);
  cursor: pointer;
  transition: all var(--oh26-duration) var(--oh26-ease);
  box-shadow: 0 4px 20px rgba(var(--oh26-primary-rgb), 0.3);
}

.oh26-ws-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--oh26-primary-rgb), 0.4);
}

.oh26-ws-form-submit:active {
  transform: translateY(0);
}

.oh26-ws-form-submit i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-ws-form-submit:hover i {
  transform: translateX(4px);
}

/* Terms */
.oh26-ws-form-terms {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
  text-align: center;
  margin: 20px 0 0;
  line-height: 1.6;
}

.oh26-ws-form-terms a {
  color: var(--oh26-primary);
  text-decoration: none;
}

.oh26-ws-form-terms a:hover {
  text-decoration: underline;
}

/* Success State */
.oh26-ws-form-success {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--oh26-white);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.oh26-ws-form-success.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: oh26FadeIn 0.4s ease forwards;
}

@keyframes oh26FadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.oh26-ws-form-success-inner {
  text-align: center;
  padding: 48px;
  max-width: 480px;
}

/* Animated Checkmark */
.oh26-ws-form-success-checkmark {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
}

.oh26-ws-form-success-checkmark svg {
  width: 100%;
  height: 100%;
}

.oh26-ws-form-success-checkmark circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--oh26-accent);
  fill: none;
  animation: oh26Stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.oh26-ws-form-success-checkmark path {
  stroke: var(--oh26-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: oh26Stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes oh26Stroke {
  100% { stroke-dashoffset: 0; }
}

.oh26-ws-form-success h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 16px;
  animation: oh26SlideUp 0.5s ease 0.3s both;
}

.oh26-ws-form-success p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--oh26-text-light);
  margin: 0 0 32px;
  animation: oh26SlideUp 0.5s ease 0.4s both;
}

@keyframes oh26SlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Confirmed Workshops List */
.oh26-ws-form-success-workshops {
  margin-bottom: 32px;
  animation: oh26SlideUp 0.5s ease 0.5s both;
}

.oh26-ws-confirmed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius);
}

.oh26-ws-confirmed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--oh26-text);
  text-align: left;
}

.oh26-ws-confirmed-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oh26-white);
  border-radius: 8px;
  color: var(--oh26-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Success Action Buttons */
.oh26-ws-form-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: oh26SlideUp 0.5s ease 0.6s both;
}

.oh26-ws-form-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--oh26-radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--oh26-duration) var(--oh26-ease);
  text-decoration: none;
}

.oh26-ws-form-success-btn:not(.oh26-ws-form-success-btn-outline) {
  background: linear-gradient(135deg, var(--oh26-primary) 0%, var(--oh26-primary-light) 100%);
  border: none;
  color: var(--oh26-white);
  box-shadow: 0 4px 15px rgba(var(--oh26-primary-rgb), 0.3);
}

.oh26-ws-form-success-btn:not(.oh26-ws-form-success-btn-outline):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--oh26-primary-rgb), 0.4);
}

.oh26-ws-form-success-btn-outline {
  background: transparent;
  border: 2px solid var(--oh26-border);
  color: var(--oh26-text-light);
}

.oh26-ws-form-success-btn-outline:hover {
  border-color: var(--oh26-primary);
  color: var(--oh26-primary);
}

/* Loading Spinner */
.oh26-ws-form-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--oh26-white);
  border-radius: 50%;
  animation: oh26Spin 0.8s linear infinite;
}

@keyframes oh26Spin {
  to { transform: rotate(360deg); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .oh26-ws-register {
    padding: 80px 0;
  }

  .oh26-ws-register-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oh26-ws-register-info {
    position: static;
  }

  .oh26-ws-register-form-inner {
    padding: 36px;
  }

  .oh26-ws-card-select {
    padding: 0 28px 28px;
  }

  .oh26-ws-form-success-actions {
    flex-direction: column;
  }

  .oh26-ws-form-success-btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .oh26-ws-register {
    padding: 60px 0;
  }

  .oh26-ws-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .oh26-ws-register-form-inner {
    padding: 28px 24px;
  }

  .oh26-ws-form-recaptcha .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left;
  }

  .oh26-ws-card-select {
    padding: 0 24px 24px;
  }

  .oh26-ws-selected-header {
    padding: 14px 18px;
  }

  .oh26-ws-selected-list {
    padding: 16px 18px;
  }

  .oh26-ws-selected-item {
    gap: 12px;
  }

  .oh26-ws-selected-icon {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }

  .oh26-ws-selected-title {
    font-size: 0.875rem;
  }

  .oh26-ws-form-success-inner {
    padding: 32px 24px;
  }

  .oh26-ws-form-success-checkmark {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .oh26-ws-form-success h3 {
    font-size: 1.5rem;
  }

  .oh26-ws-form-success p {
    font-size: 1rem;
  }

  .oh26-ws-confirmed-list {
    padding: 16px;
  }

  .oh26-ws-confirmed-item {
    font-size: 0.875rem;
  }
}


/* ========================================
   NEW SECTIONS - Add to oh26-global.css
   UPDATED VERSION
   ======================================== */

/* ========== IMAGE SLIDER ========== */
.oh26-slider {
  padding: 60px 0;
  background: var(--oh26-bg);
  overflow: hidden;
}

.oh26-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.oh26-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--oh26-ease);
}

.oh26-slider-slide {
  flex: 0 0 calc(33.333% - 16px);
  aspect-ratio: 16 / 10;
  border-radius: var(--oh26-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.oh26-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--oh26-ease);
}

.oh26-slider-slide:hover img {
  transform: scale(1.08);
}

.oh26-slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--oh26-primary-rgb), 0.4) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-slider-slide:hover::after {
  opacity: 1;
}

/* Video slide - always visible indicator */
.oh26-slider-slide--video .oh26-slide-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--oh26-duration) var(--oh26-ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.oh26-slider-slide--video .oh26-slide-play i {
  font-size: 1.5rem;
  color: var(--oh26-primary);
  margin-left: 4px;
  transition: color var(--oh26-duration) var(--oh26-ease);
}

.oh26-slider-slide--video:hover .oh26-slide-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: var(--oh26-white);
}

.oh26-slider-slide--video:hover .oh26-slide-play i {
  color: var(--oh26-accent);
}

/* Video badge indicator - always visible */
.oh26-slide-video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--oh26-white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  z-index: 2;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-slide-video-badge i {
  font-size: 0.75rem;
}

.oh26-slider-slide--video:hover .oh26-slide-video-badge {
  background: var(--oh26-accent);
}

/* Slider navigation - hidden when 3 or less items, shown when more */
.oh26-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: 50%;
  display: none; /* Hidden by default for 3 items */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--oh26-text);
  transition: all var(--oh26-duration) var(--oh26-ease);
  box-shadow: var(--oh26-shadow-sm);
}

.oh26-slider-nav:hover {
  background: var(--oh26-primary);
  border-color: var(--oh26-primary);
  color: var(--oh26-white);
  box-shadow: var(--oh26-shadow);
}

.oh26-slider-nav--prev { left: 0; }
.oh26-slider-nav--next { right: 0; }

/* Show navigation when slider has scrollable class (more than 3 items) */
.oh26-slider-container.oh26-slider--scrollable .oh26-slider-nav {
  display: flex;
}

.oh26-slider-dots {
  display: none; /* Hidden by default for 3 items */
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

/* Show dots when slider has scrollable class */
.oh26-slider-container.oh26-slider--scrollable .oh26-slider-dots {
  display: flex;
}

.oh26-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--oh26-primary-rgb), 0.2);
  cursor: pointer;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-slider-dot:hover {
  background: rgba(var(--oh26-primary-rgb), 0.4);
}

.oh26-slider-dot.active {
  background: var(--oh26-primary);
  transform: scale(1.2);
}

/* Slider Responsive */
@media (max-width: 1024px) {
  .oh26-slider-container {
    padding: 0 50px;
  }
  
  .oh26-slider-slide {
    flex: 0 0 calc(50% - 12px);
  }
  
  .oh26-slider-nav {
    width: 42px;
    height: 42px;
  }
  
  /* Show nav on tablet since not all slides visible */
  .oh26-slider-nav {
    display: flex;
  }
  
  .oh26-slider-dots {
    display: flex;
  }
}

@media (max-width: 640px) {
  .oh26-slider {
    padding: 40px 0;
  }
  
  .oh26-slider-container {
    padding: 0 40px;
  }
  
  .oh26-slider-slide {
    flex: 0 0 100%;
  }
  
  .oh26-slider-nav {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    display: flex;
  }
  
  .oh26-slider-nav--prev { left: 4px; }
  .oh26-slider-nav--next { right: 4px; }
  
  .oh26-slider-dots {
    display: flex;
  }
  
  .oh26-slider-slide--video .oh26-slide-play {
    width: 56px;
    height: 56px;
  }
  
  .oh26-slider-slide--video .oh26-slide-play i {
    font-size: 1.25rem;
  }
}


/* ========== WHO SHOULD ATTEND ========== */
.oh26-audience {
  padding: 100px 0;
  background: var(--oh26-white);
  position: relative;
  overflow: hidden;
}

.oh26-audience-header {
  margin-bottom: 48px;
}

.oh26-audience-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-audience-subtitle {
  font-size: 1.125rem;
  color: var(--oh26-text-light);
  margin: 0;
}

/* Main grid: list left, image right */
.oh26-audience-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

/* Audience list */
.oh26-audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oh26-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius);
}

.oh26-audience-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--oh26-primary), var(--oh26-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1.25rem;
}

.oh26-audience-text {
  flex: 1;
}

.oh26-audience-text p {
  margin: 0;
  color: var(--oh26-text-light);
  line-height: 1.6;
}

.oh26-audience-text strong {
  color: var(--oh26-text);
  font-weight: 600;
}

/* Audience Visual - clean image, no effects */
.oh26-audience-visual {
  max-width: 420px;
}

.oh26-audience-img img {
  width: 100%;
  height: auto;
  display: block;
}

.oh26-audience-img video {
  width: 100%;
  height: auto;
  display: block;
}

/* Bring Your Team CTA - Full width below */
.oh26-audience-cta {
  background: linear-gradient(135deg, var(--oh26-bg) 0%, rgba(250, 100, 0, 0.04) 100%);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.oh26-audience-cta-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--oh26-accent), #ff8533);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1.5rem;
}

.oh26-audience-cta-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 8px;
}

.oh26-audience-cta-content p {
  color: var(--oh26-text-light);
  margin: 0;
  line-height: 1.7;
}

/* Audience Responsive */
@media (max-width: 1024px) {
  .oh26-audience {
    padding: 80px 0;
  }
  
  .oh26-audience-grid {
    gap: 32px;
  }
  
  .oh26-audience-visual {
    max-width: 360px;
  }
}

@media (max-width: 860px) {
  .oh26-audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .oh26-audience-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .oh26-audience {
    padding: 60px 0;
  }
  
  .oh26-audience-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .oh26-audience-icon {
    margin: 0 auto;
  }
  
  .oh26-audience-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  
  .oh26-audience-cta-icon {
    margin: 0 auto;
  }
}

/* Partnership banner */

.partnershipbanner {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.partnershipbanner a:hover .background-image {
  filter: brightness(0.8); /* Adjust the brightness value as needed */
  transition: filter 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .logo {
    width: 500px;
  }
}

/* ========== IBM PARTNERSHIP BANNER ========== */
.oh26-partnership {
  padding: 50px 0;
  background: var(--oh26-bg);
}

.oh26-partnership-banner {
  display: block;
  position: relative;
  border-radius: var(--oh26-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1833 0%, var(--oh26-primary) 50%, var(--oh26-primary-light) 100%);
  padding: 56px 60px;
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-partnership-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/e15/pages/events/2024/assets/bannerbg.png') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-partnership-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--oh26-ease);
}

.oh26-partnership-banner:hover {
  transform: scale(1.01);
  box-shadow: var(--oh26-shadow-xl);
}

.oh26-partnership-banner:hover::before {
  opacity: 0.18;
}

.oh26-partnership-banner:hover::after {
  transform: translateX(100%);
}

.oh26-partnership-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.oh26-partnership-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.oh26-partnership-logos img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--oh26-duration) var(--oh26-ease);
}

.oh26-partnership-banner:hover .oh26-partnership-logos img {
  filter: brightness(1.2);
}

.oh26-partnership-content {
  text-align: left;
  color: var(--oh26-white);
}

.oh26-partnership-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.oh26-partnership-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0;
}

.oh26-partnership-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 14px 28px;
  color: var(--oh26-white);
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}

.oh26-partnership-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: oh26-shimmer 3s infinite;
}

@keyframes oh26-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.oh26-partnership-badge img {
  height: 22px;
  width: auto;
}

/* Partnership Responsive */
@media (max-width: 1024px) {
  .oh26-partnership-banner {
    padding: 48px 40px;
  }
  
  .oh26-partnership-inner {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .oh26-partnership-logos img {
    height: 44px;
  }
}

@media (max-width: 768px) {
  .oh26-partnership-banner {
    padding: 40px 28px;
  }
  
  .oh26-partnership-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  
  .oh26-partnership-content {
    text-align: center;
  }
  
  .oh26-partnership-content h3 {
    font-size: 1.25rem;
  }
  
  .oh26-partnership-logos {
    flex-direction: column;
    gap: 24px;
  }
  
  .oh26-partnership-logos img {
    height: 40px;
  }
}


/* ========== PROGRAM PREVIEW (Workshops & Management Circle) ========== */
.oh26-programs {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.oh26-program-card {
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius-lg);
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
  display: flex;
  flex-direction: column;
}

.oh26-program-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-8px);
}

.oh26-program-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.oh26-program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--oh26-ease);
}

.oh26-program-card:hover .oh26-program-img img {
  transform: scale(1.08);
}

.oh26-program-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.oh26-program-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.oh26-program-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 20px;
}

.oh26-program-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.oh26-program-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--oh26-text-muted);
}

.oh26-program-meta-item i {
  width: 18px;
  color: var(--oh26-primary);
  font-size: 0.875rem;
}

.oh26-program-body > p {
  color: var(--oh26-text-light);
  line-height: 1.7;
  margin: 0 0 28px;
  flex: 1;
}

.oh26-program-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--oh26-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-program-link:hover {
  color: var(--oh26-accent);
  gap: 14px;
}

.oh26-program-link i {
  transition: transform var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-program-link:hover i {
  transform: translateX(4px);
}

/* Programs Responsive */
@media (max-width: 1024px) {
  .oh26-programs {
    padding: 80px 0;
  }
  
  .oh26-programs-grid {
    gap: 24px;
  }
  
  .oh26-program-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .oh26-programs-grid {
    grid-template-columns: 1fr;
  }
  
  .oh26-program-body {
    padding: 28px;
  }
  
  .oh26-program-body h3 {
    font-size: 1.375rem;
  }
}


/* ========== TESTIMONIALS ========== */
.oh26-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--oh26-bg) 0%, var(--oh26-white) 100%);
  overflow: hidden;
  position: relative;
}

.oh26-testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(var(--oh26-primary-rgb), 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.oh26-testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.oh26-testimonials-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-testimonials-header p {
  font-size: 1.0625rem;
  color: var(--oh26-text-light);
  margin: 0;
}

/* Infinite scroll track */
.oh26-testimonials-track {
  display: flex;
  gap: 28px;
  animation: oh26-scroll 50s linear infinite;
  width: max-content;
}

.oh26-testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes oh26-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.oh26-testimonial-card {
  width: 440px;
  flex-shrink: 0;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-lg);
  padding: 36px;
  box-shadow: var(--oh26-shadow-sm);
  border: 1px solid var(--oh26-border);
  position: relative;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-testimonial-card:hover {
  box-shadow: var(--oh26-shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

/* Large decorative quote */
.oh26-testimonial-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(var(--oh26-primary-rgb), 0.06);
  line-height: 1;
  pointer-events: none;
}

.oh26-testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--oh26-text);
  margin: 0 0 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.oh26-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--oh26-border);
}

.oh26-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oh26-primary), var(--oh26-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.oh26-testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 4px;
}

.oh26-testimonial-info p {
  font-size: 0.875rem;
  color: var(--oh26-text-muted);
  margin: 0;
  line-height: 1.4;
}

.oh26-testimonial-company {
  color: var(--oh26-primary);
  font-weight: 500;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .oh26-testimonials {
    padding: 70px 0;
  }
  
  .oh26-testimonials-header {
    margin-bottom: 48px;
  }
  
  .oh26-testimonial-card {
    width: 340px;
    padding: 28px;
  }
  
  .oh26-testimonial-quote {
    font-size: 4rem;
  }
  
  .oh26-testimonial-text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .oh26-testimonial-card {
    width: 300px;
    padding: 24px;
  }
  
  .oh26-testimonial-avatar {
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }
}


/* ========== SLIDER VIDEO MODAL ========== */
.oh26-slider-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-slider-modal.oh26-show {
  display: flex;
  opacity: 1;
}

.oh26-slider-modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--oh26-radius);
  overflow: hidden;
}

.oh26-slider-modal-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.oh26-slider-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--oh26-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
  z-index: 10;
}

.oh26-slider-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}


/* =====================================================
   AGENDA PAGE STYLES - Open House 2026
   ===================================================== */

/* ========== AGENDA DAY SECTION ========== */


.oh26-agenda-day-alt {
  background: var(--oh26-bg);
  padding: 100px 0 80px;
}

.oh26-agenda-day-alt:nth-of-type(even) {
  background: var(--oh26-white);
}

.oh26-agenda-day-alt + .oh26-agenda-day-alt {
  padding-top: 80px;
}

/* ========== DAY HEADER ========== */
.oh26-day-header {
  text-align: center;
  margin-bottom: 48px;
}

.oh26-day-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.oh26-day-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-primary);
  background: var(--oh26-white);
  border: 2px solid var(--oh26-primary);
  padding: 8px 20px;
  border-radius: 50px;
}

.oh26-day-desc {
  font-size: 1rem;
  color: var(--oh26-text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== BREAK STYLING ========== */
.oh26-agenda-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  margin: 32px 0;
  background: rgba(var(--oh26-primary-rgb), 0.04);
  border-radius: var(--oh26-radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--oh26-text-light);
}

.oh26-agenda-break i {
  color: var(--oh26-primary);
  font-size: 1rem;
}

.oh26-agenda-break-lunch {
  background: rgba(var(--oh26-primary-rgb), 0.06);
}

/* ========== SECTION HEADER ========== */
.oh26-agenda-section {
  margin-bottom: 40px;
}

.oh26-agenda-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--oh26-primary);
  border-radius: var(--oh26-radius) var(--oh26-radius) 0 0;
  gap: 16px;
  flex-wrap: wrap;
}

.oh26-agenda-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--oh26-white);
  font-size: 1.125rem;
  font-weight: 600;
}

.oh26-agenda-section-title i {
  font-size: 1rem;
  opacity: 0.85;
}

.oh26-agenda-section-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ========== PANEL CONTAINER ========== */
.oh26-agenda-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--oh26-border);
  border: 1px solid var(--oh26-border);
  border-top: none;
  border-radius: 0 0 var(--oh26-radius) var(--oh26-radius);
  overflow: hidden;
}

.oh26-agenda-panel-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ========== PANEL ITEM ========== */
.oh26-agenda-panel-item {
  background: var(--oh26-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.oh26-agenda-panel-item.oh26-agenda-panel-full {
  grid-column: 1 / -1;
}

.oh26-agenda-time-small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh26-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.oh26-agenda-panel-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 8px;
  line-height: 1.4;
}

.oh26-agenda-panel-subtitle {
  font-size: 0.875rem;
  color: var(--oh26-text-light);
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ========== TAGS ========== */
.oh26-agenda-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--oh26-primary);
  background: rgba(var(--oh26-primary-rgb), 0.08);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.oh26-agenda-demo-text {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
  margin: 8px 0 16px;
}

/* ========== LISTS ========== */
.oh26-agenda-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.oh26-agenda-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--oh26-text-light);
  line-height: 1.6;
  margin-bottom: 6px;
}

.oh26-agenda-list li:last-child {
  margin-bottom: 0;
}

.oh26-agenda-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--oh26-primary);
  border-radius: 50%;
}

.oh26-agenda-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.oh26-agenda-list-inline li {
  margin-bottom: 0;
}

/* ========== SPEAKERS ========== */
.oh26-agenda-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.oh26-agenda-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: var(--oh26-bg);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.oh26-agenda-speaker:hover {
  background: var(--oh26-white);
  border-color: var(--oh26-border);
  box-shadow: 0 4px 16px rgba(var(--oh26-primary-rgb), 0.08);
  transform: translateY(-2px);
}

.oh26-agenda-speaker img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

.oh26-agenda-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oh26-agenda-speaker-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-text);
  line-height: 1.3;
}

.oh26-agenda-speaker-role {
  font-size: 0.6875rem;
  color: var(--oh26-text-muted);
  line-height: 1.3;
}

/* ========== AFTERNOON PROGRAM ========== */
.oh26-agenda-afternoon {
  margin-top: 48px;
  padding: 32px;
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
}

.oh26-agenda-day-alt .oh26-agenda-afternoon {
  background: var(--oh26-white);
}

.oh26-agenda-afternoon-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.oh26-agenda-afternoon-title span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-primary);
  background: rgba(var(--oh26-primary-rgb), 0.08);
  padding: 6px 16px;
  border-radius: 50px;
}

.oh26-agenda-afternoon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.oh26-agenda-afternoon-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius-sm);
  transition: all 0.25s ease;
}

.oh26-agenda-afternoon-item:hover {
  background: var(--oh26-white);
  box-shadow: var(--oh26-shadow-sm);
}

.oh26-agenda-afternoon-item > i {
  font-size: 1.5rem;
  color: var(--oh26-primary);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.oh26-agenda-afternoon-item > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh26-agenda-afternoon-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-text);
}

.oh26-agenda-afternoon-item p {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
  margin: 0;
  line-height: 1.5;
}

.oh26-agenda-afternoon-item a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-decoration: none;
  margin-top: 4px;
}

.oh26-agenda-afternoon-item a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .oh26-agenda-panel-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .oh26-agenda-panel-3 .oh26-agenda-panel-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .oh26-agenda-day-alt {
    padding: 60px 0;
  }
  
  .oh26-day-title {
    font-size: 1.75rem;
    flex-direction: column;
    gap: 12px;
  }
  
  .oh26-agenda-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
  
  .oh26-agenda-section-title {
    font-size: 1rem;
  }
  
  .oh26-agenda-panel,
  .oh26-agenda-panel-3 {
    grid-template-columns: 1fr;
  }
  
  .oh26-agenda-panel-item {
    padding: 24px 20px;
  }
  
  .oh26-agenda-panel-title {
    font-size: 1rem;
  }
  
  .oh26-agenda-speakers {
    flex-direction: column;
  }
  
  .oh26-agenda-speaker {
    width: fit-content;
  }
  
  .oh26-agenda-afternoon {
    padding: 24px;
  }
  
  .oh26-agenda-afternoon-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .oh26-agenda-afternoon-item {
    padding: 20px;
  }
  
  .oh26-agenda-break {
    padding: 16px;
    font-size: 0.875rem;
    margin: 24px 0;
  }
}

@media (max-width: 480px) {
  .oh26-day-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  
  .oh26-agenda-speaker {
    width: 100%;
    border-radius: var(--oh26-radius-sm);
  }
  
  .oh26-agenda-list-inline {
    flex-direction: column;
    gap: 6px;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  .oh26-agenda-speaker,
  .oh26-agenda-afternoon-item {
    transition: none;
  }
}

.oh26-agenda-speaker:focus-visible,
.oh26-agenda-afternoon-item a:focus-visible {
  outline: 2px solid var(--oh26-primary);
  outline-offset: 2px;
}

/* =====================================================
   KEYNOTE TAKEAWAYS STYLES - Open House 2026
   Add to oh26-global.css
   ===================================================== */

/* ========== KEYNOTE TAKEAWAYS ========== */
.oh26-keynote-takeaways {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--oh26-border);
}

.oh26-keynote-takeaways h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-keynote-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oh26-keynote-takeaways li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--oh26-text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.oh26-keynote-takeaways li:last-child {
  margin-bottom: 0;
}

.oh26-keynote-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--oh26-primary);
  border-radius: 50%;
}

.oh26-keynote-takeaways li strong {
  color: var(--oh26-text);
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .oh26-keynote-takeaways {
    margin-top: 16px;
    padding-top: 16px;
  }
  
  .oh26-keynote-takeaways li {
    font-size: 0.8125rem;
    margin-bottom: 10px;
  }
}

/* =====================================================
   SPEAKERS HOMEPAGE SECTION - Premium Styling
   Add to oh26-global.css
   ===================================================== */

/* ========== SPEAKERS HOME SECTION ========== */
.oh26-speakers-home {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--oh26-white) 0%, var(--oh26-bg) 100%);
  position: relative;
}

.oh26-speakers-home-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.oh26-speakers-home-header .oh26-eyebrow {
  margin-bottom: 20px;
}

.oh26-speakers-home-header .oh26-section-title {
  margin-bottom: 16px;
}

/* ========== FEATURED SPEAKERS GRID ========== */
.oh26-speakers-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Speaker Card */
.oh26-speaker-home-card {
  position: relative;
  border-radius: var(--oh26-radius);
  overflow: hidden;
  background: var(--oh26-white);
  box-shadow: var(--oh26-shadow-sm);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
  display: block;
}

.oh26-speaker-home-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--oh26-shadow-lg);
}

/* Speaker Image */
.oh26-speaker-home-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--oh26-bg) 0%, #e8e6f0 100%);
}

.oh26-speaker-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--oh26-ease);
}

.oh26-speaker-home-card:hover .oh26-speaker-home-img img {
  transform: scale(1.05);
}

.oh26-speaker-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(56, 53, 102, 0.8) 0%,
    rgba(56, 53, 102, 0.3) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-speaker-home-card:hover .oh26-speaker-home-overlay {
  opacity: 1;
}

/* Speaker Info */
.oh26-speaker-home-info {
  padding: 20px;
  text-align: center;
  background: var(--oh26-white);
  position: relative;
}

.oh26-speaker-home-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  transform: scaleX(0);
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-speaker-home-card:hover .oh26-speaker-home-info::before {
  transform: scaleX(1);
}

.oh26-speaker-home-info h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.oh26-speaker-home-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--oh26-text-light);
  margin-bottom: 4px;
  line-height: 1.4;
}

.oh26-speaker-home-company {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ========== MORE SPEAKERS GRID ========== */
.oh26-speakers-more-grid {
  margin-bottom: 48px;
}

.oh26-speakers-more-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 28px;
  position: relative;
}

.oh26-speakers-more-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  margin: 12px auto 0;
  border-radius: 2px;
}

.oh26-speakers-more-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Mini Speaker Card */
.oh26-speaker-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 16px;
  border-radius: var(--oh26-radius-sm);
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-speaker-mini:hover {
  border-color: rgba(var(--oh26-primary-rgb), 0.2);
  box-shadow: var(--oh26-shadow);
  transform: translateY(-4px);
}

.oh26-speaker-mini-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--oh26-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-speaker-mini:hover .oh26-speaker-mini-img {
  box-shadow: 0 6px 20px rgba(var(--oh26-primary-rgb), 0.2);
}

.oh26-speaker-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.oh26-speaker-mini-info {
  text-align: center;
}

.oh26-speaker-mini-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 4px;
  line-height: 1.3;
}

.oh26-speaker-mini-info span {
  font-size: 0.75rem;
  color: var(--oh26-text-muted);
  line-height: 1.3;
}

/* ========== CTA BUTTON ========== */
.oh26-speakers-home-cta {
  text-align: center;
}

.oh26-speakers-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--oh26-primary);
  color: var(--oh26-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--oh26-radius-sm);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
  box-shadow: 0 4px 16px rgba(var(--oh26-primary-rgb), 0.25);
}

.oh26-speakers-home-btn:hover {
  background: var(--oh26-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--oh26-primary-rgb), 0.3);
}

.oh26-speakers-home-btn i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-speakers-home-btn:hover i {
  transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .oh26-speakers-featured {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .oh26-speakers-more-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .oh26-speakers-home {
    padding: 80px 0;
  }
  
  .oh26-speakers-featured {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .oh26-speakers-more-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .oh26-speakers-home {
    padding: 60px 0;
  }
  
  .oh26-speakers-home-header {
    margin-bottom: 40px;
  }
  
  .oh26-speakers-featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .oh26-speaker-home-info {
    padding: 16px;
  }
  
  .oh26-speaker-home-info h3 {
    font-size: 0.9375rem;
  }
  
  .oh26-speakers-more-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .oh26-speaker-mini {
    padding: 12px;
  }
  
  .oh26-speaker-mini-img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .oh26-speakers-featured {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .oh26-speakers-more-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .oh26-speaker-mini-info h4 {
    font-size: 0.8125rem;
  }
  
  .oh26-speakers-home-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hover effect adjustment for touch devices */
@media (hover: none) {
  .oh26-speaker-home-card:hover {
    transform: none;
  }
  
  .oh26-speaker-mini:hover {
    transform: none;
  }
  
  .oh26-speaker-home-overlay {
    opacity: 0.3;
  }
}

/* =====================================================
   PAPYRUS GOLF OPEN SECTION
   Add to oh26-global.css
   
   Note: Uses existing .oh26-play and .oh26-modal styles
   ===================================================== */

/* Golf Section */
.oh26-golf-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    #1a1833 0%,
    #252347 50%,
    #1a1833 100%
  );
  position: relative;
}

.oh26-golf-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(56, 53, 102, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.oh26-golf-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content */
.oh26-golf-content {
  color: var(--oh26-white);
}

.oh26-golf-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.oh26-golf-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.oh26-golf-title i {
  color: var(--oh26-white);
  font-size: 2rem;
}

.oh26-golf-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.oh26-golf-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.oh26-golf-detail i {
  color: var(--oh26-accent);
  font-size: 0.875rem;
  width: 16px;
}

.oh26-golf-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Video Thumbnail */
.oh26-golf-media {
  position: relative;
}

.oh26-golf-thumb {
  position: relative;
  border-radius: var(--oh26-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: box-shadow 0.4s var(--oh26-ease);
}

.oh26-golf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--oh26-ease);
}

.oh26-golf-thumb:hover img {
  transform: scale(1.03);
}

.oh26-golf-thumb:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.oh26-golf-thumb .oh26-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Trigger play button hover when thumbnail is hovered */
.oh26-golf-thumb:hover .oh26-play {
  background: var(--oh26-primary-light);
  transform: translate(-50%, -50%) scale(1.08);
}

.oh26-golf-thumb:hover .oh26-play::before {
  inset: -8px;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Focus state for keyboard navigation */
.oh26-golf-thumb:focus {
  outline: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 3px var(--oh26-accent);
}

.oh26-golf-thumb:focus .oh26-play {
  background: var(--oh26-primary-light);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .oh26-golf-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .oh26-golf-content {
    text-align: center;
  }
  
  .oh26-golf-title {
    justify-content: center;
    font-size: 2rem;
  }
  
  .oh26-golf-details {
    justify-content: center;
  }
  
  .oh26-golf-thumb {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .oh26-golf-section {
    padding: 60px 0;
  }
  
  .oh26-golf-title {
    font-size: 1.625rem;
    flex-direction: column;
    gap: 12px;
  }
  
  .oh26-golf-details {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .oh26-golf-text {
    font-size: 0.9375rem;
  }
}


/* ========================================
   AGENDA AT A GLANCE - OH2026
   Add to oh26-new-sections.css
   ======================================== */

/* ========== AGENDA SECTION ========== */
.oh26-agenda {
  padding: 100px 0;
  background: var(--oh26-white);
  position: relative;
}

.oh26-agenda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, var(--oh26-bg) 0%, var(--oh26-white) 100%);
  pointer-events: none;
}

.oh26-agenda .oh26-container {
  position: relative;
  z-index: 1;
}

/* Day Container */
.oh26-agenda .oh26-agenda-day {
  margin-bottom: 32px;
  border-radius: var(--oh26-radius-lg);
  background: var(--oh26-white);
  box-shadow: var(--oh26-shadow-sm);
  border: 1px solid var(--oh26-border);
  overflow: hidden;
  transition: box-shadow var(--oh26-duration) var(--oh26-ease);
}

.oh26-agenda .oh26-agenda-day:hover {
  box-shadow: var(--oh26-shadow);
}

.oh26-agenda .oh26-agenda-day:last-child {
  margin-bottom: 0;
}

/* Day Header (Clickable) */
.oh26-agenda .oh26-agenda-day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--oh26-bg) 0%, rgba(var(--oh26-primary-rgb), 0.03) 100%);
  border: none;
  border-bottom: 1px solid var(--oh26-border);
  cursor: pointer;
  text-align: left;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-agenda .oh26-agenda-day-header:hover {
  background: linear-gradient(135deg, var(--oh26-bg) 0%, rgba(var(--oh26-primary-rgb), 0.06) 100%);
}

.oh26-agenda .oh26-agenda-day.oh26-collapsed .oh26-agenda-day-header {
  border-bottom-color: transparent;
}

.oh26-agenda .oh26-agenda-day-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--oh26-primary), var(--oh26-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.oh26-agenda .oh26-agenda-day-info {
  flex: 1;
}

.oh26-agenda .oh26-agenda-day-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 6px;
}

.oh26-agenda .oh26-agenda-day-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--oh26-text-light);
}

.oh26-agenda .oh26-agenda-day-meta i {
  font-size: 0.875rem;
  color: var(--oh26-primary);
}

.oh26-agenda .oh26-agenda-day-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-text-muted);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-agenda .oh26-agenda-day-header:hover .oh26-agenda-day-toggle {
  border-color: var(--oh26-primary);
  color: var(--oh26-primary);
}

.oh26-agenda .oh26-agenda-day-toggle i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-agenda .oh26-agenda-day.oh26-collapsed .oh26-agenda-day-toggle i {
  transform: rotate(180deg);
}

/* Day Content (Collapsible) */
.oh26-agenda .oh26-agenda-day-content {
  padding: 32px;
  position: relative;
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.5s var(--oh26-ease), padding 0.5s var(--oh26-ease), opacity 0.3s ease;
  opacity: 1;
}

.oh26-agenda .oh26-agenda-day.oh26-collapsed .oh26-agenda-day-content {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* Timeline accent line */
.oh26-agenda .oh26-agenda-timeline {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 48px;
  width: 3px;
  background: linear-gradient(180deg, var(--oh26-primary) 0%, var(--oh26-accent) 100%);
  border-radius: 3px;
  opacity: 0.15;
}

/* Agenda Grid */
.oh26-agenda .oh26-agenda-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Agenda Card */
.oh26-agenda .oh26-agenda-card {
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid transparent;
  transition: all var(--oh26-duration) var(--oh26-ease);
  position: relative;
}

.oh26-agenda .oh26-agenda-card:hover {
  background: var(--oh26-white);
  border-color: var(--oh26-border);
  box-shadow: var(--oh26-shadow-sm);
  transform: translateY(-4px);
}

/* Anchor card styling */
a.oh26-agenda-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Keynote card variant */
.oh26-agenda .oh26-agenda-card--keynote {
  border: 1px solid rgba(var(--oh26-primary-rgb), 0.15);
}

.oh26-agenda .oh26-agenda-card--keynote:hover {
  border-color: rgba(var(--oh26-primary-rgb), 0.25);
}

/* Afternoon card variant */
.oh26-agenda .oh26-agenda-card--afternoon {
  background: linear-gradient(135deg, rgba(var(--oh26-accent-rgb, 255, 107, 53), 0.06) 0%, var(--oh26-bg) 100%);
}

/* Time */
.oh26-agenda .oh26-agenda-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* Card Content */
.oh26-agenda .oh26-agenda-card-content {
  flex: 1;
}

.oh26-agenda .oh26-agenda-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh26-accent);
  margin-bottom: 8px;
}

.oh26-agenda .oh26-agenda-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 12px;
  line-height: 1.4;
}

.oh26-agenda .oh26-agenda-desc {
  font-size: 0.875rem;
  color: var(--oh26-text-light);
  margin: 0;
  line-height: 1.6;
}

.oh26-agenda .oh26-agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oh26-agenda .oh26-agenda-list li {
  font-size: 0.875rem;
  color: var(--oh26-text-light);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
}

.oh26-agenda .oh26-agenda-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--oh26-primary);
  border-radius: 50%;
  opacity: 0.5;
}

.oh26-agenda .oh26-agenda-card:hover .oh26-agenda-list li::before {
  opacity: 0.8;
}

/* Tag */
.oh26-agenda .oh26-agenda-tag {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh26-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--oh26-border);
}

.oh26-agenda .oh26-agenda-card:hover .oh26-agenda-tag {
  color: var(--oh26-primary);
}

/* Lunch styling */
.oh26-agenda .oh26-agenda-lunch {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--oh26-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--oh26-border);
  width: 100%;
}

.oh26-agenda .oh26-agenda-afternoon-block {
  padding-top: 4px;
}

.oh26-agenda .oh26-agenda-afternoon-time {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-accent);
  margin-bottom: 12px;
}


/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
  .oh26-agenda .oh26-agenda-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .oh26-agenda .oh26-agenda-card--afternoon {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .oh26-agenda {
    padding: 80px 0;
  }
  
  .oh26-agenda .oh26-agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .oh26-agenda .oh26-agenda-card--afternoon {
    grid-column: span 2;
  }
  
  .oh26-agenda .oh26-agenda-day-header {
    padding: 20px 24px;
  }
  
  .oh26-agenda .oh26-agenda-day-content {
    padding: 24px;
  }
  
  .oh26-agenda .oh26-agenda-timeline {
    display: none;
  }
}

@media (max-width: 640px) {
  .oh26-agenda {
    padding: 60px 0;
  }
  
  .oh26-agenda .oh26-agenda-day {
    margin-bottom: 24px;
  }
  
  .oh26-agenda .oh26-agenda-day-header {
    padding: 16px 20px;
    gap: 16px;
  }
  
  .oh26-agenda .oh26-agenda-day-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.125rem;
  }
  
  .oh26-agenda .oh26-agenda-day-title {
    font-size: 1.125rem;
  }
  
  .oh26-agenda .oh26-agenda-day-meta {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .oh26-agenda .oh26-agenda-day-toggle {
    width: 36px;
    height: 36px;
  }
  
  .oh26-agenda .oh26-agenda-day-content {
    padding: 20px;
  }
  
  .oh26-agenda .oh26-agenda-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .oh26-agenda .oh26-agenda-card {
    padding: 20px;
    min-height: auto;
  }
  
  .oh26-agenda .oh26-agenda-card--afternoon {
    grid-column: span 1;
  }
  
  .oh26-agenda .oh26-agenda-card:hover {
    transform: none;
  }
  
  .oh26-agenda .oh26-agenda-title {
    font-size: 0.9375rem;
  }
  
  .oh26-agenda .oh26-agenda-list li {
    font-size: 0.8125rem;
    padding: 5px 0 5px 16px;
  }
}

/* Accessibility - reduced motion */
@media (prefers-reduced-motion: reduce) {
  .oh26-agenda .oh26-agenda-day-content {
    transition: none;
  }
  
  .oh26-agenda .oh26-agenda-card {
    transition: none;
  }
  
  .oh26-agenda .oh26-agenda-day-toggle i {
    transition: none;
  }
}

/* Keynote card variant */
.oh26-agenda .oh26-agenda-card--keynote {
  border: 1px solid rgba(var(--oh26-primary-rgb), 0.12);
  overflow: hidden;
}

.oh26-agenda .oh26-agenda-card--keynote:hover {
  border-color: rgba(var(--oh26-primary-rgb), 0.2);
}

.oh26-agenda .oh26-agenda-card--keynote::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  border-radius: var(--oh26-radius) var(--oh26-radius) 0 0;
}

/* Fix for long German words breaking grid */
.oh26-agenda .oh26-agenda-card {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.oh26-agenda .oh26-agenda-title {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.oh26-agenda .oh26-agenda-list li {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Agenda coming soon note */
.oh26-agenda .oh26-agenda-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 32px;
  background: linear-gradient(135deg, rgba(var(--oh26-primary-rgb), 0.06) 0%, rgba(var(--oh26-accent-rgb), 0.04) 100%);
  border: 1px dashed rgba(var(--oh26-primary-rgb), 0.2);
  border-radius: var(--oh26-radius);
  color: var(--oh26-text);
  font-size: 1rem;
  font-weight: 500;
}

.oh26-agenda .oh26-agenda-note i {
  color: var(--oh26-accent);
  font-size: 1.25rem;
}


/* =====================================================================
   GALA DINNER SECTION
   Premium production-ready styles
   Version: 3.0
   ===================================================================== */

/* ---------------------------------------------------------------------
   Section Container
   --------------------------------------------------------------------- */
.oh26-gala {
  position: relative;
  min-height: 520px;
  background: #0c1220;
  overflow: hidden;
  isolation: isolate;
}

/* ---------------------------------------------------------------------
   Background Image - Positioned Upper Right, Bleeds & Fades
   --------------------------------------------------------------------- */
.oh26-gala-bg {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 65%;
  height: 115%;
  z-index: 1;
  pointer-events: none;
}

.oh26-gala-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
}

/* ---------------------------------------------------------------------
   Gradient Overlays - Multiple layers for smooth blending
   --------------------------------------------------------------------- */
.oh26-gala-overlay {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* Left gradient - main content protection */
.oh26-gala-overlay--left {
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    #0c1220 0%,
    #0c1220 35%,
    rgba(12, 18, 32, 0.98) 45%,
    rgba(12, 18, 32, 0.9) 55%,
    rgba(12, 18, 32, 0.6) 70%,
    transparent 100%
  );
}

/* Bottom gradient - smooth fade */
.oh26-gala-overlay--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    #0c1220 0%,
    rgba(12, 18, 32, 0.8) 40%,
    transparent 100%
  );
}

/* Radial overlay - vignette effect */
.oh26-gala-overlay--radial {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 80% 100% at 85% 20%,
    transparent 0%,
    rgba(12, 18, 32, 0.3) 50%,
    rgba(12, 18, 32, 0.7) 100%
  );
}

/* ---------------------------------------------------------------------
   Decorative Flourish
   --------------------------------------------------------------------- */
.oh26-gala-decor {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.4;
}

.oh26-gala-flourish {
  width: 120px;
  height: 40px;
  color: #c9a959;
}

/* ---------------------------------------------------------------------
   Content Container
   --------------------------------------------------------------------- */
.oh26-gala .oh26-container {
  position: relative;
  z-index: 10;
}

.oh26-gala-content {
  max-width: 580px;
  padding: 70px 0 90px;
  color: #fff;
}

/* ---------------------------------------------------------------------
   Header - Meta, Title, Location
   --------------------------------------------------------------------- */
.oh26-gala-header {
  margin-bottom: 28px;
}

.oh26-gala-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.oh26-gala-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #c9a959 0%, #a68b3d 100%);
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
}

.oh26-gala-tag svg {
  flex-shrink: 0;
}

.oh26-gala-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Title */
.oh26-gala-title {
  margin: 0 0 18px;
  line-height: 1.1;
}

.oh26-gala-title-sub {
  display: block;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.oh26-gala-title-main {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #c9a959;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Location */
.oh26-gala-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.oh26-gala-location svg {
  flex-shrink: 0;
  color: #c9a959;
}

.oh26-gala-location strong {
  color: #fff;
  font-weight: 500;
}

/* ---------------------------------------------------------------------
   Body - Lead, Text, Features
   --------------------------------------------------------------------- */
.oh26-gala-body {
  margin-bottom: 24px;
}

.oh26-gala-lead {
  position: relative;
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.oh26-gala-lead::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: linear-gradient(to bottom, #c9a959, rgba(201, 169, 89, 0.3));
  border-radius: 2px;
}

.oh26-gala-text {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Features List */
.oh26-gala-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oh26-gala-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.oh26-gala-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(201, 169, 89, 0.12);
  border: 1px solid rgba(201, 169, 89, 0.25);
  border-radius: 6px;
  color: #c9a959;
  transition: all 0.3s ease;
}

.oh26-gala-features li:hover .oh26-gala-feature-icon {
  background: rgba(201, 169, 89, 0.2);
  transform: translateY(-2px);
}

.oh26-gala-features li strong {
  color: #fff;
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   Footer - CTA & Venue
   --------------------------------------------------------------------- */
.oh26-gala-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 89, 0.15);
}

.oh26-gala-cta {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.oh26-gala-venue {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(201, 169, 89, 0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ===================================================================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .oh26-gala-bg {
    width: 60%;
    right: -8%;
  }
  
  .oh26-gala-overlay--left {
    width: 75%;
  }
  
  .oh26-gala-content {
    max-width: 520px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .oh26-gala {
    min-height: 480px;
  }
  
  .oh26-gala-bg {
    width: 70%;
    right: -10%;
    opacity: 0.85;
  }
  
  .oh26-gala-overlay--left {
    width: 80%;
    background: linear-gradient(
      100deg,
      #0c1220 0%,
      #0c1220 40%,
      rgba(12, 18, 32, 0.95) 55%,
      rgba(12, 18, 32, 0.7) 75%,
      transparent 100%
    );
  }
  
  .oh26-gala-content {
    max-width: 480px;
    padding: 60px 0 80px;
  }
  
  .oh26-gala-decor {
    bottom: 30px;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .oh26-gala {
    min-height: auto;
  }
  
  .oh26-gala-bg {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 280px;
    margin-bottom: -60px;
  }
  
  .oh26-gala-bg img {
    object-position: center center;
  }
  
  .oh26-gala-overlay--left {
    display: none;
  }
  
  .oh26-gala-overlay--bottom {
    height: 70%;
    background: linear-gradient(
      to top,
      #0c1220 0%,
      #0c1220 30%,
      rgba(12, 18, 32, 0.95) 50%,
      rgba(12, 18, 32, 0.6) 80%,
      transparent 100%
    );
  }
  
  .oh26-gala-overlay--radial {
    background: radial-gradient(
      ellipse 100% 60% at 50% 0%,
      transparent 0%,
      rgba(12, 18, 32, 0.5) 60%,
      rgba(12, 18, 32, 0.9) 100%
    );
  }
  
  .oh26-gala-content {
    max-width: none;
    padding: 0 0 70px;
    position: relative;
    z-index: 10;
  }
  
  .oh26-gala-meta {
    justify-content: center;
  }
  
  .oh26-gala-title {
    text-align: center;
  }
  
  .oh26-gala-location {
    justify-content: center;
  }
  
  .oh26-gala-lead {
    padding-left: 0;
    text-align: center;
  }
  
  .oh26-gala-lead::before {
    display: none;
  }
  
  .oh26-gala-text {
    text-align: center;
  }
  
  .oh26-gala-features {
    align-items: center;
  }
  
  .oh26-gala-features li {
    max-width: 360px;
  }
  
  .oh26-gala-footer {
    text-align: center;
  }
  
  .oh26-gala-decor {
    bottom: 24px;
  }
  
  .oh26-gala-flourish {
    width: 100px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .oh26-gala-bg {
    height: 240px;
    margin-bottom: -40px;
  }
  
  .oh26-gala-content {
    padding: 0 0 60px;
  }
  
  .oh26-gala-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .oh26-gala-title-main {
    font-size: 1.875rem;
  }
  
  .oh26-gala-features li {
    font-size: 0.875rem;
  }
  
  .oh26-gala-feature-icon {
    width: 32px;
    height: 32px;
  }
  
  .oh26-gala-feature-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .oh26-gala-decor {
    display: none;
  }
}

/* =====================================================================
   ACCESSIBILITY
   ===================================================================== */

/* Focus states */
.oh26-gala a:focus-visible,
.oh26-gala button:focus-visible {
  outline: 2px solid #c9a959;
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .oh26-gala-feature-icon {
    transition: none;
  }
  
  .oh26-gala-features li:hover .oh26-gala-feature-icon {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .oh26-gala {
    background: #000;
  }
  
  .oh26-gala-overlay--left,
  .oh26-gala-overlay--bottom,
  .oh26-gala-overlay--radial {
    opacity: 0.9;
  }
  
  .oh26-gala-title-main,
  .oh26-gala-tag {
    color: #ffd700;
  }
  
  .oh26-gala-text,
  .oh26-gala-features li,
  .oh26-gala-date {
    color: #fff;
  }
  
  .oh26-gala-feature-icon {
    border-width: 2px;
  }
}

/* =====================================================================
   PRINT STYLES
   ===================================================================== */
@media print {
  .oh26-gala {
    background: #fff;
    color: #000;
    min-height: auto;
    padding: 40px 0;
  }
  
  .oh26-gala-bg,
  .oh26-gala-overlay,
  .oh26-gala-decor {
    display: none;
  }
  
  .oh26-gala-content {
    max-width: none;
    padding: 0;
  }
  
  .oh26-gala-title-main {
    color: #333;
  }
  
  .oh26-gala-tag {
    background: #eee;
    color: #333;
  }
  
  .oh26-gala-feature-icon {
    background: #f5f5f5;
    border-color: #ccc;
  }
  
  .oh26-gala-footer {
    border-color: #ccc;
  }
}

/* By Invitation Only */
.sc26-exclusive {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  color: var(--oh26-gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sc26-exclusive::before,
.sc26-exclusive::after {
  content: '';
  height: 1px;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--oh26-gold));
  flex-shrink: 0;
}

.sc26-exclusive::after {
  background: linear-gradient(to left, transparent, var(--oh26-gold));
}