.about-page {
  overflow: clip;
  background: #fff;
}

.about-page .about-section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.about-page .about-section-soft {
  background: hsl(var(--muted));
}

.about-page .about-section-heading {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.about-page .about-section-heading h2 {
  color: hsl(var(--brand-blue-deep));
  letter-spacing: -0.025em;
}

.about-page .about-section-heading p {
  font-size: 1rem;
  line-height: 1.75;
}

body[data-page-variant="about"] main.about-page > section.about-hero {
  isolation: isolate;
  min-height: 0;
  background:
    radial-gradient(circle at 88% 18%, hsl(var(--brand-blue) / 0.5), transparent 25rem),
    linear-gradient(118deg, hsl(var(--brand-blue)) 0%, hsl(var(--brand-blue-deep)) 78%) !important;
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 0.3rem;
  background: hsl(var(--brand-red));
}

.about-hero-inner {
  display: flex;
  align-items: center;
  min-height: 0;
  padding-block: 4rem;
}

.about-hero-copy {
  padding-block: 1rem;
}

.about-hero .about-eyebrow {
  border: 1px solid rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.1);
  letter-spacing: 0.11em;
}

.about-hero .about-hero-title {
  max-width: 42rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-hero .about-hero-subtitle {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.about-button {
  min-height: 3.15rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgb(2 31 86 / 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-button:hover {
  transform: translateY(-2px);
}

.about-button:focus-visible,
.about-page .about-service-grid a:focus-visible {
  outline: 3px solid hsl(var(--brand-red));
  outline-offset: 3px;
}

.about-button-primary {
  background: hsl(var(--brand-red));
  color: #fff;
  box-shadow: 0 16px 34px hsl(var(--brand-red) / 0.24);
}

.about-button-primary:hover {
  background: hsl(var(--brand-red-dark));
  color: #fff;
}

.about-button-blue {
  background: hsl(var(--brand-blue));
  color: #fff;
}

.about-button-blue:hover {
  background: hsl(var(--brand-blue-deep));
  color: #fff;
}

.about-button-whatsapp {
  box-shadow: 0 14px 30px rgb(15 157 79 / 0.2);
}

.about-story-grid {
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 72rem;
}

.about-story-media {
  position: relative;
  min-height: 28rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1.35rem;
  background: hsl(var(--brand-blue-soft));
  box-shadow: 0 24px 60px rgb(2 31 86 / 0.13);
}

.about-story-media::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 4rem;
  height: 0.3rem;
  border-radius: 999px;
  background: hsl(var(--brand-red));
  box-shadow: 0 0 0 0.45rem rgb(255 255 255 / 0.85);
}

.about-story-image {
  display: block;
  min-height: 28rem;
  aspect-ratio: 4 / 3;
  object-position: center;
}

.about-story-copy h2 {
  color: hsl(var(--brand-blue-deep));
  letter-spacing: -0.025em;
}

.about-story-copy > p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-checklist {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  min-height: 2.75rem;
  padding-block: 0.65rem;
  border-top: 1px solid hsl(var(--border));
}

.about-checklist li:last-child {
  border-bottom: 1px solid hsl(var(--border));
}

.about-checklist svg {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  color: hsl(var(--brand-red));
}

.about-checklist span {
  line-height: 1.6;
}

.about-mission-card {
  position: relative;
  max-width: 60rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-color: hsl(var(--brand-blue-soft));
  border-left: 0;
  box-shadow: 0 20px 50px rgb(2 31 86 / 0.09);
}

.about-mission-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  background: hsl(var(--brand-red));
}

.about-mission-card::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: hsl(var(--brand-blue-soft));
}

.about-mission-card h2,
.about-mission-card p {
  position: relative;
  z-index: 1;
}

.about-mission-card h2 {
  color: hsl(var(--brand-blue-deep));
  letter-spacing: -0.025em;
}

.about-mission-card p {
  max-width: 48rem;
  margin-bottom: 0;
  line-height: 1.8;
}

.about-benefit-grid {
  align-items: stretch;
  max-width: 70rem;
}

.about-benefit-card {
  position: relative;
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  overflow: hidden;
  border-color: hsl(var(--border));
  background: #fff;
  box-shadow: 0 12px 34px rgb(2 31 86 / 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.22rem;
  background: hsl(var(--brand-red));
  opacity: 0;
  transition: opacity 180ms ease;
}

.about-benefit-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--brand-blue) / 0.25);
  box-shadow: 0 20px 44px rgb(2 31 86 / 0.11);
}

.about-benefit-card:hover::before {
  opacity: 1;
}

.about-benefit-card > div:first-child {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  border: 1px solid hsl(var(--brand-blue-soft));
  background: hsl(var(--brand-blue-soft));
  color: hsl(var(--brand-blue));
}

.about-benefit-card h3 {
  color: hsl(var(--brand-blue-deep));
  line-height: 1.35;
}

.about-benefit-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.about-trust-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 72rem;
  gap: 0;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 20px 48px rgb(2 31 86 / 0.08);
}

.about-trust-strip .about-stat {
  display: flex;
  min-width: 0;
  min-height: 9.5rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-trust-strip .about-stat + .about-stat {
  border-left: 1px solid hsl(var(--border));
}

.about-trust-strip .about-stat > div:first-child {
  color: hsl(var(--brand-blue-deep));
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.about-trust-strip .about-stat > div:last-child {
  margin-top: 0.45rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

.about-service-grid {
  max-width: 70rem;
}

.about-service-grid > a {
  min-height: 4.5rem;
  padding: 1rem 1.15rem;
  border-color: hsl(var(--border));
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 8px 24px rgb(2 31 86 / 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.about-service-grid > a:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--brand-blue) / 0.28);
  background: hsl(var(--brand-blue-soft) / 0.55);
  box-shadow: 0 14px 30px rgb(2 31 86 / 0.09);
}

.about-service-grid > a svg {
  color: hsl(var(--brand-red));
}

.about-service-grid > a span {
  color: hsl(var(--brand-blue-deep));
  line-height: 1.45;
}

.about-herowash-card {
  position: relative;
  max-width: 64rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
  border-color: hsl(var(--brand-blue) / 0.25);
  background:
    radial-gradient(circle at 92% 12%, hsl(var(--brand-blue) / 0.7), transparent 18rem),
    hsl(var(--brand-blue-deep));
  box-shadow: 0 24px 56px rgb(2 31 86 / 0.18);
}

.about-herowash-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: hsl(var(--brand-red));
}

.about-herowash-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.1);
}

.about-herowash-icon svg {
  color: #fff;
}

.about-herowash-copy,
.about-herowash-card > a {
  position: relative;
  z-index: 1;
}

.about-page .about-herowash-card .about-herowash-copy h2 {
  color: #fff !important;
}

.about-herowash-copy p {
  color: rgb(255 255 255 / 0.78);
}

.about-button-light {
  border: 1px solid rgb(255 255 255 / 0.8);
  background: #fff;
  color: hsl(var(--brand-blue));
}

.about-button-light:hover {
  background: hsl(var(--brand-blue-soft));
  color: hsl(var(--brand-blue-deep));
}

.about-method-grid {
  position: relative;
  max-width: 72rem;
}

.about-method-step {
  position: relative;
  z-index: 1;
  min-height: 11rem;
  border-color: hsl(var(--border));
  background: #fff;
  box-shadow: 0 10px 28px rgb(2 31 86 / 0.06);
}

.about-method-step > div:first-child {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--brand-blue));
  box-shadow: 0 0 0 0.45rem hsl(var(--brand-blue-soft));
}

.about-method-step h3 {
  color: hsl(var(--brand-blue-deep));
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-realisations-card {
  max-width: 50rem;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  border: 1px solid hsl(var(--brand-blue-soft));
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 18px 46px rgb(2 31 86 / 0.08);
}

.about-realisations-card h2 {
  color: hsl(var(--brand-blue-deep));
}

.about-realisations-card p {
  line-height: 1.75;
}

body[data-page-variant="about"] main.about-page > section.about-final-cta {
  isolation: isolate;
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 18% 110%, hsl(var(--brand-blue) / 0.7), transparent 26rem),
    hsl(var(--brand-blue-deep)) !important;
}

.about-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 0.3rem;
  background: hsl(var(--brand-red));
}

.about-final-cta h2 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about-final-cta p {
  line-height: 1.75;
}

.about-button-outline {
  box-shadow: none;
}

@media (min-width: 1024px) {
  .about-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-method-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 3.85rem;
    left: calc(50% + 1.5rem);
    width: calc(100% + 1.5rem);
    height: 1px;
    background: hsl(var(--brand-blue) / 0.22);
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }

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

@media (max-width: 767px) {
  .about-page .about-section {
    padding-block: 3.75rem;
  }

  .about-hero,
  .about-hero-inner {
    min-height: 0;
  }

  .about-hero-inner {
    padding-block: 4rem;
  }

  .about-hero .about-hero-title {
    max-width: 21rem;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .about-hero .about-hero-subtitle {
    max-width: 31rem;
    font-size: 1rem;
  }

  .about-story-media,
  .about-story-image {
    min-height: 20rem;
  }

  .about-story-grid {
    gap: 2.25rem;
  }

  .about-mission-card::after {
    width: 9rem;
    height: 9rem;
  }

  .about-benefit-card {
    min-height: 0;
  }

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

  .about-trust-strip .about-stat {
    min-height: 8.25rem;
  }

  .about-trust-strip .about-stat:nth-child(odd) {
    border-left: 0;
  }

  .about-trust-strip .about-stat:nth-child(n + 3) {
    border-top: 1px solid hsl(var(--border));
  }

  .about-trust-strip .about-stat:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .about-herowash-card {
    align-items: flex-start;
  }

  .about-herowash-card .about-button {
    width: 100%;
  }

  .about-method-step {
    min-height: 0;
    padding: 1.25rem;
  }
}

@media (max-width: 639px) {
  .about-hero-actions,
  .about-final-actions {
    width: 100%;
  }

  .about-hero-actions .about-button,
  .about-final-actions .about-button,
  .about-realisations-card .about-button {
    width: 100%;
  }

  .about-story-media,
  .about-story-image {
    min-height: 17rem;
    aspect-ratio: 4 / 3;
  }

  .about-benefit-grid {
    gap: 1rem;
  }

  .about-benefit-card {
    padding: 1.5rem;
  }

  .about-service-grid > a {
    min-height: 4rem;
  }

  .about-realisations-card {
    padding-inline: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-button,
  .about-benefit-card,
  .about-benefit-card::before,
  .about-service-grid > a {
    transition: none;
  }

  .about-button:hover,
  .about-benefit-card:hover,
  .about-service-grid > a:hover {
    transform: none;
  }
}
