/* DEVELOPED BY TRENZY TECH |+2347047889687 | COPYRIGHT © 2026 YMG FUNDS. ALL RIGHTS RESERVED. */
.about-hero {
  background: var(--green-dark);
  padding: 140px 32px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--green-light);
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.09;
  top: -160px; left: -120px;
}

.about-hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.06;
  bottom: -100px; right: -80px;
}

.about-hero-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-hero h1 .accent { color: var(--gold); }

.about-hero p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 300;
}

.who-we-are {
  background: var(--white);
  padding: 90px 32px;
}

.who-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.who-left h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #0d1f13;
  line-height: 1.2;
  margin-bottom: 18px;
}

.who-left p {
  font-size: 15px;
  color: #6b7f70;
  line-height: 1.8;
  margin-bottom: 14px;
}

.who-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.who-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.who-value > i {
  width: 40px; height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.who-value h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0d1f13;
  margin-bottom: 4px;
}

.who-value p {
  font-size: 13.5px;
  color: #7a8f80;
  line-height: 1.6;
  margin-bottom: 0;
}

.who-right {
  position: relative;
}

.who-image-placeholder {
  width: 100%;
  height: 400px;
  background: #d0d8d2;
  border-radius: 20px;
}

.who-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.who-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.who-badge i {
  font-size: 22px;
  color: var(--gold);
}

.who-badge strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0d1f13;
}

.who-badge span {
  font-size: 12px;
  color: #7a8f80;
}

.what-we-offer {
  background: #f0f4f0;
  padding: 90px 32px;
  text-align: center;
}

.offer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.what-we-offer h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0d1f13;
  margin-bottom: 12px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.offer-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: rgba(201, 168, 76, 0.2);
}

.offer-icon {
  width: 48px; height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
}

.offer-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0d1f13;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 13.5px;
  color: #7a8f80;
  line-height: 1.7;
}

.mission {
  background: var(--green-dark);
  padding: 90px 32px;
  text-align: center;
}

.mission-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mission-icon {
  width: 64px; height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 4px;
}

.mission h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
}

.mission p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.about-trust {
  background: var(--white);
  padding: 90px 32px;
}

.about-trust-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-trust-left h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #0d1f13;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-trust-left p {
  font-size: 15px;
  color: #6b7f70;
  line-height: 1.8;
  margin-bottom: 14px;
}

.trust-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.trust-pills span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-deep);
}

.trust-pills i { color: var(--gold); }

.trust-card {
  background: #f5f7f5;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e8ede8;
}

.trust-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.trust-card-item i {
  width: 44px; height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-card-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0d1f13;
  margin-bottom: 4px;
}

.trust-card-item p {
  font-size: 13px;
  color: #7a8f80;
  line-height: 1.6;
}

.trust-card-divider {
  height: 1px;
  background: #e8ede8;
}

.about-cta {
  background: #f0f4f0;
  padding: 90px 32px;
  text-align: center;
}

.about-cta-container {
  max-width: 580px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0d1f13;
  margin-bottom: 14px;
}

.about-cta p {
  font-size: 15.5px;
  color: #6b7f70;
  line-height: 1.7;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .who-container,
  .about-trust-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .who-badge { bottom: -16px; }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .trust-pills { gap: 12px; }
}