/* ===============================
   ADVANCED ABOUT SECTION
================================ */

.ip2026-about-advanced {
  padding: var(--container-padding);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ip2026-about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ip2026-sub-badge {
  background: #e0e7ff;
  color: #4338ca;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.ip2026-about-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ip2026-about-description {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
}

.ip2026-about-description strong {
  color: #222;
}

.ip2026-about-description.ip2026-sm {
  font-size: 14px;
  color: var(--text-color);
  font-style: italic;
}

.ip2026-separator-line {
  width: 60px;
  height: 4px;
  background: var(--text-color);
  margin: 30px 0;
}

.ip2026-list-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

.ip2026-best-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ip2026-best-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ip2026-best-item:hover,
.ip2026-best-item.ip2026-active {
  border-color: var(--text-color);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(44, 14, 83, 0.3);
}

.ip2026-best-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--text-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.ip2026-best-item:hover::before,
.ip2026-best-item.ip2026-active::before {
  transform: scaleY(1);
}

.ip2026-item-icon {
  font-size: 24px;
  background: #f4f4f4;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.ip2026-best-item:hover .ip2026-item-icon,
.ip2026-best-item.ip2026-active .ip2026-item-icon {
  background: var(--text-hover);
}

.ip2026-item-text h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}

.ip2026-item-text p {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

.ip2026-about-visuals {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.ip2026-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(44, 14, 83, 0.3);
}

.ip2026-about-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(1.1);
}

.ip2026-about-img.ip2026-active {
  opacity: 1;
  transform: scale(1);
}

.ip2026-floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 14, 83, 0.3);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.ip2026-floating-badge span {
  display: block;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-color);
}

.ip2026-floating-badge small {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
}



/* =====================================
   MOBILE RESPONSIVE (<= 768px)
===================================== */
@media (max-width: 768px) {

  /* ---------- ABOUT SECTION ---------- */
  .ip2026-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ip2026-about-headline {
    font-size: 28px;
  }

  .ip2026-about-visuals {
    height: 350px;
  }



}

/* =====================================
   TABLET RESPONSIVE (768px – 1024px)
===================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  /* ---------- ABOUT SECTION ---------- */
  .ip2026-about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ip2026-about-headline {
    font-size: 32px;
  }

  .ip2026-about-visuals {
    height: 420px;
  }
}
