/* =========================================================
   CDO Global · /projects/{slug}/ — карточка проекта
   Dark theme · Manrope · Lime accent
   v=dark5
   ========================================================= */

:root {
  --bg-1: #0A0A0F;
  --bg-2: #12121A;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.10);
  --text: #F2F2F5;
  --text-muted: rgba(242, 242, 245, 0.62);
  --text-dim: rgba(242, 242, 245, 0.42);
  --lime: rgb(116, 212, 20);
  --lime-soft: rgba(116, 212, 20, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ---------- Base ---------- */
body.project-page {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
}

.project-page .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Hero ---------- */
.project-hero {
  position: relative;
  padding: 56px 0 32px;
  overflow: hidden;
}
.project-hero .hero-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.project-hero .container { position: relative; z-index: 1; }

.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color .15s; }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs .sep { opacity: .4; }
.breadcrumbs .current { color: var(--text); }

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.project-hero-main { min-width: 0; }

.hero-logo {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 72px;
  min-width: 120px;
}
.hero-logo img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.project-title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--text);
}

.project-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 70ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-pills .pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}
.hero-pills .pill.is-lime {
  background: var(--lime-soft);
  border-color: rgba(116, 212, 20, 0.3);
  color: var(--lime);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  opacity: .5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.answer-first {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 900px;
}

/* ---------- Buttons ---------- */
.project-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.project-page .btn-primary {
  background: var(--lime);
  color: #0A0A0F;
}
.project-page .btn-primary:hover { transform: translateY(-1px); background: #8de834; }
.project-page .btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.project-page .btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.project-page .btn-block { width: 100%; }

/* ---------- Glass card ---------- */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---------- Passport (sticky on desktop) ---------- */
.project-passport {
  position: sticky;
  top: 24px;
  align-self: start;
}
.passport-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.passport-dl {
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.passport-dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font-size: 14px;
  align-items: start;
}
.passport-dl dt {
  color: var(--text-dim);
  font-weight: 500;
}
.passport-dl dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

/* ---------- Anchor nav (sticky) ---------- */
.anchor-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0 0;
}
.anchor-nav .container { padding: 0; }
.anchor-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-nav ul::-webkit-scrollbar { display: none; }
.anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.anchor-nav a:hover { color: var(--text); }
.anchor-nav a.is-active { color: var(--lime); border-bottom-color: var(--lime); }

/* ---------- Body grid ---------- */
.project-body { padding: 56px 0 96px; }
.project-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
.project-body-main { min-width: 0; }

.project-body section {
  margin-bottom: 56px;
  scroll-margin-top: 80px;
}
.project-body section:last-child { margin-bottom: 0; }
.project-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  line-height: 1.15;
}
.project-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.project-body p { margin: 0 0 14px; color: var(--text-muted); }
.project-body .lead { color: var(--text); font-size: 17px; }

/* ---------- Metrics ---------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.metric-card {
  padding: 24px 22px;
  text-align: left;
}
.metric-num {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- Lists ---------- */
.bullet-list, .check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullet-list li, .check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.55;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 700;
  font-size: 16px;
}

/* ---------- Solution components ---------- */
.solution-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* ---------- Timeline (stages) ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--border) 100%);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--lime);
}
.timeline-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.result-card {
  padding: 20px;
}
.result-card p { color: var(--text); margin: 0; }

/* ---------- Quote ---------- */
.quote-block {
  position: relative;
  padding: 32px 36px;
  border-left: 3px solid var(--lime);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.quote-author strong { color: var(--text); font-weight: 600; }
.quote-author span { color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Lightbox ---------- */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 5, 8, 0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Products in card ---------- */
.products-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.product-meta-card {
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color .15s, transform .15s;
}
.product-meta-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}
.product-meta-card h3 {
  color: var(--lime);
  margin-bottom: 8px;
}
.product-meta-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- CTA section ---------- */
.cta-band {
  position: relative;
  padding: 88px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-band .cta-glow {
  position: absolute;
  left: -160px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cta-text .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.cta-text h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.cta-text p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.cta-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.cta-contacts a { color: var(--lime); text-decoration: none; }
.cta-contacts a:hover { text-decoration: underline; }
.cta-contacts strong { color: var(--text); font-weight: 600; margin-right: 4px; }

.cta-form {
  display: grid;
  gap: 14px;
}
.cta-form .field {
  display: grid;
  gap: 6px;
}
.cta-form .field span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.form-policy {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}
.form-success {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--lime-soft);
  color: var(--lime);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* ---------- Related ---------- */
.related-projects {
  padding: 72px 0 96px;
  border-top: 1px solid var(--border);
}
.related-projects .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.related-projects .section-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s;
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}
.project-card .card-logo {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 16px;
  font-size: 16px;
}
.project-card .card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}
.project-card .card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.project-card .card-tag {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.project-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.project-card .card-year { color: var(--text-dim); }
.project-card .card-more { color: var(--lime); font-weight: 500; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--lime);
  color: #0A0A0F;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ---------- Loading ---------- */
.loading-text { color: var(--text-muted); font-style: italic; }

/* ---------- Eyebrow & section title ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .project-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-passport {
    position: static;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .project-hero { padding: 32px 0 24px; }
  .project-hero .container { padding: 0 20px; }
  .project-body { padding: 40px 0 64px; }
  .project-body section { margin-bottom: 40px; }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .quote-block { padding: 24px 20px; }
  .quote-block blockquote { font-size: 17px; }
  .cta-band { padding: 56px 0; }
  .related-projects { padding: 48px 0 64px; }
  .passport-dl > div { grid-template-columns: 100px 1fr; }
  .anchor-nav ul { padding: 0 20px; }
  .metric-num { font-size: 32px; }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   v=dark6 — Новые блоки: Effects, Roles, Specs, FAQ, Glossary, Integrations
   ========================================================= */

/* Effects */
.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.effect-card {
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid rgba(116, 212, 20, 0.18);
  background: rgba(116, 212, 20, 0.04);
}
.effect-value {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--lime, #74D414);
  margin-bottom: 6px;
}
.effect-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted, #B8B8B8);
}

/* Role benefits */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.role-card {
  padding: 18px 18px;
  border-radius: 12px;
  border-left: 3px solid var(--lime, #74D414);
}
.role-name {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime, #74D414);
  margin-bottom: 8px;
}
.role-value {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text, #ECECEC);
}

/* Specs / Glossary dl */
.specs-dl,
.glossary-dl {
  padding: 22px 24px;
  border-radius: 14px;
  margin: 0;
}
.specs-dl > div,
.glossary-dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.specs-dl > div:last-child,
.glossary-dl > div:last-child {
  border-bottom: none;
}
.specs-dl dt,
.glossary-dl dt {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted, #B8B8B8);
  letter-spacing: 0.01em;
}
.specs-dl dd,
.glossary-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text, #ECECEC);
}

/* Integrations */
.integrations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.timeline-note {
  font-size: 15px;
  color: var(--text, #ECECEC);
  margin-top: 8px;
}
.timeline-note strong {
  color: var(--lime, #74D414);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(116, 212, 20, 0.35);
  background: rgba(116, 212, 20, 0.03);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text, #ECECEC);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--lime, #74D414);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '–';
}
.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #D0D0D0);
}

/* Responsive */
@media (max-width: 720px) {
  .specs-dl > div,
  .glossary-dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .effect-value { font-size: 19px; }
  .faq-item summary { font-size: 15px; padding-right: 40px; }
}

/* ====================================================================
   Iteration 3 — SEO/GEO sections (v=dark12)
   ==================================================================== */

/* Trust signals — чипы под answer-first */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 8px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(116, 212, 20, 0.08);
  color: var(--lime, #74D414);
  border: 1px solid rgba(116, 212, 20, 0.3);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Role TL;DR tabs */
.role-tldr {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}
.role-tldr-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted, #B0B0B5);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.role-tldr-tab:hover {
  border-color: var(--lime, #74D414);
  color: #fff;
}
.role-tldr-tab.is-active {
  background: var(--lime, #74D414);
  color: #0A0A0F;
  border-color: var(--lime, #74D414);
}
.role-tldr-panels {
  position: relative;
}
.role-tldr-panel {
  display: none;
  padding: 16px 0;
}
.role-tldr-panel.is-active {
  display: block;
}
.role-tldr-panel p {
  font-size: 17px;
  line-height: 1.6;
  color: #E6E6EA;
  margin: 0;
}

/* JTBD — Jobs To Be Done */
.jtbd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.jtbd-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 20px;
}
.jtbd-item > span {
  font-size: 15px;
  line-height: 1.5;
  color: #D8D8DC;
}
.jtbd-item strong {
  color: var(--lime, #74D414);
  font-weight: 600;
  margin-right: 6px;
}
@media (min-width: 760px) {
  .jtbd-item {
    grid-template-columns: 1.2fr 1fr 1.4fr;
    align-items: start;
    gap: 16px;
  }
}

/* Comparisons grid */
.comparisons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .comparisons-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.comparison-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comparison-vs {
  font-size: 16px;
  font-weight: 700;
  color: var(--lime, #74D414);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.comparison-row {
  font-size: 14px;
  line-height: 1.5;
  color: #D8D8DC;
}
.comparison-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #B0B0B5);
  margin-bottom: 4px;
  font-weight: 600;
}
.comparison-we {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(116, 212, 20, 0.2);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
.testimonial-card {
  padding: 24px;
  margin: 0;
}
.testimonial-card blockquote {
  margin: 0 0 16px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #E6E6EA;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted, #B0B0B5);
  font-size: 14px;
}
.testimonial-card figcaption div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card figcaption strong {
  color: #fff;
  font-weight: 600;
}
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime, #74D414);
}

/* Media mentions */
.media-mentions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.media-mention a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #E6E6EA;
  text-decoration: none;
  transition: all 0.2s ease;
}
.media-mention a:hover {
  background: rgba(116, 212, 20, 0.06);
  border-color: rgba(116, 212, 20, 0.3);
}
.media-outlet {
  font-weight: 700;
  color: var(--lime, #74D414);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.media-title {
  font-size: 15px;
  line-height: 1.4;
}
.media-date {
  font-size: 13px;
  color: var(--text-muted, #B0B0B5);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .media-mention a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* PAA — отличие от обычного FAQ цветом плашки */
.paa-list .faq-item {
  border-left: 3px solid var(--lime, #74D414);
}
