/* ========================================
   BRYZOS - App Stylesheet
   Homepage with Side Navigation
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-bg-dark: #1a1d26;
  --color-bg-darker: #0f1117;
  --color-bg-light: #f5f5f7;
  --color-orange: #EA5B1F;
  --color-orange-hover: #F06D35;
  --color-blue: #1a6aff;
  --color-blue-hover: #3d82ff;
  --color-cyan: #00d4ff;
  --color-teal: #00e5a0;
  --color-yellow: #ffd700;
  --color-green: #32FF6C;
  --color-text-white: #ffffff;
  --color-text-gray: rgba(255, 255, 255, 0.6);
  --color-text-muted: rgba(255, 255, 255, 0.35);
  --color-text-dark: #1a1d26;
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-border: rgba(255, 255, 255, 0.12);
  --color-glass-hover: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Syncopate', 'Inter', sans-serif;

  /* Layout */
  --sidebar-width: 220px;
  --sidebar-collapsed: 0px;
  --section-padding: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* App Container */
.app-container {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Mobile-only line break (hidden on desktop) */
.mobile-break {
  display: none;
}

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

/* ========================================
   HAMBURGER TOGGLE BUTTON
   ======================================== */

.sidebar-toggle {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.sidebar-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.sidebar-toggle:hover {
  background: var(--color-glass-hover);
  transform: scale(1.05);
}

/* Adaptive hamburger: dark glass on light backgrounds */
.sidebar-toggle.toggle-dark {
  background: rgba(15, 10, 30, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth), background 0.4s ease, border-color 0.4s ease;
}

.sidebar-toggle.toggle-dark:hover {
  background: rgba(15, 10, 30, 0.7);
}

/* Adaptive hamburger: light glass on dark backgrounds (default) */
.sidebar-toggle.toggle-light {
  transition: all var(--transition-smooth), background 0.4s ease, border-color 0.4s ease;
}

/* Always show hamburger icon */
.sidebar-toggle span:nth-child(1),
.sidebar-toggle span:nth-child(2),
.sidebar-toggle span:nth-child(3) {
  transform: none;
  opacity: 1;
}

/* ========================================
   GLASS SIDE NAVIGATION
   ======================================== */

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  overflow: hidden;
  /* Start collapsed, open on hover */
  transform: translateX(-100%);
  opacity: 0;
}

/* Adaptive sidebar: light glass on dark backgrounds (default) */
.side-nav.sidebar-light {
  background: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth), background 0.4s ease, border-right-color 0.4s ease;
}

/* Adaptive sidebar: dark glass on light backgrounds */
.side-nav.sidebar-dark {
  background: rgba(15, 10, 30, 0.7);
  border-right-color: rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth), background 0.4s ease, border-right-color 0.4s ease;
}

/* Show sidebar on hover or when open (mobile tap) */
.side-nav:hover,
.side-nav.open,
.sidebar-toggle:hover + .side-nav,
.sidebar-toggle:hover ~ .side-nav {
  transform: translateX(0);
  opacity: 1;
}

/* Hamburger animation when menu is open */
.sidebar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.sidebar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.sidebar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-toggle.active {
  background: rgba(255, 255, 255, 0.3);
}

/* Hover zone - invisible area to trigger sidebar */
.side-nav::after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 100%;
  background: transparent;
}

/* Glass shine effect */
.side-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%);
}

.side-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 80px 20px 24px;
}

/* ========================================
   LOGO
   ======================================== */

.logo {
  margin-bottom: 40px;
  padding: 16px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-white);
}

/* ========================================
   NAV LINKS
   ======================================== */

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-white);
  transition: font-weight var(--transition-smooth);
}

.nav-link:hover {
  font-weight: 700;
}

.nav-link.active {
  font-weight: 700;
}

/* ========================================
   SIDEBAR BUTTONS
   ======================================== */

.side-nav-bottom {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
}

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

.btn-blue:hover {
  background-color: #6b7280;
}

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

.btn-orange:hover {
  background-color: #6b7280;
}

.btn-accent {
  background-color: var(--color-orange);
  color: var(--color-text-white);
  width: auto;
  display: inline-flex;
  padding: 12px 36px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 14px;
  text-transform: none;
}

.btn-accent:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-1px);
}

/* Hero CTA Buttons */
.btn-cta-blue {
  background-color: var(--color-blue);
  color: var(--color-text-white);
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-cta-blue:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-2px);
}

.btn-cta-orange {
  background-color: transparent;
  color: var(--color-orange);
  padding: 14px 28px;
  border-radius: 25px;
  border: 2px solid var(--color-orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-cta-orange:hover {
  background-color: var(--color-orange);
  color: var(--color-text-white);
  transform: translateY(-2px);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
  flex: 1;
  margin-left: 0;
  overflow-x: hidden;
  width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #0A0E1A;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-content {
  text-align: center;
  padding: 40px 24px 20px;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-green);
  white-space: nowrap;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
  transform: scale(0.85);
  transform-origin: center top;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  transform: scale(0.85);
  transform-origin: center top;
  margin-top: -4px;
}

.hero-content .hero-index-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFE352 !important;
  text-decoration: none;
  margin-top: 20px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.hero-content .hero-index-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.hero-content .hero-index-link .link-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-content .hero-index-link:hover .link-arrow {
  transform: translateX(5px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-app-preview {
  width: 100%;
  max-width: 1100px;
  padding: 20px 24px 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.app-mockup {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* ========================================
   INTERACTIVE APP DEMO
   ======================================== */

.interactive-app-demo {
  position: relative;
  width: 100%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.app-screens {
  position: relative;
  width: 100%;
}

.app-screen {
  width: 100%;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.app-screen img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}

.app-screen:first-child {
  position: relative;
}

.app-screen.active {
  opacity: 1;
  z-index: 1;
}

/* Hotspots Container */
.app-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

/* Individual Hotspot Buttons */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(150, 160, 175, 0.3);
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.hotspot:hover {
  transform: scale(1.1);
  border-color: rgba(150, 160, 175, 0.5);
}

.hotspot:hover .hotspot-pulse {
  background: rgba(150, 160, 175, 0.2);
}

/* Pulse Animation Ring */
.hotspot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(150, 160, 175, 0.2);
  border: 1px solid rgba(150, 160, 175, 0.3);
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  50% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}


/* Hotspot Positions - aligned with app nav sidebar icons */
.hotspot[data-target="instant-price"] {
  top: 10%;
  left: 0.8%;
}

.hotspot[data-target="quoting"] {
  top: 15%;
  left: 0.8%;
}

.hotspot[data-target="purchasing"] {
  top: 19.5%;
  left: 0.8%;
}

.hotspot[data-target="orders"] {
  top: 24%;
  left: 0.8%;
}

/* Mobile app arrow (hidden on desktop) */
.mobile-app-arrow {
  display: none;
}

/* Responsive - hide hotspots, show arrow on mobile */
@media (max-width: 768px) {
  .app-hotspots {
    display: none;
  }

  .mobile-app-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translateX(-50%);
    z-index: 100;
    width: 60px;
    height: 60px;
    background: rgba(128, 128, 128, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: arrowPulse 2s ease-in-out infinite;
  }

  @keyframes arrowPulse {
    0%, 100% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.2);
    }
  }

  .mobile-app-arrow svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.85);
  }

  .mobile-app-arrow:active {
    background: rgba(255, 255, 255, 0.35);
  }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-bg-dark);
}

/* Features Section with Carousel */
.section-features {
  min-height: 100vh;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/lava rocks pics.webp');
  background-size: 200%;
  background-position: 70% 30%;
  filter: blur(3px);
  z-index: 0;
}

.section-features .container {
  position: relative;
  z-index: 1;
}

.features-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-text-white);
  text-align: left;
  margin-top: 20px;
  margin-bottom: 60px;
  margin-left: 5%;
}

.features-carousel {
  position: relative;
  overflow: visible;
  margin-bottom: 40px;
  margin-left: 15%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.section-features {
  overflow: hidden;
}

.feature-card.glass {
  flex: 0 0 280px;
  width: 280px;
  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: 24px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.feature-card .feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card .feature-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: left;
}

.feature-card .feature-desc {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 5%;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn.prev:hover {
  transform: translateX(-3px);
}

.carousel-btn.next:hover {
  transform: translateX(3px);
}

.section-hero-dark {
  background-color: #0A0F18;
}

.section-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-index {
  background-color: var(--color-bg-darker);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/Metals index section background copy.webp');
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: 0;
}

.section-index > .container {
  position: relative;
  z-index: 1;
}

.section-index .section-title {
  font-size: clamp(28px, 4vw, 48px);
}

.section-gradient {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
}

/* Don't Worry Section */
.section-dont-worry {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 20vh;
  position: relative;
  background-image: url('/assets/images/image 15.webp');
  background-size: 115%;
  background-position: right 10%;
  overflow: hidden;
}

.dont-worry-content {
  max-width: 850px;
  margin-left: 10%;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title.dark {
  color: #1a1a1a;
}

.section-text.dark {
  color: #000000;
  max-width: 750px;
}

.btn-dark {
  background-color: #000000;
  color: var(--color-text-white);
  padding: 12px 36px;
  border-radius: 50px;
  width: auto;
  display: inline-flex;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 14px;
  text-transform: none;
}

.btn-dark:hover {
  background-color: #222;
}

.section-stats {
  background-color: #111111;
  padding: 180px 0 100px;
  min-height: 1482px;
}

.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.stats-header-left {
  flex: 1;
}

.stats-header-right {
  flex: 1;
  text-align: right;
  padding-left: 40px;
}

.stats-main-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.stats-main-title .orange.italic {
  color: var(--color-orange);
  font-style: italic;
}

.stats-main-title .white {
  color: var(--color-text-white);
}

.stats-intro {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-white);
  max-width: 280px;
  margin-left: auto;
  margin-right: 80px;
}

.stats-video-container {
  max-width: 900px;
  margin: 0 auto 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stats-video {
  width: 104%;
  margin: -2% 0 -2% -2%;
  display: block;
}

.stats-content {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: left;
}

.stats-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.stats-text strong {
  font-weight: 600;
}

.stats-tagline {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-white);
  margin-top: 30px;
}

.stats-tagline a {
  color: var(--color-text-white);
  text-decoration: underline;
}

/* Maximize Time Section */
.section-maximize-time {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.section-maximize-time::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: url('/assets/images/123456.webp');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: 0;
}

.maximize-content {
  position: absolute;
  top: 80px;
  right: 5%;
  text-align: right;
  z-index: 1;
}

.maximize-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.maximize-title .gradient-blue {
  background: linear-gradient(135deg, #00d4ff 0%, #7be0b0 50%, #c9d86a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.72em;
  letter-spacing: 0.15em;
}

.maximize-title .gradient-yellow {
  background: linear-gradient(135deg, #a0d870 0%, #d4c040 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.15em;
}

.maximize-title .white-text {
  color: #ffffff;
  margin-right: 0.2em;
  font-size: 1.15em;
}

/* Instant BOM Upload Section */
.section-bom {
  background-color: #111111;
  padding: 100px 0;
  text-align: center;
}

.bom-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  background: linear-gradient(135deg, #00d4ff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.bom-content {
  max-width: 800px;
  margin: 0 auto 40px;
}

.bom-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
  margin-bottom: 20px;
}

.bom-cta {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-white);
  margin-top: 30px;
}

.bom-video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bom-video {
  width: 100%;
  display: block;
}

.section-testimonials {
  background-color: var(--color-bg-darker);
  padding: 120px 0;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 24px;
}

.section-title.dark {
  color: var(--color-text-dark);
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-gray);
  margin-bottom: 40px;
}

.section-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin-bottom: 20px;
  max-width: 700px;
}

.section-text.dark {
  color: #000000;
}

.section-text.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-content.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-highlight {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin: 30px 0;
}

.section-intro {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-white);
  margin-bottom: 32px;
  max-width: 700px;
}

.section-intro.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Orange Accent */
.orange {
  color: var(--color-orange);
}

/* Text Links */
.text-link {
  color: var(--color-text-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--color-orange);
}

/* Watch Link */
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-white);
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.watch-link:hover {
  color: var(--color-orange);
}

/* ========================================
   VIDEO MODAL
   ======================================== */

body.modal-open {
  overflow: hidden;
}

body.modal-open .app-container {
  filter: blur(12px);
  transition: filter 0.3s ease;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-modal-close svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* Unmute Button */
.unmute-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
  color: white;
}

.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.unmute-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.cc-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}

.cc-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.cc-btn.active {
  background: rgba(255, 255, 255, 0.9);
}

.cc-btn.active .cc-text {
  color: black;
}

.cc-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: white;
}

/* Video Captions Styling */
.video-wrapper video::cue {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
}

.play-icon {
  width: 24px;
  height: 24px;
}

/* Feature List */
.feature-list {
  margin: 32px 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text-white);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 20px;
}

.feature-list li strong {
  color: var(--color-text-white);
  font-weight: 600;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-label {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-primary);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-gray);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.feature-desc {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* Materials Section */
.section-materials {
  background-color: #111111;
  padding: 100px 0 120px;
}

.section-materials .section-text {
  max-width: 900px;
}

.materials-video-container {
  max-width: 700px;
  margin: 40px auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.materials-video {
  width: 100%;
  display: block;
}

.materials-subheader {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-white);
  text-align: center;
  margin-bottom: 12px;
}

.materials-subheader em {
  font-style: italic;
}

.materials-types {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 50px;
}

.products-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.products-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.products-row-4 .product-tile {
  flex: 0 0 200px;
}

.products-row-5 .product-tile {
  flex: 0 0 170px;
}

.product-tile {
  background: rgba(40, 44, 52, 0.8);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.product-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.product-image {
  margin-bottom: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-white);
}

.btn-line-card {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 36px;
  background: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-transform: none;
  transition: all 0.3s ease;
}

.btn-line-card:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

/* Testimonials Carousel Section */
.section-testimonials-carousel {
  min-height: 100vh;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: url('/assets/images/bryzos-brand-02.webp');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: 0;
}

.section-testimonials-carousel .container {
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFE352;
  text-align: left;
  margin-left: 5%;
  margin-bottom: 8px;
}

.testimonials-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-white);
  text-align: left;
  margin-left: 5%;
  margin-bottom: 8px;
}

.testimonials-subtitle .text-link {
  text-decoration: underline;
}

.testimonials-carousel {
  position: relative;
  overflow: visible;
  margin: 40px 0;
  margin-left: 5%;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.testimonial-card.glass {
  flex: 0 0 250px;
  width: 250px;
  min-height: 420px;
  background: rgba(40, 45, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.testimonial-card.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--color-text-white);
}

.testimonial-company {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  padding-top: 20px;
}

.testimonials-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 5%;
}

.testimonials-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(80, 80, 80, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-btn:hover {
  background: rgba(100, 100, 100, 0.8);
}

.testimonials-btn svg {
  width: 24px;
  height: 24px;
}

/* Supplier Network Section */
.section-network {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0;
  overflow: hidden;
}

.section-network::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: url('/assets/images/Supplier Network.webp');
  background-size: 120%;
  background-position: center;
  filter: blur(2px);
  z-index: 0;
}

.section-network .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: calc(100vh - 200px);
}

.network-top-content {
  max-width: 800px;
  margin-left: 2%;
  margin-top: 50px;
  text-align: left;
}

.network-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.network-title .orange {
  color: var(--color-orange);
}

.network-title .white {
  color: var(--color-text-white);
}

.network-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
  margin-bottom: 24px;
  max-width: 700px;
}

.network-tagline {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-white);
}

.network-bottom-content {
  text-align: center;
  margin-top: auto;
  padding-bottom: 0;
}

.network-headline {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 16px;
}

.network-disclaimer {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-white);
}

.network-disclaimer em {
  font-style: italic;
}

/* Get to Know the Team Section */
.section-team {
  background-color: #f5f5f7;
  padding: 120px 0 140px;
  min-height: 100vh;
}

.team-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
}

.team-intro {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.media-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.media-card {
  flex: 0 0 400px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.media-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.media-image img {
  width: 100%;
  height: auto;
  display: block;
}

.media-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  display: block;
  margin-bottom: 8px;
}

.media-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.media-desc {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  flex: 1;
}

.media-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.qr-code {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  flex-shrink: 0;
}

.watch-listen {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.watch-listen span {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.platform-logo {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.platform-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.platform-logo.spotify img {
  height: 34px;
}

.platform-logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}

.platform-links a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-orange);
  transition: color 0.2s ease;
}

.platform-links a:hover {
  color: var(--color-orange-hover);
  text-decoration: underline;
}

.platform-links span {
  color: #999;
  font-size: 14px;
}

/* Fintech Section */
.section-fintech {
  background-color: #111111;
  padding: 100px 0;
  text-align: center;
}

.fintech-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text-white);
  margin-bottom: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fintech-video-container {
  max-width: 900px;
  margin: 0 auto 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fintech-video {
  width: 100%;
  display: block;
}

.fintech-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.fintech-text {
  flex: 1;
  max-width: 550px;
}

.fintech-text p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
}

.fintech-text em {
  font-style: italic;
}

.fintech-list {
  flex: 0 0 auto;
  list-style: disc;
  padding-left: 20px;
}

.fintech-list li {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-white);
  margin-bottom: 12px;
}

/* Heartland Section */
.section-heartland {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  overflow: hidden;
}

.section-heartland::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: url('/assets/images/STL Arch.webp');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: 0;
}

.section-heartland .container {
  position: relative;
  z-index: 1;
}

.heartland-content {
  max-width: 900px;
  width: 100%;
  text-align: left;
  margin-left: -32%;
  margin-top: 15%;
}

.heartland-eyebrow {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFE352;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.heartland-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.heartland-title .orange {
  color: var(--color-orange);
}

.heartland-title .white {
  color: var(--color-text-white);
}

.heartland-subheader {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text-white);
  margin-bottom: 20px;
}

.heartland-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
  max-width: 500px;
}

/* ========================================
   PAGE LOGO HEADER (All pages except Home)
   ======================================== */

.page-logo-header {
  background-color: #0A0F18;
  padding: 60px 0 40px;
  text-align: center;
}

.page-logo-header a {
  display: block;
  cursor: pointer;
}

.page-logo-header img {
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  display: block;
  transition: opacity 0.2s ease;
}

.page-logo-header a:hover img {
  opacity: 0.85;
}

.page-eyebrow {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E15F0B;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 12px;
}

.page-subtitle {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-hero {
  background-color: #0A0F18;
  padding: 40px 0 60px;
  text-align: center;
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */

.section-hiw-hero {
  background-color: #0A0F18;
  padding: 40px 0 60px;
  text-align: center;
}

.hiw-eyebrow {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hiw-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hiw-subtitle {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-gray);
  margin: 0 auto 50px;
  line-height: 1.6;
  white-space: nowrap;
}

.hiw-video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hiw-video {
  width: 100%;
  display: block;
}

.hiw-video::cue {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 4px;
}

.hiw-unmute-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
  color: white;
}

.hiw-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hiw-unmute-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.hiw-cc-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hiw-cc-btn:hover,
.hiw-cc-btn.active {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

/* Steps Section */
.section-hiw-steps {
  background-color: #0A0F18;
  padding: 50px 0 120px;
}

.steps-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-tab {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px;
  width: 220px;
  min-height: 140px;
  opacity: 0.7;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-tab:hover,
.step-tab.active {
  opacity: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateY(-5px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-arrows {
  width: 110px;
  height: 70px;
}

.step-arrows svg {
  width: 100%;
  height: 100%;
}

.step-arrows.cyan {
  color: #32CCFF;
}

.step-arrows.green {
  color: #32FF6C;
}

.step-arrows.brown {
  color: #FF8C4C;
}

.step-arrows.gold {
  color: #FFE352;
}

.step-tab span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-white);
}

/* Step Content */
.step-content {
  display: none;
  max-width: 900px;
  padding-left: 5%;
}

.step-content.active {
  display: block;
}

.step-eyebrow {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.step-eyebrow.cyan {
  color: #32CCFF;
}

.step-eyebrow.green {
  color: #32FF6C;
}

.step-eyebrow.brown {
  color: #FF8C4C;
}

.step-eyebrow.gold {
  color: #FFE352;
}

.step-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 12px;
}

.step-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 30px;
}

.step-list li {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-white);
  line-height: 1.8;
  margin-bottom: 8px;
}

.step-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: var(--color-text-white);
  max-width: 800px;
  margin-bottom: 16px;
}

.step-text:last-of-type {
  margin-bottom: 40px;
}

.step-content .btn-line-card {
  margin: 0;
}

.btn-outline {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-white);
  text-transform: none;
  transition: all 0.3s ease;
}

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

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

.section-about-hero {
  background-color: #0A0F18;
  padding: 40px 0 60px;
  text-align: center;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-subtitle {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-gray);
  margin: 0 auto 40px;
  line-height: 1.6;
}

.about-intro {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-white);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-intro em {
  font-style: italic;
}

.meet-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--color-text-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 20px;
}

.meet-team-btn:hover {
  color: var(--color-orange);
}

.meet-team-btn svg {
  width: 24px;
  height: 24px;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-overlay .video-modal {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 10001;
  opacity: 1;
  visibility: visible;
  height: auto;
  top: auto;
  left: auto;
}

.video-modal-overlay .video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 10002;
  color: white;
}

.video-modal-overlay .video-modal-close svg {
  width: 30px;
  height: 30px;
}

.video-modal-overlay .video-modal-close:hover {
  opacity: 0.7;
}

.video-modal-overlay .cc-btn {
  left: 12px;
}

.video-modal-overlay .video-modal-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #000;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 768px) {
  .video-modal-overlay .video-modal {
    width: 98% !important;
    max-width: none !important;
    margin: 0 auto;
  }

  .video-modal-overlay .video-modal-container {
    width: 100%;
  }
}

.video-modal-overlay.active .video-modal-container {
  opacity: 1;
  transform: scale(1);
}

.video-modal-overlay .modal-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: contain;
  visibility: hidden;
}

.video-modal-overlay.active .modal-video {
  visibility: visible;
}

.modal-video::cue {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 12px;
  border-radius: 4px;
}

.modal-unmute-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.3s ease;
  z-index: 5;
}

.modal-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal-unmute-btn svg {
  width: 24px;
  height: 24px;
}

/* About Us - Team Section */
.section-about-team {
  background-color: #0A0F18;
  padding: 200px 0 100px;
}

.team-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 350px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
  position: relative;
}

.team-card.right::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -300px;
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.team-card.left::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -300px;
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.team-card:last-child {
  margin-bottom: 150px;
}

.team-card.right {
  flex-direction: row;
}

.team-card.left {
  flex-direction: row;
}

.team-card-content {
  width: 380px;
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  margin-bottom: 2px;
  line-height: 1.1;
  white-space: nowrap;
}

.team-role {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.team-bio {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-white);
  line-height: 1.9;
}

.team-card-image {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 450px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  z-index: 2;
  isolation: isolate;
  align-self: flex-end;
}

.team-card-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.team-linkedin {
  position: absolute;
  bottom: 90px;
  right: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0F18;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  cursor: pointer;
  pointer-events: auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.team-linkedin.left {
  right: auto;
  left: 70px;
}

.team-linkedin:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.team-linkedin svg {
  width: 28px;
  height: 28px;
  pointer-events: none;
}

/* About Us Team - Mobile */
@media (max-width: 768px) {
  .section-about-team {
    padding: 80px 0 60px;
  }

  .team-card {
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 60px;
  }

  .team-card.right,
  .team-card.left {
    flex-direction: column !important;
  }

  .team-card-image {
    width: 100%;
    max-width: 280px;
    height: 340px;
    order: 1;
  }

  .team-card-content {
    width: 100%;
    max-width: 320px;
    order: 2;
    align-self: center;
    text-align: center;
    padding-bottom: 0;
    margin-top: 30px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-role {
    font-size: 14px;
  }

  .team-bio {
    font-size: 14px;
    line-height: 1.6;
  }

  .team-linkedin {
    position: relative;
    bottom: auto;
    right: auto;
    order: 3;
    margin-top: 15px;
  }

  .team-linkedin.left {
    left: auto;
    right: auto;
  }

  .team-card.right::after,
  .team-card.left::after {
    display: none;
  }

  .team-card:last-child {
    margin-bottom: 40px;
  }
}

/* About CTA Section */
.section-about-cta {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 60px;
  background-image: url('/assets/images/bryzos-brand-06.webp');
  background-size: cover;
  background-position: center;
}

.about-cta-content {
  text-align: right;
  padding-right: 5%;
  padding-bottom: 40px;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-about-cta .btn-line-card {
  margin: 0;
  display: inline-block;
}

/* About CTA - Mobile */
@media (max-width: 768px) {
  .section-about-cta {
    min-height: 60vh;
    padding: 20px;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .about-cta-content {
    text-align: right;
    padding-right: 10px;
    padding-bottom: 20px;
  }

  .about-cta-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: #ffffff;
  padding: 24px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  font-size: 13px;
  color: #666;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
}

.footer-links a {
  color: #666;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #333;
}

.footer-links span {
  color: #999;
}

/* ========================================
   PLACEHOLDERS (for development)
   ======================================== */

.image-placeholder,
.app-mockup-placeholder,
.bg-placeholder,
.testimonial-placeholder,
.faq-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  min-height: 200px;
}

.image-placeholder.dark,
.app-mockup-placeholder.dark {
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.image-placeholder.large,
.app-mockup-placeholder {
  min-height: 400px;
}

.image-placeholder span,
.app-mockup-placeholder span,
.testimonial-placeholder span,
.faq-placeholder span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.image-placeholder small,
.app-mockup-placeholder small,
.testimonial-placeholder small,
.faq-placeholder small {
  font-size: 12px;
  color: var(--color-text-gray);
  opacity: 0.7;
}

/* Testimonials Slider Placeholder */
.testimonials-slider {
  margin-top: 40px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

  .hero-title {
    font-size: 40px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-subtitle,
  .hero-tagline {
    max-width: 100%;
  }

  .hero-app-preview {
    padding: 10px 24px 0;
    max-width: 85%;
    margin: 0 auto;
  }

  .interactive-app-demo {
    border-radius: 12px 12px 0 0;
    overflow: visible;
  }

  .screen-purchasing { content: url('/assets/images/Purchasing Mobile.webp'); }
  .screen-instant-price { content: url('/assets/images/Instant Search Mobile.webp'); }
  .screen-quoting { content: url('/assets/images/Quoting Mobile.webp'); }
  .screen-orders { content: url('/assets/images/Order Management Mobile.webp'); }

  .unmute-btn {
    padding: 8px;
  }

  .unmute-text {
    display: none;
  }

  .sidebar-toggle {
    top: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .sidebar-toggle span {
    width: 24px;
    height: 3px;
  }

  .side-nav {
    height: 100%;
    height: 100dvh;
    min-height: -webkit-fill-available;
  }

  .hero-content {
    padding: 20px 16px 10px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.1;
  }

  .hero-subtitle,
  .hero-tagline {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-index-link {
    font-size: 12px;
    margin-top: 8px;
    padding: 4px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: start;
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .feature-list li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .mobile-break {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section-dont-worry {
    min-height: auto;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section-dont-worry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
  }

  .dont-worry-content {
    position: relative;
    z-index: 1;
    margin-left: 0;
    padding: 0 16px;
  }

  .section-stats {
    padding: 60px 0 60px;
    min-height: auto;
  }

  .stats-header {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 30px;
  }

  .stats-header-left {
    flex: 0 0 auto;
  }

  .stats-header-right {
    flex: 1;
    text-align: left;
    padding-left: 10px;
  }

  .stats-main-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .stats-intro {
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 100%;
    margin-right: 0;
  }

  .section-features {
    min-height: 100vh;
    padding: 40px 0;
  }

  .features-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .features-title {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .materials-types {
    font-size: 14px;
  }

  .material-sep {
    display: none;
  }

  .material-item::after {
    content: ' • ';
  }

  .material-item:last-child::after {
    content: '';
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }

  .products-row {
    display: contents;
  }

  .products-row-4 .product-tile,
  .products-row-5 .product-tile {
    flex: none;
    width: 100%;
  }

  .product-tile {
    padding: 12px;
    border-radius: 12px;
  }

  .product-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .product-image {
    height: 70px;
    margin-bottom: 10px;
  }

  .product-name {
    font-size: 12px;
  }

  .section-heartland {
    min-height: auto;
    padding: 60px 0;
  }

  .section-heartland::before {
    background-position: 70% center;
  }

  .heartland-content {
    margin-left: 0;
    margin-top: 0;
    padding: 0 16px;
    text-align: left;
  }

  .heartland-eyebrow {
    font-size: 1rem;
  }

  .heartland-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .heartland-subheader {
    font-size: 1rem;
  }

  .heartland-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .fintech-content {
    flex-direction: column;
    gap: 24px;
  }

  .fintech-text {
    max-width: 100%;
  }

  .fintech-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .fintech-list li {
    font-size: 0.95rem;
  }

  .section-network {
    min-height: auto;
    padding: 60px 0;
  }

  .section-network::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section-network .container {
    min-height: auto;
  }

  .network-top-content {
    margin-left: 0;
    margin-top: 0;
    padding: 0 16px;
  }

  .network-tagline {
    margin-bottom: 60px;
  }

  .network-text,
  .network-tagline {
    font-size: 0.95rem;
  }

  .network-bottom-content {
    padding: 0 16px;
  }

  .media-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .media-card {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .media-desc {
    font-size: 0.9rem;
  }

  .page-logo-header {
    padding: 40px 0 24px;
  }

  .page-logo-header img {
    max-width: 200px;
  }

  /* Page header styles - consistent across all pages on mobile */
  .page-eyebrow {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .page-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .page-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* How It Works - Steps Navigation Mobile */
  .steps-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .step-tab {
    width: 100%;
    min-height: auto;
    padding: 16px 12px;
    gap: 8px;
  }

  .step-arrows {
    width: 50px;
    height: 30px;
  }

  .step-tab span {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .step-content {
    padding-left: 0;
    padding: 0 16px;
  }

  .step-eyebrow {
    font-size: 14px;
  }

  .step-title {
    font-size: 28px;
  }

  .step-list li {
    font-size: 0.95rem;
  }

  .step-text {
    font-size: 0.95rem;
  }
}

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */

.section-testimonials-video {
  background-color: #0A0F18;
  padding: 0 0 60px;
}

.testimonials-video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.testimonials-video {
  width: 100%;
  display: block;
}

.testimonials-video::cue {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 4px;
}

.testimonials-unmute-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
  color: white;
}

.testimonials-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.testimonials-unmute-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.testimonials-video-caption {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  color: #9B9EAC;
  text-align: left;
  max-width: 900px;
  margin: 30px auto 0;
  line-height: 1.6;
}

.testimonials-video-caption em {
  font-style: italic;
}

.testimonials-video-caption a {
  color: #9B9EAC;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-video-caption a:hover {
  color: var(--color-orange);
}

/* Testimonial Quotes Section */
.section-testimonials-quotes {
  background-color: #0A0F18;
  padding: 60px 0 0;
}

.testimonial-block {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.testimonial-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Orange gradient background */
.testimonial-block::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at bottom right, rgba(225, 95, 11, 0.4) 0%, rgba(225, 95, 11, 0.2) 25%, rgba(225, 95, 11, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonial-block:nth-child(even)::before {
  right: auto;
  left: -10%;
  background: radial-gradient(ellipse at bottom left, rgba(225, 95, 11, 0.4) 0%, rgba(225, 95, 11, 0.2) 25%, rgba(225, 95, 11, 0.05) 50%, transparent 70%);
}

.testimonial-block-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.testimonial-block-inner.right {
  text-align: right;
}

.testimonial-block-inner.left {
  text-align: left;
}

.testimonial-quote-large {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-white);
  line-height: 1.4;
  margin: 0 0 30px;
}

.testimonial-attribution {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonials CTA Section */
.section-testimonials-cta {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 60px;
  background-image: url('/assets/images/bryzos-brand-12.webp');
  background-size: cover;
  background-position: center;
}

.testimonials-cta-content {
  text-align: left;
  padding-left: 5%;
  padding-top: 40px;
}

.testimonials-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-testimonials-cta .btn-line-card {
  margin: 0;
  display: inline-block;
}

/* Testimonials CTA - Mobile */
@media (max-width: 768px) {
  .section-testimonials-cta {
    min-height: 60vh;
    padding: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .testimonials-cta-content {
    text-align: left;
    padding-left: 10px;
    padding-top: 20px;
  }

  .testimonials-cta-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

.section-faqs {
  background-color: #0A0F18;
  padding: 0 0 80px;
}

/* Search Bar */
.faq-search-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #9B9EAC;
}

.faq-search-input {
  width: 100%;
  padding: 18px 20px 18px 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: white;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-search-input::placeholder {
  color: #9B9EAC;
}

.faq-search-input:focus {
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ Categories */
.faq-category {
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #E15F0B;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.faq-question span:first-child {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: white;
  text-transform: uppercase;
  padding-right: 20px;
}

.faq-icon {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 300;
  color: #E15F0B;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.faq-answer strong {
  color: white;
  font-weight: 600;
}

.faq-product-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.faq-product-list li {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
  margin-bottom: 4px;
}

.btn-faq-download {
  display: block;
  width: fit-content;
  margin-top: 20px;
  padding: 12px 36px;
  background: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-faq-download:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

/* FAQ Contact Section */
.section-faq-contact {
  background-color: #0A0F18;
  padding: 80px 0 100px;
}

.faq-contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFE352;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-contact-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: #9B9EAC;
  line-height: 1.6;
}

/* Form Styles */
.faq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: white;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  padding: 16px 32px;
  background: white;
  border: none;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #0A0F18;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Form Success Message */
.form-success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 40px;
  text-align: center;
}

.form-success-message p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
}

/* ========================================
   METALS INDEX PAGE STYLES
   ======================================== */

.section-chart-viewer {
  background-color: #0A0F18;
  padding: 0 0 60px;
  margin-top: -30px;
}

.section-chart-viewer .btn-line-card {
  padding: 14px 80px;
  margin-top: 30px;
}

.chart-viewer-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  column-gap: 30px;
  row-gap: 10px;
  margin-bottom: 0;
  align-items: start;
}

/* Main Chart Window */
.chart-main-window {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.chart-content {
  height: 100%;
}

.chart-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9B9EAC;
  gap: 10px;
}

.chart-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.chart-placeholder small {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Recent Trades Table */
.recent-trades-wrapper {
  width: 100%;
  height: 100%;
}

.recent-trades-container {
  height: 100%;
  padding: 10px 15px;
  overflow-y: auto;
  overflow-x: auto;
  box-sizing: border-box;
}

.recent-trades-container::-webkit-scrollbar {
  width: 6px;
}

.recent-trades-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.recent-trades-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.recent-trades-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-primary);
  margin: 0;
}

.recent-trades-table thead {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.recent-trades-table th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9B9EAC;
  text-align: left;
  padding: 12px 15px;
}

.recent-trades-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

.recent-trades-table tbody tr:last-child {
  border-bottom: none;
}

.recent-trades-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.recent-trades-table td {
  padding: 15px;
  vertical-align: top;
  color: white;
}

.recent-trades-table .product-cell {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 280px;
}

.recent-trades-table .price-cell {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00C853;
  white-space: nowrap;
}

.recent-trades-table .volume-cell {
  font-size: 0.85rem;
  font-weight: 400;
  color: #9B9EAC;
  white-space: nowrap;
}

.recent-trades-table .region-cell {
  font-size: 0.85rem;
  font-weight: 400;
  color: #9B9EAC;
  white-space: nowrap;
}

.last-updated {
  font-size: 0.9rem;
  color: rgba(155, 158, 172, 0.7);
  white-space: nowrap;
}

/* Chart Sidebar */
.chart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.chart-sidebar::-webkit-scrollbar {
  width: 6px;
}

.chart-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.chart-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.chart-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chart-thumbnail {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.chart-thumbnail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.chart-thumbnail.active {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.thumbnail-content {
  padding: 12px;
}

.thumbnail-preview {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-preview canvas {
  width: 100%;
  height: 100%;
}

.thumbnail-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Mini table for Recent Trades thumbnail */
.mini-table {
  width: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-table-header span {
  font-size: 5px;
  font-weight: 600;
  color: rgba(155, 158, 172, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mini-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4px;
  align-items: center;
}

.mini-table-row span {
  height: 6px;
  border-radius: 3px;
}

.cell-product {
  background: rgba(255, 255, 255, 0.4);
  width: 85%;
}

.cell-price {
  background: #00C853;
  width: 70%;
}

.cell-vol {
  background: rgba(155, 158, 172, 0.5);
  width: 60%;
}

.cell-region {
  background: rgba(155, 158, 172, 0.5);
  width: 75%;
}

.mini-table-row:nth-child(3) .cell-product { width: 70%; }
.mini-table-row:nth-child(3) .cell-price { width: 85%; }
.mini-table-row:nth-child(4) .cell-product { width: 90%; }
.mini-table-row:nth-child(4) .cell-vol { width: 50%; }

.trades-preview {
  background: rgba(0, 0, 0, 0.25);
}

/* Chart Section Info */
.chart-section-info {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 100%;
  grid-column: 1 / -1;
}

.chart-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.chart-section-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
  white-space: nowrap !important;
}

.chart-section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 300;
  color: #9B9EAC;
}

.chart-section-subtitle em {
  font-style: italic;
}

/* Chart Graph Wrapper */
.chart-graph-wrapper {
  display: flex;
  flex-direction: column;
  height: 500px;
  padding: 12px 20px 15px;
  box-sizing: border-box;
}

/* Chart Legend */
.chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-bottom: 8px;
  flex-shrink: 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.legend-color {
  width: 10px;
  height: 3px;
  border-radius: 1px;
}

.legend-color.carbon {
  background-color: #00D4FF;
}

.legend-color.stainless {
  background-color: #5CB85C;
}

.legend-color.aluminum {
  background-color: #FFD700;
}

/* Chart Canvas Container */
.chart-graph-wrapper canvas {
  flex: 1;
  min-height: 0;
  max-height: calc(100% - 80px);
}

/* Time Frame Selector */
.time-frame-selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
  flex-shrink: 0;
}

.time-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.time-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.time-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* Disclaimer Section */
.section-disclaimer {
  background-color: #0A0F18;
  padding: 0 0 80px;
  margin-top: -40px;
}

.disclaimer-text {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 300;
  color: #9B9EAC;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Index Content Blocks */
.section-index-content {
  background-color: #0A0F18;
  padding: 150px 0;
}

.index-content-block {
  max-width: 800px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.index-content-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.index-content-block.left {
  margin-right: auto;
}

.index-content-block.right {
  margin-left: auto;
  text-align: right;
}

.index-eyebrow {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #E15F0B;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.index-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
}

.index-body {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
}

/* Index CTA Section */
.section-index-cta {
  background-color: #0A0F18;
  padding: 60px 0 100px;
  text-align: center;
}

.index-cta-tagline {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 300;
  color: white;
  margin-top: 30px;
}

.section-index-cta .btn-line-card {
  margin: 0 auto;
  padding: 14px 80px;
}

/* Metals Index Responsive */
@media (max-width: 1024px) {
  .chart-viewer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .chart-main-window {
    order: 0;
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
  }

  .chart-section-info {
    order: 1;
    margin-bottom: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }

  .chart-title-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    overflow: visible;
  }

  .last-updated {
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
  }

  .chart-section-title {
    font-size: 20px !important;
    white-space: nowrap !important;
    line-height: 1.2;
    letter-spacing: 0.01em;
    overflow: visible;
    text-align: left;
  }

  .chart-section-subtitle {
    order: 2;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .chart-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    padding-bottom: 10px;
    order: 2;
  }

  .chart-thumbnail {
    min-width: auto;
    width: 100%;
  }

  .thumbnail-preview {
    height: 60px;
  }

  .thumbnail-label {
    font-size: 0.65rem;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .index-content-block.right {
    text-align: right;
    margin-left: 0;
  }

  .chart-section-title {
    font-size: 22px !important;
    white-space: normal !important;
    overflow: visible !important;
    display: block;
  }

  .chart-main-window {
    height: auto;
    min-height: auto;
  }

  .chart-content {
    width: 100%;
  }

  .chart-graph-wrapper {
    padding: 10px 4px;
  }

  .chart-placeholder {
    min-height: 300px;
  }

  .recent-trades-wrapper {
    height: auto;
    width: 100%;
    max-width: 100vw;
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  /* Scroll indicator arrow */
  .recent-trades-wrapper::after {
    content: '→';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
  }

  .recent-trades-container {
    padding: 10px;
    padding-bottom: 15px;
    width: 100%;
    overflow-x: scroll !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Always show scrollbar on mobile */
  .recent-trades-container::-webkit-scrollbar {
    height: 8px;
    display: block !important;
  }

  .recent-trades-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .recent-trades-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
  }

  .recent-trades-table {
    width: 650px !important;
    min-width: 650px !important;
    display: table !important;
  }

  .recent-trades-table th,
  .recent-trades-table td {
    padding: 12px 15px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .recent-trades-table .product-cell {
    font-size: 0.8rem;
    max-width: none;
    white-space: normal;
    min-width: 180px;
  }

  .recent-trades-table .price-cell {
    font-size: 0.85rem;
  }

  .recent-trades-table .volume-cell,
  .recent-trades-table .region-cell {
    font-size: 0.8rem;
  }

  .chart-legend {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .legend-item {
    font-size: 0.65rem;
  }

  .time-frame-selector {
    margin-top: 15px;
  }

  .time-label {
    font-size: 0.7rem;
  }
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-question span:first-child {
    font-size: 14px;
  }

  .faq-category-title {
    font-size: 1.2rem;
  }
}

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

  .section-title {
    font-size: 20px;
  }

  .stat-value {
    font-size: 40px;
  }
}

/* ========================================
   WATCH/LISTEN PAGE STYLES
   ======================================== */

/* Most Recent Section */
.section-most-recent {
  background-color: #0A0F18;
  padding: 0 0 60px;
  text-align: center;
  margin-top: -30px;
}

.section-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: #9B9EAC;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.featured-title {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.featured-title .title-series {
  font-weight: 700;
}

.featured-episode-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 400;
  color: #9B9EAC;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.featured-video-container {
  max-width: 800px;
  margin: 0 auto 25px;
}

.featured-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.7);
}

.featured-video,
.featured-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.featured-youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.featured-mute-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.featured-video-wrapper:hover .featured-mute-btn {
  opacity: 1;
}

.featured-mute-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

.featured-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.play-button-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button-large svg {
  width: 30px;
  height: 30px;
  color: #0A0F18;
  margin-left: 4px;
}

.play-button-large:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-video-wrapper .play-button-large {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-description-wrapper {
  max-width: 800px;
  margin: 0 auto 25px;
  text-align: left;
}

.featured-description {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  color: #9B9EAC;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-description.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.description-more-btn {
  background: none;
  border: none;
  color: white;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-left: 5px;
  transition: opacity 0.3s ease;
  display: none;
}

.description-more-btn.visible {
  display: inline;
}

.description-more-btn:hover {
  opacity: 0.7;
}

.featured-actions {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.btn-share {
  display: inline-block;
  width: auto;
  padding: 10px 24px;
  background: white;
  border: none;
  border-radius: 50px;
  color: #000000;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-transform: none;
}

.btn-share:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal-overlay .video-modal {
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .video-modal-overlay {
    padding: 10px;
  }

  .video-modal {
    width: 100%;
    max-width: none;
  }
}

.video-modal-container {
  position: relative;
  width: 100%;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.video-modal-close svg {
  width: 30px;
  height: 30px;
  color: white;
}

.video-modal-close:hover svg {
  color: #ccc;
}

.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* More Episodes / Video Category Sections */
.section-more-episodes,
.section-video-category {
  background-color: #0A0F18;
  padding: 50px 0;
}

.section-video-category:last-of-type {
  padding-bottom: 130px;
}

.section-more-episodes {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 120px;
}

.section-more-episodes .container {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.section-header-left,
.category-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.section-header-left {
  margin-bottom: 25px;
}

.category-description-wrapper {
  margin-bottom: 20px;
}

.category-description {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 300;
  color: #9B9EAC;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-description.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.category-more-btn {
  background: none;
  border: none;
  color: white;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 5px;
  display: none;
}

.category-more-btn:hover {
  opacity: 0.7;
}

.episodes-carousel,
.video-carousel {
  position: relative;
}

.episodes-track,
.video-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.episodes-track::-webkit-scrollbar,
.video-track::-webkit-scrollbar {
  height: 4px;
}

.episodes-track::-webkit-scrollbar-track,
.video-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.episodes-track::-webkit-scrollbar-thumb,
.video-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.episodes-track::-webkit-scrollbar-thumb:hover,
.video-track::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}

.episode-card,
.video-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  cursor: pointer;
}

.episode-thumbnail,
.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.episode-card:hover .episode-thumbnail,
.video-card:hover .video-thumbnail {
  transform: scale(1.03);
}

.episode-thumbnail img,
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.play-button-small svg {
  width: 18px;
  height: 18px;
  color: #0A0F18;
  margin-left: 2px;
}

.episode-thumbnail:hover .play-button-small,
.video-thumbnail:hover .play-button-small {
  opacity: 1;
}

.play-button-small:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.episode-label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 500;
  color: #9B9EAC;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.episode-title,
.video-title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}

.carousel-progress {
  display: none;
}

/* Platform Icons Section */
/* Platform Links & Be Our Guest Combined Section */
.section-platforms-guest {
  position: relative;
  overflow: hidden;
}

.platforms-guest-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: 10% center;
}

.platforms-guest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.platforms-top-bar {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
}

.platforms-top-bar .listen-on-label {
  margin: 0;
}

.platforms-top-bar .platforms-icons {
  justify-content: center;
}

.platforms-guest-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  aspect-ratio: 16/9;
  padding-top: 40px;
  padding-bottom: 100px;
}

.irregardless-logo-container {
  position: absolute;
  top: -30px;
  left: -15px;
  max-width: 120px;
  z-index: 2;
}

.irregardless-logo-container img {
  width: 100%;
  height: auto;
}

.platforms-guest-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
  max-width: 450px;
}

.listen-on-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}

.platforms-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  flex-wrap: wrap;
}

.platform-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.platform-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-icon:hover {
  transform: scale(1.15);
}

.be-our-guest-cta {
  text-align: right;
}

.guest-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.guest-title .orange {
  color: #32FF6C;
}

.guest-title .white {
  color: white;
}

.guest-description {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.guest-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin-left: auto;
}

.guest-form .form-row {
  width: 100%;
}

.guest-form input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: white;
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.guest-form input::placeholder {
  color: white;
}

.guest-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.btn-submit-guest {
  padding: 16px 30px;
  background: var(--color-orange);
  border: none;
  border-radius: 8px;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.btn-submit-guest:hover {
  background: var(--color-orange-hover);
}

.form-success-message {
  margin-top: 15px;
}

.form-success-message p {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-green);
}

/* Responsive for Platforms & Guest Section */
@media (max-width: 768px) {
  .platforms-guest-content {
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
  }

  .irregardless-logo-container {
    position: relative;
    top: auto;
    left: auto;
    align-self: flex-start;
    max-width: 70px;
  }

  .platforms-guest-right {
    align-items: flex-end;
    max-width: 100%;
  }

  .be-our-guest-cta {
    text-align: left;
  }

  .guest-title,
  .guest-description {
    text-align: right;
  }

  .guest-form {
    margin-left: auto;
    margin-right: 0;
  }

  .platforms-icons {
    justify-content: center;
  }
}

.btn-submit-dark {
  display: block;
  margin-left: auto;
  margin-top: 20px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: white;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* The Bryzos Vault Section */
.section-vault {
  background-color: #0A0F18;
  padding: 100px 0 60px;
  text-align: center;
}

.vault-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.vault-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px;
}

.vault-description em {
  font-style: italic;
}

.vault-search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.vault-search-container .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9B9EAC;
}

.vault-search-input {
  width: 100%;
  padding: 15px 20px 15px 55px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: white;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.vault-search-input::placeholder {
  color: #9B9EAC;
}

.vault-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: rgba(30, 33, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: none;
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-result-item img {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-category {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 300;
  color: #9B9EAC;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  color: #9B9EAC;
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

/* Watch/Listen Responsive */
@media (max-width: 900px) {
  .be-our-guest-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .guest-title {
    text-align: right;
  }

  .guest-form-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .guest-form .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .featured-actions {
    flex-direction: column;
  }

  .featured-actions .btn-outline-light {
    width: 100%;
    text-align: center;
  }

  .platforms-icons {
    gap: 20px;
  }

  .platform-icon {
    width: 45px;
    height: 45px;
  }

  .episode-card,
  .video-card {
    flex: 0 0 180px;
  }
}

/* ========================================
   TERMS OF USE / PRIVACY POLICY PAGE
   ======================================== */

.tnc-page {
  background-color: #0A0F18;
}

.section-tnc {
  background-color: #0A0F18;
  padding: 40px 0 100px;
}

.tnc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.tnc-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tnc-title .orange {
  color: #E15F0B;
  font-style: italic;
}

.tnc-effective {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

.tnc-section-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  margin-top: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.tnc-subsection-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-top: 30px;
  margin-bottom: 16px;
}

.tnc-intro {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tnc-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tnc-body a {
  color: var(--color-accent-orange);
  text-decoration: none;
}

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

.tnc-list {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 24px;
}

.tnc-list > li {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 8px;
}

.tnc-list > li strong {
  color: var(--color-text-white);
}

.tnc-list a {
  color: var(--color-accent-orange);
  text-decoration: none;
}

.tnc-list a:hover {
  text-decoration: underline;
}

.tnc-sublist {
  list-style: circle;
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.tnc-sublist li {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tnc-container {
    padding: 0 24px;
  }

  .tnc-title {
    font-size: 24px;
  }

  .tnc-section-title {
    font-size: 16px;
    margin-top: 40px;
  }

  .tnc-body,
  .tnc-list > li {
    font-size: 15px;
  }

  .tnc-sublist li {
    font-size: 14px;
  }
}
