/* About Unice section */
.about-unice-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background:
    radial-gradient(
      circle at top right,
      rgba(234, 179, 8, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--light-gray) 100%);
  overflow: hidden;
}

.about-unice-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: 18%;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.about-unice-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top profile layout */
.about-profile-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5.5rem;
}

/* Image area */
.about-image-area {
  position: relative;
  min-height: 560px;
}

.about-image-area::before {
  content: "";
  position: absolute;
  inset: 3rem 2rem 2rem 0;
  background: linear-gradient(135deg, var(--sunlife-marigold), #fef3c7);
  border-radius: 42px;
  transform: rotate(-4deg);
  opacity: 0.9;
}

.about-image-area::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3rem;
  width: 180px;
  height: 180px;
  background: var(--sunlife-rich-black);
  border-radius: 40px;
  opacity: 0.12;
  transform: rotate(12deg);
}

.about-image-card {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 520px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.floating-badge strong {
  display: block;
  color: var(--sunlife-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.floating-badge span {
  display: block;
  color: #475569;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.badge-top {
  top: 4rem;
  right: 0;
}

.badge-middle {
  top: 15.5rem;
  left: 0;
}

.badge-bottom {
  left: 1.5rem;
  bottom: 2rem;
}

.badge-credential {
  right: 0;
  bottom: 8.5rem;
}

/* Main content */
.about-main-content {
  position: relative;
}

.about-tag {
  display: inline-block;
  color: var(--sunlife-marigold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-main-content h2 {
  color: var(--sunlife-dark);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.about-intro {
  max-width: 620px;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

/* Story highlight */
.about-story-highlight {
  position: relative;
  padding: 2.5rem;
  background: var(--white);
  border-left: 6px solid var(--sunlife-marigold);
  border-radius: 0 30px 30px 0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.about-story-highlight span {
  display: inline-block;
  color: var(--sunlife-marigold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-story-highlight h3 {
  color: var(--sunlife-dark);
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.about-story-highlight p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.about-story-highlight p:not(:last-child) {
  margin-bottom: 1rem;
}

/* Info cards */
.about-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-info-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

/* Labels */
.card-label {
  display: inline-flex;
  width: fit-content;
  background: rgba(234, 179, 8, 0.12);
  color: var(--sunlife-marigold);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Lists */
.about-info-card ul {
  list-style: none;
}

.about-info-card li {
  position: relative;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 1.7rem;
}

.about-info-card li:not(:last-child) {
  margin-bottom: 1rem;
}

.about-info-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sunlife-marigold);
  font-size: 1.5rem;
  line-height: 1.1;
}

.check-list li::before {
  content: "✓";
  font-size: 1rem;
  font-weight: 700;
  top: 0.25rem;
}

/* CTA */
.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.95),
    rgba(212, 155, 6, 0.95)
  );
  border-radius: 32px;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 18px 50px rgba(234, 179, 8, 0.28);
}

.about-cta-box h3 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.7rem;
}

.about-cta-box p {
  color: #fff7ed;
  line-height: 1.7;
  max-width: 640px;
}

.about-cta-btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--sunlife-dark);
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.15);
}

/* Tablet */
@media (max-width: 992px) {
  .about-unice-section {
    padding: var(--section-padding-y-tablet) 1.5rem;
  }

  .about-profile-grid,
  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .about-image-area {
    min-height: 500px;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .about-image-card {
    width: 90%;
    height: 470px;
  }

  .about-main-content {
    text-align: center;
  }

  .about-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .about-story-highlight {
    text-align: left;
  }

  .about-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-unice-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .about-profile-grid {
    gap: 3.5rem;
    margin-bottom: 4rem;
  }

  .about-image-area {
    min-height: 430px;
  }

  .about-image-area::before {
    inset: 2rem 1rem 2rem 0;
    border-radius: 32px;
  }

  .about-image-card {
    width: 92%;
    height: 400px;
    border-radius: 32px;
  }

  .floating-badge {
    padding: 0.85rem 1rem;
    border-radius: 18px;
  }

  .floating-badge strong {
    font-size: 1.1rem;
  }

  .floating-badge span {
    font-size: 0.8rem;
  }

  .badge-top {
    top: 2.5rem;
    right: 0;
  }

  .badge-middle {
    top: 12.5rem;
    left: 0;
  }

  .badge-bottom {
    left: 1rem;
    bottom: 1.5rem;
  }

  .badge-credential {
    right: 0;
    bottom: 7rem;
  }

  .about-main-content h2 {
    font-size: 2.5rem;
  }

  .about-intro {
    font-size: 1rem;
  }

  .about-story-highlight,
  .about-info-card {
    padding: 2rem;
    border-radius: 22px;
  }

  .about-story-highlight {
    border-left-width: 4px;
    border-radius: 0 22px 22px 0;
  }

  .about-story-highlight h3 {
    font-size: 1.3rem;
  }

  .about-cta-box {
    padding: 2.25rem 1.75rem;
    border-radius: 24px;
  }

  .about-cta-btn {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .about-unice-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .about-image-area {
    min-height: 370px;
  }

  .about-image-card {
    height: 340px;
  }

  .badge-top {
    right: -0.25rem;
  }

  .badge-middle {
    top: 10.5rem;
  }

  .badge-credential {
    bottom: 6rem;
    right: -0.25rem;
  }

  .about-main-content h2 {
    font-size: 2.1rem;
  }

  .about-story-highlight p,
  .about-info-card li {
    font-size: 0.95rem;
  }
}
