/* PXL Robotics & Vision Lab — inspired by pxl-research.be */

:root {
  --pxl-orange: #ef5634;
  --pxl-red: #e42900;
  --pxl-gradient: linear-gradient(90deg, #ef5634 0%, #e42900 100%);
  --pxl-dark: #1a1a2e;
  --pxl-dark-soft: #252540;
  --pxl-gray-50: #f8f9fb;
  --pxl-gray-100: #f0f2f5;
  --pxl-gray-200: #e4e7ec;
  --pxl-gray-400: #98a2b3;
  --pxl-gray-600: #667085;
  --pxl-gray-800: #344054;
  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --header-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pxl-gray-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pxl-orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pxl-red);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--pxl-gradient);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--pxl-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(228, 41, 0, 0.3);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.section-light .btn-secondary {
  color: var(--pxl-dark);
  border-color: var(--pxl-gray-200);
}

.section-light .btn-secondary:hover {
  background: var(--pxl-gray-100);
  border-color: var(--pxl-gray-400);
  color: var(--pxl-dark);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--pxl-gray-200);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--pxl-dark);
}

.logo-pxl-img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--pxl-gray-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pxl-gray-800);
  text-decoration: none;
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--pxl-orange);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--pxl-gradient);
  color: #fff !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--pxl-red);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pxl-dark);
  transition: all var(--transition);
}

/* Hero — Infographic style */
/* Title above hero image */
.hero-title-bar {
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.hero-title-bar-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--pxl-dark);
  margin: 0;
}

.hero-frame-logo {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  line-height: 0;
  transition: opacity var(--transition);
}

.hero-frame-logo:hover {
  opacity: 0.75;
}

.hero-frame-logo-tl {
  top: 1.25%;
  left: 1.25%;
}

.hero-frame-logo-tr {
  top: 1.25%;
  right: 1.25%;
}

.hero-frame-logo-tl img {
  height: 24px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
}

.hero-frame-logo-tr img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-infographic {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-height) + 1.5rem) 0 4rem;
  background: linear-gradient(180deg, #f0f6fa 0%, #fff 60%);
  overflow: hidden;
}

.hero-circuit-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(126, 179, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(239, 86, 52, 0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h20M40 30h20M30 0v20M30 40v20' stroke='%23b8d4e8' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23b8d4e8'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero-infographic .hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--pxl-gray-600);
  text-align: center;
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.hero-infographic .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem auto 2.5rem;
  max-width: 1100px;
}

.hero-infographic .btn-secondary {
  color: var(--pxl-dark);
  border-color: var(--pxl-gray-200);
  background: #fff;
}

.hero-infographic .btn-secondary:hover {
  background: var(--pxl-gray-100);
  border-color: var(--pxl-gray-400);
  color: var(--pxl-dark);
}

/* Hero infographic image */
.hero-visual {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image-wrap {
  position: relative;
  border: 10px solid #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.hero-infographic-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-partner-logos {
  position: absolute;
  right: 1.25%;
  bottom: 2%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.5rem);
  padding: clamp(0.3rem, 0.8vw, 0.35rem) clamp(0.4rem, 1vw, 0.5rem);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-partner-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: opacity var(--transition);
}

.hero-partner-logo:hover {
  opacity: 0.7;
}

.hero-partner-logo img {
  display: block;
  height: clamp(16px, 2.2vw, 24px);
  width: auto;
  max-width: clamp(56px, 8vw, 90px);
  object-fit: contain;
}

.hero-partner-logo:first-child img {
  height: clamp(18px, 2.5vw, 28px);
  max-width: clamp(48px, 7vw, 72px);
}

/* Hero footer */
.hero-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pxl-gray-200);
}

.hero-partners {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partners-label {
  font-size: 0.875rem;
  color: var(--pxl-gray-600);
}

.partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.partner-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.partner-logo-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.partner-logo {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.partner-logo-limburg {
  height: 40px;
}

.partner-logo-greentech {
  height: 32px;
  padding: 0.35rem 0.75rem;
  background: #111;
  border-radius: 6px;
}

.partner-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pxl-dark);
  padding: 0.5rem 1rem;
  background: var(--pxl-gray-100);
  border-radius: 6px;
  border: 1px solid var(--pxl-gray-200);
}

.partner-logo-link:hover .partner-logo-text {
  color: var(--pxl-orange);
  border-color: var(--pxl-orange);
}

.hero-infographic .hero-meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 0;
  border-top: none;
}

.hero-infographic .meta-label {
  color: var(--pxl-gray-400);
}

.hero-infographic .meta-value,
.hero-infographic .meta-link {
  color: var(--pxl-dark);
}

.hero-infographic .meta-link:hover {
  color: var(--pxl-orange);
}

/* Hero canvas — tablet (removed, image is responsive) */

.section {
  padding: 6rem 0;
}

.section-light {
  background: #fff;
}

.section-gray {
  background: var(--pxl-gray-50);
}

.section-dark {
  background: var(--pxl-dark);
  color: #fff;
}

.section-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-header-light .section-tag,
.section-header-light h2,
.section-header-light .section-intro {
  color: #fff;
}

.section-header-light .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pxl-orange);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--pxl-dark);
  margin-bottom: 1rem;
}

.section-header-light h2 {
  color: #fff;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--pxl-gray-600);
  line-height: 1.7;
}

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--pxl-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.offer-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.offer-icon {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  background: var(--pxl-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pxl-dark);
  margin-bottom: 0.75rem;
}

.offer-card > p {
  color: var(--pxl-gray-600);
  margin-bottom: 1rem;
}

.offer-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.offer-card li {
  color: var(--pxl-gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.offer-card-highlight {
  background: var(--pxl-dark);
  border-color: var(--pxl-dark);
  color: #fff;
}

.offer-card-highlight h3,
.offer-card-highlight p {
  color: #fff;
}

.offer-card-highlight p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* Wizard */
.wizard {
  background: var(--pxl-dark-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
}

.wizard-step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

.wizard-step-indicator.active,
.wizard-step-indicator.done {
  background: var(--pxl-gradient);
  color: #fff;
}

.wizard-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-panel h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .wizard-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wizard-option {
  display: block;
  cursor: pointer;
}

.wizard-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: block;
  height: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.option-content strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
}

.option-content small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.wizard-option:hover .option-content {
  border-color: rgba(239, 86, 52, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.wizard-option input:checked + .option-content {
  border-color: var(--pxl-orange);
  background: rgba(239, 86, 52, 0.12);
}

.wizard-nav {
  display: flex;
  gap: 1rem;
}

.wizard-result {
  text-align: center;
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pxl-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 auto 1.5rem;
}

.wizard-result h3 {
  margin-bottom: 1rem;
}

.wizard-result p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.result-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lab tabs */
.lab-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lab-tab {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--pxl-gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--pxl-gray-600);
  transition: all var(--transition);
}

.lab-tab.active {
  background: var(--pxl-gradient);
  color: #fff;
}

.lab-panel {
  display: none;
}

.lab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Equipment grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.equipment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pxl-gray-200);
  transition: all var(--transition);
}

.equipment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.equipment-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--pxl-gray-100);
}

.equipment-media img,
.equipment-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-media img {
  transform: scale(1.05);
}

.equipment-media video {
  position: absolute;
  inset: 0;
  display: none;
}

.equipment-media.playing img {
  display: none;
}

.equipment-media.playing video {
  display: block;
}

.play-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pxl-gradient);
  color: #fff;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(228, 41, 0, 0.4);
}

.equipment-card:hover .play-btn {
  opacity: 1;
  transform: scale(1);
}

.equipment-media.playing .play-btn {
  display: none;
}

.equipment-body {
  padding: 1.25rem 1.5rem;
}

.equipment-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pxl-dark);
  margin-bottom: 0.25rem;
}

.equipment-body p {
  font-size: 0.875rem;
  color: var(--pxl-gray-600);
  margin-bottom: 0.5rem;
}

.equipment-supplier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pxl-orange);
}

/* Vision grid */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.vision-card {
  background: #fff;
  border: 1px solid var(--pxl-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.vision-card:hover {
  border-color: var(--pxl-orange);
  box-shadow: var(--shadow);
}

.vision-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pxl-dark);
  margin-bottom: 0.5rem;
}

.vision-card p {
  font-size: 0.9rem;
  color: var(--pxl-gray-600);
  margin-bottom: 0.75rem;
}

/* Team */
.team-featured {
  margin-bottom: 3rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pxl-gray-200);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
}

.team-card-lead {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pxl-gray-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pxl-dark);
  margin-bottom: 0.75rem;
}

.team-info p {
  color: var(--pxl-gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pxl-orange);
  margin-bottom: 0.35rem;
}

.team-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
}

.team-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pxl-dark);
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-grid .team-card {
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-grid .team-photo {
  aspect-ratio: 1;
}

.team-grid h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pxl-dark);
  padding: 1rem 1rem 0;
}

.team-grid .team-role {
  display: block;
  padding: 0 1rem;
}

.team-card-expanded {
  grid-column: span 1;
}

.team-card-expanded p {
  font-size: 0.85rem;
  color: var(--pxl-gray-600);
  padding: 0.5rem 1rem 0;
  line-height: 1.6;
  text-align: left;
}

/* Partners */
.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-slider {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partners-slider img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.partners-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Events */
.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-card-featured {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 0;
  margin-bottom: 2rem;
}

.event-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 2rem 2.5rem;
}

.event-date {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pxl-orange);
  margin-bottom: 0.75rem;
}

.event-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--pxl-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-location {
  font-size: 0.95rem;
  color: var(--pxl-gray-600);
  margin-bottom: 1rem;
}

.event-card-body > p {
  color: var(--pxl-gray-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.event-program {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--pxl-gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--pxl-gray-200);
}

.event-program summary {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--pxl-dark);
  cursor: pointer;
}

.event-schedule {
  margin-top: 1rem;
}

.event-schedule li {
  padding: 0.35rem 0;
  color: var(--pxl-gray-600);
  line-height: 1.5;
}

.event-schedule strong {
  color: var(--pxl-dark);
  font-weight: 600;
}

.event-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--pxl-gray-600);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card-compact {
  padding: 1.75rem 2rem;
}

.event-card-compact h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pxl-dark);
  margin-bottom: 0.5rem;
}

.event-card-compact p {
  color: var(--pxl-gray-600);
  line-height: 1.6;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--pxl-gray-200);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 86, 52, 0.25);
}

.news-source {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pxl-orange);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pxl-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
}

.news-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--pxl-orange);
}

/* Testimonial */
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--pxl-dark-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-media video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.testimonial-body {
  padding: 2rem 2rem 2rem 0;
}

.testimonial-body blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.testimonial-body footer {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--pxl-orange);
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--pxl-dark);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--pxl-gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-details strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pxl-gray-400);
  margin-bottom: 0.2rem;
}

.contact-details span,
.contact-details a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--pxl-dark);
}

.contact-cta {
  background: var(--pxl-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-cta h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-cta .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.contact-cta .btn-secondary:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  background: var(--pxl-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
}

.footer-brand .logo-pxl-img {
  width: 32px;
  height: 32px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .team-card-lead {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-body {
    padding: 0 2rem 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--pxl-gray-200);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav a {
    padding: 0.875rem 0;
    width: 100%;
    border-bottom: 1px solid var(--pxl-gray-100);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-title-bar {
    margin-bottom: 1rem;
  }

  .hero-title-bar-heading {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .hero-frame-logo-tl img {
    height: 18px;
    max-width: 64px;
  }

  .hero-frame-logo-tr img {
    height: 22px;
    width: 22px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-infographic .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-partner-logos {
    position: static;
    margin-top: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-partner-logo img {
    height: 20px;
    max-width: 72px;
  }

  .hero-partner-logo:first-child img {
    height: 24px;
    max-width: 64px;
  }

  .event-card-featured {
    grid-template-columns: 1fr;
  }

  .event-list,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .event-card-body {
    padding: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .wizard {
    padding: 1.5rem;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }

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

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

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