/* .scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
    position: sticky;
    top: 0;
}

.scroll-section:first-child {
    z-index: 1;
}

.scroll-section:nth-child(2) {
    z-index: 2;
}

.scroll-section:nth-child(3) {
    z-index: 3;
}

.scroll-section:nth-child(4) {
    z-index: 4;
}

.card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1280px;
    width: 100%;
    height: 600px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.card-content {
    padding: 3.5rem 3rem 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.5rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.card-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: #000;
}

.card-title em {
    font-style: italic;
    font-weight: 400;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 12px;
}

.stat-box h4 {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.stat-box .stat-value {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.stat-visual {
    width: 100%;
}

.avatar-group {
    display: flex;
    gap: 0;
}

.avatar-group img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.logo-grid {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo-grid img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-grid img:hover {
    opacity: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.download-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.download-btn span {
    font-size: 1.1rem;
}

.bottom-section {
    background: #000;
    padding: 4rem 5%;
    text-align: left;
}

.bottom-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.bottom-section h2 em {
    font-style: italic;
}

@media (max-width: 1024px) {
    .card {
        grid-template-columns: 1fr;
        max-width: 600px;
        height: auto;
        min-height: 600px;
    }

    .card-image {
        min-height: 400px;
    }

    .card-content {
        padding: 2.5rem 2rem;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .scroll-section {
        padding: 0 1.5rem;
    }

    .card {
        border-radius: 24px;
        min-height: 500px;
    }

    .card-content {
        padding: 2rem 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .stat-box {
        padding: 1.2rem;
    }

    .stat-box .stat-value {
        font-size: 1.6rem;
    }
} */



/* .mec-why-scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  width: 100%;
} */

.mec-why-scroll-container::-webkit-scrollbar {
  display: none;
}

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

.mec-why-scroll-section {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3%;
  position: sticky;
  top: 0;
}

.mec-why-scroll-section:nth-child(1) {
  z-index: 1;
}

.mec-why-scroll-section:nth-child(2) {
  z-index: 2;
}

.mec-why-scroll-section:nth-child(3) {
  z-index: 3;
}

/* ===============================
CARD
=================================*/

.mec-why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  height: 600px;
  /* background: #fff; */
  background: #f3f3f3;
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); */
}

/* ===============================
IMAGE
=================================*/

.mec-why-card-image {
  position: relative;
  overflow: hidden;
}

.mec-why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mec-why-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mec-why-play-button::after {
  content: "";
  border-left: 20px solid black;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

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

.mec-why-card-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mec-why-badge {
  background: black;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 20px;
}

.mec-why-card-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.mec-why-card-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ===============================
STATS
=================================*/

.mec-why-stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.mec-why-stat-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.mec-why-stat-value {
  font-size: 28px;
  font-weight: bold;
  margin-top: 5px;
}

.mec-why-avatar-group {
  display: flex;
  margin-top: 10px;
}

.mec-why-avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
}

.mec-why-avatar-group img:first-child {
  margin-left: 0;
}

/* ===============================
BUTTON
=================================*/

.mec-why-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.mec-why-download-btn:hover {
  background: black;
  color: white;
}


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

@media(max-width:900px) {

  .mec-why-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mec-why-card-image {
    height: 300px;
  }

  .mec-why-stats-section {
    grid-template-columns: 1fr;
  }

}