/* GKS V3 — About page (Sprint 14) */
body.v3 .about-v3 {
  background: #f4f7fb;
}

body.v3 .about-v3-hero {
  position: relative;
  padding: clamp(5.5rem, 12vh, 8rem) 0 clamp(2.5rem, 5vh, 3.5rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #062a45 0%, #0a3d62 55%, #1b5c8a 100%);
}

body.v3 .about-v3-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 100% 0%, rgba(230, 57, 70, 0.22), transparent 55%);
  pointer-events: none;
}

body.v3 .about-v3-hero .container {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

body.v3 .about-v3-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

body.v3 .about-v3-hero__title {
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

body.v3 .about-v3-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.97);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

body.v3 .about-v3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

body.v3 .about-v3-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border-radius: var(--radius-lg, 1rem);
  border: 1px solid rgba(10, 61, 98, 0.1);
  box-shadow: 0 14px 40px rgba(10, 61, 98, 0.08);
}

body.v3 .about-v3-stat strong {
  display: block;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--gks-red, #e63946);
}

body.v3 .about-v3-stat span {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.75);
}

body.v3 .about-v3-block {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 4rem) 1rem;
}

body.v3 .about-v3-block h2 {
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  color: var(--gks-blue, #0a3d62);
  margin: 0 0 0.75rem;
}

body.v3 .about-v3-block p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.85);
}

body.v3 .about-v3-timeline {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem clamp(3rem, 6vh, 4rem);
}

body.v3 .about-v3-timeline h2 {
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  color: var(--gks-blue, #0a3d62);
  margin: 0 0 1.25rem;
}

body.v3 .about-v3-tl {
  display: grid;
  gap: 0.75rem;
}

body.v3 .about-v3-tl__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: var(--radius-md, 0.75rem);
  border: 1px solid rgba(10, 61, 98, 0.08);
}

body.v3 .about-v3-tl__year {
  font-weight: 800;
  color: var(--gks-red, #e63946);
}

body.v3 .about-v3-cta {
  padding: clamp(2.5rem, 5vh, 3.5rem) 1rem clamp(4rem, 8vh, 5rem);
}

body.v3 .about-v3-cta__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg, 1.25rem);
  background: linear-gradient(135deg, #062a45 0%, #0a3d62 100%);
  color: #fff;
}

body.v3 .about-v3-cta__inner h2 {
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  margin: 0 0 1rem;
}

body.v3 .about-v3-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (max-width: 640px) {
  body.v3 .about-v3-stats {
    grid-template-columns: 1fr;
  }

  body.v3 .about-v3-tl__item {
    grid-template-columns: 1fr;
  }
}

/* Philosophy accordion (shared partial) on About page */
body.v3 .about-v3 .philosophy-accordion-section {
  background: #fff;
  padding: clamp(2.5rem, 5vh, 3.5rem) 0;
  border-block: 1px solid rgba(10, 61, 98, 0.06);
}

body.v3 .about-v3 .philosophy-accordion-section .section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gks-red, #e63946);
}

body.v3 .about-v3 .philosophy-accordion-section .section-title {
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  color: var(--gks-blue, #0a3d62);
}

body.v3 .about-v3 .philosophy-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

body.v3 .about-v3 .accordion-item {
  border: 1px solid rgba(10, 61, 98, 0.1);
  border-radius: var(--radius-md, 0.75rem);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #fafcfe;
}

body.v3 .about-v3 .accordion-header {
  cursor: pointer;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.v3 .about-v3 .accordion-content {
  padding: 0 1.15rem 1rem;
  display: none;
}

body.v3 .about-v3 .accordion-content.active {
  display: block;
}

body.v3 .about-v3 .accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

body.v3 .about-v3 .accordion-arrow {
  transition: transform 0.2s ease;
  color: var(--gks-blue, #0a3d62);
}

@media (max-width: 520px) {
  body.v3 .about-v3-hero {
    padding-top: clamp(4.75rem, 16vw, 6.25rem);
  }

  body.v3 .about-v3-hero__title {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
  }

  body.v3 .about-v3-hero__lead,
  body.v3 .about-v3-block p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  body.v3 .about-v3-stat {
    padding: 1rem 0.85rem;
  }

  body.v3 .about-v3-cta__inner {
    padding: 1.5rem 1rem;
  }

  body.v3 .about-v3-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.v3 .about-v3-cta__actions .btn {
    width: 100%;
  }

  body.v3 .about-v3 .accordion-header,
  body.v3 .about-v3 .accordion-content {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
