.why-trabacco {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 10;
}

/* Sticky wrapper - contains video and stays within section */
.why-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  margin-top: -80px;
  padding-top: 80px;
}

/* Video background */
.why-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay para readable yung text */
.why-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.6);
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.bento-heading {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 48px 0;
  letter-spacing: -0.03em;
  text-align: start;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* Bento Cards */
.bento-card {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  overflow: hidden;
}

.bento-card-large {
  min-height: 400px;
}

.bento-card-large .card-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card-large .card-image {
  flex: 1;
  max-width: 50%;
}

.bento-card-large .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card-reverse {
  flex-direction: row-reverse;
}

/* Half cards row */
.bento-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bento-card-half {
  padding: 40px;
  flex-direction: column;
  min-height: 380px;
}

/* Thin card */
.bento-card-thin {
  padding: 32px 48px;
  background: rgba(28, 153, 75, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  min-height: auto;
}

/* Typography */
.lead-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list span {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.value-list span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.card-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}

.card-subtitle {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 32px 0;
}

.thin-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  text-align: center;
}

/* Users list */
.users-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.user-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  min-width: 24px;
}

.user-info h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px 0;
}

.user-info p {
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Flow list */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.flow-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  min-width: 24px;
}

.flow-step p {
  font-family: var(--font-main);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Changes list */
.changes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.change-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.change-dash {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--primary);
}

.change-row span:last-child {
  font-family: var(--font-main);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.closing-text {
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 32px 0 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-container {
    padding: 60px 40px;
  }
  
  .bento-heading {
    font-size: 3.5rem;
  }
  
  .bento-card-large {
    flex-direction: column;
    min-height: auto;
  }
  
  .bento-card-large .card-image {
    max-width: 100%;
    height: 300px;
  }
  
  .bento-card-reverse {
    flex-direction: column;
  }
  
  .bento-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-trabacco {
    padding: 0;
  }
  
  .why-sticky-wrapper {
    margin-top: -60px;
    padding-top: 60px;
  }
  
  .why-container {
    padding: 60px 24px;
    gap: 16px;
  }
  
  .bento-heading {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  .bento-card-large .card-content {
    padding: 24px;
  }
  
  .bento-card-large .card-image {
    height: 200px;
  }
  
  .bento-card-half {
    padding: 24px;
    min-height: auto;
  }
  
  .bento-card-thin {
    padding: 20px 24px;
  }
  
  .lead-text {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  
  .thin-text {
    font-size: 1.125rem;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
  
  .card-subtitle {
    font-size: 0.875rem;
  }
  
  .user-num, .flow-num {
    font-size: 0.75rem;
  }
  
  .user-info h4, .flow-step p {
    font-size: 0.9rem;
  }
  
  .user-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .why-container {
    padding: 40px 16px;
  }
  
  .bento-heading {
    font-size: 1.5rem;
  }
  
  .lead-text {
    font-size: 1rem;
  }
  
  .value-list span {
    font-size: 0.875rem;
  }
}
