/* =========================================================
   NUVREN - About page
   Файл: /wp-content/themes/nuvren/assets/css/about.css
   Версия файла: 1.0.0
   Автор: nuvren.com
   Назначение:
   - Стили страницы About;
   - Витрина направлений (media, web, design, systems);
   - Блоки: intro, scope, process, principles, metrics, CTA.
   ========================================================= */

/* Общий ритм страницы */
.page-about .nv-hero{
  padding-bottom: 96px;
}

.page-about .nv-panel{
  margin-top: 20px;
}

/* Hero modifier */
.page-about .nv-hero--about{
  position: relative;
}

.page-about .nv-hero--about::before{
  content:"";
  position:absolute;
  inset:-1px 0 auto 0;
  height: 100%;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(42,163,255,.16), transparent 62%),
    radial-gradient(900px 520px at 92% 18%, rgba(122,44,255,.18), transparent 60%);
  filter:saturate(120%);
}

/* Быстрые ссылки под сабтайтлом */
.nv-hero__quick{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.nv-quick-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color:#e8ecf4;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.nv-quick-chip:hover,
.nv-quick-chip:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(42,163,255,.42);
  box-shadow: 0 0 26px rgba(42,163,255,.18);
  background: rgba(255,255,255,.05);
  outline: none;
}

/* Intro */
.nv-about__logo img{
  filter: drop-shadow(0 0 18px rgba(42,163,255,.22));
  opacity: .96;
}

.nv-about__text .nv-h2{
  margin:0 0 8px;
}

.nv-about__lead{
  margin: 0 0 14px;
  color: #d6d9e0;
  line-height: 1.7;
  max-width: 820px;
}

.nv-about__bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color:#c9cfda;
  line-height: 1.75;
}
.nv-about__bullets li{ margin: 6px 0; }

/* Унифицированные заголовки блоков на About */
.nv-title-block{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.nv-subtitle-block{
  color: #bfc4cf;
  margin: 0 0 22px;
  max-width: 820px;
  line-height: 1.65;
}

/* Scope: витрина направлений */
.nv-scope{
  padding: 54px 0;
}

.nv-scope__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .nv-scope__grid{
    grid-template-columns: 1fr;
  }
}

.nv-scope-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 22px;
  min-height: 220px;
  box-shadow: 0 0 14px rgba(0,0,0,.32);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nv-scope-card:hover{
  transform: translateY(-4px);
  border-color: rgba(42,163,255,.45);
  box-shadow: 0 0 26px rgba(42,163,255,.18);
}

.nv-scope-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.nv-scope-card__title{
  margin:0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
}

.nv-scope-card__tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#e8ecf4;
  font-size: 12px;
  font-weight: 700;
  opacity: .9;
  white-space: nowrap;
}

.nv-scope-card__desc{
  margin: 0 0 12px;
  color: #c9cfda;
  line-height: 1.6;
}

.nv-scope-card__list{
  margin: 0;
  padding-left: 18px;
  color: #d6d9e0;
  line-height: 1.7;
}

.nv-scope-card__cta{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Process */
.nv-process{
  padding: 54px 0;
}

.nv-process__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px){
  .nv-process__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px){
  .nv-process__grid{
    grid-template-columns: 1fr;
  }
}

.nv-step{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nv-step:hover{
  transform: translateY(-3px);
  border-color: rgba(122,44,255,.42);
  box-shadow: 0 0 26px rgba(122,44,255,.14);
}

.nv-step__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  letter-spacing:.02em;
  margin-bottom: 10px;
}

.nv-step__title{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nv-step__text{
  margin:0;
  color:#c9cfda;
  line-height: 1.65;
}

/* Principles: поджимаем типографику */
.page-about .nv-cards{
  padding: 54px 0;
}

.page-about .nv-card h3{
  letter-spacing: .1em;
}

/* Metrics */
.page-about .nv-metrics{
  padding: 46px 0;
}

.nv-metrics__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nv-metric{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nv-metric:hover{
  transform: translateY(-3px);
  border-color: rgba(42,163,255,.45);
  box-shadow: 0 0 26px rgba(42,163,255,.16);
}

.nv-metric__val{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 0 40px rgba(42,163,255,.30);
}

.nv-metric__label{
  color: #c9cfda;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1024px){
  .nv-metrics__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .nv-metrics__grid{ grid-template-columns: 1fr; }
}

/* CTA внутри quote */
.page-about .nv-quote{
  padding: 98px 0 112px;
}

.nv-quote__actions{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .nv-scope-card,
  .nv-step,
  .nv-metric,
  .nv-quick-chip{
    transition:none !important;
  }
}
