/* ════════════════════════════════════════════════════════════
   ARVESS BLOG STYLES — статьи и листинг
   ════════════════════════════════════════════════════════════ */

/* ── ARTICLE PAGE ─────────────────────────────────────────── */
.article-page {
  background: #08080e;
  min-height: 100vh;
  padding: 88px 0 80px;
}
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumbs {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.35);
  margin-bottom: 32px; flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.breadcrumbs a:hover { color: rgba(255,255,255,.65); }
.breadcrumbs-sep { opacity: .4; }

/* ── ARTICLE HEADER ───────────────────────────────────────── */
.article-header { margin-bottom: 48px; }
.article-category-tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  background: rgba(111,1,251,.12); color: #a78bfa;
  border: 1px solid rgba(111,1,251,.2);
  margin-bottom: 20px; text-transform: uppercase;
}
.article-h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.025em; color: #fff;
  margin: 0 0 20px;
}
.article-lead {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0 0 28px;
}
.article-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
}
.author-block { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #6f01fb, #a78bfa);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0; letter-spacing: .5px;
}
.author-name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.author-role { font-size: 12px; color: rgba(255,255,255,.4); }
.article-date-read {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.article-date-read time { color: rgba(255,255,255,.5); }

/* ── ARTICLE BODY ─────────────────────────────────────────── */
.article-body {
  color: rgba(255,255,255,.8);
  font-size: 16px; line-height: 1.85;
  margin-bottom: 48px;
}
.article-body h2 {
  font-size: clamp(19px, 2.2vw, 25px); font-weight: 700;
  color: #fff; letter-spacing: -.02em;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.article-body h3 {
  font-size: 17px; font-weight: 600;
  color: rgba(255,255,255,.9);
  margin: 28px 0 10px;
}
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol {
  margin: 0 0 18px; padding-left: 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: #a78bfa; text-decoration: underline;
  text-decoration-color: rgba(167,139,250,.35);
  text-underline-offset: 3px; transition: all .15s;
}
.article-body a:hover { color: #c4b5fd; text-decoration-color: rgba(196,181,253,.55); }
.article-body strong { color: #fff; font-weight: 600; }
.article-body em { color: rgba(255,255,255,.9); font-style: italic; }

/* ── CALLOUT BLOCKS ───────────────────────────────────────── */
.article-callout {
  padding: 16px 20px; border-radius: 12px; margin: 24px 0;
  background: rgba(111,1,251,.08);
  border-left: 3px solid #6f01fb;
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.75);
}
.article-callout-warn {
  background: rgba(251,191,36,.07);
  border-left-color: #fbbf24;
}
.article-callout-success {
  background: rgba(52,211,153,.07);
  border-left-color: #34d399;
  color: rgba(255,255,255,.75);
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 12px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; min-width: 520px;
}
.compare-table th {
  padding: 11px 16px; text-align: left;
  background: rgba(111,1,251,.1);
  color: #a78bfa; font-weight: 600; font-size: 12px; letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-table th:first-child { border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }
.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  vertical-align: top; line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }
.td-good { color: #34d399 !important; }
.td-bad  { color: #f87171 !important; }
.td-mid  { color: #fbbf24 !important; }
.td-tool { font-weight: 600; color: #fff !important; }

/* ── STEP BLOCKS ──────────────────────────────────────────── */
.steps-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.step-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; transition: border-color .2s;
}
.step-item:hover { border-color: rgba(167,139,250,.15); }
.step-num {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--brand-accent); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: #fff; }
.step-content p { margin: 0; font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── FAQ SECTION ──────────────────────────────────────────── */
.article-faq { margin: 48px 0 0; }
.article-faq-title {
  font-size: clamp(19px, 2.2vw, 25px); font-weight: 700;
  color: #fff; margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item-b {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
}
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; cursor: pointer; gap: 12px;
  background: rgba(255,255,255,.02); border: none;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500;
  text-align: left; transition: background .15s; font-family: inherit;
}
.faq-btn:hover { background: rgba(255,255,255,.04); }
.faq-arrow {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,.4);
  transition: transform .25s, background .15s;
}
.faq-item-b.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(111,1,251,.2); color: #a78bfa;
}
.faq-ans {
  display: none; padding: 0 20px 16px;
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75;
}
.faq-item-b.open .faq-ans { display: block; }

/* ── ARTICLE CTA ──────────────────────────────────────────── */
.article-cta-block {
  margin: 48px 0 0;
  padding: 40px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(111,1,251,.15), rgba(111,1,251,.07));
  border: 1px solid rgba(111,1,251,.25);
  text-align: center;
}
.article-cta-block h3 {
  font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 10px;
}
.article-cta-block p {
  font-size: 15px; color: rgba(255,255,255,.55); margin: 0 0 24px; line-height: 1.6;
}
.btn-cta-art {
  display: inline-block; padding: 14px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  color: #fff; background: var(--brand-accent);
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 20px rgba(111,1,251,.4);
}
.btn-cta-art:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(111,1,251,.55); }

/* ── BLOG LISTING PAGE ────────────────────────────────────── */
.blog-page {
  background: #08080e;
  min-height: 100vh;
  padding: 88px 0 80px;
}
.blog-container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.blog-head { margin-bottom: 48px; }
.blog-head h1 {
  font-size: clamp(28px, 3vw, 42px); font-weight: 800;
  color: #fff; letter-spacing: -.025em; margin: 0 0 12px;
}
.blog-head p { font-size: 17px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; transition: all .2s;
}
.blog-card:hover {
  border-color: rgba(167,139,250,.18);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.blog-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: #a78bfa;
}
.blog-card-title {
  font-size: 17px; font-weight: 700; color: #fff;
  line-height: 1.35;
}
.blog-card-lead {
  font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; flex: 1;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.3);
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.05);
  margin-top: auto;
}
.blog-card-meta time { color: rgba(255,255,255,.4); }
.blog-card-featured {
  grid-column: 1 / -1;
}
.blog-card-featured .blog-card-title { font-size: 21px; }
.blog-card-featured .blog-card-lead { font-size: 15px; }

/* ── PIXSO PAGE ───────────────────────────────────────────── */
.pixso-hero {
  background: #08080e;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.pixso-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.pixso-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #a78bfa;
  margin-bottom: 20px;
}
.pixso-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 8px #34d399;
}
.pixso-h1 {
  font-size: clamp(28px, 3.8vw, 48px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.08;
  color: #fff; margin: 0 0 20px;
}
.pixso-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #6f01fb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pixso-sub {
  font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0 0 32px;
}
.pixso-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-pixso-hero {
  padding: 15px 30px; border-radius: 13px;
  font-size: 16px; font-weight: 700;
  color: #fff; background: var(--brand-accent);
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 24px rgba(111,1,251,.45);
}
.btn-pixso-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(111,1,251,.55); }
.btn-pixso-sec {
  padding: 14px 24px; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  background: transparent; text-decoration: none; transition: all .2s;
}
.btn-pixso-sec:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.pixso-compat-note {
  margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 8px;
}
.pixso-compat-note span { color: rgba(167,139,250,.6); }

.pixso-section { background: #08080e; padding: 72px 0; }
.pixso-section + .pixso-section { border-top: 1px solid rgba(255,255,255,.05); }
.pixso-section-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.pixso-section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #a78bfa;
  margin-bottom: 12px; text-align: center;
}
.pixso-section-h2 {
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 800;
  color: #fff; letter-spacing: -.025em;
  margin: 0 0 12px; text-align: center;
}
.pixso-section-sub {
  font-size: 16px; color: rgba(255,255,255,.45);
  text-align: center; margin: 0 0 48px; line-height: 1.65;
}

.pixso-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pixso-step-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 28px 22px;
  transition: border-color .2s;
}
.pixso-step-card:hover { border-color: rgba(167,139,250,.18); }
.pixso-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(111,1,251,.2); color: #a78bfa;
  font-size: 15px; font-weight: 800;
  margin-bottom: 16px;
}
.pixso-step-title {
  font-size: 16px; font-weight: 700; color: #fff;
  margin: 0 0 8px; line-height: 1.3;
}
.pixso-step-text {
  font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0;
}

.pixso-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pixso-compare-col {
  border-radius: 16px; padding: 24px 22px;
}
.pixso-compare-col-figma {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.pixso-compare-col-pixso {
  background: rgba(111,1,251,.07);
  border: 1px solid rgba(111,1,251,.18);
}
.pixso-compare-badge {
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 16px;
  color: rgba(167,139,250,.8);
}
.pixso-compare-badge-gray { color: rgba(255,255,255,.4); }
.pixso-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pixso-compare-list li {
  font-size: 14px; color: rgba(255,255,255,.65);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pixso-compare-list li::before {
  content: '✓'; color: #34d399; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.pixso-compare-list.gray li::before { content: '·'; color: rgba(255,255,255,.3); }

/* ── RELATED ARTICLES ─────────────────────────────────────── */
.article-related {
  margin: 48px 0 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.article-related-title {
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .8px;
  font-size: 11px; margin: 0 0 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 18px 16px;
  text-decoration: none; transition: all .2s;
  display: flex; flex-direction: column; gap: 6px;
}
.related-card:hover {
  border-color: rgba(167,139,250,.2);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.related-card-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: #a78bfa;
}
.related-card-title {
  font-size: 14px; font-weight: 600;
  color: #fff; line-height: 1.4;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .article-page, .blog-page { padding: 80px 0 60px; }
  .article-meta-row { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: auto; }
  .article-cta-block { padding: 24px 18px; }
  .compare-table th, .compare-table td { padding: 8px 10px; font-size: 12px; }
  .related-grid { grid-template-columns: 1fr; }
  .pixso-hero { padding: 80px 0 60px; }
  .pixso-steps-grid { grid-template-columns: 1fr; }
  .pixso-compare-grid { grid-template-columns: 1fr; }
  .pixso-cta-row { flex-direction: column; align-items: stretch; }
  .btn-pixso-hero, .btn-pixso-sec { text-align: center; }
}
