/* About page specific styles extracted from inline CSS. */
.about-hero {
      padding: 150px 0 70px;
      min-height: 100vh;
      display: grid;
      align-items: center;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 42px;
      align-items: center;
    }

    .about-logo-panel {
      min-height: 330px;
      display: grid;
      place-items: center;
      padding: 38px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 28px;
      background:
        radial-gradient(circle at 25% 20%, rgba(255, 210, 51, .16), transparent 36%),
        radial-gradient(circle at 80% 70%, rgba(37, 208, 180, .18), transparent 34%),
        rgba(255, 255, 255, .045);
      box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
      overflow: hidden;
    }

    .about-logo-panel img {
      width: min(330px, 88%);
      max-height: 350px;
      height: auto;
      object-fit: contain;
      object-position: bottom center;
      filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .28));
    }

    .about-story {
      padding: 38px;
      border-radius: 28px;
      background: rgba(3, 18, 38, .42);
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
    }

    .about-story h1 {
      font-size: clamp(2.15rem, 4.5vw, 4rem);
      line-height: 1.02;
      letter-spacing: -.055em;
      margin: 12px 0 18px;
    }

    .about-story p {
      color: var(--muted);
      font-size: 1.07rem;
      margin-top: 14px;
    }

    .about-pill-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .about-pill {
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .065);
      color: #E8F2FF;
      font-size: .82rem;
      font-weight: 900;
    }

    .about-section {
      padding: 95px 0;
    }

    @media (max-width: 1050px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-logo-panel {
        min-height: 260px;
      }
    }

    @media (max-width: 760px) {
      .about-hero {
        padding: 125px 0 55px;
      }

      .about-logo-panel,
      .about-story {
        padding: 24px;
        border-radius: 22px;
      }
    }

    @media (min-width: 1051px) and (max-height: 980px) {
      .about-hero {
        min-height: 100svh;
        padding: 118px 0 44px;
      }

      .about-grid {
        gap: 28px;
      }

      .about-logo-panel {
        min-height: 260px;
        padding: 24px;
      }

      .about-logo-panel img {
        width: min(250px, 78%);
        max-height: 250px;
      }

      .about-story {
        padding: 28px;
      }

      .about-story h1 {
        font-size: clamp(2rem, 3.45vw, 3.25rem);
        line-height: 1;
        margin: 10px 0 14px;
      }

      .about-story p {
        font-size: .98rem;
        line-height: 1.48;
        margin-top: 10px;
      }

      .about-pill-row {
        margin-top: 18px;
      }
    }

/* ── Logo Card — Professional ────────────────────────────── */
.about-logo-panel--brand {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border-radius: 28px;
  border: 1.5px solid rgba(37, 99, 235, 0.30);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 210, 51, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.10) 0%, transparent 55%),
    #FFFFFF;
  box-shadow:
    0 0 0 5px rgba(37, 99, 235, 0.06),
    0 32px 80px rgba(14, 40, 100, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

/* Subtle corner accents */
.about-logo-panel--brand::before,
.about-logo-panel--brand::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(37, 99, 235, 0.20);
  border-style: solid;
}

.about-logo-panel--brand::before {
  top: 18px;
  left: 18px;
  border-width: 2px 0 0 2px;
  border-radius: 6px 0 0 0;
}

.about-logo-panel--brand::after {
  bottom: 18px;
  right: 18px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 6px;
}

/* Logo wrapper */
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-logo-card img {
  width: min(280px, 82%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(14, 40, 140, 0.15));
  transition: filter 0.3s ease;
}

.about-logo-panel--brand:hover .brand-logo-card img {
  filter: drop-shadow(0 8px 28px rgba(14, 40, 140, 0.25));
}

/* Responsive */
@media (max-width: 1050px) {
  .about-logo-panel--brand {
    min-height: 240px;
    padding: 36px;
  }
  .brand-logo-card img { width: min(220px, 78%); }
}

@media (max-width: 760px) {
  .about-logo-panel--brand {
    min-height: 180px;
    padding: 28px;
  }
  .brand-logo-card img { width: min(180px, 72%); }
}
