/* ==========================================================================
   NexovaVoice — Company pages (About / Trust / Join Us)
   Loaded after styles.css + product.css; reuses their tokens & components.
   ========================================================================== */

/* ==========================================================================
   Shared page hero
   ========================================================================== */
.co-hero { position: relative; overflow: clip; padding: 148px 0 76px; }
.co-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.co-hero-inner { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.co-title {
  font-size: clamp(34px, 4.8vw, 56px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); max-width: 900px;
}
.co-lede { margin-top: 20px; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 640px; }
.co-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

.co-hero-media { position: relative; z-index: 1; margin-top: 52px; }
.co-hero-media img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow);
}
/* hero figures keep their source aspect ratio — no cropping */
.co-hero-media.is-framed { overflow: hidden; }
.co-hero-media.is-framed img { height: auto; }

/* hero stat strip */
.co-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  margin-top: 36px; list-style: none; padding: 0;
}
.co-stats li { display: grid; gap: 4px; justify-items: center; padding: 0 34px; border-right: 1px solid var(--line); }
.co-stats li:last-child { border-right: 0; }
.co-stats b { font-family: var(--display); font-size: 32px; font-weight: 700; line-height: 1.1; color: var(--ink); }
.co-stats span { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   About — vision / mission / story
   ========================================================================== */
.about-values { display: grid; gap: 22px; }
.about-value {
  display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: 32px;
  padding: 34px; border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-value:nth-child(1) { background: #f4f8fb; }
.about-value:nth-child(2) { background: #f4f8f6; }
.about-value:nth-child(3) { background: #faf7f3; }
.about-value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-value .av-kicker {
  align-self: start;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2);
}
.about-value h3 { font-size: clamp(20px, 2.2vw, 27px); line-height: 1.32; letter-spacing: -0.02em; }
.about-value .av-body { display: grid; gap: 16px; }
.about-value .av-body p { font-size: 16px; line-height: 1.7; color: var(--ink-2); }

/* ==========================================================================
   Investor logo marquee
   ========================================================================== */
.backed { background: var(--soft); }
.investor-marquee { position: relative; overflow: hidden; }
.investor-marquee::before,
.investor-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 1; pointer-events: none;
}
.investor-marquee::before { left: 0; background: linear-gradient(90deg, var(--soft) 12%, rgba(246,247,248,0)); }
.investor-marquee::after { right: 0; background: linear-gradient(270deg, var(--soft) 12%, rgba(246,247,248,0)); }
.investor-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: marquee 38s linear infinite;
}
.investor-marquee:hover .investor-track { animation-play-state: paused; }
.investor-logo {
  height: 46px; width: auto; max-width: 190px; object-fit: contain;
  opacity: 0.82; transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.investor-logo:hover { opacity: 1; transform: scale(1.04); }

/* ==========================================================================
   Recognition / awards
   ========================================================================== */
.awards-figure {
  margin: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.awards-figure img { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Trust page
   ========================================================================== */
.trust-certs { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 26px 44px; margin-top: 48px; }
.trust-cert { display: grid; place-items: center; transition: transform 0.35s var(--ease); }
.trust-cert img {
  height: 86px; width: auto; max-width: 120px; object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(12, 15, 18, 0.10));
}
.trust-cert:hover { transform: translateY(-6px); }

.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.trust-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trust-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft-2); }
.trust-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.trust-card:hover .trust-card-media img { transform: scale(1.04); }
.trust-card-body { display: grid; gap: 10px; padding: 26px; }
.trust-card-kicker {
  justify-self: start;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; background: var(--soft-2); color: var(--ink-2);
}
.trust-card h3 { font-size: 21px; }
.trust-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ==========================================================================
   Join Us page
   ========================================================================== */
.join-how { display: grid; gap: 22px; }
.join-step {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 26px;
  padding: 32px 34px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.join-step:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.join-step .js-num {
  font-family: var(--display); font-size: 34px; font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: var(--muted-2);
}
.join-step h3 { font-size: 21px; margin-bottom: 10px; }
.join-step p { font-size: 15.5px; line-height: 1.65; color: var(--muted); max-width: 640px; }

.join-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.join-tags span {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

.join-fit { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.join-fit-card { display: grid; gap: 12px; padding: 30px; border-radius: var(--radius-lg); }
.join-fit-card:nth-child(1) { background: #f4f8fb; }
.join-fit-card:nth-child(2) { background: #f4f8f6; }
.join-fit-card:nth-child(3) { background: #faf7f3; }
.join-fit-card h3 { font-size: 20px; }
.join-fit-card p { font-size: 15px; line-height: 1.65; color: var(--muted); }

.join-cta {
  display: grid; gap: 18px; justify-items: center; text-align: center;
  padding: 64px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #f8fbfb 0%, #eef7f8 100%);
}
.join-cta h2 { font-size: clamp(26px, 3.2vw, 38px); }
.join-cta p { font-size: 16.5px; color: var(--muted); max-width: 560px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-value { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .trust-grid, .join-fit { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .co-hero { padding: 126px 0 60px; }
  .co-hero-media { margin-top: 40px; }
  .co-stats li { padding: 0 22px; }
  .investor-logo { height: 38px; }
  .investor-track { gap: 48px; }
  .trust-certs { gap: 20px 30px; }
  .trust-cert img { height: 70px; }
}

@media (max-width: 680px) {
  .trust-grid, .join-fit { grid-template-columns: minmax(0, 1fr); }
  .co-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; }
  .co-stats li { padding: 0 14px; }
  .co-stats li:nth-child(odd) { border-right: 1px solid var(--line); }
  .co-stats li:nth-child(even) { border-right: 0; }
  .join-step { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 26px; }
  .join-cta { padding: 44px 22px; }
}
