/*****************************************************************************/
/* ULTIMATE COLOR 2026                                                         */
/*****************************************************************************/

/* Banner Responsive Styles */
.UC_2026-image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
}

.UC_2026-image-desktop {
  display: block;
}

.UC_2026-image-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .UC_2026-image-desktop {
    display: none;
  }

  .UC_2026-image-mobile {
    display: block;
  }
}

.UC_2026-headline-container {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 0 20px 0;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 300;
}

.UC_2026-h2 {
  color: #ff2000;
  line-height: 80px;
  margin: 0 auto;
  font-family: 'ABCROMCompressed-Black';
  text-transform: uppercase;
  font-size: 80px;
}

@media (max-width: 480px) {
  .UC_2026-h2 {
    line-height: 64px;
    font-size: 64px;
  }
}

/* 3-Column Layout */
.UC_2026-grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 auto 40px auto;
}

.UC_2026-col-text {
  border: 1px solid #000;
  background: transparent;
  text-align: left;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.UC_2026-col-text p {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  font-family: 'ABCROMMono-Book';
}

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

@media screen and (max-width: 767px) {
  .UC_2026-grid-three {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* 2-Column Product Layout */
.UC_2026-grid-two,
.UC_2026-grid-four {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* max-width: 1400px; removed */
  margin: 0 auto 40px auto;
}

.UC_2026-grid-four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.UC_2026-col-image-start {
  height: 100%;
}

.UC_2026-col-image-start picture,
.UC_2026-col-image-start img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}

.UC_2026-col-content {
  border: 1px solid #000;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.UC_2026-step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* margin-bottom: 20px; removed */
}

.UC_2026-step-number {
  border: 1px solid #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ABCROMCompressed-Black', sans-serif;
  font-size: 24px;
  /* margin-bottom: 20px; removed */
  flex-shrink: 0;
}

.UC_2026-h3 {
  font-family: 'ABCROMCompressed-Black', sans-serif;
  color: #ff2000;
  font-size: 48px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.UC_2026-col-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  /* font-family: 'ABCROMMono-Book'; removed */
}

.UC_2026-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 0;
  border: none;
  transition: 0.2s;
  cursor: pointer;
  display: inline-block;
}

.UC_2026-btn:hover {
  background-color: #ff2200;
  color: #fff;
}

@media screen and (max-width: 767px) {

  .UC_2026-grid-two,
  .UC_2026-grid-four {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  /* Reorder Row 2 (Steps 3 & 4) on mobile to be Content -> Image */
  .UC_2026-grid-four> :nth-child(5) {
    order: 6;
  }

  /* Image 3 -> After Content 3 */
  .UC_2026-grid-four> :nth-child(6) {
    order: 5;
  }

  /* Content 3 -> Before Image 3 */
  .UC_2026-grid-four> :nth-child(7) {
    order: 8;
  }

  /* Image 4 -> After Content 4 */
  .UC_2026-grid-four> :nth-child(8) {
    order: 7;
  }

  /* Content 4 -> Before Image 4 */
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .UC_2026-grid-four {
    grid-template-columns: 1fr 1fr;
  }

  /* Swap 3 (Content) and 4 (Image) -> Image | Content */
  .UC_2026-grid-four> :nth-child(3) {
    grid-column: 2;
  }

  .UC_2026-grid-four> :nth-child(4) {
    grid-column: 1;
  }

  /* Swap 7 (Image) and 8 (Content) -> Content | Image */
  .UC_2026-grid-four> :nth-child(7) {
    grid-column: 2;
  }

  .UC_2026-grid-four> :nth-child(8) {
    grid-column: 1;
  }
}

/* For Pros Section */
.UC_2026-grid-prof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.UC_2026-prof-content {
  background-color: #0c0111;
  /* Dark background from reference */
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  text-align: left;
}

.UC_2026-prof-label {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.UC_2026-prof-title {
  font-family: 'ABCROMCompressed-Black', sans-serif;
  font-size: 80px;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

.UC_2026-prof-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: 'ABCROMMono-Book';
  max-width: 80%;
}

.UC_2026-prof-btn {
  background-color: #ff2200;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.2s;
}

.UC_2026-prof-btn:hover {
  background-color: #fff;
  color: #000;
}

.UC_2026-prof-image picture,
.UC_2026-prof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 767px) {
  .UC_2026-grid-prof {
    grid-template-columns: 1fr;
  }

  .UC_2026-prof-content {
    padding: 40px 20px;
    /* Order: Content first (default), then Image */
  }
}