﻿.about-main {
  padding-top: 6.2rem;
  background-color: var(--bg-light);
}

.about-intro {
  background-color: #eef2f8;
}

.intro-copy h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
}

.intro-copy p {
  margin: 0.9rem 0 1.2rem;
  color: rgba(31, 42, 55, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-btn {
  border: 0;
  border-radius: 999px;
  background-color: var(--teal-dark);
  color: #ffffff;
  font-weight: 800;
  padding: 0.58rem 1.22rem;
}

.about-btn:hover,
.about-btn:focus {
  color: #ffffff;
  background-color: var(--teal);
}

.intro-illustration {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(201, 162, 74, 0.36), rgba(31, 42, 55, 0.28));
  min-height: 360px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  padding: 1.4rem;
  isolation: isolate;
}

.intro-illustration::before {
  content: "";
  position: absolute;
  inset: -26%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 35%),
    radial-gradient(circle at 82% 78%, rgba(201, 162, 74, 0.25), transparent 32%);
  opacity: 0.9;
  z-index: 0;
  animation: introPanelGlow 8s ease-in-out infinite;
}

.intro-illustration::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;
  width: 44%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  z-index: 1;
  animation: introPanelSheen 6.2s ease-in-out infinite;
  pointer-events: none;
}

.intro-logo-image {
  position: relative;
  z-index: 2;
  width: min(88%, 520px);
  height: auto;
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 42, 55, 0.14);
  box-shadow: 0 20px 40px -28px rgba(31, 42, 55, 0.48);
  padding: 0.65rem 0.9rem;
  transform-origin: center;
  animation: introLogoFloat 4.8s ease-in-out infinite;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.intro-illustration:hover .intro-logo-image {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 26px 44px -26px rgba(31, 42, 55, 0.55);
}

.ui-card {
  width: min(82%, 420px);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 2rem 1.7rem;
  position: relative;
}

.line {
  height: 12px;
  border-radius: 999px;
  background-color: rgba(31, 42, 55, 0.22);
  margin-bottom: 0.65rem;
}

.line-lg {
  width: 70%;
  background-color: rgba(31, 42, 55, 0.62);
}

.line-md {
  width: 86%;
}

.line-sm {
  width: 62%;
}

.pill {
  margin-top: 1.25rem;
  width: 38%;
  height: 20px;
  border-radius: 999px;
  background-color: rgba(201, 162, 74, 0.72);
}

.dot {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: rgba(201, 162, 74, 0.3);
  top: -28px;
  left: 24px;
}

.about-value {
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 162, 74, 0.18), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(31, 42, 55, 0.1), transparent 42%),
    linear-gradient(110deg, #f8fafc 0%, #eef2f7 48%, #e8edf4 100%);
  overflow: hidden;
}

.value-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.value-mosaic {
  position: relative;
  min-height: 420px;
}

.value-mosaic img {
  position: absolute;
  width: 310px;
  max-width: 80%;
  border-radius: 34px;
  box-shadow: 0 20px 40px -24px rgba(31, 42, 55, 0.42);
  object-fit: cover;
}

.value-mosaic img:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(-16deg);
}

.value-mosaic img:nth-child(2) {
  top: 90px;
  right: 210px;
  transform: rotate(11deg);
}

.value-mosaic img:nth-child(3) {
  top: 220px;
  right: 70px;
  transform: rotate(-8deg);
}

.value-text h2 {
  margin: 0;
  color: #1f2833;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  max-width: 14ch;
}

.about-services {
  background: linear-gradient(180deg, #f7f8fa 0%, #eef3f8 100%);
}

.about-services .section-head {
  margin-bottom: 1.5rem;
}

.about-services .section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  color: var(--primary);
  line-height: 1.45;
}

.services-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.service-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 185px;
  border: 1px solid rgba(31, 42, 55, 0.09);
  box-shadow: 0 18px 34px -24px rgba(31, 42, 55, 0.45);
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  transition-delay: var(--item-delay, 0ms);
}

.service-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 55, 0.03) 45%, rgba(31, 42, 55, 0.3) 100%);
  z-index: 1;
}

.service-chip {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(130deg, #C8A45A 0%, #B8934A 100%);
  color: #ffffff;
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 38px -22px rgba(31, 42, 55, 0.5);
}

.service-media-card:hover img {
  transform: scale(1.06);
}

.service-media-card.is-visible .service-chip {
  animation: chipGlow 2.4s ease-in-out infinite;
}

.about-pillars {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 10% 15%, rgba(201, 162, 74, 0.2), transparent 28%),
    radial-gradient(circle at 88% 85%, rgba(31, 42, 55, 0.11), transparent 30%),
    #f2f5f2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  background: #edf3ec;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 12px;
  padding: 1.45rem 1.2rem;
  box-shadow: 0 16px 28px -26px rgba(31, 42, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: var(--item-delay, 0ms);
}

.pillar-card h3 {
  display: inline-block;
  margin: 0 0 0.9rem;
  background: linear-gradient(140deg, #C8A45A 0%, #B8934A 100%);
  color: #ffffff;
  padding: 0.2rem 0.85rem;
  border-radius: 2px;
  font-size: 1.2rem;
  font-weight: 800;
}

.pillar-card p {
  margin: 0;
  color: rgba(31, 42, 55, 0.8);
  font-size: 1.09rem;
  line-height: 2;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px -24px rgba(31, 42, 55, 0.54);
}

.about-strategy {
  position: relative;
  background:
    linear-gradient(0deg, rgba(243, 246, 249, 0.96), rgba(243, 246, 249, 0.96)),
    repeating-linear-gradient(
      90deg,
      rgba(31, 42, 55, 0.05) 0,
      rgba(31, 42, 55, 0.05) 2px,
      transparent 2px,
      transparent 120px
    );
}

.strategy-head {
  text-align: end;
  margin-bottom: 1rem;
}

.strategy-head span {
  display: inline-block;
  background: linear-gradient(140deg, #C8A45A 0%, #B8934A 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 2px;
  padding: 0.25rem 0.9rem;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-card {
  background: #edf3ec;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 12px;
  padding: 1.3rem 1.05rem;
  box-shadow: 0 18px 30px -26px rgba(31, 42, 55, 0.54);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: var(--item-delay, 0ms);
}

.strategy-card h3 {
  margin: 0 0 0.72rem;
  color: var(--primary);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 800;
  text-align: center;
}

.strategy-card p {
  margin: 0;
  color: rgba(31, 42, 55, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
  text-align: center;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px -22px rgba(31, 42, 55, 0.54);
}

.service-media-card.is-visible,
.pillar-card.is-visible,
.strategy-card.is-visible {
  animation: cardPop 0.6s ease both;
  animation-delay: var(--item-delay, 0ms);
}

.about-services .reveal-item,
.about-pillars .reveal-item,
.about-strategy .reveal-item {
  transition-delay: var(--item-delay, 0ms);
}

@keyframes chipGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(201, 162, 74, 0);
  }
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.manager-word {
  background-color: #ffffff;
}

.word-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.08);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}

.word-card h2 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
}

.word-card p {
  margin: 0 0 1rem;
  color: rgba(31, 42, 55, 0.84);
  line-height: 2;
  font-size: 1.04rem;
}

.word-card p:last-child {
  margin-bottom: 0;
}

.manager-layout {
  display: grid;
  grid-template-columns: minmax(230px, 320px) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.manager-photo-wrap {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 55, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 28px -18px rgba(31, 42, 55, 0.45);
}

.manager-photo {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manager-photo-wrap figcaption {
  padding: 0.7rem 0.9rem;
  text-align: center;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.manager-text p {
  margin: 0 0 1rem;
}

@media (max-width: 991.98px) {
  .about-main {
    padding-top: 5.6rem;
  }

  .intro-illustration {
    min-height: 300px;
  }

  .value-wrap {
    grid-template-columns: 1fr;
  }

  .services-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .strategy-head {
    text-align: center;
  }

  .value-mosaic {
    min-height: 360px;
  }

  .value-mosaic img:nth-child(1) {
    right: 16%;
  }

  .value-mosaic img:nth-child(2) {
    right: 2%;
    top: 82px;
  }

  .value-mosaic img:nth-child(3) {
    top: 215px;
    right: 20%;
  }

  .manager-layout {
    grid-template-columns: 1fr;
  }

  .manager-photo-wrap {
    max-width: 460px;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .word-card {
    padding: 1.2rem 0.95rem;
  }

  .word-card p {
    font-size: 0.97rem;
  }

  .value-mosaic {
    min-height: 290px;
  }

  .value-mosaic img {
    width: 230px;
    border-radius: 22px;
  }

  .value-mosaic img:nth-child(1) {
    right: 18%;
    top: 0;
  }

  .value-mosaic img:nth-child(2) {
    right: -2%;
    top: 80px;
  }

.value-mosaic img:nth-child(3) {
    right: 20%;
    top: 175px;
  }

  .services-media-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-media-card {
    min-height: 210px;
  }

  .service-chip {
    font-size: 0.9rem;
    padding: 0.24rem 0.7rem;
  }

  .pillar-card p,
  .strategy-card p {
    font-size: 0.99rem;
  }

  .strategy-card h3 {
    font-size: 1.35rem;
  }
}

/* Professional About Page Refinement */
.about-main {
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 162, 74, 0.11), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(31, 42, 55, 0.09), transparent 34%),
    var(--bg-light);
}

.about-intro,
.manager-word {
  border: 1px solid rgba(31, 42, 55, 0.1);
}

.intro-illustration,
.word-card,
.manager-photo-wrap {
  box-shadow: 0 22px 44px -30px rgba(31, 42, 55, 0.42);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 1.3rem;
}

.value-text h2,
.word-card h2 {
  letter-spacing: -0.01em;
}

@keyframes introLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes introPanelGlow {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.03) translate3d(1.5%, -1.5%, 0);
    opacity: 1;
  }
}

@keyframes introPanelSheen {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(12deg);
  }

  18% {
    opacity: 0.9;
    transform: translateX(285%) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-logo-image,
  .intro-illustration::before,
  .intro-illustration::after {
    animation: none !important;
  }

  .intro-illustration:hover .intro-logo-image {
    transform: none !important;
  }
}




