/* =========================
   MOBCOWS AT UWC SECTION
========================= */

.mobcows-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #fbfbfa;
  color: #000;
}

.mobcows-container {
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mobcows-bg-word {
  position: absolute;
  top: -44px;
  left: 46px;
  font-size: clamp(120px, 18vw, 300px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.mobcows-section::after {
  content: "";
  position: absolute;
  top: 56px;
  right: 72px;
  width: 150px;
  height: 150px;
  opacity: 0.15;
  background-image: radial-gradient(#e53935 1.3px, transparent 1.3px);
  background-size: 14px 14px;
  pointer-events: none;
}

.mobcows-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 72px;
  align-items: center;
}

.mobcows-visual {
  position: relative;
  min-height: 620px;
}

.mobcows-main-image {
  position: relative;
  width: 88%;
  height: 530px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.mobcows-main-image img,
.mobcows-small-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mobcows-small-image {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 54%;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
  border: 8px solid #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.mobcows-badge {
  position: absolute;
  left: 50px;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 330px;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  z-index: 3;
}

.badge-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e53935;
  color: #ffffff;
}

.badge-icon svg {
  width: 30px;
  height: 30px;
}

.mobcows-badge h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.mobcows-badge p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.mobcows-badge span {
  color: #e53935;
  margin: 0 7px;
}

.mobcows-content {
  max-width: 650px;
  align-self: center;
}

.mobcows-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: #e53935;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mobcows-eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: #e53935;
  margin-top: 18px;
}

.mobcows-content h2 {
  margin: 0 0 26px;
  color: #000;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -2px;
  font-weight: 900;
}

.mobcows-content p {
  margin: 0 0 24px;
  color: #333;
  font-size: 17px;
  line-height: 1.62;
}

.mobcows-btn {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 34px;
  background: #e53935;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mobcows-btn:hover {
  transform: translateY(-2px);
  background: #cf2f2c;
}

.mobcows-btn span {
  font-size: 24px;
  line-height: 1;
}

.mobcows-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mobcows-feature {
  min-height: 126px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobcows-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: #e53935;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mobcows-feature h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.mobcows-feature p {
  margin: 0;
  color: #444;
  font-size: 14.5px;
  line-height: 1.45;
}

.mobcows-feature.red {
  border-left: 3px solid #e53935;
}

.mobcows-feature.green {
  border-left: 3px solid #2e7d32;
}

.mobcows-feature.green .feature-icon {
  color: #2e7d32;
}

.mobcows-feature.blue {
  border-left: 3px solid #004aad;
}

.mobcows-feature.blue .feature-icon {
  color: #004aad;
}

.mobcows-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.mobcows-hidden.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .mobcows-container {
    width: min(100% - 48px, 900px);
  }

  .mobcows-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .mobcows-content {
    max-width: 100%;
  }

  .mobcows-visual {
    min-height: 560px;
    order: 2;
  }

  .mobcows-content {
    order: 1;
  }
}

@media (max-width: 760px) {
  .mobcows-section {
    padding: 82px 0 70px;
  }

  .mobcows-container {
    width: min(100% - 34px, 520px);
  }

  .mobcows-bg-word {
    top: -22px;
    left: 16px;
    font-size: 82px;
    letter-spacing: -2px;
  }

  .mobcows-section::after {
    width: 100px;
    height: 100px;
    right: 16px;
    top: 30px;
  }

  .mobcows-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .mobcows-content h2 {
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: -1.3px;
  }

  .mobcows-content p {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .mobcows-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 28px;
  }

  .mobcows-feature-grid {
    grid-template-columns: 1fr;
  }

  .mobcows-feature {
    min-height: auto;
    padding: 22px;
  }

  .mobcows-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .mobcows-main-image {
    width: 100%;
    height: 360px;
    border-radius: 14px;
  }

  .mobcows-small-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 210px;
    border: 0;
    border-radius: 14px;
  }

  .mobcows-badge {
    position: relative;
    left: auto;
    bottom: auto;
    min-width: 0;
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .badge-icon {
    width: 50px;
    height: 50px;
  }

  .mobcows-badge h3 {
    font-size: 16px;
  }

  .mobcows-badge p {
    font-size: 14px;
  }
}
