/* ============================================================
   CDO Global — Аккредитация и проверки
   Стилистика по cdo-global.ru
   ============================================================ */

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e7ece8;
  background: #0b0f0c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }

/* ---- Design tokens ---- */
:root {
  --ink-950: #070a08;
  --ink-900: #0b0f0c;
  --ink-800: #141a16;
  --ink-700: #1e2620;
  --lime: #74D414;
  --lime-2: #8fe234;
  --lime-soft: rgba(116, 212, 20, 0.14);
  --lime-soft-2: rgba(116, 212, 20, 0.08);
  --lime-hover: #5db00c;
  --lime-700: #4d7c0f;
  --text-light: #e7ece8;
  --text-muted: rgba(231, 236, 232, 0.7);
  --text-dim: rgba(231, 236, 232, 0.5);
  --paper: #eef3ea;
  --paper-2: #f5f7f2;
  --white: #ffffff;
  --border-soft: rgba(255, 255, 255, 0.1);
  --border-soft-2: rgba(255, 255, 255, 0.18);
  --container-max: 1240px;
  --radius-sm: .75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 1.75rem;
  --radius-pill: 9999px;
  --shadow-lime: 0 10px 30px -10px rgba(116, 212, 20, 0.6);
  --shadow-lime-lg: 0 18px 50px -20px rgba(116, 212, 20, 0.35);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Layout helpers ---- */
.container-x {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-x { padding: 0 2rem; } }

.section {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section { padding: 5rem 0; }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

.section-light { background: var(--paper); color: var(--ink-800); }
.section-dark-secondary { background: var(--ink-950); }
.section-light .section-title.dark { color: var(--ink-800); }
.section-light .section-lead.dark { color: rgba(20,26,22,.7); }
.section-light .dark-muted { color: rgba(20,26,22,.7); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--lime);
  padding: .25rem .875rem;
  border: 1px solid rgba(116, 212, 20, 0.3);
  background: var(--lime-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text-light);
  max-width: 32ch;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 65ch;
  margin-bottom: 2.5rem;
}

/* =====================
   HEADER
   ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 12, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 28px; width: auto; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: block; }
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.primary-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(231, 236, 232, 0.85);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--lime); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.lang-switch {
  display: none;
  gap: .25rem;
  padding: .2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
}
@media (min-width: 768px) { .lang-switch { display: inline-flex; } }
.lang-btn {
  padding: .35rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(231, 236, 232, 0.7);
  border-radius: var(--radius-pill);
  transition: all .15s ease;
}
.lang-btn.active { background: var(--lime); color: var(--ink-900); }
.lang-btn:hover:not(.active) { color: var(--text-light); }

.header-cta { display: none !important; }
@media (min-width: 768px) { .header-cta { display: inline-flex !important; } }

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius-pill);
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .15s ease, filter .15s ease, box-shadow .25s ease, border-color .15s ease, background-color .15s ease;
  cursor: pointer;
}
.btn-large { padding: .95rem 1.85rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(95deg, var(--lime-2), var(--lime));
  color: var(--ink-900);
  box-shadow: var(--shadow-lime);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: var(--shadow-lime-lg); }
.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-soft-2);
}
.btn-ghost:hover { border-color: rgba(116, 212, 20, 0.6); color: var(--white); }
.section-light .btn-ghost { color: var(--ink-800); border-color: rgba(20,26,22,0.18); }
.section-light .btn-ghost:hover { border-color: var(--lime); color: var(--lime-hover); }

/* =====================
   BREADCRUMBS
   ===================== */
.breadcrumbs-wrap { padding: calc(64px + 1.5rem) 0 0; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumbs li + li::before {
  content: '›';
  margin-right: .5rem;
  color: rgba(231, 236, 232, 0.4);
}
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs [aria-current="page"] span { color: var(--text-light); font-weight: 500; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 4.5rem;
  background: var(--ink-900);
}
@media (min-width: 1024px) {
  .hero { padding: 3.5rem 0 6rem; }
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.9) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.9) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: -10%; top: 10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(116,212,20,0.22) 0%, rgba(116,212,20,0) 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.4fr 0.9fr; gap: 3.5rem; }
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  color: rgba(231, 236, 232, 0.85);
  font-weight: 500;
}
.trust-pill.compact {
  background: var(--lime-soft-2);
  border-color: rgba(116, 212, 20, 0.22);
  color: var(--text-light);
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.hero-title {
  font-size: clamp(2rem, 5.2vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.hero-title .hl { color: var(--lime); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.hero-trust-row { margin-bottom: 2rem; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Hero right column — product stack */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.hero-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  position: relative;
  transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease;
}
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 212, 20, 0.5);
  box-shadow: var(--shadow-lime-lg);
}
.hero-card-badge {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--lime);
  background: var(--lime-soft);
  padding: .2rem .55rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.hero-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .35rem;
}
.hero-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.connector {
  height: 24px;
  display: flex;
  justify-content: center;
}
.connector svg { width: 2px; height: 100%; }

/* =====================
   ANSWER-FIRST
   ===================== */
.section-answer { background: var(--ink-900); }
.answer-paragraph {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(231, 236, 232, 0.88);
  max-width: 92ch;
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(116, 212, 20, 0.18);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius-md);
}
.answer-paragraph strong { color: var(--white); font-weight: 600; }

.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .quick-stats { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.stat-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: border-color .25s ease, transform .25s ease;
}
.stat-card:hover { border-color: rgba(116, 212, 20, 0.45); transform: translateY(-3px); }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: .35rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =====================
   NORMATIVE BLOCKS
   ===================== */
.norm-block {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .norm-block { padding: 2.25rem; }
}
.norm-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.norm-tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  background: var(--lime);
  color: var(--ink-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.norm-tag.alt { background: var(--ink-800); color: var(--lime); }
.norm-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: -0.01em;
}
.norm-text {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.norm-text strong { color: var(--ink-800); font-weight: 700; }
.norm-list {
  list-style: none;
  margin: 1rem 0;
}
.norm-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55rem;
  font-size: .98rem;
  color: rgba(20, 26, 22, 0.78);
  line-height: 1.55;
}
.norm-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .65rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-md);
}
.ap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 600px;
}
.ap-table thead { background: var(--ink-800); }
.ap-table th {
  text-align: left;
  padding: .85rem 1.15rem;
  color: var(--lime);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ap-table td {
  padding: .85rem 1.15rem;
  border-top: 1px solid rgba(20, 26, 22, 0.06);
  color: var(--ink-800);
  vertical-align: top;
}
.ap-table tbody tr:hover { background: rgba(116, 212, 20, 0.05); }

.norm-sources .sources-grid {
  list-style: none;
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .norm-sources .sources-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.norm-sources .sources-grid li {
  padding: 1rem 1.15rem;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--ink-800);
  border-left: 3px solid var(--lime);
}

/* =====================
   PRODUCTS GRID
   ===================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.product-card {
  position: relative;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product-card { padding: 2.25rem; }
}
.product-head { margin-bottom: 1.25rem; }
.product-badge {
  display: inline-block;
  padding: .3rem .75rem;
  background: var(--lime-soft);
  color: var(--lime);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 1px solid rgba(116, 212, 20, 0.25);
}
.product-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.015em;
  margin-bottom: .5rem;
}
.product-sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-features {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}
.product-features li {
  position: relative;
  padding-left: 1.5rem;
  padding-top: .35rem;
  padding-bottom: .35rem;
  font-size: .92rem;
  color: rgba(231, 236, 232, 0.85);
  line-height: 1.5;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0; top: .85rem;
  width: 14px; height: 1.5px;
  background: var(--lime);
  border-radius: 2px;
}
.product-case {
  display: flex;
  gap: .75rem;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--lime-soft);
  border: 1px solid rgba(116, 212, 20, 0.22);
  border-radius: var(--radius-md);
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.case-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--lime);
  text-transform: uppercase;
  padding-top: .15rem;
  flex-shrink: 0;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--lime);
  font-weight: 600;
  font-size: .9rem;
  padding-top: .25rem;
}
.product-link:hover { gap: .65rem; color: var(--lime-2); }
.product-link svg { transition: transform .2s ease; }
.product-link:hover svg { transform: translateX(2px); }

/* Lift effect (shared) */
.lift { transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease; }
.lift:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 212, 20, 0.5);
  box-shadow: var(--shadow-lime-lg);
}

/* =====================
   PROCESS STEPS
   ===================== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--lime);
  margin-bottom: 1rem;
  font-feature-settings: 'tnum' 1;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .5rem;
}
.step-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =====================
   CASES
   ===================== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}
.case-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .5rem;
}
.case-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--lime);
  padding: .2rem .55rem;
  background: var(--lime-soft);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.case-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.case-card p {
  font-size: .9rem;
  color: rgba(231, 236, 232, 0.78);
  line-height: 1.55;
}
.case-task { font-style: normal; }
.case-card strong { color: var(--text-light); font-weight: 600; }
.case-result { margin-top: auto; padding-top: .25rem; }

.cases-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* =====================
   FAQ
   ===================== */
.faq-wrap { max-width: 920px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(116, 212, 20, 0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--lime-soft);
  color: var(--lime-700);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 600;
  transition: transform .2s ease, background-color .2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--lime); color: var(--ink-900); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: rgba(20, 26, 22, 0.78);
  font-size: .95rem;
  line-height: 1.65;
}

/* =====================
   CTA SECTION
   ===================== */
.section-cta {
  position: relative;
  background: var(--ink-900);
  overflow: hidden;
  padding-bottom: 5rem;
}
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  left: 20%; bottom: -20%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, rgba(116,212,20,0.18) 0%, rgba(116,212,20,0) 70%);
  filter: blur(50px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.cta-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.cta-marks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.cta-marks li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .92rem;
  color: rgba(231, 236, 232, 0.88);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--lime-soft);
  color: var(--lime);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-form {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cta-form { padding: 2.5rem; }
}
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .02em;
}
.req { color: var(--lime); }
.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, background-color .15s ease;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.06);
}
.cta-form textarea { resize: vertical; min-height: 80px; }
.cta-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2374D414' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.cta-form select option { background: var(--ink-900); color: var(--text-light); }

.form-consent { font-size: .85rem; }
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: .65rem;
  font-size: .82rem !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  line-height: 1.5;
  cursor: pointer;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--lime);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.consent a { color: var(--lime); text-decoration: underline; }

.form-foot {
  font-size: .78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: .25rem;
}
.form-success {
  margin-top: .5rem;
  padding: .85rem 1rem;
  background: rgba(116, 212, 20, 0.12);
  border: 1px solid rgba(116, 212, 20, 0.4);
  border-radius: var(--radius-sm);
  color: var(--lime);
  font-size: .9rem;
  text-align: center;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1.3fr; padding: 4rem 2rem; gap: 3rem; }
}
.footer-brand { max-width: 320px; }
.logo-footer img { height: 28px; }
.footer-tagline {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 1rem 0 1.25rem;
}
.footer-lang { display: inline-flex; }
.footer-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-list li, .footer-list a {
  font-size: .9rem;
  color: rgba(231, 236, 232, 0.78);
  line-height: 1.4;
}
.footer-list a:hover { color: var(--lime); }
.footer-socials {
  display: flex;
  gap: .55rem;
  margin-top: 1.25rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all .15s ease;
}
.social-btn:hover { border-color: var(--lime); color: var(--lime); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-bottom-inner {
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-dim);
}
.footer-bottom-inner a { color: var(--text-dim); text-decoration: underline; }
.footer-bottom-inner a:hover { color: var(--lime); }

/* =====================
   REVEAL (motion)
   ===================== */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}

/* =====================
   ACCESSIBILITY / MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================
   MOBILE NAV (overlay)
   ===================== */
.mobile-nav-open .primary-nav {
  display: block;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 12, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  z-index: 99;
}
.mobile-nav-open .primary-nav ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.mobile-nav-open .primary-nav a {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================================
   FINANCE-EDO PAGE ADDITIONS
   ============================================================ */

/* ---- Skip link a11y ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--ink-900);
  padding: .75rem 1rem;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; border-radius: var(--radius-sm); }

/* ---- Section variant: light-soft (для FAQ на финансовой странице) ---- */
.section-light-soft { background: var(--paper-2); color: var(--ink-800); }

/* =====================
   ROLE / TASKS CARDS
   ===================== */
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .role-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.role-card {
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 212, 20, 0.45);
  box-shadow: 0 12px 36px -16px rgba(116, 212, 20, 0.3);
}
.role-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-soft);
  color: var(--lime-700);
  border-radius: var(--radius-md);
  margin-bottom: 1.15rem;
}
.role-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.role-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .94rem;
  color: rgba(20, 26, 22, 0.78);
  line-height: 1.55;
}
.role-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .6rem;
  width: 12px; height: 1.5px;
  background: var(--lime);
  border-radius: 2px;
}

/* =====================
   PRODUCTS — extension
   ===================== */
.product-card--wide {
  grid-column: 1 / -1;
}
.product-features--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}
@media (min-width: 768px) {
  .product-features--two-cols { grid-template-columns: 1fr 1fr; }
}

/* =====================
   ARCHITECTURE DIAGRAM
   ===================== */
.section-architecture {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.section-architecture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}
.section-architecture > .container-x { position: relative; z-index: 1; }

.arch-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 1rem auto 0;
  max-width: 920px;
}
.arch-layer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: border-color .3s ease, transform .3s var(--ease-out);
}
.arch-layer:hover {
  border-color: rgba(116, 212, 20, 0.4);
  transform: translateY(-2px);
}
.arch-layer--finance {
  background: linear-gradient(180deg, rgba(116, 212, 20, 0.08) 0%, rgba(116, 212, 20, 0.02) 100%);
  border-color: rgba(116, 212, 20, 0.22);
}
.arch-layer--analytics {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.arch-layer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.arch-layer-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  padding: .25rem .75rem;
  background: var(--lime-soft);
  border: 1px solid rgba(116, 212, 20, 0.3);
  border-radius: var(--radius-pill);
}
.arch-layer-meta {
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 500;
}
.arch-layer-body {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.arch-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
@media (min-width: 640px) {
  .arch-grid-3 { grid-template-columns: repeat(3, 1fr); gap: .85rem; }
}
.arch-wrap { gap: .5rem; }
.arch-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .65rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}
.arch-chip small {
  display: block;
  margin-top: .2rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.arch-chip--accent {
  background: var(--lime-soft);
  border-color: rgba(116, 212, 20, 0.35);
  color: var(--lime);
}
.arch-chip--bgu { border-color: rgba(116, 212, 20, 0.3); background: rgba(116, 212, 20, 0.08); }
.arch-chip--zkgu { border-color: rgba(143, 226, 52, 0.28); background: rgba(143, 226, 52, 0.06); }
.arch-chip--dgu { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05); }
.arch-chip--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  font-weight: 500;
  flex-direction: row;
}
.arch-link {
  color: var(--lime);
  font-size: 1.25rem;
  font-weight: 700;
}

.arch-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .9rem 0;
  gap: .35rem;
}
.arch-flow-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, rgba(116, 212, 20, 0.7), rgba(116, 212, 20, 0.1));
  border-radius: 2px;
}
.arch-flow-label {
  font-size: .72rem;
  color: var(--lime);
  letter-spacing: .04em;
  text-align: center;
  max-width: 32ch;
}

.arch-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .arch-links { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.arch-link-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all .2s ease;
  position: relative;
}
.arch-link-card:hover {
  border-color: rgba(116, 212, 20, 0.5);
  background: rgba(116, 212, 20, 0.06);
  transform: translateY(-2px);
}
.arch-link-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.arch-link-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}
.arch-link-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lime);
  font-size: 1.25rem;
  transition: transform .2s ease;
}
.arch-link-card:hover .arch-link-arrow { transform: translateY(-50%) translateX(4px); }

/* =====================
   KPI GRID (Trust)
   ===================== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 2.5rem;
}
@media (min-width: 768px) {
  .kpi-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
}
.kpi-card {
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-md);
  text-align: left;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.kpi-card:hover {
  border-color: rgba(116, 212, 20, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -18px rgba(116, 212, 20, 0.4);
}
.kpi-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime-700);
  letter-spacing: -0.025em;
  margin-bottom: .35rem;
  line-height: 1;
}
.kpi-label {
  font-size: .85rem;
  color: rgba(20, 26, 22, 0.7);
  line-height: 1.4;
}

/* Clients + Compliance */
.clients-block, .compliance-block {
  margin-top: 2.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(20, 26, 22, 0.08);
  border-radius: var(--radius-lg);
}
.clients-label, .compliance-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin-bottom: 1rem;
}
.clients-list, .compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
}
.clients-list li {
  padding: .55rem 1rem;
  background: var(--ink-900);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
}
.compliance-list li {
  padding: .55rem 1rem;
  background: var(--lime-soft);
  color: var(--lime-700);
  border: 1px solid rgba(116, 212, 20, 0.25);
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
}

/* CTA section: form already styled; small overrides for finance page */
.section-cta .section-eyebrow { background: var(--lime-soft); }


/* ============================================================
   PRICING SECTION
   ============================================================ */
.section-pricing {
  background: linear-gradient(180deg, #070a08 0%, #0b0f0c 100%);
  position: relative;
  overflow: hidden;
}
.section-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(116, 212, 20, 0.10), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(116, 212, 20, 0.06), transparent 50%);
  pointer-events: none;
}
.section-pricing > .container-x { position: relative; z-index: 1; }
.section-pricing .section-eyebrow { color: #8fe234; }
.section-pricing .section-title { color: #fff; }
.section-pricing .section-lead { color: rgba(238, 243, 234, 0.78); max-width: 820px; }

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 212, 20, 0.45);
  background: rgba(116, 212, 20, 0.05);
}

.pricing-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(116, 212, 20, 0.12) 0%, rgba(116, 212, 20, 0.04) 100%);
  border: 1px solid rgba(116, 212, 20, 0.55);
  box-shadow: 0 12px 40px -16px rgba(116, 212, 20, 0.45);
}
@media (min-width: 760px) {
  .pricing-card-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
  }
  .pricing-card-featured .pricing-features { margin-top: 0; }
}

.pricing-card-head { display: flex; flex-direction: column; gap: 8px; }

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(238, 243, 234, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-badge-accent {
  background: #74D414;
  color: #0b0f0c;
  border-color: transparent;
}

.pricing-card-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.pricing-card-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(238, 243, 234, 0.6);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(11, 15, 12, 0.7);
  border: 1px solid rgba(116, 212, 20, 0.22);
}
.price-amount {
  font-size: 26px;
  font-weight: 800;
  color: #74D414;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.price-note {
  font-size: 12px;
  color: rgba(238, 243, 234, 0.55);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(238, 243, 234, 0.82);
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(116, 212, 20, 0.18);
  border: 1.5px solid #74D414;
}
.pricing-features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #74D414;
}

.pricing-note {
  margin-top: 28px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(238, 243, 234, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}
@media (min-width: 760px) {
  .pricing-note {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 32px;
  }
}
.pricing-note p {
  margin: 0;
  color: rgba(238, 243, 234, 0.85);
  font-size: 15px;
  line-height: 1.55;
}
.pricing-note p strong { color: #fff; }

.pricing-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(238, 243, 234, 0.7);
}
.pricing-meta strong { color: #fff; font-weight: 600; }

.pricing-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .pricing-card { padding: 22px 20px; }
  .price-amount { font-size: 22px; }
  .pricing-note { padding: 22px 20px; }
}

/* ============================================================
   PAGE SUB-NAV (anchor menu like the main site)
   ============================================================ */
.page-subnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-subnav-list::-webkit-scrollbar { display: none; }
.page-subnav-list li { flex: 0 0 auto; }
.page-subnav-link {
  display: inline-block;
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(238, 243, 234, 0.7);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}
.page-subnav-link:hover { color: #fff; }
.page-subnav-link.is-active {
  color: #74D414;
  font-weight: 600;
}
.page-subnav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: #74D414;
  border-radius: 2px 2px 0 0;
}

@media (max-width: 760px) {
  .page-subnav-link { padding: 12px 12px; font-size: 13px; }
  .page-subnav-list {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

/* Anchor scroll offset под sticky-подменю */
.section, .hero { scroll-margin-top: 64px; }
