:root {
  --cresol-orange: #F58220;
  --cresol-green: #005C46;
  --cresol-gray-med: #727176;
  --cresol-gray-light: #F4F4F4;
  --cresol-white: #FFFFFF;
  --cresol-font-primary: 'BwModelica', sans-serif;
  --cresol-gap: 2rem;
  --cresol-radius: 16px;
}

.cresol-sticky-hero {
  position: relative;
  width: 100%;
  background-color: var(--cresol-white);
  padding: 80px 20px;
  font-family: var(--cresol-font-primary);
  overflow: visible;
  box-sizing: border-box;
}

.cresol-sticky-hero * {
  box-sizing: border-box;
}

.cresol-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.cresol-content-wrapper {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.cresol-text-block {
  opacity: 0;
  transform: translateY(20px);
  animation: cresolFadeInUp 0.8s forwards;
}

.hero-block {
  padding-top: 20px;
}

.cresol-tag {
  display: inline-block;
  background-color: rgba(245, 130, 32, 0.1);
  color: var(--cresol-orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cresol-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--cresol-green);
  margin-bottom: 24px;
}

.cresol-subtitle {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--cresol-green);
  margin-bottom: 20px;
}

.cresol-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--cresol-gray-med);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 90%;
}

.cresol-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cresol-sticky-hero .btn-primary {
  background-color: var(--cresol-orange);
  color: var(--cresol-white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--cresol-font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cresol-sticky-hero .btn-primary:hover {
  background-color: #d96e16;
  transform: translateY(-2px);
}

.cresol-sticky-hero .btn-secondary {
  background-color: transparent;
  color: var(--cresol-green);
  border: 2px solid var(--cresol-green);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--cresol-font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cresol-sticky-hero .btn-secondary:hover {
  background-color: var(--cresol-green);
  color: var(--cresol-white);
}

.cresol-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cresol-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--cresol-green);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}

.icon-check::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cresol-benefits p {
  margin: 0;
  color: var(--cresol-gray-med);
  font-size: 1rem;
  line-height: 1.5;
}

.cresol-benefits strong {
  color: var(--cresol-green);
  font-weight: 700;
}

.cresol-video-wrapper {
  grid-column: span 2;
  position: relative;
  height: 100%;
}

.sticky-video-container {
  position: sticky;
  top: 50px;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 10;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 92, 70, 0.15);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: var(--cresol-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--cresol-orange);
}

.play-icon {
  width: 32px;
  height: 32px;
  background-color: var(--cresol-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.video-caption p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cresol-gray-med);
}

@keyframes cresolFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .cresol-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cresol-content-wrapper,
  .cresol-video-wrapper {
    grid-column: span 1;
  }

  .sticky-video-container {
    position: relative;
    top: 0;
  }

  .cresol-content-wrapper {
    gap: 60px;
  }

  .cresol-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .cresol-title {
    font-size: 1.8rem;
  }
  
  .cresol-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cresol-sticky-hero .btn-primary, 
  .cresol-sticky-hero .btn-secondary {
    width: 100%;
    text-align: center;
  }
}