:root {
  --about-bg: #05050a;
  --about-surface: rgba(255, 255, 255, 0.035);
  --about-surface-strong: rgba(255, 255, 255, 0.055);
  --about-border: rgba(255, 222, 89, 0.18);
  --about-yellow: #ffde59;
  --about-text: rgba(255, 255, 255, 0.76);
  --about-muted: rgba(255, 255, 255, 0.56);
}

html {
  scroll-behavior: smooth;
}

.page--about-premium {
  overflow: hidden;
  color: #fff;
  background-color: var(--about-bg);
  /* Static continuation of the hero atmosphere — no motion, no lines.
     Color stays richest near the top, then softens with tinted darks (not flat black). */
  background-image:
    radial-gradient(ellipse 110% 48% at 16% 4%, rgba(138, 44, 255, 0.34), transparent 58%),
    radial-gradient(ellipse 90% 40% at 82% 6%, rgba(0, 245, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 80% 36% at 48% 10%, rgba(255, 47, 214, 0.18), transparent 52%),
    radial-gradient(ellipse 65% 30% at 68% 18%, rgba(34, 124, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 75% 32% at 24% 26%, rgba(138, 44, 255, 0.16), transparent 62%),
    radial-gradient(ellipse 70% 28% at 76% 34%, rgba(0, 180, 220, 0.1), transparent 65%),
    /* Mid → lower wash — soft continuous tints, no hard bands */
    radial-gradient(ellipse 95% 40% at 18% 42%, rgba(88, 28, 170, 0.11), transparent 72%),
    radial-gradient(ellipse 90% 38% at 84% 50%, rgba(20, 90, 180, 0.08), transparent 70%),
    radial-gradient(ellipse 80% 34% at 48% 58%, rgba(140, 35, 120, 0.055), transparent 72%),
    radial-gradient(ellipse 90% 32% at 28% 70%, rgba(70, 24, 130, 0.08), transparent 74%),
    radial-gradient(ellipse 80% 28% at 72% 78%, rgba(0, 120, 160, 0.05), transparent 72%),
    radial-gradient(ellipse 65% 22% at 50% 90%, rgba(50, 18, 90, 0.05), transparent 78%),
    linear-gradient(
      180deg,
      rgba(5, 5, 10, 0) 0%,
      rgba(8, 4, 16, 0.08) 18%,
      rgba(7, 4, 14, 0.18) 36%,
      rgba(6, 4, 12, 0.32) 52%,
      rgba(6, 5, 12, 0.48) 68%,
      rgba(5, 5, 11, 0.68) 82%,
      rgba(5, 5, 10, 0.88) 94%,
      var(--about-bg) 100%
    );
}

.about-page__container {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}

.about-page__section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.about-page__eyebrow {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--about-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page__heading {
  max-width: 48rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-page__heading--center,
.about-page__lead--center {
  margin-inline: auto;
  text-align: center;
}

.about-page__lead {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--about-text);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.about-page__header {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.about-page__header--center {
  text-align: center;
}

.about-breadcrumb {
  position: absolute;
  z-index: 8;
  top: calc(var(--header-main-h, 5rem) + 1rem);
  left: 50%;
  width: min(100% - 2rem, 75rem);
  transform: translateX(-50%);
}

.about-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.about-breadcrumb__item + .about-breadcrumb__item::before {
  content: "/";
  margin-right: 0.55rem;
  color: rgba(255, 222, 89, 0.42);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.about-breadcrumb a:hover,
.about-breadcrumb a:focus-visible {
  color: var(--about-yellow);
}

.about-hero.hero-ps {
  min-height: 44rem;
  height: min(88vh, 54rem);
  background: transparent;
}

/* Fade the animated hero layers out so color continues as a static wash */
.about-hero .hero-ps__bg {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
}

/* Soft handoff from animated hero into the static page wash below */
.about-hero .hero-ps__overlay {
  background: linear-gradient(
    to bottom,
    rgba(3, 3, 8, 0.48) 0%,
    rgba(5, 5, 10, 0.22) 42%,
    rgba(5, 5, 10, 0.08) 72%,
    transparent 100%
  );
}

.about-hero .hero-ps__content {
  max-width: 75rem;
  padding-inline: 1rem;
  align-items: flex-start;
  text-align: left;
}

.about-hero .hero-ps__content::before {
  content: "PHUKET • THAILAND";
  display: block;
  margin-bottom: 1.1rem;
  color: var(--about-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-hero .hero-ps__title {
  max-width: 50rem;
  margin-inline: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: left;
}

.about-hero .hero-ps__subtitle {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  text-align: left;
}

.about-hero .hero-ps__actions {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.about-hero__meta span {
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 222, 89, 0.2);
  border-radius: 999px;
  background: rgba(5, 5, 10, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

/* Pull the Who we are section closer to the hero above */
.about-story.about-page__section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.about-story__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(22px);
  will-change: transform, opacity;
}

.about-story__orb--1 {
  top: 8%;
  left: -6%;
  width: clamp(12rem, 22vw, 18rem);
  height: clamp(12rem, 22vw, 18rem);
  background: radial-gradient(
    circle,
    rgba(255, 222, 89, 0.28) 0%,
    rgba(138, 44, 255, 0.15) 42%,
    rgba(255, 222, 89, 0.05) 68%,
    transparent 78%
  );
  opacity: 0.55;
  animation: about-story-orb-a 26s cubic-bezier(0.45, 0.05, 0.35, 1) infinite;
}

.about-story__orb--2 {
  top: 52%;
  right: -4%;
  width: clamp(11rem, 18vw, 16rem);
  height: clamp(11rem, 18vw, 16rem);
  background: radial-gradient(
    circle,
    rgba(0, 220, 240, 0.24) 0%,
    rgba(138, 44, 255, 0.14) 45%,
    rgba(0, 180, 220, 0.05) 70%,
    transparent 80%
  );
  opacity: 0.5;
  animation: about-story-orb-b 33s cubic-bezier(0.55, 0.02, 0.25, 1) infinite;
  animation-delay: -7s;
}

@keyframes about-story-orb-a {
  0% {
    transform: translate(0, 0) scale(1);
  }

  12% {
    transform: translate(18vw, 22%) scale(1.12);
  }

  23% {
    transform: translate(8vw, -6%) scale(0.88);
  }

  37% {
    transform: translate(54vw, 14%) scale(1.05);
  }

  48% {
    transform: translate(72vw, -12%) scale(0.92);
  }

  61% {
    transform: translate(41vw, 28%) scale(1.18);
  }

  74% {
    transform: translate(63vw, 6%) scale(0.85);
  }

  88% {
    transform: translate(14vw, -10%) scale(1.08);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes about-story-orb-b {
  0% {
    transform: translate(0, 0) scale(1);
  }

  10% {
    transform: translate(-28vw, -18%) scale(0.9);
  }

  22% {
    transform: translate(-12vw, 16%) scale(1.15);
  }

  34% {
    transform: translate(-55vw, 4%) scale(0.86);
  }

  47% {
    transform: translate(-38vw, -24%) scale(1.1);
  }

  59% {
    transform: translate(-70vw, 12%) scale(0.95);
  }

  71% {
    transform: translate(-18vw, 22%) scale(1.2);
  }

  84% {
    transform: translate(-46vw, -8%) scale(0.88);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.about-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-story__visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid var(--about-border);
  border-radius: 1.5rem;
  background: #0b0712;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.35);
}

.about-story__visual--logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.about-story__logo-stage {
  display: grid;
  place-items: center;
  width: min(88%, 24.5rem);
  transform: translateY(-2.75rem);
}

.about-story__logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    brightness(1.1)
    contrast(1.14)
    saturate(1.12)
    drop-shadow(0 0 1.8rem rgba(255, 222, 89, 0.22));
  animation: about-logo-breathe 2.8s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

@keyframes about-logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.about-story__visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.about-story__visual--logo .about-story__logo-img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.about-story__badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: 8.75rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(255, 222, 89, 0.26);
  border-radius: 0.75rem;
  background: rgba(5, 5, 10, 0.82);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-story__badge:hover {
  transform: translateY(-0.12rem);
  border-color: rgba(255, 222, 89, 0.72);
  box-shadow:
    0 0 1.5rem rgba(255, 222, 89, 0.2),
    0 0.75rem 2rem rgba(0, 0, 0, 0.36);
}

.about-story__badge strong {
  display: block;
  color: var(--about-yellow);
  font-size: 1.05rem;
}

.about-story__badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  line-height: 1.3;
}

.about-story__copy p {
  margin: 1rem 0 0;
  color: var(--about-text);
  font-size: 1rem;
  line-height: 1.75;
}

.about-story__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.65rem;
}

.about-inline-link {
  color: var(--about-yellow);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.about-inline-link:hover,
.about-inline-link:focus-visible {
  text-decoration: underline;
}

.about-services {
  background: transparent;
}

.about-services.about-page__section {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

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

.about-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid var(--about-border);
  border-radius: 1.1rem;
  background: #0b0712;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-service-card:first-child,
.about-service-card:nth-child(2) {
  grid-column: span 3;
}

.about-service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.about-service-card:hover,
.about-service-card:focus-within {
  transform: translateY(-0.3rem);
  border-color: rgba(255, 222, 89, 0.48);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28), 0 0 2rem rgba(255, 222, 89, 0.07);
}

.about-service-card__image {
  position: relative;
  height: 11.5rem;
  overflow: hidden;
}

.about-service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #0b0712 100%);
}

.about-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-service-card:hover .about-service-card__image img {
  transform: scale(1.035);
}

.about-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.about-service-card__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-service-card__text {
  margin: 0 0 1rem;
  color: var(--about-muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.about-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--about-yellow);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.about-service-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.about-service-card__link:hover::after {
  transform: translateX(0.2rem);
}

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

.about-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--about-border);
  border-radius: 1.1rem;
  background: #000;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-0.3rem);
  border-color: rgba(255, 222, 89, 0.48);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28), 0 0 2rem rgba(255, 222, 89, 0.07);
}

.about-feature-card__number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(255, 222, 89, 0.1);
  border: 1px solid rgba(255, 222, 89, 0.32);
  color: var(--about-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 1.1rem rgba(255, 222, 89, 0.12);
}

.about-feature-card h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-feature-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.about-industries {
  background: transparent;
}

.about-industries.about-page__section {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.about-page__section:has(#why-choose-title) {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.about-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-chip {
  display: grid;
  min-height: 5.8rem;
  padding: 1rem;
  place-items: center;
  border: 1px solid var(--about-border);
  border-radius: 0.9rem;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.about-chip:hover {
  transform: translateY(-0.15rem);
  border-color: rgba(255, 222, 89, 0.55);
  color: #fff;
  box-shadow: 0 0 1.5rem rgba(255, 222, 89, 0.18), 0 0.6rem 1.5rem rgba(0, 0, 0, 0.35);
}

.about-locations.about-page__section {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.about-locations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-location {
  padding: 0.72rem 1rem;
  border: 1px solid var(--about-border);
  border-radius: 999px;
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.about-location:hover {
  transform: translateY(-0.12rem);
  border-color: rgba(255, 222, 89, 0.55);
  color: #fff;
  box-shadow: 0 0 1.5rem rgba(255, 222, 89, 0.18), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.35);
}

.about-locations__seo {
  margin: 1.25rem 0 0;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.55;
}

.about-process {
  background: transparent;
}

.about-process.about-page__section {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.about-process .about-page__header {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.about-process__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-process__item {
  position: relative;
  padding: 0 1rem;
  text-align: center;
}

.about-process__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 1rem;
  place-items: center;
  border: 1px solid rgba(255, 222, 89, 0.38);
  border-radius: 50%;
  background: #000;
  color: var(--about-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 1.4rem rgba(255, 222, 89, 0.08);
}

.about-process__item h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.9rem;
}

.about-process__item p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.page--about-premium .outro--dark {
  background: transparent;
}

.page--about-premium .outro--dark.about-page__section {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.page--about-premium .outro--dark .about-page__header {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.page--about-premium .outro-faq {
  margin-top: 0;
}

.about-final-cta {
  padding-block: clamp(1.75rem, 3.5vw, 3rem) clamp(3rem, 6vw, 5rem);
}

.about-final-cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 4rem);
  border: 1px solid rgba(255, 222, 89, 0.22);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.78) 0%, rgba(5, 5, 10, 0.72) 45%, rgba(5, 5, 10, 0.88) 100%),
    url("../Website-Images/About/CTA-beach-party.png") center / cover no-repeat;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34);
  text-align: center;
}

.about-final-cta__panel::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 222, 89, 0.1), transparent, rgba(138, 44, 255, 0.12), transparent);
  filter: blur(2rem);
}

.about-final-cta__content {
  position: relative;
}

.about-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about-final-cta p {
  max-width: 40rem;
  margin: 1rem auto 1.8rem;
  color: var(--about-text);
  line-height: 1.65;
}

.about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.about-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 222, 89, 0.42);
  border-radius: 999px;
  color: var(--about-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-button--primary {
  border-color: var(--about-yellow);
  background: var(--about-yellow);
  color: #05050a;
}

.about-button:hover,
.about-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(255, 222, 89, 0.16);
}

.about-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 62rem) {
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    min-height: 22rem;
  }

  .about-story__visual--logo {
    min-height: 0;
    max-width: min(100%, 28rem);
    margin-inline: auto;
  }

  .about-story__visual img {
    min-height: 22rem;
  }

  .about-story__visual--logo .about-story__logo-img {
    min-height: 0;
  }

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

  .about-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-process__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2.5rem;
  }
}

@media (max-width: 47.999rem) {
  .about-page__section {
    padding-block: 4rem;
  }

  .about-breadcrumb {
    top: calc(var(--header-main-h, 4rem) + 0.75rem);
  }

  .about-hero.hero-ps {
    min-height: 40rem;
    height: 90svh;
  }

  .about-hero .hero-ps__content {
    align-items: center;
    text-align: center;
  }

  .about-hero .hero-ps__title,
  .about-hero .hero-ps__subtitle {
    margin-inline: auto;
    text-align: center;
  }

  .about-hero .hero-ps__actions,
  .about-hero__meta {
    justify-content: center;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-service-card:first-child,
  .about-service-card:nth-child(2),
  .about-service-card:nth-child(n + 3) {
    grid-column: auto;
  }

  .about-feature-grid,
  .about-chip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-process__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-process__item {
    display: grid;
    grid-template-columns: 2.8rem 1fr;
    gap: 0 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.9rem;
    text-align: left;
  }

  .about-process__item::after {
    display: none;
  }

  .about-process__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .about-process__item h3,
  .about-process__item p {
    grid-column: 2;
  }
}

@media (max-width: 31rem) {
  .about-feature-grid,
  .about-chip-grid {
    grid-template-columns: 1fr;
  }

  .about-story__badge {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .about-final-cta__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .about-story__logo-img {
    animation: none;
  }

  .about-story__orb,
  .about-story__orb--1,
  .about-story__orb--2 {
    animation: none;
    opacity: 0.55;
  }

  .about-story__orb--1 {
    transform: translate(24vw, 8%);
  }

  .about-story__orb--2 {
    transform: translate(-18vw, -6%);
  }

  .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
