:root {
  --about-navy: #071a2b;
  --about-orange: #f68a0a;
  --about-muted: #667085;
  --about-border: #e6eaf0;
  --about-shadow: 0 16px 40px rgba(7, 26, 43, .075);
}

.about-page-body { background: #fff; }
.about-page-body main { overflow: hidden; }
.about-page-body h1,
.about-page-body h2,
.about-page-body h3 { color: var(--about-navy); }
.about-page-body p { color: var(--about-muted); }

.about-eyebrow {
  color: var(--about-orange);
  font-size: .79rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.about-eyebrow span { opacity: .7; padding: 0 .18rem; }
.about-section-heading { max-width: 820px; margin: 0 auto 2.65rem; }
.about-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 700;
}
.about-section-heading p { margin: .8rem auto 0; max-width: 680px; font-size: .96rem; }

/* Hero */
.about-hero {
  padding: 3.65rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  border-bottom: 1px solid #eef1f4;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(2.4rem, 5vw, 5.25rem);
  align-items: center;
}
.about-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.85rem, 4.25vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 700;
}
.about-hero-copy > p {
  max-width: 650px;
  margin: 1.2rem 0 1.7rem;
  font-size: 1.03rem;
  line-height: 1.72;
}
.about-hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.about-hero-actions .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .82rem 1.3rem;
  border-radius: 5px;
}
.about-btn-outline {
  color: var(--about-navy);
  background: #fff;
  border: 1px solid #9aa7b5;
}
.about-btn-outline:hover,
.about-btn-outline:focus {
  color: #fff;
  background: var(--about-navy);
  border-color: var(--about-navy);
}
.about-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px 26px 62px 26px;
  box-shadow: var(--about-shadow);
  background: #f5f7f9;
}
.about-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--about-orange);
}
.about-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

/* Approach */
.about-approach { padding: 5.1rem 0 4.7rem; }
.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(430px, .96fr) minmax(0, 1.04fr);
  gap: clamp(2.6rem, 5vw, 5.4rem);
  align-items: center;
}
.about-approach-media { position: relative; padding-bottom: 0; }
.about-approach-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--about-shadow);
  display: block;
}
.about-approach-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.about-approach-copy > p { font-size: .98rem; line-height: 1.72; margin-bottom: 1.25rem; }
.about-tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .68rem; }
.about-tick-list li { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; color: #344054; font-size: .9rem; line-height: 1.55; }
.about-tick-list i { color: var(--about-orange); font-size: 1rem; margin-top: .12rem; }

/* Journey */
.about-journey {
  padding: 4.5rem 0 4.8rem;
  background: #fbfcfd;
  border-top: 1px solid #eef1f4;
  border-bottom: 1px solid #eef1f4;
}
.about-journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}
.about-journey-grid::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 9%;
  right: 9%;
  border-top: 1px solid #dfe5ec;
}
.about-journey-item { position: relative; z-index: 2; text-align: center; padding: 0 .55rem; }
.about-journey-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--about-orange);
}
.about-journey-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border: 1.8px solid var(--about-orange);
  border-radius: 50%;
  background: #fff;
  color: var(--about-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 20px rgba(7,26,43,.035);
}
.about-journey-item h3 { font-size: .96rem; font-weight: 700; line-height: 1.35; margin-bottom: .45rem; }
.about-journey-item p { font-size: .75rem; line-height: 1.58; margin: 0 auto; max-width: 220px; }

/* Coverage */
.about-coverage { padding: 4.8rem 0 2.2rem; }
.about-coverage-card {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  border: 1px solid var(--about-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,26,43,.055);
}
.about-coverage-copy { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.about-coverage-copy h2,
.about-keys-copy h2 { font-size: clamp(2rem, 3vw, 2.85rem); line-height: 1.12; letter-spacing: -.04em; font-weight: 700; margin: 0 0 .9rem; }
.about-coverage-copy > p { font-size: .94rem; line-height: 1.68; margin-bottom: 1.15rem; }
.about-coverage-points { list-style: none; padding: 0; margin: 0 0 1.35rem; display: grid; gap: .65rem; }
.about-coverage-points li { display: grid; grid-template-columns: 22px 1fr; gap: .65rem; color: #344054; font-size: .84rem; line-height: 1.5; }
.about-coverage-points i { color: var(--about-orange); }
.about-coverage-copy .btn { align-self: flex-start; }
.about-coverage-map { min-height: 390px; background: #fbfbfb; display: flex; align-items: center; justify-content: center; padding: .5rem; }
.about-coverage-map img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Keys */
.about-keys { padding: 1.5rem 0 4.8rem; }
.about-keys-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  border: 1px solid var(--about-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,26,43,.055);
}
.about-keys-media { min-height: 390px; }
.about-keys-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-keys-copy { padding: clamp(2rem, 4vw, 3.35rem); display: flex; flex-direction: column; justify-content: center; }
.about-keys-copy > p { font-size: .92rem; line-height: 1.65; margin-bottom: 1.1rem; }
.about-key-options { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.35rem; row-gap: .45rem; align-items: center; margin-bottom: 1.05rem; }
.about-key-options > div { display: grid; grid-template-columns: 20px 1fr; gap: .55rem; color: #344054; font-size: .82rem; line-height: 1.45; }
.about-key-options i { color: var(--about-orange); }
.about-note { font-size: .73rem !important; color: #7b8798 !important; margin-bottom: 0 !important; }

/* Why choose */
.about-why { padding: 4.6rem 0 4.9rem; border-top: 1px solid #eef1f4; }
.about-why .about-section-heading { margin-bottom: 2.15rem; }
.about-why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; }
.about-why-item { text-align: center; padding: .35rem 1.25rem; border-right: 1px solid #e4e8ee; }
.about-why-item:last-child { border-right: 0; }
.about-why-item > i { color: var(--about-orange); font-size: 2rem; line-height: 1; display: inline-block; margin-bottom: .8rem; }
.about-why-item h3 { font-size: .9rem; font-weight: 700; line-height: 1.35; min-height: 2.45em; margin-bottom: .5rem; }
.about-why-item p { font-size: .72rem; line-height: 1.58; margin: 0 auto; max-width: 220px; }

/* Homepage statistics component reused unchanged on About, with About-page spacing only. */
.about-page-body .sq-stats-section { padding-top: 3.4rem; padding-bottom: 3.4rem; }

/* Preserve the shared service-page CTA/footer colours against About page heading/paragraph defaults. */
.about-page-body .sq-services-cta { margin-top: 0; }
.about-page-body .sq-services-cta h2 { color: #fff; }
.about-page-body .sq-services-cta p { color: rgba(255,255,255,.82); }
.about-page-body .sq-footer h3 { color: #fff; }
.about-page-body .sq-footer p,
.about-page-body .sq-footer a,
.about-page-body .sq-footer span { color: rgba(255,255,255,.74); }
.about-page-body .sq-footer a:hover { color: var(--about-orange); }
.about-page-body .sq-footer-shortcuts a,
.about-page-body .sq-footer-contact i,
.about-page-body .sq-footer-quicklinks i,
.about-page-body .sq-footer-services-list i { color: var(--about-orange); }

@media (max-width: 1199.98px) {
  .about-hero-grid { grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); gap: 2.6rem; }
  .about-hero-copy h1 { font-size: clamp(2.8rem, 4.6vw, 4rem); }
  .about-approach-grid { grid-template-columns: minmax(380px, .9fr) 1.1fr; gap: 3rem; }
  .about-journey-item { padding: 0 .3rem; }
  .about-journey-item p { font-size: .71rem; }
  .about-coverage-card { grid-template-columns: minmax(300px, .78fr) 1.22fr; }
  .about-why-item { padding-left: .8rem; padding-right: .8rem; }
}

@media (max-width: 991.98px) {
  .about-hero { padding: 2.8rem 0 3.2rem; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-copy { max-width: 760px; }
  .about-hero-media { width: 100%; max-width: 820px; }
  .about-hero-media img { aspect-ratio: 16 / 9; }
  .about-approach { padding: 4rem 0; }
  .about-approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-approach-media { max-width: 820px; width: 100%; padding-bottom: 0; }
  .about-approach-main { aspect-ratio: 16 / 10; }
  .about-journey-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem 1rem; }
  .about-journey-grid::before { display: none; }
  .about-journey-item::after { display: none; }
  .about-coverage-card { grid-template-columns: 1fr; }
  .about-coverage-map { min-height: 0; aspect-ratio: 845 / 705; padding: 0; border-top: 1px solid var(--about-border); }
  .about-keys-card { grid-template-columns: 1fr; }
  .about-keys-media { min-height: 0; aspect-ratio: 16 / 9; }
  .about-why-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.8rem 0; }
  .about-why-item:nth-child(3) { border-right: 0; }
  .about-why-item:nth-child(n+4) { border-top: 1px solid #e4e8ee; padding-top: 1.6rem; }
}

@media (max-width: 767.98px) {
  .about-hero { padding: 2.1rem 0 2.5rem; }
  .about-eyebrow { font-size: .72rem; }
  .about-hero-copy h1 { font-size: clamp(2.45rem, 10.5vw, 3.45rem); }
  .about-hero-copy > p { font-size: .97rem; line-height: 1.62; margin: 1rem 0 1.35rem; }
  .about-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .about-hero-actions .btn { width: 100%; padding: .8rem .9rem; }
  .about-hero-media { border-radius: 16px 16px 34px 16px; }
  .about-approach { padding: 3.5rem 0 3.3rem; }
  .about-approach-copy h2,
  .about-coverage-copy h2,
  .about-keys-copy h2 { font-size: clamp(1.85rem, 7.8vw, 2.45rem); }
  .about-journey { padding: 3.5rem 0; }
  .about-section-heading { margin-bottom: 2rem; }
  .about-section-heading h2 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .about-journey-grid { grid-template-columns: 1fr 1fr; }
  .about-journey-item:last-child { grid-column: 1 / -1; max-width: 330px; margin: 0 auto; }
  .about-coverage { padding: 3.5rem 0 1.4rem; }
  .about-coverage-copy, .about-keys-copy { padding: 1.6rem 1.35rem; }
  .about-coverage-map { aspect-ratio: auto; min-height: 360px; }
  .about-keys { padding-bottom: 3.4rem; }
  .about-key-options { grid-template-columns: 1fr; }
  .about-why { padding: 3.5rem 0; }
  .about-why-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .about-why-item { border-bottom: 1px solid #e4e8ee; padding: 1.35rem .9rem; }
  .about-why-item:nth-child(even) { border-right: 0; }
  .about-why-item:nth-child(3) { border-right: 1px solid #e4e8ee; }
  .about-why-item:nth-child(n+4) { border-top: 0; padding-top: 1.35rem; }
  .about-why-item:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
}

@media (max-width: 479.98px) {
  .about-hero-actions { grid-template-columns: 1fr; }
  .about-hero-media img { aspect-ratio: 4 / 3; }
  .about-approach-media { padding-bottom: 0; }
  .about-approach-main { aspect-ratio: 4 / 3; }
  .about-journey-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-journey-item:last-child { grid-column: auto; }
  .about-journey-icon { width: 68px; height: 68px; font-size: 1.5rem; }
  .about-journey-item p { font-size: .78rem; max-width: 290px; }
  .about-coverage-map { min-height: 310px; }
  .about-keys-media { aspect-ratio: 4 / 3; }
  .about-why-grid { grid-template-columns: 1fr; }
  .about-why-item,
  .about-why-item:nth-child(3),
  .about-why-item:nth-child(even),
  .about-why-item:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid #e4e8ee; }
  .about-why-item:last-child { border-bottom: 0; }
  .about-why-item h3 { min-height: 0; }
}
