/* ============================================================
   ABOUT PAGE — page-about-latest.css
   Depends on global stylesheet:
   wrap, section-white, section-cream, section-dark,
   btn-primary, btn-outline-dark, btn-dark,
   eyebrow, section-head, callout-lime, checklist, card-white, case-tag
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────────────────── */
.about-hero-block {
  background: var(--grad);
}

.about-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 48px 0;
}
@media (max-width: 768px) {
  .about-hero-inner {
    padding: 56px 20px 0;
  }
}

.about-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.about-hero-content {
  max-width: 800px;
  padding-bottom: 72px;
}
@media (max-width: 768px) {
  .about-hero-content {
    padding-bottom: 48px;
  }
}


.about-hero-h1 .accent {
  color: #3dffb0;
}

.about-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   3. STORY
   ───────────────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left body */
.about-story-body h2 {
  margin: 16px 0 20px;
}

.about-story-para {
  font-size: 17px;
  color: #5a5a72;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Right dark card */
.about-story-card {
  background: #06061a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-story-card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}

.about-story-card-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.about-story-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-story-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story-bullet-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-story-bullet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dffb0;
  flex-shrink: 0;
  margin-top: 5px;
}

.about-story-bullet-text {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   4. HOW WE WORK
   ───────────────────────────────────────────────────────── */

/* Support type cards */
.about-hww-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .about-hww-cards {
    grid-template-columns: 1fr;
  }
}

.about-hww-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 32px 28px;
}

.hww-card-default {
  border-top: 3px solid #e8e6e0;
}

.hww-card-lime {
  border-top: 3px solid #3dffb0;
}

.about-hww-card-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.hww-label-default {
  color: #2f2e2e;
}

.hww-label-lime {
  color: #26b37a;
}

.about-hww-card-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #14142b;
  margin-bottom: 12px;
}

.about-hww-card-text {
  color: #5a5a72;
  margin-bottom: 16px;
}

/* Contrast grid */
.about-contrast-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about-contrast-wrap {
    grid-template-columns: 1fr;
  }
}

.about-contrast-bad {
  background: #14142b;
  padding: 36px 32px;
}

.about-contrast-good {
  background: rgba(61, 255, 176, .1);
  border: 1px solid #26b37a;
  padding: 36px 32px;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
}

.about-contrast-col-label {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.about-contrast-col-label-lime {
  color: #26b37a;
}

.about-contrast-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.about-contrast-row:last-child {
  border-bottom: none;
}
.about-contrast-good .about-contrast-row {
  border-bottom-color: rgba(61, 255, 176, 0.3);
}

.about-contrast-row p {
  margin: 0;
}
.about-contrast-bad .about-contrast-row p {
  color: rgba(255, 255, 255, 0.8);
}
.about-contrast-good .about-contrast-row p {
  color: #000000;
}

.about-contrast-x {
  color: #ff6b6b;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.5;
}

.about-contrast-tick {
  color: #26b37a;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────
   5. TEAM
   ───────────────────────────────────────────────────────── */
.about-team-dark-wrap {
  background: #06061a;
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
}

.about-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: stretch;
}
.about-team-photo-card {
  width: calc(20% - 12px);
}
@media (max-width: 1200px) {
  .about-team-photo-card {
    width: calc(25% - 12px);
  }
}
@media (max-width: 900px) {
  .about-team-photo-card {
    width: calc((100% / 3) - 8px);
  }
}
@media (max-width: 540px) {
  .about-team-photo-card {
    width: calc((100% / 2) - 8px);
  }
}
@media (max-width: 480px) {
  .about-team-photo-card {
    width: 100%;
  }
}
/* Photo card */
.about-team-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #11112e;
}

.about-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 26, 0.85) 0%, transparent 50%);
}

.about-team-photo-info {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
}

.about-team-photo-name {
  font-weight: 700;
  color: #fff;
}
.about-team-photo-name-sm {
  font-size: 12px;
}

.about-team-photo-role {
  font-size: 12px;
  color: #3dffb0;
  margin-top: 2px;
}
.about-team-photo-role-dim {
  color: rgba(61, 255, 176, 0.7);
}

/* "Beyond Ordinary" join card */
.about-team-join-card {
  border-radius: 14px;
  background: #3dffb0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-team-join-title {
  font-size: 15px;
  font-weight: 800;
  color: #06061a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-team-join-body {
  font-size: 12px;
  color: rgba(6, 6, 26, 0.7);
  line-height: 1.55;
  margin: 0 0 8px;
}

.about-team-join-sub {
  font-size: 12px;
  color: #06061a;
  font-weight: 600;
  margin: 0;
}

.about-team-join-interested {
  font-size: 12px;
  color: rgba(6, 6, 26, 0.6);
  margin-bottom: 3px;
}

.about-team-join-email {
  font-size: 12px;
  font-weight: 700;
  color: #06061a;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(6, 6, 26, 0.3);
}
.about-team-join-email:hover {
  border-bottom-color: #06061a;
}

/* ─────────────────────────────────────────────────────────
   6. APPROACH  (dark section, 2×2 panel grid)
   ───────────────────────────────────────────────────────── */
.about-approach-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.about-approach-h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.about-approach-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .about-approach-grid {
    grid-template-columns: 1fr;
  }
}

.about-approach-card {
  background: #11112e;
  padding: 40px 36px;
}

/* Corner-radius matching screenshot — only outer corners rounded */
.about-approach-pos-0 { border-radius: 14px 0 0 0; }
.about-approach-pos-1 { border-radius: 0 14px 0 0; }
.about-approach-pos-2 { border-radius: 0 0 0 14px; }
.about-approach-pos-3 { border-radius: 0 0 14px 0; }

@media (max-width: 768px) {
  .about-approach-pos-0,
  .about-approach-pos-1,
  .about-approach-pos-2,
  .about-approach-pos-3 {
    border-radius: 12px;
  }
}

.about-approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 255, 176, .1);
  border: 1px solid rgba(61, 255, 176, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-approach-card-h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-approach-card-p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────
   7. TECH STACK
   ───────────────────────────────────────────────────────── */
.about-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .about-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .about-tech-grid {
    grid-template-columns: 1fr;
  }
}

.about-tech-col-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f2e2e;
  margin-bottom: 16px;
}

.about-tech-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-tech-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-tech-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

.about-tech-name {
  font-weight: 600;
  color: #14142b;
}

/* ─────────────────────────────────────────────────────────
   8. CASE STUDIES
   ───────────────────────────────────────────────────────── */
.about-cases-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.about-case-row {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
}
@media (max-width: 768px) {
  .about-case-row {
    grid-template-columns: 1fr;
  }
}

/* Meta column (left) */
.about-case-meta {
  padding: 30px 24px;
  border-right: 1px solid #f0eeea;
  background: #f9f9f9;
}

.about-case-number {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 10px 0 14px;
}

.about-case-client {
  font-size: 16px;
  font-weight: 800;
  color: #14142b;
  line-height: 1.3;
}

/* Body column (middle) */
.about-case-body {
  padding: 30px 32px;
}

.about-case-block {
  margin-bottom: 16px;
}
.about-case-block:last-child {
  margin-bottom: 0;
}

.about-case-block-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5a72;
  margin-bottom: 8px;
}

.about-case-block p {
  color: #5a5a72;
  margin: 0;
}

/* Result column (right) */
.about-case-result {
  background: #06061a;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-case-result {
    padding: 24px;
  }
}

.about-case-result-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: rgba(61, 255, 176, 1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-case-result-headline {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-case-result-sub {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   9. GOOGLE REVIEWS
   ───────────────────────────────────────────────────────── */
.about-reviews-wrap {
  border-top: 1px solid #e8e6e0;
  padding-top: 56px;
}

.about-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.about-reviews-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-reviews-heading-text {
  font-size: 18px;
  font-weight: 800;
  color: #14142b;
  letter-spacing: -0.01em;
}

.about-reviews-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-reviews-stars {
  color: #fbbc05;
  font-size: 20px;
  letter-spacing: 2px;
}

.about-reviews-score {
  font-size: 26px;
  font-weight: 800;
  color: #14142b;
  letter-spacing: -0.03em;
}

.about-reviews-link {
  font-size: 13.5px;
  color: #5a5a72;
  text-decoration: none;
  border-bottom: 1px solid #e8e6e0;
}
.about-reviews-link:hover {
  color: #14142b;
  border-bottom-color: #14142b;
}

.about-reviews-leave-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e8e6e0;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #14142b;
  text-decoration: none;
  transition: border-color 0.15s;
}
.about-reviews-leave-btn:hover {
  border-color: #14142b;
}

.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .about-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.about-review-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 28px 24px;
}

.about-review-stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.about-review-quote {
  font-size: 15px;
  color: #14142b;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.about-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0eeea;
  padding-top: 16px;
}

.about-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #06061a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #3dffb0;
  flex-shrink: 0;
}

.about-review-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #14142b;
}

.about-review-role {
  font-size: 14px;
  color: #5a5a72;
}

/* ─────────────────────────────────────────────────────────
   10. RESOLVE GROUP
   ───────────────────────────────────────────────────────── */
.about-rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .about-rg-grid {
    grid-template-columns: 1fr;
  }
}

.about-rg-card {
  border-radius: 14px;
  padding: 24px 22px;
}

/* Active card = lime background */
.about-rg-active {
  background: #3dffb0;
}

/* Default dark card */
.about-rg-dark {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Span 2 columns */
.about-rg-span2 {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .about-rg-span2 {
    grid-column: span 1;
  }
}

.about-rg-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-rg-tag-active  { color: rgba(6, 6, 26, 0.8); }
.about-rg-tag-default { color: rgba(255, 255, 255, 0.8); }

.about-rg-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.about-rg-title-active  { color: #06061a; }
.about-rg-title-default { color: #fff; }

.about-rg-text {
  font-size: 14px;
  line-height: 1.6;
}
.about-rg-text-active  { color: #444; }
.about-rg-text-default { color: rgba(255, 255, 255, 0.8); }

/* ─────────────────────────────────────────────────────────
   11. CTA BAND
   ───────────────────────────────────────────────────────── */
.about-cta-band {
  background: #3dffb0;
  padding: 80px 48px;
  text-align: center;
}

.about-cta-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.about-cta-band h2 {
  color: #06061a;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.about-cta-band p {
  color: rgba(6, 6, 26, 0.65);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width:991px) {
  .about-approach-card {
    padding: 25px;
  }
  .about-case-meta,
  .about-case-body,
  .about-case-result,
  .wps-support-card {
    padding: 20px;
  }
}
@media (max-width:767px) {
    h3.about-case-client {
      margin: 0;
  }
  .about-case-number {
      margin: 5px 0;
  }
  .about-reviews-wrap {
    padding-top: 30px;
  }
  .about-cases-list {
    margin-bottom: 30px;
  }
  .about-reviews-header {
    margin-bottom: 20px;
  }
  .about-review-card {
    padding: 20px;
  }
  .about-review-quote {
    margin-bottom: 10px;
  }
  .about-review-author {
    padding-top: 10px;
  }
  .about-rg-card {
    padding: 20px;
  }
  .about-team-photo-card .about-team-photo {
    height: 450px;
    width: 100%;
    object-fit: cover;
  }
  .about-team-dark-wrap {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width:500px) {
  .about-team-photo-card .about-team-photo {
    height: 300px;
  }
}