/* =====================================================================
   КОНСИС v2 — site styles built on Design System tokens
   Imports: colors_and_type.css (tokens) + konsis.css (components)
   This file = page-level layout, animated gradients, region modal, etc.
   ===================================================================== */

/* ───── reset-lite ───── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
:root {
  --grad-anim-dur: 22s;
  --map-cell: rgba(255,255,255,0.06);
  --map-cell-1: #245C44;
  --map-cell-2: #389B8B;
  --map-cell-3: #6EB9A0;
  --map-cell-4: #C9A24B;
  --map-stroke: rgba(255,255,255,0.12);
}

body {
  font-family: var(--ks-font-ui, 'Albert Sans', system-ui, sans-serif);
  color: var(--fg-1);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───── HEADER ───── */
.v2-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7, 30, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.v2-header__row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  padding: 16px 0;
  max-width: 1280px; margin: 0 auto; padding-left: 32px; padding-right: 32px;
}
.v2-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.v2-logo__mark { width: 38px; height: 38px; flex-shrink: 0; }
.v2-logo__name { font-family: var(--ks-font-display); font-weight: 800; font-size: 18px; letter-spacing: .14em; line-height: 1; }
.v2-logo__sub { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

.v2-nav { display: flex; gap: 4px; justify-self: center; flex-wrap: wrap; align-items: center; }
.v2-nav a {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 9px 14px; border-radius: 8px; text-decoration: none;
  transition: background .15s, color .15s;
}
.v2-nav a:hover, .v2-nav a.is-active { background: rgba(255,255,255,.07); color: #fff; }
.v2-nav .has-caret::after {
  content:""; display: inline-block; width: 7px; height: 7px; margin-left: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .6;
}
.v2-nav-drop { position: relative; order: 0; }
.v2-nav > a { align-self: center; }
.v2-nav-drop > a { cursor: default; }
.v2-nav-drop::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
  display: none;
}
.v2-nav-drop:hover::after { display: block; }
.v2-nav-drop__menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 240px; padding: 8px;
  background: #fff; color: var(--fg-1); border-radius: 12px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  display: none; flex-direction: column;
}
.v2-nav-drop:hover .v2-nav-drop__menu,
.v2-nav-drop:focus-within .v2-nav-drop__menu { display: flex; }
.v2-nav-drop__menu a {
  font-size: 14px; padding: 10px 14px; border-radius: 8px;
  color: var(--fg-1);
}
.v2-nav-drop__menu a:hover { background: var(--bg-paper); color: var(--accent); }

.v2-header__right { display: flex; align-items: center; gap: 14px; }
.v2-phone {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  text-decoration: none; color: inherit; line-height: 1;
}
.v2-phone strong { font-family: var(--ks-font-display); font-weight: 700; font-size: 15px; letter-spacing: .01em; }
.v2-phone span { font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.52); }

.v2-iconbtn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  background: transparent; color: #fff; transition: background .15s, border-color .15s;
}
.v2-iconbtn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.v2-burger {
  display: none; width: 40px; height: 40px;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 10px;
}
.v2-burger span, .v2-burger span::before, .v2-burger span::after {
  display: block; width: 18px; height: 1.6px; background: #fff; transition: .25s;
}
.v2-burger span { position: relative; margin: 0 auto; }
.v2-burger span::before, .v2-burger span::after { content:""; position: absolute; left: 0; }
.v2-burger span::before { top: -6px; }
.v2-burger span::after { top: 6px; }
.v2-burger.is-open span { background: transparent; }
.v2-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.v2-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.v2-mobile-nav {
  position: fixed; inset: 64px 0 0 0; z-index: 55;
  background: rgba(7,30,23,.98); backdrop-filter: blur(14px);
  padding: 32px;
  display: none; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.v2-mobile-nav.is-open { display: flex; }
.v2-mobile-nav a {
  color: #fff; text-decoration: none; padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 17px; font-weight: 500;
}
.v2-mobile-nav .label-group {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 16px; padding: 4px 8px;
}

/* ───── CONTAINER ───── */
.v2-c { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.v2-c--tight { max-width: 1120px; }

/* ===== HERO V3 — map-as-hero on dark, animated gradient ===== */
.v2-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(56,155,139,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(201,162,75,.13) 0%, transparent 50%),
    linear-gradient(160deg, rgba(7,36,29,.88) 0%, rgba(11,61,52,.82) 60%, rgba(15,44,37,.88) 100%),
    url('../img/bg/bg-dark-green-16.jpg') center/cover;
  color: #fff;
  padding: 80px 0 64px;
}

/* Animated gradient layer */
.v2-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(56,155,139,.22), transparent 38%),
    radial-gradient(circle at 80% 60%, rgba(201,162,75,.18), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(110,185,160,.16), transparent 55%);
  filter: blur(2px);
  animation: v2-grad-shift var(--grad-anim-dur) ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes v2-grad-shift {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: 1; }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.05); opacity: .85; }
  100% { transform: translate3d(2%, -2%, 0) scale(1.02); opacity: 1; }
}
/* Subtle tech-grid overlay */
.v2-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.v2-hero > * { position: relative; z-index: 2; }

.v2-hero__grid {
  display: grid; grid-template-columns: 460px 1fr; gap: 56px; align-items: center;
}
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-150);
}
.v2-eyebrow::before { content:""; width: 28px; height: 1.5px; background: currentColor; }

.v2-hero h1 {
  font-family: var(--ks-font-display);
  font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 60px);
  line-height: 1.04; letter-spacing: -.025em;
  margin: 24px 0 0; color: #fff;
}
.v2-hero h1 em { font-style: italic; color: var(--green-150); }
.v2-hero h1 .gold { color: var(--gold-500); font-style: italic; }

.v2-hero__lead {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.78);
  margin: 22px 0 0; max-width: 480px;
}
.v2-hero__buttons { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.v2-hero__features {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 28px; font-size: 14px; color: rgba(255,255,255,.7);
}
.v2-hero__features li { display: flex; align-items: center; gap: 10px; }
.v2-hero__features svg { color: var(--gold-500); flex-shrink: 0; }

/* Map panel right */
.v2-hero__map-panel {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.v2-hero__map-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4px 16px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.v2-hero__map-head h3 { font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7); margin: 0; }
.v2-hero__map-head .legend { display: flex; gap: 12px; font-size: 11px; color: rgba(255,255,255,.55); }
.v2-hero__map-head .legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; vertical-align: middle; margin-right: 4px; }
.v2-hero__map-head .legend--scale {
  align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.v2-hero__map-head .legend--scale .legend__label { white-space: nowrap; }
.v2-hero__map-head .legend--scale .legend__bar {
  display: inline-flex; align-items: stretch;
  height: 8px; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,.2);
}
.v2-hero__map-head .legend--scale .legend__bar i {
  display: block; width: 22px; height: 100%;
  margin: 0; border-radius: 0;
}

.v2-map-wrap {
  position: relative; padding: 16px 4px 4px;
  min-height: 360px;
}
#v2-russia-map { width: 100%; height: auto; display: block; }
#v2-russia-map path[data-code] {
  cursor: pointer;
  transition: filter .12s, transform .12s;
}
#v2-russia-map path[data-code]:hover {
  filter: brightness(1.4) drop-shadow(0 0 8px rgba(201,162,75,.6));
}

/* Region card overlay — follows cursor with viewport-edge clamp */
.v2-region-card {
  position: fixed; left: 0; top: 0;
  width: 280px;
  background: linear-gradient(180deg, rgba(15,44,37,.96), rgba(7,36,29,.96));
  border: 1px solid rgba(201,162,75,.28);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
  z-index: 50;
  will-change: transform, opacity;
}
.v2-region-card.is-open { opacity: 1; }

/* Highlight markers for very small regions (Москва, СПб, маленькие области) */
.v2-map-marker {
  cursor: pointer;
  pointer-events: all;
  transition: r .15s, filter .15s;
}
.v2-map-marker:hover { filter: drop-shadow(0 0 6px rgba(255,224,138,.9)); }
.v2-map-marker--gold { fill: #C9A24B; stroke: #fff; stroke-width: 1.5; }
.v2-map-marker--mint { fill: #6EB9A0; stroke: #fff; stroke-width: 1; }
.v2-map-marker__halo {
  fill: none; stroke: rgba(201,162,75,.5); stroke-width: 1.2;
  pointer-events: none;
  animation: v2-marker-pulse 2.4s ease-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes v2-marker-pulse {
  0%   { opacity: 0; transform: scale(.6); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scale(2.4); }
}
.v2-region-card__shape {
  width: 72px; height: 72px;
  background: rgba(201,162,75,.10);
  border: 1px solid rgba(201,162,75,.3);
  border-radius: 12px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  position: relative;
}
.v2-region-card__shape svg { width: 100%; height: 100%; padding: 8px; }
.v2-region-card__shape--gerb {
  width: 88px; height: 88px;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(201,162,75,.35);
  box-shadow: 0 6px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 6px;
}
.v2-region-card__shape--gerb {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.v2-region-card__shape--gerb img,
.v2-region-card__shape--gerb svg {
  width: 100%; height: 100%;
  min-width: 0; min-height: 0;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.v2-region-card__shape:not(.v2-region-card__shape--gerb)::after {
  content: "герб"; position: absolute; bottom: -16px; left: 0; right: 0;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(201,162,75,.55); text-align: center;
}
.v2-region-card__name {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17px; color: #fff; text-align: center;
  margin: 22px 0 14px; line-height: 1.2;
}
.v2-region-card__stats {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 12px;
}
.v2-region-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; color: rgba(255,255,255,.6);
}
.v2-region-card__row strong {
  font-family: var(--ks-font-display); font-weight: 700; font-size: 16px;
  color: #fff; font-feature-settings: "tnum" 1;
}
.v2-region-card__row strong.gold { color: var(--gold-500); }
.v2-region-card__btn {
  display: block; text-align: center; margin-top: 14px;
  padding: 10px 14px; border-radius: 8px;
  background: var(--gold-600); color: #fff;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .15s;
}
.v2-region-card__btn:hover { background: var(--gold-700); }
.v2-region-card__hint {
  margin-top: 14px; padding: 10px 12px;
  border: 1px dashed rgba(212,181,104,.35);
  border-radius: 8px;
  font-size: 12px; line-height: 1.4;
  color: rgba(212,181,104,.85);
  text-align: center;
}

/* ───── BUTTONS ───── */
.v2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; font-family: inherit; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.v2-btn svg { width: 16px; height: 16px; }
.v2-btn--gold {
  background: linear-gradient(180deg, #E2C271 0%, #CCAB51 100%);
  color: #1A2B24;
  box-shadow: 0 6px 20px rgba(201,162,75,.28);
}
.v2-btn--gold:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201,162,75,.4); }
.v2-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.v2-btn--ghost-light:hover { background: rgba(255,255,255,.07); border-color: #fff; }
.v2-btn--accent { background: var(--accent); color: #fff; }
.v2-btn--accent:hover { background: var(--accent-press); }
.v2-btn--green {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-700) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30,79,58,.28);
}
.v2-btn--green:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(30,79,58,.4); }
.v2-btn--ghost { background: transparent; color: var(--fg-1); border: 1px solid var(--border); }
.v2-btn--ghost:hover { border-color: var(--fg-1); background: var(--bg-paper); }
.v2-btn--lg { padding: 16px 28px; font-size: 15px; }
.v2-btn--block { width: 100%; }

/* ───── TICKER ───── */
.v2-ticker-section {
  background:
    linear-gradient(180deg, rgba(7,36,29,.86) 0%, rgba(11,61,52,.82) 100%),
    url('../img/bg/bg-dark-green-12.jpg') center/cover;
  color: #fff;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.v2-ticker {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.v2-ticker__cell {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.v2-ticker__cell:last-child { border-right: none; }
.v2-ticker__num {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 56px);
  line-height: 1; letter-spacing: -.03em;
  color: var(--gold-500); font-feature-settings: "tnum" 1, "lnum" 1;
}
.v2-ticker__num sup { font-size: .42em; margin-left: 4px; color: var(--green-150); font-weight: 700; vertical-align: super; }
.v2-ticker__label { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ───── SECTIONS ───── */
.v2-sec {
  padding: 96px 0;
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(248,250,247,.82)),
    url('../img/bg/bg-light-08.jpg') center/cover;
}
.v2-sec--paper {
  background:
    linear-gradient(rgba(244,247,245,.55), rgba(233,234,227,.65)),
    url('../img/bg/bg-light-04.jpg') center/cover;
}
.v2-sec--services {
  background:
    linear-gradient(rgba(244,247,245,.62), rgba(244,247,245,.72)),
    url('../img/bg/bg-light-02.jpg') center/cover;
}
.v2-sec--amber {
  background:
    linear-gradient(rgba(255,250,240,.50), rgba(252,243,222,.60)),
    url('../img/bg/bg-amber-02.jpg') center/cover;
}
.v2-sec--inverse {
  background:
    linear-gradient(160deg, rgba(7,36,29,.86) 0%, rgba(11,61,52,.82) 100%),
    url('../img/bg/bg-dark-green-08.jpg') center/cover;
  color: #fff;
  position: relative; overflow: hidden;
}
.v2-sec--inverse::before {
  content:""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.v2-sec--inverse > * { position: relative; }

.v2-sec-head { max-width: 720px; margin: 0 0 48px; }
.v2-sec-head .v2-eyebrow { color: var(--accent); }
.v2-sec--inverse .v2-sec-head .v2-eyebrow { color: var(--green-150); }
.v2-sec-head h2 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 44px); line-height: 1.1; letter-spacing: -.02em;
  margin: 16px 0 0;
}
.v2-sec--inverse .v2-sec-head h2 { color: #fff; }
.v2-sec-head h2 em { font-style: italic; color: var(--accent); }
.v2-sec--inverse .v2-sec-head h2 em { color: var(--green-150); }
.v2-sec-head h2 .gold { color: var(--gold-600); }
.v2-sec-head p {
  margin: 16px 0 0; font-size: 17px; color: var(--fg-2); line-height: 1.6;
  max-width: 600px;
}
.v2-sec--inverse .v2-sec-head p { color: rgba(255,255,255,.72); }

/* ───── SERVICES (4-column tabular) ───── */
.v2-services {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.v2-service {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: background .2s;
}
.v2-service:last-child { border-right: none; }
.v2-service:hover { background: var(--bg-paper); }
.v2-service__num {
  font-family: var(--font-mono, ui-monospace);
  font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: .06em;
}
.v2-service h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; margin: 0;
}
.v2-service p { font-size: 14px; color: var(--fg-3); line-height: 1.55; margin: 0; flex: 1; }
.v2-service__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--border); padding-top: 14px; font-size: 13px;
  font-weight: 600; color: var(--fg-1);
}
.v2-service__foot .arrow { color: var(--accent); transition: transform .2s; }
.v2-service:hover .v2-service__foot .arrow { transform: translateX(4px); }

/* ───── ABOUT ───── */
.v2-about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
}
.v2-about-photo {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  position: relative; background: var(--bg-paper);
}
.v2-about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-about-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,61,52,.4) 100%);
}
.v2-about-photo .badge {
  position: absolute; left: 24px; bottom: 24px; right: 24px; z-index: 2;
  background: rgba(255,255,255,.95); border-radius: 12px;
  padding: 16px 18px;
}
.v2-about-photo .badge strong { font-family: var(--ks-font-display); font-weight: 700; font-size: 15px; display: block; }
.v2-about-photo .badge span { font-size: 12.5px; color: var(--fg-3); margin-top: 4px; display: block; }

.v2-about__lead { font-size: 17px; line-height: 1.6; color: var(--fg-1); margin: 24px 0 0; }
.v2-about__quote {
  border-left: 3px solid var(--gold-600);
  padding: 14px 20px;
  font-style: italic; color: var(--fg-2);
  background: rgba(201,162,75,.06);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.v2-about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.v2-about__stat-num { font-family: var(--ks-font-display); font-weight: 700; font-size: 36px; color: var(--accent); }
.v2-about__stat-label { font-size: 13px; color: var(--fg-3); margin-top: 4px; }
.v2-about__buttons { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ───── THANKS ───── */
.v2-thanks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 32px;
}
.v2-thanks__card {
  background: #fff; border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 0; cursor: pointer; overflow: hidden;
  aspect-ratio: 3/4; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.v2-sec--inverse .v2-thanks__card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.10); }
.v2-thanks__card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0,0,0,.4); }
.v2-thanks__card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.95) contrast(1.05);
}
.v2-thanks__card-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(11,61,52,.85); color: #fff;
  padding: 8px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
}

/* ───── MARQUEE (logos of media outlets) ───── */
.v2-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 32px 0 0;
  padding: 28px 0;
  border-radius: 16px;
  /* Soft white wash on top of marble bg — dampens vertical veining that looks like seams */
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url('../img/bg/bg-light-10.jpg') center/cover;
  border: 0;
  /* Mask fades the WHOLE marquee (bg + logos) to transparent at edges
     so cropped logos and the section bg colour read as one continuous surface */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.v2-marquee__track {
  display: flex; align-items: center;
  gap: 24px;
  width: max-content;
  animation: v2-marquee-scroll 30s linear infinite;
}
.v2-marquee:hover .v2-marquee__track,
.v2-marquee:focus-within .v2-marquee__track { animation-play-state: paused; }
@keyframes v2-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.v2-marquee__item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 120px; flex: 0 0 auto;
  height: 120px; padding: 0 8px;
  font-family: var(--ks-font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: .02em;
  color: var(--ink-700);
  white-space: nowrap;
  transition: opacity .2s, filter .2s, transform .2s;
  user-select: none;
}
.v2-marquee__item img {
  height: 38px; width: auto; display: block;
  /* Light marquee: muted grayscale by default, full colour + scale on hover */
  filter: grayscale(1) opacity(.7) contrast(.95);
  transition: filter .3s ease, transform .3s ease;
}
.v2-marquee__item:hover img {
  filter: grayscale(0) opacity(1) contrast(1);
  transform: scale(1.18);
}
.v2-marquee__item img[src*="gkgz"]          { height: 80px; }
.v2-marquee__item img[src*="gostv"]         { height: 100px; }
.v2-marquee__item img[src*="mashnews"]      { height: 49px; }
.v2-marquee__item img[src*="rossiya1"]      { height: 51px; }
.v2-marquee__item img[src*="perviy-kanal"]  { height: 64px; }
.v2-marquee__item img[src*="tsargrad"]      { height: 72px; }
.v2-marquee__item img[src*="avestnik"]      { height: 57px; }
.v2-marquee__item img[src*="comnews"]       { height: 29px; }
.v2-marquee__item img[src*="ntv"]           { height: 86px; }
.v2-marquee__item img[src*="rentv"]         { height: 86px; }
.v2-marquee__item img[src*="radio-kp"]      { height: 86px; }
.v2-marquee__item img[src*="komfm"]         { height: 37px; }
.v2-marquee__item--text { /* tag for fallback text-style logos */ }
.v2-marquee__sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
}

/* ───── THANKS QUOTES (index page) ───── */
.v2-thanks-quotes__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.v2-thanks-quote {
  display: flex; flex-direction: column;
  position: relative;
  margin: 0;
  padding: 36px 32px 28px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(11,61,52,.55) 0%, rgba(7,36,29,.65) 100%);
  border: 1px solid rgba(212,181,104,.22);
  box-shadow:
    0 1px 0 rgba(212,181,104,.18) inset,
    0 14px 36px -16px rgba(0,0,0,.45);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.v2-thanks-quote::before {
  /* gold ribbon top accent */
  content: ""; position: absolute; left: 0; top: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 30%, var(--gold-500) 70%, transparent 100%);
  opacity: .55;
}
.v2-thanks-quote:hover {
  transform: translateY(-3px);
  border-color: rgba(212,181,104,.45);
  box-shadow:
    0 1px 0 rgba(212,181,104,.32) inset,
    0 22px 50px -16px rgba(0,0,0,.55);
}
.v2-thanks-quote__mark {
  position: absolute; top: 22px; right: 24px;
  width: 56px; height: 56px;
  color: var(--gold-500);
  opacity: .25;
  pointer-events: none;
}
.v2-thanks-quote__text {
  margin: 0 0 22px;
  font-family: var(--ks-font-display);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  position: relative;
  z-index: 1;
}
.v2-thanks-quote__sig {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(212,181,104,.20);
  position: relative; z-index: 1;
}
.v2-thanks-quote__sig strong {
  font-family: var(--ks-font-display);
  font-weight: 700; font-size: 15.5px;
  color: var(--gold-500);
  letter-spacing: .01em;
}
.v2-thanks-quote__sig span {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.v2-thanks-quote__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .02em;
  background: transparent;
  color: var(--gold-500);
  border: 1px solid rgba(212,181,104,.45);
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  align-self: flex-start;
  position: relative; z-index: 1;
}
.v2-thanks-quote__btn svg {
  width: 14px; height: 14px;
  transition: transform .2s ease;
}
.v2-thanks-quote__btn:hover {
  background: rgba(212,181,104,.10);
  border-color: var(--gold-500);
  color: #F2D58C;
}
.v2-thanks-quote__btn:hover svg { transform: translateX(3px); }
.v2-thanks-quotes__cta {
  margin-top: 48px; text-align: center;
}
@media (max-width: 720px) {
  .v2-thanks-quotes__grid { grid-template-columns: 1fr; gap: 18px; }
  .v2-thanks-quote { padding: 30px 24px 24px; }
  .v2-thanks-quote__text { font-size: 15.5px; }
  .v2-thanks-quote__mark { width: 42px; height: 42px; top: 18px; right: 18px; }
}

/* ───── MEDIA ───── */
.v2-media {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 32px;
}
.v2-media__card {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.55)),
    url('../img/bg/bg-light-01.jpg') center/cover;
  border: 1px solid rgba(11,61,52,.10);
  border-left: 4px solid var(--accent);
  border-radius: 14px; padding: 28px 28px 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: inherit;
  min-height: 260px;
  box-shadow: 0 4px 18px -8px rgba(11,61,52,.10);
  transition: border-left-width .2s ease, transform .25s ease, box-shadow .25s ease;
}
.v2-media__card:hover {
  border-left-width: 6px;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -10px rgba(11,61,52,.18);
}
.v2-media__card:hover .v2-media__type { color: var(--green-700, #0B3D34); }
.v2-media__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.v2-media__type { color: var(--accent); }
.v2-media__card h4 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17px; line-height: 1.35; margin: 0; flex: 1; color: var(--fg-1);
}
.v2-media__src {
  font-size: 13px; color: var(--fg-2);
  border-top: 1px solid var(--border); padding-top: 14px;
}

/* ───── MINPROMTORG PAGE ───── */

/* Causes: 2-col with image + content + list */
.v2-mpt-causes {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: center;
}
.v2-mpt-causes__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-paper);
  box-shadow: 0 30px 60px rgba(11,61,52,.18);
}
.v2-mpt-causes__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-mpt-causes__badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.96); border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(6px);
  border-left: 4px solid var(--gold-600);
}
.v2-mpt-causes__badge strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 28px);
  color: var(--gold-700); line-height: 1;
  font-feature-settings: "tnum" 1;
}
.v2-mpt-causes__badge span {
  font-size: 12.5px; color: var(--fg-3);
  margin-top: 6px; display: block;
}
.v2-mpt-causes__list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.v2-mpt-cause {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  align-items: start;
}
.v2-mpt-cause__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(56,155,139,.10); color: var(--accent);
  border-radius: 12px;
}
.v2-mpt-cause__icon svg { width: 22px; height: 22px; }
.v2-mpt-cause h4 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 16px; color: var(--fg-1);
  margin: 0 0 4px;
}
.v2-mpt-cause p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* Cause summary boxes row */
.v2-mpt-boxes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 64px;
}
.v2-mpt-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 22px;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-mpt-box:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-mpt-box__icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: rgba(201,162,75,.12); color: var(--gold-700);
  border-radius: 14px;
  display: grid; place-items: center;
}
.v2-mpt-box__icon svg { width: 26px; height: 26px; }
.v2-mpt-box h4 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 15.5px; color: var(--fg-1);
  margin: 0 0 6px; line-height: 1.25;
}
.v2-mpt-box p { font-size: 13px; color: var(--fg-3); line-height: 1.5; margin: 0; }

/* Two paths (balls vs СТ-1) */
.v2-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.v2-path {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 32px 32px 28px;
  backdrop-filter: blur(10px);
  position: relative;
}
.v2-path__num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; line-height: 1; font-weight: 700;
  color: rgba(201,162,75,.18);
  pointer-events: none;
}
.v2-path__head {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 20px;
}
.v2-path__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(201,162,75,.14);
  display: grid; place-items: center;
}
.v2-path__icon svg { width: 28px; height: 28px; color: var(--gold-500); }
.v2-path h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 20px; color: #fff; margin: 0 0 6px; line-height: 1.2;
}
.v2-path__sub { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; }
.v2-path__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.v2-path__item {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5;
}
.v2-path__item::before {
  content: '';
  width: 7px; height: 7px; margin-top: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,75,.2);
}

/* Merge / destination section */
.v2-paths-dest {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(201,162,75,.14) 0%, rgba(201,162,75,.04) 100%);
  border: 1px solid rgba(201,162,75,.28);
  border-radius: 18px;
  padding: 28px 32px;
  display: grid; grid-template-columns: 72px 1fr; gap: 24px;
  align-items: center;
}
.v2-paths-dest__icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: var(--gold-600);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(201,162,75,.4);
}
.v2-paths-dest__icon svg { width: 36px; height: 36px; color: #fff; }
.v2-paths-dest__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.v2-paths-dest h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 20px; color: #fff; margin: 0 0 6px; line-height: 1.25;
}
.v2-paths-dest p { font-size: 14.5px; color: rgba(255,255,255,.8); line-height: 1.55; margin: 0; }

/* Benefits — 4 cards with lists */
.v2-mpt-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.v2-mpt-benefit {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-mpt-benefit:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-mpt-benefit__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(56,155,139,.10); color: var(--accent);
  display: grid; place-items: center;
}
.v2-mpt-benefit__icon svg { width: 26px; height: 26px; }
.v2-mpt-benefit h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17px; line-height: 1.25; margin: 0; color: var(--fg-1);
}
.v2-mpt-benefit__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.v2-mpt-benefit__item {
  display: grid; grid-template-columns: 16px 1fr; gap: 8px;
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
}
.v2-mpt-benefit__item svg { margin-top: 4px; color: var(--accent); flex-shrink: 0; }
.v2-mpt-benefit__highlight {
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(201,162,75,.10);
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--gold-700);
  text-align: center;
}

/* Pricing — 2 plans */
.v2-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.v2-pricing__card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.v2-pricing__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.v2-pricing__card--featured {
  background: linear-gradient(160deg, #0B3D34 0%, #07241D 100%);
  color: #fff;
  border-color: var(--gold-600);
  box-shadow: 0 24px 60px rgba(11,61,52,.18);
}
.v2-pricing__badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-600); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201,162,75,.4);
}
.v2-pricing__badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px; line-height: 1; font-weight: 700;
  color: var(--gold-600); margin: 0;
}
.v2-pricing__card--featured .v2-pricing__badge-num { color: var(--gold-500); }
.v2-pricing h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 22px; margin: 0; line-height: 1.2;
}
.v2-pricing__cond { font-size: 14px; color: var(--fg-3); margin: 0; }
.v2-pricing__card--featured .v2-pricing__cond { color: rgba(255,255,255,.65); }
.v2-pricing__divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
.v2-pricing__card--featured .v2-pricing__divider { background: rgba(255,255,255,.15); }
.v2-pricing__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.v2-pricing__feature {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 14px; line-height: 1.5;
}
.v2-pricing__feature::before {
  content: ''; width: 12px; height: 12px; margin-top: 5px;
  border-radius: 50%;
  background: rgba(56,155,139,.2);
  border: 2px solid var(--accent);
}
.v2-pricing__card--featured .v2-pricing__feature::before {
  background: rgba(201,162,75,.2);
  border-color: var(--gold-500);
}
.v2-pricing__promo {
  margin-top: 40px;
  background: rgba(56,155,139,.08);
  border: 1px solid rgba(56,155,139,.25);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
}
.v2-pricing__promo-title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 22px; color: var(--fg-1); margin-bottom: 6px;
}
.v2-pricing__promo-text { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.6; }

/* How to start */
.v2-start { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v2-start__card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-start__card:hover { border-color: var(--gold-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-start__n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px; line-height: 1; font-weight: 700;
  color: var(--gold-600); margin-bottom: 14px;
}
.v2-start__card h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 18px; color: var(--fg-1); margin: 0 0 10px; line-height: 1.25;
}
.v2-start__card p { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin: 0; }

/* FAQ */
.v2-faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 48px; align-items: start;
}
.v2-faq-img {
  position: sticky; top: 100px;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-paper);
  box-shadow: 0 30px 60px rgba(11,61,52,.18);
}
.v2-faq-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-faq-list { display: flex; flex-direction: column; gap: 12px; }
.v2-faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.v2-faq-item[open] { border-color: var(--accent); }
.v2-faq-item summary {
  list-style: none;
  padding: 20px 56px 20px 24px;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 15.5px; line-height: 1.35;
  color: var(--fg-1);
  cursor: pointer;
  position: relative;
  transition: color .15s;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(56,155,139,.12);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  transition: transform .25s, background .25s;
}
.v2-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--accent); color: #fff; }
.v2-faq-item summary:hover { color: var(--accent); }
.v2-faq-item p {
  margin: 0;
  padding: 0 28px 22px 24px;
  font-size: 14.5px; line-height: 1.65; color: var(--fg-2);
}
.v2-faq-item p strong { color: var(--fg-1); font-weight: 700; }

@media (max-width: 1100px) {
  .v2-mpt-causes { grid-template-columns: 1fr; }
  .v2-mpt-boxes { grid-template-columns: repeat(2, 1fr); }
  .v2-paths { grid-template-columns: 1fr; }
  .v2-mpt-benefits { grid-template-columns: repeat(2, 1fr); }
  .v2-pricing { grid-template-columns: 1fr; max-width: 540px; }
  .v2-start { grid-template-columns: 1fr; }
  .v2-faq-layout { grid-template-columns: 1fr; }
  .v2-faq-img { position: static; max-width: 460px; margin: 0 auto 32px; aspect-ratio: 16/9; }
}
@media (max-width: 720px) {
  .v2-mpt-boxes { grid-template-columns: 1fr; }
  .v2-mpt-benefits { grid-template-columns: 1fr; }
  .v2-paths-dest { grid-template-columns: 1fr; text-align: center; }
  .v2-paths-dest__icon { margin: 0 auto; }
}

/* ───── RNP detailed page — consequences, cases, reviews ───── */
.v2-rnp-conseq {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 32px;
}
.v2-rnp-conseq__item {
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--danger);
  border-radius: 12px;
  padding: 24px;
}
.v2-rnp-conseq__item h4 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 15.5px; line-height: 1.3;
  margin: 0;
  color: var(--fg-1);
}

.v2-rnp-cases {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.v2-rnp-case {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-rnp-case:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.v2-rnp-case__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.v2-rnp-case__company {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 16.5px; color: var(--fg-1); margin: 0;
  line-height: 1.25;
}
.v2-rnp-case__region {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(56,155,139,.10);
}
.v2-rnp-case__row { display: flex; flex-direction: column; gap: 3px; }
.v2-rnp-case__row-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3);
}
.v2-rnp-case__row-text {
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.v2-rnp-case__result {
  background: rgba(56,155,139,.08); border-radius: 8px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
}
.v2-rnp-case__result .v2-rnp-case__row-label { color: var(--accent); }
.v2-rnp-case__result strong {
  color: var(--success-600); font-weight: 700;
}
.v2-rnp-case__doc {
  font-size: 12.5px; color: var(--fg-3);
  font-family: var(--font-mono, ui-monospace);
  margin-top: auto; padding-top: 8px;
}

/* Reviews (testimonials) */
.v2-rnp-reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.v2-rnp-review {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
}
.v2-rnp-review::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 110px; line-height: 1;
  color: rgba(201,162,75,.18);
  pointer-events: none;
}
.v2-rnp-review__text {
  font-size: 14.5px; line-height: 1.7;
  color: var(--fg-2);
  font-style: italic;
  margin: 0;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-rnp-review__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.v2-rnp-review__author-name {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 14px; color: var(--fg-1);
  line-height: 1.3;
}
.v2-rnp-review__author-role {
  font-size: 12.5px; color: var(--fg-3);
  margin-top: 2px;
}
.v2-rnp-review__seal {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,162,75,.12);
  border: 2px dashed var(--gold-600);
  color: var(--gold-700);
  display: grid; place-items: center;
  font-family: var(--font-mono, ui-monospace);
  font-size: 8.5px; font-weight: 700;
  text-align: center; line-height: 1;
}

/* Additional services (взыскание) */
.v2-rnp-extra {
  background: linear-gradient(160deg, #07241D 0%, #0B3D34 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  position: relative; overflow: hidden;
}
.v2-rnp-extra::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.v2-rnp-extra > * { position: relative; }
.v2-rnp-extra__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 40px;
}
.v2-rnp-extra__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 32px); line-height: 1.15;
  color: #fff; margin: 14px 0 0;
}
.v2-rnp-extra__title em { color: var(--gold-500); font-style: italic; }
.v2-rnp-extra__stats {
  display: flex; gap: 40px;
}
.v2-rnp-extra__stat strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 44px);
  color: var(--gold-500);
  line-height: 1; letter-spacing: -.02em;
  font-feature-settings: "tnum" 1;
}
.v2-rnp-extra__stat span {
  font-size: 13px; color: rgba(255,255,255,.65);
  margin-top: 8px; display: block;
}
.v2-rnp-extra__services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15);
}
.v2-rnp-extra__service {
  font-size: 13.5px; color: rgba(255,255,255,.85);
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
}
.v2-rnp-extra__service::before {
  content: '✓'; color: var(--gold-500); font-weight: 700;
}

@media (max-width: 1100px) {
  .v2-rnp-conseq { grid-template-columns: repeat(2, 1fr); }
  .v2-rnp-cases { grid-template-columns: 1fr; }
  .v2-rnp-reviews { grid-template-columns: 1fr; }
  .v2-rnp-extra__grid { grid-template-columns: 1fr; }
  .v2-rnp-extra__services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .v2-rnp-conseq { grid-template-columns: 1fr; }
  .v2-rnp-extra { padding: 32px 24px; }
  .v2-rnp-extra__services { grid-template-columns: 1fr; }
  .v2-rnp-extra__stats { gap: 24px; }
}

/* ───── SERVICE PAGES (rnp / mpt / arbitrazh / legal-support) ───── */

/* Hero — extends v2-page-hero with optional stats */
.v2-svc-hero__stats {
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  margin-top: 36px;
}
.v2-svc-hero__stat strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 40px); color: var(--gold-500);
  font-feature-settings: "tnum" 1; letter-spacing: -.02em;
  line-height: 1;
}
.v2-svc-hero__stat span {
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-top: 6px; display: block;
}

/* "What is X" two-column block */
.v2-svc-explain {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: start;
}
.v2-svc-explain__text { font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.v2-svc-explain__text p { margin: 0 0 16px; }
.v2-svc-explain__text p:last-child { margin-bottom: 0; }
.v2-svc-explain__text strong { color: var(--fg-1); font-weight: 700; }

.v2-svc-risks {
  display: flex; flex-direction: column; gap: 16px;
}
.v2-svc-risk {
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--danger);
  border-radius: 12px;
  padding: 22px 24px;
}
.v2-svc-risk strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 28px);
  color: var(--danger); line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum" 1;
}
.v2-svc-risk span { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* Directions of work — cards with case count badge */
.v2-svc-dirs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.v2-svc-dir {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-svc-dir:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-svc-dir__count {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--ks-font-display); font-weight: 700;
  color: var(--gold-700);
  font-size: 14px;
  align-self: flex-start;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(201,162,75,.10);
  font-feature-settings: "tnum" 1;
}
.v2-svc-dir h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 19px; line-height: 1.25; margin: 0; color: var(--fg-1);
}
.v2-svc-dir p { font-size: 14.5px; color: var(--fg-3); line-height: 1.6; margin: 0; flex: 1; }

/* Process steps — vertical timeline */
.v2-svc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative;
}
.v2-svc-steps::before {
  content: ''; position: absolute;
  top: 24px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600), var(--gold-300));
  z-index: 0;
}
.v2-svc-step { position: relative; z-index: 1; }
.v2-svc-step__num {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  background: var(--gold-600); color: #fff;
  border-radius: 50%;
  font-family: var(--ks-font-display); font-weight: 700; font-size: 18px;
  box-shadow: 0 0 0 6px var(--bg-paper);
}
.v2-svc-step h3 {
  text-align: center;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 16px; line-height: 1.25; margin: 0 0 8px; color: var(--fg-1);
}
.v2-svc-step p {
  text-align: center;
  font-size: 13.5px; color: var(--fg-3); line-height: 1.5; margin: 0;
}
.v2-svc-step p em {
  color: var(--gold-700); font-style: italic; font-weight: 600;
}

/* 8-step variant (2 rows × 4) — no connecting line, compact cards */
.v2-svc-steps--8 {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 18px;
}
.v2-svc-steps--8::before { display: none; }
.v2-svc-steps--8 .v2-svc-step__num {
  width: 42px; height: 42px; font-size: 16px;
  box-shadow: 0 0 0 5px var(--bg-paper);
}
.v2-svc-steps--8 .v2-svc-step h3 {
  font-size: 15px;
}
.v2-svc-steps--8 .v2-svc-step p {
  font-size: 12.5px; line-height: 1.45;
}

/* ── Vertical zigzag timeline (for 8-step RNP process) ── */
.v2-timeline {
  position: relative;
  padding: 16px 0;
  /* Use full container width so zigzag spans the whole page */
}
/* SVG snake path — zigzags waving through the timeline */
.v2-timeline-snake {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.v2-timeline-snake__bg {
  fill: none;
  stroke: rgba(201,162,75,.16);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.v2-timeline-snake__active {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(201,162,75,.55));
  transition: stroke-dashoffset .18s ease-out;
}
.v2-timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-auto-flow: dense;
  column-gap: 24px;
  align-items: stretch;
  padding: 0;
  margin-bottom: 12px;
  z-index: 1;
}
.v2-timeline__step:last-child { margin-bottom: 0; }
.v2-timeline__step:nth-child(even) {
  grid-template-columns: 1fr 100px;
}
.v2-timeline__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-300) 0%, var(--ink-400) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--ks-font-display); font-weight: 700; font-size: 20px;
  box-shadow: 0 0 0 5px var(--bg-paper);
  position: relative; z-index: 2;
  transform: scale(.7);
  transition:
    transform .6s cubic-bezier(.34,1.56,.64,1),
    background .5s ease,
    box-shadow .5s ease;
}
.v2-timeline__step:nth-child(odd) .v2-timeline__num { grid-column: 1; justify-self: center; }
.v2-timeline__step:nth-child(even) .v2-timeline__num { grid-column: 2; justify-self: center; }
.v2-timeline__step.is-visible .v2-timeline__num {
  transform: scale(1);
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  box-shadow:
    0 0 0 5px var(--bg-paper),
    0 4px 16px rgba(201,162,75,.4),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.v2-timeline__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  position: relative;
  max-width: 620px;
  opacity: 0;
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22,1,.36,1),
    border-color .25s,
    box-shadow .25s;
}
.v2-timeline__step:nth-child(odd) .v2-timeline__card {
  grid-column: 2;
  justify-self: start;
  text-align: left;
}
.v2-timeline__step:nth-child(even) .v2-timeline__card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.v2-timeline__step:nth-child(odd):not(.is-visible) .v2-timeline__card { transform: translateX(-40px); }
.v2-timeline__step:nth-child(even):not(.is-visible) .v2-timeline__card { transform: translateX(40px); }
.v2-timeline__step.is-visible .v2-timeline__card {
  opacity: 1; transform: translateX(0);
}
.v2-timeline__card:hover {
  border-color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.v2-timeline__phase {
  font-family: var(--ks-font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 6px;
}
.v2-timeline__title {
  font-family: var(--ks-font-display);
  font-weight: 700; font-size: 18px;
  line-height: 1.25; color: var(--fg-1);
  margin: 0 0 8px;
}
.v2-timeline__desc {
  font-size: 13.5px; line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.v2-timeline__desc em {
  color: var(--gold-700); font-style: italic; font-weight: 600;
}

/* Decorative markers (only shown on mobile straight-line version) */
.v2-timeline__marker { display: none; }

/* Mobile: single column with straight left line, no animations */
@media (max-width: 860px) {
  .v2-timeline-snake { display: none; }
  .v2-timeline {
    padding-left: 4px;
  }
  /* Straight vertical gold line on the left */
  .v2-timeline::before {
    content: '';
    position: absolute;
    left: 23px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
      var(--gold-400) 0%, var(--gold-600) 50%, var(--gold-500) 100%);
    z-index: 0;
  }
  /* Force same structure: num on left, card on right — regardless of :nth-child */
  .v2-timeline__step,
  .v2-timeline__step:nth-child(even) {
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    padding: 14px 0;
  }
  .v2-timeline__num,
  .v2-timeline__step:nth-child(odd) .v2-timeline__num,
  .v2-timeline__step:nth-child(even) .v2-timeline__num {
    grid-column: 1 !important;
    width: 46px; height: 46px; font-size: 17px;
    justify-self: center;
    /* DISABLE animation — always gold/active */
    transform: none !important;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%) !important;
    box-shadow:
      0 0 0 5px var(--bg-paper),
      0 4px 12px rgba(201,162,75,.3) !important;
    transition: none !important;
  }
  .v2-timeline__card,
  .v2-timeline__step:nth-child(odd) .v2-timeline__card,
  .v2-timeline__step:nth-child(even) .v2-timeline__card {
    grid-column: 2 !important;
    justify-self: stretch !important;
    text-align: left !important;
    max-width: none;
    margin: 0;
    /* DISABLE slide-in animation — always visible */
    opacity: 1 !important;
    transform: none !important;
    transition: border-color .25s, box-shadow .25s;
  }
  .v2-timeline__card:hover {
    transform: none !important;
  }
}

/* Stats bar (dark forest band) */
.v2-svc-stats-band {
  background: linear-gradient(160deg, #07241D 0%, #0B3D34 100%);
  color: #fff;
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.v2-svc-stats-band::before {
  content:""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(56,155,139,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56,155,139,.06) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.v2-svc-stats-band > * { position: relative; }
.v2-svc-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.v2-svc-stats-grid > div {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.v2-svc-stats-grid > div:last-child { border-right: none; }
.v2-svc-stats-num {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 48px);
  line-height: 1; letter-spacing: -.02em;
  color: var(--gold-500);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.v2-svc-stats-label {
  margin-top: 12px;
  font-size: 13.5px; color: rgba(255,255,255,.65);
}

/* Partner banner (link to dedicated micro-site) */
.v2-svc-partner {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.v2-svc-partner__text { flex: 1 1 60%; min-width: 280px; }
.v2-svc-partner__text strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 22px); line-height: 1.2;
  color: var(--fg-1); margin-bottom: 8px;
}
.v2-svc-partner__text p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55; }
.v2-svc-partner__action a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  background: var(--gold-600); color: #fff;
  border-radius: 10px;
  font-family: inherit; font-weight: 700; font-size: 14.5px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.v2-svc-partner__action a:hover { background: var(--gold-700); transform: translateY(-1px); }

@media (max-width: 1100px) {
  .v2-svc-explain { grid-template-columns: 1fr; }
  .v2-svc-dirs { grid-template-columns: repeat(2, 1fr); }
  .v2-svc-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .v2-svc-steps::before { display: none; }
  .v2-svc-steps--8 { grid-template-columns: repeat(2, 1fr); }
  .v2-svc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .v2-svc-stats-grid > div { border-right: none; }
  .v2-svc-stats-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 720px) {
  .v2-svc-dirs, .v2-svc-steps { grid-template-columns: 1fr; }
  .v2-svc-stats-grid { grid-template-columns: 1fr; gap: 28px 0; }
  .v2-svc-stats-grid > div:nth-child(odd) { border-right: none; }
  .v2-svc-partner { padding: 28px 24px; }
  .v2-svc-hero__stats { gap: 20px 32px; }
}

/* ───── VACANCIES PAGE ───── */
.v2-vac-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.v2-vac {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 32px 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px 32px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-vac:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.v2-vac__head {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.v2-vac__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 22px); line-height: 1.2;
  margin: 0; color: var(--fg-1);
}
.v2-vac__level {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(201,162,75,.12); color: var(--gold-700);
  text-transform: uppercase;
}
.v2-vac__meta {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  font-size: 13.5px; color: var(--fg-3);
  margin: -8px 0 4px;
}
.v2-vac__meta strong { color: var(--fg-1); font-weight: 600; }
.v2-vac__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.v2-vac__meta-item svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.v2-vac__desc { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }
.v2-vac__req {
  margin: 0; padding: 12px 16px;
  background: var(--bg-paper); border-radius: 10px;
  font-size: 14px; color: var(--fg-2); line-height: 1.55;
  border-left: 3px solid var(--gold-600);
}
.v2-vac__req::before {
  content: 'Требования · '; font-weight: 700; color: var(--gold-700);
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
}
.v2-vac__skills { display: flex; flex-wrap: wrap; gap: 6px; }
.v2-vac__skill {
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(56,155,139,.10); color: var(--accent);
}
.v2-vac__apply {
  justify-self: end; align-self: end;
  grid-column: 2; grid-row: 3 / 5;
}

.v2-vac-empty {
  text-align: center; padding: 64px 24px;
  background: var(--bg-paper);
  border: 1px dashed var(--border);
  border-radius: 18px;
  max-width: 720px; margin: 0 auto;
}
.v2-vac-empty__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  color: var(--accent);
  opacity: .55;
}
.v2-vac-empty__icon svg { width: 100%; height: 100%; display: block; }
.v2-vac-empty__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 28px); line-height: 1.2;
  color: var(--fg-1); margin: 0 0 16px;
}
.v2-vac-empty__text {
  font-size: 16px; line-height: 1.6; color: var(--fg-2);
  max-width: 540px; margin: 0 auto 28px;
}
.v2-vac-empty__text strong { color: var(--accent); font-weight: 700; }
.v2-vac-empty__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ───── THANKS PAGE — FLIPBOOK ───── */
.v2-bookwrap {
  width: 100%;
  max-width: 1240px;
  margin: 32px auto 0;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
/* In 2-page spread mode the book width = 2 × page width.
   Explicit width keeps it from shrinking to content. */
.v2-book__bezel {
  width: 1160px;
  max-width: 100%;
  position: relative;
  padding: 0;
  /* Drop shadow so the book "lifts" off the page */
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.18))
          drop-shadow(0 4px 12px rgba(0,0,0,.12));
}

.v2-book {
  width: 100%;
  /* StPageFlip controls actual sizing via JS */
}
.v2-book * { box-sizing: border-box; }
/* Each page content must not bleed outside its own page rect.
   Without this the text of a flipping page leaks below the book into the controls area. */
.v2-book .page,
.v2-book .stf__item,
.v2-book [class*="stf__block"] { overflow: hidden; }

/* ── Intro page (first interior page — right after front cover) ── */
.v2-book .page--intro {
  background: #fff;
  padding: 28px 26px 22px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.v2-book .page--intro::before {
  content: '«';
  position: absolute;
  top: 6px; right: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; line-height: 1;
  color: rgba(201,162,75,.16);
  pointer-events: none;
}
.v2-book .page--intro__eyebrow {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative;
}
.v2-book .page--intro__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.22;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.v2-book .page--intro__title em { color: var(--gold-600); font-style: italic; }
.v2-book .page--intro p {
  font-size: 11.5px; line-height: 1.5;
  color: var(--ink-700);
  margin: 0 0 8px;
  text-align: justify;
  hyphens: auto;
}
.v2-book .page--intro p:last-of-type { margin-bottom: 0; }
.v2-book .page--intro__sig {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--ink-200);
  text-align: right;
}
.v2-book .page--intro__sig-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-900);
  line-height: 1.35;
}
.v2-book .page--intro__sig-text span {
  font-family: var(--ks-font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 4px;
  display: inline-block;
}

/* ── Generic page (letter content) ── */
.v2-book .page {
  background: #fff;
  padding: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.v2-book .page__paper {
  flex: 1;
  background: var(--bg-paper);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.v2-book .page__paper img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.v2-book .page__caption {
  margin-top: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; color: var(--fg-3);
  font-family: var(--font-mono, ui-monospace);
}
.v2-book .page__caption strong { color: var(--fg-2); font-weight: 600; }
.v2-book .page__action {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold-600); color: #fff;
  padding: 6px 11px; border-radius: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  text-decoration: none;
  pointer-events: auto;
  z-index: 5;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
}
.v2-book .page:hover .page__action { opacity: 1; transform: translateY(0); }
.v2-book .page__action svg { width: 12px; height: 12px; }

/* ── Cover (leather green + gold embossing) ── */
.v2-book .page--cover {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(135deg, #0F4A3E 0%, #0B3D34 50%, #07241D 100%);
  color: #C9A24B;
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* Subtle leather texture via SVG noise */
.v2-book .page--cover::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .15 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* Gold border frame */
.v2-book .page--cover::after {
  content: ''; position: absolute;
  inset: 18px;
  border: 1.5px solid rgba(201,162,75,.35);
  border-radius: 4px;
  pointer-events: none;
}
.v2-book__cover-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 32px;
  text-align: center;
  z-index: 2;
}
.v2-book__cover-mark {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.6));
}
.v2-book__cover-mark path,
.v2-book__cover-mark rect { stroke: #C9A24B; fill: transparent; }
.v2-book__cover-mark rect:first-of-type { fill: rgba(201,162,75,.7); stroke: none; }
.v2-book__cover-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(201,162,75,.6);
  margin-bottom: 18px;
}
.v2-book__cover-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 32px);
  line-height: 1.15;
  color: #E2C271;
  letter-spacing: .005em;
  text-shadow:
    0 -1px 0 rgba(0,0,0,.55),
    0 1px 0 rgba(255,255,255,.06),
    0 2px 6px rgba(0,0,0,.4);
  margin: 0 0 28px;
}
.v2-book__cover-divider {
  width: 60%; max-width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.5), transparent);
  margin-bottom: 22px;
}
.v2-book__cover-brand {
  font-family: var(--ks-font-display);
  font-weight: 800; font-size: 13px;
  letter-spacing: .35em;
  color: rgba(201,162,75,.8);
  text-shadow: 0 1px 1px rgba(0,0,0,.5);
}
.v2-book__cover-brand-sub {
  margin-top: 6px;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(201,162,75,.5);
}
/* Inside back cover — quieter */
.v2-book .page--cover-back .v2-book__cover-title { font-size: 18px; }
.v2-book .page--cover-back .v2-book__cover-inner { padding: 80px 40px; }

/* ── Controls ── */
.v2-book__controls {
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap; justify-content: center;
}
.v2-book__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  background: #fff; color: var(--fg-1);
  border: 1px solid var(--border); border-radius: 999px;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.v2-book__btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.v2-book__btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.v2-book__btn svg { width: 14px; height: 14px; }
.v2-book__counter {
  font-size: 13.5px; color: var(--fg-2);
  font-feature-settings: "tnum" 1;
  min-width: 90px; text-align: center;
}
.v2-book__counter strong { color: var(--fg-1); font-weight: 700; }

/* Hint */
.v2-book__hint {
  margin-top: 18px;
  font-size: 12px; color: var(--fg-3);
  text-align: center;
  font-style: italic;
}

@media (max-width: 720px) {
  .v2-bookwrap { max-width: 100%; }
  .v2-book__cover-mark { width: 42px; height: 42px; margin-bottom: 16px; }
  .v2-book__cover-title { font-size: 18px !important; margin-bottom: 18px; }
  .v2-book__cover-inner { padding: 32px 18px; }
  .v2-book .page--intro { padding: 32px 24px; }
  .v2-book .page--intro__title { font-size: 18px; margin-bottom: 18px; }
  .v2-book .page--intro p { font-size: 13px; line-height: 1.6; }
}

/* ───── THANKS PAGE — gallery + lightbox (legacy, kept) ───── */
.v2-thanks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.v2-thanks-tile {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none; color: inherit;
}
.v2-thanks-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.v2-thanks-tile img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
  background: var(--bg-paper);
}
.v2-thanks-tile__label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(11,61,52,.92); color: #fff;
  padding: 9px 14px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  backdrop-filter: blur(4px);
}
.v2-thanks-tile__pdf-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold-600); color: #fff;
  padding: 5px 10px; border-radius: 6px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
}
.v2-thanks-tile__pdf-badge svg { width: 12px; height: 12px; }

.v2-thanks-empty {
  text-align: center; padding: 64px 20px;
  color: var(--fg-3);
}

/* ───── MEDIA PAGE — hero (centered) + trust block ───── */
.v2-page-hero--center { text-align: center; padding: 120px 0 88px; }
.v2-page-hero--center .v2-eyebrow { display: inline-flex; }
.v2-page-hero--center h1 { margin-left: auto; margin-right: auto; }
.v2-page-hero--center .v2-page-hero__lead {
  margin-left: auto; margin-right: auto;
  max-width: 720px;
}

.v2-trust { padding-top: 80px; padding-bottom: 56px; }
.v2-trust__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.v2-trust__inner .v2-eyebrow { display: inline-flex; }
.v2-trust__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 36px); line-height: 1.18;
  letter-spacing: -.02em;
  margin: 18px 0 32px;
  color: var(--fg-1);
}
.v2-trust__p {
  font-size: 17px; line-height: 1.75; color: var(--fg-2);
  margin: 0 0 22px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.v2-trust__p:last-child { margin-bottom: 0; }
.v2-trust__p--quiet {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15.5px; color: var(--fg-3);
  text-align: center;
  font-style: italic;
}
@media (max-width: 720px) {
  .v2-trust__p { text-align: left; }
}

/* ───── MEDIA PAGE — filters + cards ───── */
.v2-media-toolbar {
  position: sticky; top: 64px; z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 32px;
}
.v2-media-toolbar__row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.v2-media-toolbar__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-3);
  white-space: nowrap; padding-right: 8px;
}
.v2-media-toolbar__count {
  margin-left: auto;
  font-size: 13px; color: var(--fg-3);
}
.v2-media-toolbar__count strong { color: var(--fg-1); font-weight: 700; }

.v2-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-family: inherit;
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  color: var(--fg-2);
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.v2-chip:hover { border-color: var(--accent); color: var(--accent); }
.v2-chip.is-active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.v2-chip__num {
  display: inline-block;
  font-size: 11px; padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  color: inherit;
  margin-left: 4px;
}
.v2-chip:not(.is-active) .v2-chip__num {
  background: var(--bg-paper); color: var(--fg-3);
}

.v2-media-grid--big {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.v2-media-card--big {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.55)),
    url('../img/bg/bg-light-01.jpg') center/cover;
  border: 1px solid rgba(11,61,52,.10);
  border-left: 4px solid var(--accent);
  border-radius: 14px; padding: 24px 24px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  min-height: 280px;
  box-shadow: 0 4px 18px -8px rgba(11,61,52,.10);
  transition: border-left-width .2s ease, transform .25s ease, box-shadow .25s ease;
}
.v2-media-card--big:hover {
  border-left-width: 6px;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -10px rgba(11,61,52,.20);
}
.v2-media-card--big.is-hidden { display: none; }
.v2-media-card--big .v2-media__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.v2-media-card--big .v2-media__type { color: var(--accent); }
.v2-media-card--big .v2-media__year {
  font-feature-settings: "tnum" 1;
}
.v2-media-card--big h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17.5px; line-height: 1.35; margin: 0; color: var(--fg-1);
  /* line-clamp: 3 lines max */
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-media-card--big .v2-media__quote {
  font-size: 13.5px; line-height: 1.55; color: var(--fg-2);
  margin: 0; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-media-card--big .v2-media__src {
  font-size: 13px; color: var(--fg-2); font-weight: 600;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.v2-media-card--big .v2-media__src .arrow {
  color: var(--accent); font-size: 16px;
  transition: transform .2s;
}
.v2-media-card--big:hover .v2-media__src .arrow { transform: translateX(3px); }

.v2-media-empty {
  text-align: center; padding: 64px 20px;
  color: var(--fg-3);
  font-size: 16px;
}

/* ───── TEAM ───── */
.v2-team {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 32px;
}
.v2-team__card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.v2-team__card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.v2-team__photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: var(--bg-paper); margin-bottom: 14px;
}
.v2-team__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  filter: contrast(1.02) saturate(.95);
}
.v2-team__card h4 { font-family: var(--ks-font-display); font-weight: 700; font-size: 15.5px; line-height: 1.25; margin: 0 0 4px; }
.v2-team__card p { font-size: 12.5px; color: var(--fg-3); margin: 0; }

/* ── Team page: bigger cards with bio block ── */
.v2-team-page {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.v2-team-page__card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-team-page__card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-team-page__photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: var(--bg-paper);
}
.v2-team-page__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  filter: contrast(1.02) saturate(.95);
}
.v2-team-page__head { display: flex; flex-direction: column; gap: 4px; }
.v2-team-page__head h3 { font-family: var(--ks-font-display); font-weight: 700; font-size: 18px; line-height: 1.25; margin: 0; color: var(--fg-1); }
.v2-team-page__role {
  font-size: 12.5px; color: var(--accent); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.v2-team-page__bio { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.v2-team-page__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.v2-team-page__tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(56,155,139,.10); color: var(--accent);
  letter-spacing: .02em;
}

/* ── Philosophy block (4 reasoned points) ── */
.v2-philos__intro { max-width: 920px; margin: 0 0 56px; }
.v2-philos__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 44px); line-height: 1.12;
  letter-spacing: -.02em; margin: 16px 0 18px;
}
.v2-philos__title em { font-style: italic; color: var(--accent); }
.v2-philos__lead { font-size: 17.5px; line-height: 1.7; color: var(--fg-2); margin: 0; }

.v2-philos__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.v2-philos__item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.v2-philos__item:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-philos__num {
  font-family: var(--font-mono, ui-monospace);
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-600);
}
.v2-philos__item h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 22px; line-height: 1.22; margin: 0;
  color: var(--fg-1);
}
.v2-philos__item p {
  font-size: 15.5px; line-height: 1.7; color: var(--fg-2); margin: 0;
}
.v2-philos__item p strong { color: var(--accent); font-weight: 700; }
.v2-philos__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px; padding: 12px 18px;
  background: var(--accent); color: #fff;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background .15s, transform .15s;
  align-self: flex-start;
}
.v2-philos__cta:hover { background: var(--accent-press); transform: translateX(2px); }
.v2-philos__cta svg { width: 16px; height: 16px; }

/* Group label between rows */
.v2-team-group {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 18px;
  margin: 24px 0 -4px;
}
.v2-team-group:first-child { margin-top: 0; }
.v2-team-group__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  white-space: nowrap;
}
.v2-team-group__line { flex: 1; height: 1px; background: var(--border); }
.v2-team-group__count {
  font-size: 12px; color: var(--fg-3); font-weight: 600;
}

/* ───── CTA ───── */
.v2-cta {
  position: relative; overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,162,75,.20), transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(56,155,139,.20), transparent 50%),
    linear-gradient(160deg, rgba(7,36,29,.84) 0%, rgba(11,61,52,.78) 100%),
    url('../img/bg/bg-dark-green-04.jpg') center/cover;
  color: #fff;
  padding: 64px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.v2-cta::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.v2-cta > * { position: relative; }
.v2-cta h2 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 38px); line-height: 1.1;
  margin: 16px 0 16px; color: #fff;
}
.v2-cta p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; margin: 0; }
.v2-cta__phone-row {
  display: flex; align-items: baseline; gap: 18px; margin-top: 28px; flex-wrap: wrap;
}
.v2-cta__phone {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 28px; color: #fff; text-decoration: none; letter-spacing: .01em;
}
.v2-cta__phone-label { font-size: 13px; color: rgba(255,255,255,.55); }

.v2-form-card {
  background: #fff; color: var(--fg-1);
  border-radius: 14px; padding: 28px;
}
.v2-form-card h3 { font-family: var(--ks-font-display); font-weight: 700; font-size: 22px; margin: 0 0 4px; }
.v2-form-card p { font-size: 13px; color: var(--fg-3); margin: 0 0 18px; }
.v2-form-card label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-3); margin: 12px 0 6px;
}
.v2-form-card label:first-of-type { margin-top: 0; }
.v2-form-card input, .v2-form-card textarea {
  width: 100%; padding: 13px 14px; font-family: inherit; font-size: 14.5px;
  background: #fff; color: var(--fg-1); border: 1px solid var(--border);
  border-radius: 10px; transition: border-color .15s, box-shadow .15s;
}
.v2-form-card input:focus, .v2-form-card textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(56,155,139,.12);
}
.v2-form-card textarea { resize: vertical; min-height: 80px; }

/* ───── PAGE HERO (для внутренних страниц без карты) ───── */
.v2-page-hero {
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(56,155,139,.18), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(201,162,75,.14), transparent 50%),
    linear-gradient(160deg, rgba(7,36,29,.92) 0%, rgba(11,61,52,.88) 60%, rgba(15,44,37,.92) 100%),
    url('../img/bg/bg-dark-green-15.jpg') center/cover;
  color: #fff;
}
.v2-page-hero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(56,155,139,.18), transparent 38%),
    radial-gradient(circle at 80% 60%, rgba(201,162,75,.16), transparent 42%);
  filter: blur(2px);
  animation: v2-grad-shift var(--grad-anim-dur) ease-in-out infinite alternate;
  pointer-events: none;
}
.v2-page-hero::after {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.v2-page-hero > * { position: relative; z-index: 1; }
.v2-page-hero h1 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; color: #fff;
  margin: 20px 0 0; max-width: 920px;
}
.v2-page-hero h1 em { font-style: italic; color: var(--green-150); }
.v2-page-hero h1 .gold { color: var(--gold-500); font-style: italic; }
.v2-page-hero__lead {
  margin: 22px 0 0; font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.78); max-width: 720px;
}
.v2-page-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
.v2-page-hero__stat strong {
  display: block;
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 40px); color: var(--gold-500);
  font-feature-settings: "tnum" 1; letter-spacing: -.02em;
}
.v2-page-hero__stat span { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }

/* ───── ABOUT story (text + photo + timeline) ───── */
.v2-story {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: start;
}
.v2-story p { font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 0 0 14px; }
.v2-story p:last-of-type { margin-bottom: 24px; }
.v2-timeline {
  position: relative;
  display: flex; flex-direction: column;
  gap: 28px; margin-top: 28px;
  padding-left: 22px;
  max-width: 720px;
  --timeline-progress: 0;
}
/* Dim base rail */
.v2-timeline::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,162,75,.22);
  pointer-events: none;
}
/* Gold scroll-drawn rail */
.v2-timeline::after {
  content: ""; position: absolute;
  left: -2px; top: 0;
  width: 4px;
  height: calc(var(--timeline-progress, 0) * 100%);
  background: linear-gradient(180deg, #F2D58C 0%, #D4B568 50%, #B8923D 100%);
  box-shadow: 0 0 18px rgba(212,181,104,.7), 0 0 6px rgba(212,181,104,.95);
  border-radius: 3px;
  transition: height .12s linear;
  pointer-events: none;
  z-index: 1;
}

.v2-timeline__item {
  position: relative;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .55s ease, transform .55s ease;
}
.v2-timeline__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Dot — pop in with bouncy scale, then one calm pulse */
.v2-timeline__item::before {
  content:""; position: absolute; left: -27px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(201,162,75,.16);
  transform: scale(0);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1) .15s,
              box-shadow .25s ease;
  z-index: 2;
}
.v2-timeline__item.is-visible::before {
  transform: scale(1);
  animation: tl-dot-pulse 2.4s ease-out .55s 1;
}
.v2-timeline__item:hover::before {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(201,162,75,.22), 0 0 18px rgba(201,162,75,.5);
}
@keyframes tl-dot-pulse {
  0%   { box-shadow: 0 0 0 4px  rgba(201,162,75,.16); }
  40%  { box-shadow: 0 0 0 14px rgba(201,162,75,.04); }
  100% { box-shadow: 0 0 0 4px  rgba(201,162,75,.16); }
}

/* Stagger inner reveal: year → h4 → paragraphs */
.v2-timeline__year,
.v2-timeline__item h4,
.v2-timeline__item p {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.v2-timeline__item.is-visible .v2-timeline__year { transition-delay: .15s; }
.v2-timeline__item.is-visible h4               { transition-delay: .25s; }
.v2-timeline__item.is-visible p                { transition-delay: .35s; }
.v2-timeline__item.is-visible .v2-timeline__year,
.v2-timeline__item.is-visible h4,
.v2-timeline__item.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.v2-timeline__year {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 13.5px; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.v2-timeline__item h4 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17px; line-height: 1.3;
  margin: 0 0 8px; color: var(--fg-1);
}
.v2-timeline__item p {
  font-size: 14.5px; color: var(--fg-2);
  margin: 0 0 8px; line-height: 1.6;
}
.v2-timeline__item p:last-child { margin-bottom: 0; }

/* Reduced motion: skip transforms, keep instant reveal */
@media (prefers-reduced-motion: reduce) {
  .v2-timeline__item,
  .v2-timeline__item::before,
  .v2-timeline__year,
  .v2-timeline__item h4,
  .v2-timeline__item p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .v2-timeline::after { transition: none; }
}

.v2-story-photo {
  position: sticky; top: 100px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,61,52,.18);
  aspect-ratio: 4/5;
  background: var(--bg-paper);
}
.v2-story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.v2-story-photo .badge {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(255,255,255,.95); border-radius: 12px;
  padding: 14px 18px;
}
.v2-story-photo .badge strong { font-family: var(--ks-font-display); font-weight: 700; font-size: 15px; display: block; color: var(--fg-1); }
.v2-story-photo .badge span { font-size: 12.5px; color: var(--fg-3); margin-top: 4px; display: block; }

/* ───── BIG QUOTE block ───── */
.v2-bigquote {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #07241D 0%, #0B3D34 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.v2-bigquote::before {
  content: """; position: absolute; left: 50%; top: -40px; transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 320px; line-height: 1; font-weight: 700;
  color: rgba(201,162,75,.06); pointer-events: none;
}
.v2-bigquote::after {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(56,155,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,155,139,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.v2-bigquote__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.v2-bigquote p {
  font-family: var(--ks-font-display); font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 24px); line-height: 1.6;
  font-style: italic; color: rgba(255,255,255,.95);
  margin: 0 0 32px;
}
.v2-bigquote__sig {
  display: inline-flex; align-items: center; gap: 14px;
}
.v2-bigquote__sig img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: center 20%;
  border: 2px solid rgba(201,162,75,.5);
}
.v2-bigquote__sig strong { font-family: var(--ks-font-display); font-weight: 700; color: #fff; font-size: 15px; display: block; }
.v2-bigquote__sig span { font-size: 13px; color: rgba(255,255,255,.6); display: block; margin-top: 2px; }

/* ───── VALUES (4-card grid) ───── */
.v2-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.v2-value {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.v2-value:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-value__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,155,139,.10); color: var(--accent);
  display: grid; place-items: center;
}
.v2-value__icon svg { width: 22px; height: 22px; }
.v2-value h3 { font-family: var(--ks-font-display); font-weight: 700; font-size: 18px; line-height: 1.25; margin: 0; }
.v2-value p { font-size: 14.5px; color: var(--fg-3); line-height: 1.55; margin: 0; }

/* ───── FOOTER ───── */
.v2-footer {
  background:
    linear-gradient(rgba(7,36,29,.94), rgba(5,28,22,.96)),
    url('../img/bg/bg-dark-green-22.jpg') center/cover;
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  position: relative; overflow: hidden;
}
.v2-footer::before {
  content:""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(56,155,139,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56,155,139,.04) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.v2-footer > * { position: relative; }
.v2-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.v2-footer h4 {
  font-family: var(--ks-font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  margin: 0 0 20px;
}
.v2-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.v2-footer a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; transition: color .15s; }
.v2-footer a:hover { color: #fff; }
.v2-footer__about { margin: 20px 0 24px; line-height: 1.65; max-width: 360px; }
.v2-footer__socials { display: flex; gap: 10px; }
.v2-footer__socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
}
.v2-footer__socials a:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }
.v2-footer__socials svg { width: 16px; height: 16px; }
.v2-footer__brands { margin-top: 18px; display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.v2-footer__fine {
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 18px;
}
.v2-footer__fine a { color: rgba(255,255,255,.7); }

/* ───── MODAL (form-success) ───── */
.v2-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.v2-modal-overlay.is-open { display: flex; }
.v2-modal {
  background: #fff; border-radius: 18px; padding: 40px 32px;
  max-width: 420px; text-align: center;
}
.v2-modal__check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  margin: 0 auto 18px;
  animation: v2-pulse 2s ease infinite;
}
@keyframes v2-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56,155,139,.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(56,155,139,0); }
}
.v2-modal h3 { font-family: var(--ks-font-display); font-weight: 700; font-size: 22px; margin: 0 0 8px; }
.v2-modal p { color: var(--fg-3); margin: 0 0 22px; }

/* ───── animations: scroll reveal ───── */
.v2-anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.v2-anim.is-visible { opacity: 1; transform: translateY(0); }
.v2-anim.d1 { transition-delay: .08s; }
.v2-anim.d2 { transition-delay: .16s; }
.v2-anim.d3 { transition-delay: .24s; }
.v2-anim.d4 { transition-delay: .32s; }

/* ───── Lightbox for thanks ───── */
.v2-lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(7,30,23,.94); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.v2-lightbox.is-open { display: flex; }
.v2-lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.v2-lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: none;
  font-size: 22px;
}

/* ───── responsive ───── */
@media (max-width: 1100px) {
  .v2-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-services { grid-template-columns: repeat(2, 1fr); }
  .v2-service { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .v2-service:nth-child(2n) { border-right: none; }
  .v2-team, .v2-thanks, .v2-media { grid-template-columns: repeat(2, 1fr); }
  .v2-about-grid { grid-template-columns: 1fr; }
  .v2-cta { grid-template-columns: 1fr; padding: 48px 32px; }
  .v2-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1100px) {
  .v2-story { grid-template-columns: 1fr; }
  .v2-story-photo { position: static; max-width: 480px; margin: 0 auto; }
  .v2-page-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .v2-values { grid-template-columns: 1fr; }
  .v2-team-page { grid-template-columns: repeat(2, 1fr); }
  .v2-philos__grid { grid-template-columns: 1fr; }
  .v2-media-grid--big { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .v2-team-page { grid-template-columns: 1fr; }
  .v2-philos__item { padding: 24px 20px; }
  .v2-media-grid--big { grid-template-columns: 1fr; }
  .v2-media-toolbar { top: 56px; }
  .v2-vac { grid-template-columns: 1fr; padding: 24px; }
  .v2-vac__apply { grid-column: 1; grid-row: auto; justify-self: stretch; }
  .v2-vac__apply .v2-btn { width: 100%; }
}
@media (max-width: 720px) {
  .v2-c { padding: 0 20px; }
  .v2-nav { display: none; }
  .v2-burger { display: grid; place-items: center; }
  .v2-phone { display: none; }
  .v2-services, .v2-team, .v2-thanks, .v2-media, .v2-footer__grid {
    grid-template-columns: 1fr;
  }
  .v2-service { border-right: none; }
  .v2-ticker { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .v2-ticker__cell { border-right: none; padding: 0 16px; }
  .v2-ticker__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.10); }
  .v2-region-card { width: 220px; }
  .v2-hero { padding: 56px 0 48px; }
  .v2-sec { padding: 64px 0; }
  .v2-cta { padding: 36px 24px; }
  .v2-page-hero { padding: 80px 0 56px; }
  .v2-page-hero__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .v2-bigquote { padding: 56px 0; }
  .v2-bigquote::before { font-size: 200px; }
  .v2-marquee__item { font-size: 15px; padding: 0 12px; }
  .v2-marquee__track { gap: 28px; }

  /* Hero map: skip on mobile — saves bandwidth + UX is poor on touch */
  .v2-hero__map-panel { display: none !important; }

  /* Director photo on index — too large on mobile, hide */
  .v2-about-grid .v2-about-photo { display: none !important; }
  .v2-about-grid { grid-template-columns: 1fr; }
}

/* ============ Decorative marble-kintsugi art (service hero) ============ */
.v2-page-hero { position: relative; overflow: hidden; }
.v2-hero-art {
  position: absolute;
  right: 2%; top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 24vw, 360px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
  animation: v2-art-float 6s ease-in-out infinite;
}
.v2-hero-art img { width: 100%; height: 100%; object-fit: contain; }
.v2-hero-art::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 75, .18), transparent 60%);
  z-index: -1;
  animation: v2-art-glow 4s ease-in-out infinite;
}
.v2-hero-art--tall { aspect-ratio: 3 / 4; width: clamp(200px, 20vw, 300px); }
.v2-hero-art--xl { width: clamp(320px, 38vw, 580px); }

/* Section head split — by default text LEFT (wide), art RIGHT (narrow).
   Add .v2-head-split--art-left to invert (art LEFT narrow, text RIGHT wide). */
.v2-head-split {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 240px);
  gap: 40px;
  align-items: stretch;
  margin-bottom: 56px;
}
.v2-head-split--art-left { grid-template-columns: minmax(180px, 240px) 1fr; }
.v2-head-split__art {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
}
.v2-head-split__art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.25));
}
.v2-head-split__text { max-width: 720px; align-self: center; }
/* Smaller variants for art in head-split */
.v2-head-split__art--sm img { max-height: 180px; height: 180px; }
.v2-head-split__art--xs img { max-height: 120px; height: 120px; }
@media (max-width: 880px) {
  .v2-head-split { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .v2-head-split__art { max-width: 200px; margin: 0 auto; }
  .v2-head-split__art img { height: auto; }
  .v2-head-split__text { margin: 0 auto; }
}

/* Centered section head modifier — only h2 is centered, eyebrow stays left */
.v2-sec-head--center { max-width: 880px; margin-left: auto; margin-right: auto; }
.v2-sec-head--center h2 { text-align: center; }

/* Number wrapper with green underlay */
.v2-timeline__num-wrap {
  position: relative;
  width: 110px; height: 110px;
  display: grid; place-items: center;
  z-index: 2;
}
.v2-timeline__step:nth-child(odd) .v2-timeline__num-wrap {
  grid-column: 1; justify-self: center; align-self: start; margin-top: 8px;
}
.v2-timeline__step:nth-child(even) .v2-timeline__num-wrap {
  grid-column: 2; justify-self: center; align-self: end; margin-bottom: 8px;
}

/* Animated green underlay — pulsing gold-rimmed forest disc */
.v2-timeline__num-bg {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(56,155,139,.55) 0%, rgba(11,61,52,.92) 55%, rgba(7,36,29,.98) 100%);
  border: 1.5px solid rgba(212,181,104,.55);
  box-shadow:
    0 6px 18px rgba(7,36,29,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
  z-index: 1;
  transform: scale(.5);
  opacity: 0;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .5s ease;
}
.v2-timeline__num-bg::before,
.v2-timeline__num-bg::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(212,181,104,.6);
  opacity: 0;
  pointer-events: none;
}
.v2-timeline__step.is-visible .v2-timeline__num-bg {
  transform: scale(1);
  opacity: 1;
  animation: v2-num-glow 3.6s ease-in-out infinite;
}
.v2-timeline__step.is-visible .v2-timeline__num-bg::before {
  animation: v2-num-ring 3.6s ease-out infinite;
}
.v2-timeline__step.is-visible .v2-timeline__num-bg::after {
  animation: v2-num-ring 3.6s ease-out infinite;
  animation-delay: 1.8s;
}
@keyframes v2-num-glow {
  0%, 100% {
    box-shadow:
      0 6px 18px rgba(7,36,29,.35),
      0 0 0 0 rgba(212,181,104,.0),
      inset 0 1px 0 rgba(255,255,255,.10);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(7,36,29,.4),
      0 0 28px 6px rgba(212,181,104,.18),
      inset 0 1px 0 rgba(255,255,255,.14);
  }
}
@keyframes v2-num-ring {
  0%   { transform: scale(.95); opacity: .85; }
  60%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Marble number-image — sits on top of the green disc */
.v2-timeline__num-img {
  position: relative; z-index: 2;
  width: 86%; height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.45));
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  transform: scale(.9) rotate(0deg);
}
.v2-timeline__step.is-visible .v2-timeline__num-img {
  transform: scale(1) rotate(-3deg);
  animation: v2-num-bob 4.2s ease-in-out infinite;
}
@keyframes v2-num-bob {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%      { transform: scale(1.04) rotate(2deg); }
}

/* ───── GLOBAL CURSOR HALO ─────
   Follows the mouse across the whole site.
   Color flips: gold on dark sections, green on light.
   Smooth transition handled by CSS variables. */
#cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 350px; height: 350px;
  margin: -175px 0 0 -175px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  background: radial-gradient(circle,
    var(--halo-color, rgba(56,155,139,.22)) 0%,
    transparent 55%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .4s ease, background .8s ease;
  will-change: transform;
  --halo-color: rgba(56,155,139,.22);
}
#cursor-halo.is-active { opacity: 1; }
#cursor-halo.is-dark {
  --halo-color: rgba(212,181,104,.10);
  mix-blend-mode: screen;
}
#cursor-halo:not(.is-dark) {
  --halo-color: rgba(56,155,139,.14);
  mix-blend-mode: multiply;
}
@media (pointer: coarse) {
  #cursor-halo { display: none; }
}

/* Trust section megaphone art */
.v2-trust__art {
  width: 120px; height: 120px;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
  transition: transform .4s ease;
}
.v2-trust__art:hover { transform: rotate(-6deg) scale(1.05); }

/* Marble seal (replaces М.П. text) */
.v2-rnp-review__seal-img {
  width: 56px; height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}

/* Sundial + stats block on right of "Взыскание денег" text */
.v2-rnp-extra__stats-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}
.v2-rnp-extra__sundial {
  width: 140px; height: 140px;
  filter: drop-shadow(0 10px 24px rgba(212,181,104,.30));
  animation: v2-sundial-spin 18s linear infinite alternate;
}
@keyframes v2-sundial-spin {
  from { transform: rotate(-4deg); }
  to { transform: rotate(4deg); }
}

/* Trust layout (media): megaphone left sticky + text right */
.v2-trust__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.v2-trust__sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}
.v2-trust__sidebar-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.4));
}
@media (max-width: 880px) {
  .v2-trust__layout { grid-template-columns: 1fr; gap: 24px; }
  .v2-trust__sidebar { position: static; max-width: 220px; margin: 0 auto; }
}
.v2-page-hero > .v2-c { position: relative; z-index: 2; }
@keyframes v2-art-float {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%     { transform: translateY(-50%) translateY(-8px); }
}
@keyframes v2-art-glow {
  0%,100% { opacity: .7; }
  50%     { opacity: 1; }
}
@media (max-width: 1100px) {
  .v2-hero-art { display: none; }
}

/* Decorative band — block images used on content sections */
.v2-art-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 32px auto 0;
}
.v2-art-band__item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.v2-art-band__item img {
  width: 140px; height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
  transition: transform .35s cubic-bezier(.22,.9,.25,1);
}
.v2-art-band__item:hover img { transform: translateY(-6px) scale(1.04); }
.v2-art-band__item span {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

/* ============ practice: hero centered h1 + 2-col below ============ */
.v2-practice-hero { padding-bottom: 80px; }
.v2-practice-hero__head {
  text-align: left;
  max-width: 920px;
  margin: 0 0 48px;
}
.v2-practice-hero__head .v2-eyebrow { justify-content: flex-start; }
.v2-practice-hero__head h1 { margin: 0; }
.v2-practice-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.v2-practice-hero__map {
  position: relative;
  margin-top: 8px;
}
.v2-practice-hero__map .v2-map-wrap {
  position: relative;
  aspect-ratio: 1.65 / 1;
  min-height: 340px;
}
.v2-practice-hero__map-hint {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-500);
  opacity: .75;
  text-align: center;
}
.v2-practice-hero__map #v2-russia-svg path[data-code] {
  cursor: pointer;
  transition: fill .18s ease, filter .18s ease;
}
.v2-practice-hero__map #v2-russia-svg path[data-code]:hover {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(212,181,104,.35));
}
@media (max-width: 1100px) {
  .v2-practice-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .v2-practice-hero__map .v2-map-wrap { min-height: 280px; }
}

/* ============ practice: pride paragraph ============ */
.v2-practice-pride {
  position: relative;
  max-width: 780px;
  margin: 24px 0 0;
  padding: 20px 0 20px 28px;
  border-left: 2px solid var(--gold-500);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  font-weight: 400;
}
.v2-practice-pride em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-500);
}
.v2-practice-pride::before {
  content: '';
  position: absolute;
  left: -2px; top: 0;
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-500));
  filter: blur(1px);
  opacity: .8;
}
@media (max-width: 640px) {
  .v2-practice-pride { font-size: 15px; padding-left: 20px; }
}

/* ============ legal-support: pricing table, compare, partner ============ */
.v2-ls-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v2-ls-service {
  position: relative;
  background: linear-gradient(150deg, var(--green-800) 0%, var(--green-900) 100%);
  border: 1px solid rgba(201, 162, 39, .18);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform .35s cubic-bezier(.22,.9,.25,1), box-shadow .35s ease, border-color .3s ease;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  isolation: isolate;
}
.v2-ls-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 30%), rgba(212, 181, 104, .45), transparent 55%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 0;
}
.v2-ls-service::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(212, 181, 104, .15) 0%, rgba(212, 181, 104, .9) 50%, rgba(212, 181, 104, .15) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.v2-ls-service > * { position: relative; z-index: 2; }
.v2-ls-service:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 181, 104, .6);
  box-shadow: 0 18px 48px rgba(10, 34, 28, .5), 0 0 60px rgba(212, 181, 104, .45);
}
.v2-ls-service:hover::before { opacity: 1; }
.v2-ls-service:hover::after { opacity: 1; }
.v2-ls-service__num {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; line-height: 1;
  color: var(--gold-500);
  opacity: .9;
  transition: transform .35s ease, text-shadow .35s ease;
}
.v2-ls-service:hover .v2-ls-service__num {
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(212, 181, 104, .55);
}
.v2-ls-service__ball {
  width: 96px; height: 96px;
  object-fit: contain;
  align-self: flex-start;
  margin: -8px 0 0 -10px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
  transition: transform .4s cubic-bezier(.22,.9,.25,1);
}
.v2-ls-service:hover .v2-ls-service__ball {
  transform: translateY(-6px) rotate(-8deg) scale(1.1);
  filter: drop-shadow(0 12px 28px rgba(212,181,104,.4));
}
.v2-service__ball {
  width: 84px; height: 84px;
  object-fit: contain;
  margin: -8px 0 4px -8px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transition: transform .4s cubic-bezier(.22,.9,.25,1);
}
.v2-service:hover .v2-service__ball {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
}
.v2-marble-icon {
  width: 76px; height: 76px;
  object-fit: contain;
  margin: -4px 0 12px -4px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.30));
  transition: transform .35s cubic-bezier(.22,.9,.25,1);
}
.v2-mpt-benefit:hover .v2-marble-icon,
.v2-value:hover .v2-marble-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.07);
}
.v2-svc-step__ball {
  width: 90px; height: 90px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.40));
  transition: transform .4s cubic-bezier(.22,.9,.25,1);
}
.v2-svc-step:hover .v2-svc-step__ball {
  transform: translateY(-6px) rotate(-8deg) scale(1.1);
}
/* .v2-timeline__icon — removed; o_nas timeline now uses gold dots only */

/* Big quote with art (megaphone left) */
.v2-bigquote--bg14 {
  background:
    linear-gradient(160deg, rgba(7,36,29,.78) 0%, rgba(11,61,52,.74) 100%),
    url('../img/bg/bg-dark-green-14.jpg') center/cover;
}
.v2-bigquote__inner--withart {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
}
.v2-bigquote__art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.5));
}
.v2-bigquote__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.95);
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--gold-500);
  margin: 0 0 28px;
}
.v2-bigquote__quote::before {
  content: '"';
  position: absolute;
  left: -8px; top: -38px;
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  color: var(--gold-500);
  opacity: .5;
  line-height: 1;
}
@media (max-width: 880px) {
  .v2-bigquote__inner--withart { grid-template-columns: 1fr; gap: 24px; }
  .v2-bigquote__art { max-width: 200px; margin: 0 auto; }
}
.v2-ls-service h3 {
  font-size: 17px; font-weight: 600; line-height: 1.3; margin: 0;
  color: #fff;
}
.v2-ls-service p { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .72); margin: 0; }

.v2-partner-card {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 20px;
  padding: 48px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.v2-partner-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, .18), transparent 70%);
  pointer-events: none;
}
.v2-partner-card__label {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.v2-partner-card h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; line-height: 1.2; margin: 0 0 16px;
  color: #fff;
}
.v2-partner-card__lead { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 0 0 20px; }
.v2-partner-card__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.v2-partner-card__list li {
  padding-left: 28px; position: relative;
  font-size: 15px; color: rgba(255,255,255,.9);
}
.v2-partner-card__list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--gold-500);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.v2-partner-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--gold-500);
  color: var(--green-900);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}
.v2-partner-card__cta:hover { background: var(--gold-400, #d4ad2a); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.4); }
.v2-partner-card__emblem {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(201,162,39,.15), transparent 70%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.v2-partner-card__emblem svg { width: 160px; height: 160px; color: var(--gold-500); }

.v2-ls-pricing-wrap {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.v2-ls-pricing {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}
.v2-ls-pricing thead th {
  padding: 20px 18px;
  text-align: center;
  background: var(--green-900);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  border: none;
}
.v2-ls-pricing thead th:first-child {
  text-align: left;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.v2-ls-pricing thead th:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.v2-ls-pricing tbody tr { border-bottom: 1px solid var(--border); }
.v2-ls-pricing tbody tr:last-child { border-bottom: none; }
.v2-ls-pricing tbody tr:hover { background: var(--green-050); }
.v2-ls-pricing tbody td {
  padding: 18px;
  color: var(--fg-1);
}
.v2-ls-pricing tbody td:first-child {
  font-weight: 600;
  color: var(--green-900);
}
.v2-ls-pricing .v2-ls-pricing__price {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg-1);
  white-space: nowrap;
}
.v2-ls-pricing .v2-ls-pricing__price--best {
  color: var(--gold-600, #a8851d);
  font-size: 16px;
}
.v2-ls-pricing-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201,162,39,.08);
  border-left: 3px solid var(--gold-500);
  border-radius: 8px;
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.55;
}
.v2-ls-pricing-note svg { flex-shrink: 0; color: var(--gold-500); margin-top: 2px; }

.v2-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.v2-compare__col {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.22,.9,.25,1), box-shadow .4s ease, border-color .3s ease, opacity .3s ease;
}
.v2-compare__col--bad {
  background: var(--green-050);
  opacity: .88;
}
.v2-compare__col--bad:hover {
  transform: translateY(-3px);
  opacity: 1;
  box-shadow: 0 14px 36px rgba(30,79,58,.10);
}
.v2-compare__col--good {
  background: linear-gradient(135deg, rgba(25,77,65,.03), rgba(201,162,39,.05));
  border-color: var(--gold-500);
  box-shadow: 0 12px 40px rgba(201,162,39,.12);
}
.v2-compare__col--good::before {
  content: 'Рекомендуем';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gold-500);
  color: var(--green-900);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: v2-badge-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(201, 162, 39, .35);
}
.v2-compare__col--good::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(500px circle at 50% 0%, rgba(212, 181, 104, .15), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.v2-compare__col--good:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(201, 162, 39, .28), 0 0 0 1px rgba(201, 162, 39, .4);
  border-color: var(--gold-500);
}
.v2-compare__col--good:hover::after { opacity: 1; }
.v2-compare__col--good > * { position: relative; z-index: 1; }
@keyframes v2-badge-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(201, 162, 39, .35); }
  50%      { box-shadow: 0 6px 24px rgba(201, 162, 39, .65); }
}
.v2-compare__list li {
  transition: transform .25s ease, color .25s ease;
}
.v2-compare__list li:hover {
  transform: translateX(4px);
}
.v2-compare__vs {
  animation: v2-vs-breathe 3.5s ease-in-out infinite;
}
@keyframes v2-vs-breathe {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}
.v2-compare__col h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.v2-compare__col--good h4 { color: var(--green-900); }
.v2-compare__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.v2-compare__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-1);
}
.v2-compare__list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.v2-compare__col--bad .v2-compare__list li::before {
  background-color: rgba(197, 48, 48, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='%23c53030' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.v2-compare__col--good .v2-compare__list li::before {
  background-color: rgba(25, 77, 65, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2 2 5-5' stroke='%23194d41' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.v2-compare__vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-500);
  padding: 0 8px;
  align-self: center;
}

@media (max-width: 960px) {
  .v2-ls-services { grid-template-columns: repeat(2, 1fr); }
  .v2-partner-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .v2-partner-card__emblem { max-width: 200px; margin: 0 auto; }
  .v2-compare { grid-template-columns: 1fr; gap: 16px; }
  .v2-compare__vs { padding: 4px; font-size: 20px; }
}
@media (max-width: 640px) {
  .v2-ls-services { grid-template-columns: 1fr; }
  .v2-partner-card { padding: 28px 20px; }
  .v2-partner-card h3 { font-size: 22px; }
  .v2-ls-pricing thead th,
  .v2-ls-pricing tbody td { padding: 12px 10px; font-size: 13px; }
}

/* ═══════════════════ MEDIA CARD ENHANCEMENTS ═══════════════════ */
.v2-media__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
  min-height: 44px;
}
.v2-media__logo {
  max-height: 36px; max-width: 140px;
  width: auto; height: auto;
  object-fit: contain; object-position: left center;
  filter: grayscale(0.15) contrast(1.05);
  opacity: 0.92;
}
.v2-media__logo[src*="mashnews"] { max-height: 96px; max-width: 190px; }
.v2-media__logo-text {
  font-family: var(--ks-font-display);
  font-size: 18px; font-weight: 700;
  color: var(--gold-500);
  letter-spacing: .02em;
  line-height: 1.1;
}
.v2-media__badge {
  display: inline-block; flex-shrink: 0;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
}
.v2-media__badge--print    { color: #C9A24B; }
.v2-media__badge--online   { color: #6FB1A1; }
.v2-media__badge--industry { color: #A5C2A0; }
.v2-media__badge--radio    { color: #D88B6A; }
.v2-media__badge--video    { color: #E07B6F; }
.v2-media__source {
  font-family: var(--ks-font-display);
  font-size: 13px; font-weight: 600;
  color: rgba(11,61,52,.7);
  letter-spacing: .04em; text-transform: uppercase;
}
.v2-media__year {
  font-size: 13px; color: rgba(11,61,52,.5);
  font-feature-settings: "tnum" 1;
}
.v2-media-toolbar__row + .v2-media-toolbar__row { margin-top: 12px; }

/* ═══════════════════ BLOG ═══════════════════ */
.v2-blog-toolbar {
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.v2-blog-toolbar__row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.v2-blog-toolbar__label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-3);
  margin-right: 6px;
}
.v2-blog-feed {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.v2-blog-card {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff;
  border: 1px solid rgba(11,61,52,.08);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px 24px 24px 28px;
  text-decoration: none; color: inherit;
  min-height: 260px;
  box-shadow: 0 4px 18px -8px rgba(11,61,52,.10);
  transition: border-left-width .2s ease, transform .25s ease, box-shadow .25s ease;
}
.v2-blog-card--case { border-left-color: var(--gold-600); }
.v2-blog-card:hover {
  border-left-width: 6px;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -10px rgba(11,61,52,.20);
}
.v2-blog-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--fg-3);
}
.v2-blog-card__badge {
  display: inline-block; padding: 4px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.v2-blog-card__badge--news { color: var(--accent); }
.v2-blog-card__badge--case { color: var(--gold-600); }
.v2-blog-card__date {
  font-feature-settings: "tnum" 1; color: rgba(11,61,52,.55);
}
.v2-blog-card__title {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 17.5px; line-height: 1.3;
  margin: 0; color: var(--fg-1);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-blog-card__excerpt {
  font-size: 13.5px; line-height: 1.55; color: var(--fg-2);
  margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-blog-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.v2-blog-card__tag {
  display: inline-block;
  padding: 3px 9px;
  font-size: 11px; font-weight: 500;
  background: rgba(56,155,139,.10); color: var(--accent);
  border-radius: 4px;
}
.v2-blog-card__more {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.v2-blog-card__more .arrow { transition: transform .2s ease; }
.v2-blog-card:hover .v2-blog-card__more .arrow { transform: translateX(4px); }
.v2-blog-empty {
  padding: 60px 20px; text-align: center;
  color: var(--fg-3); font-size: 15px;
}
.v2-blog-pagination {
  margin: 40px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.v2-blog-pagination__info {
  font-size: 14px; color: var(--fg-2);
}

/* ───── BLOG POST PAGE ───── */
.v2-blog-post { padding-top: 80px; padding-bottom: 80px; }
.v2-blog-post__wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.v2-blog-post__back {
  grid-column: 1 / -1;
  display: inline-block;
  font-size: 14px; color: var(--accent); text-decoration: none;
  margin-bottom: 24px;
  font-weight: 600;
  transition: color .2s;
}
.v2-blog-post__back:hover { color: var(--green-700, #0B3D34); }
.v2-blog-post__article {
  max-width: 760px;
}
.v2-blog-post__head { margin-bottom: 32px; }
.v2-blog-post__title {
  font-family: var(--ks-font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 42px); line-height: 1.15;
  margin: 14px 0 18px;
  color: var(--fg-1); letter-spacing: -.01em;
}
.v2-blog-post__facts {
  display: grid; grid-template-columns: auto 1fr;
  gap: 8px 24px;
  margin: 0 0 32px;
  padding: 24px 28px;
  background: rgba(212,181,104,.07);
  border-left: 4px solid var(--gold-600);
  border-radius: 8px;
}
.v2-blog-post__facts dt {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--fg-3);
  align-self: center;
}
.v2-blog-post__facts dd {
  margin: 0;
  font-size: 16px; font-weight: 700;
  color: var(--fg-1);
  font-feature-settings: "tnum" 1;
}
.v2-blog-post__body {
  font-size: 16.5px; line-height: 1.75; color: var(--fg-1);
}
.v2-blog-post__body p {
  margin: 0 0 18px;
}
.v2-blog-post__body p:first-child {
  font-size: 18.5px; line-height: 1.55;
  color: var(--fg-1);
  font-weight: 500;
}
.v2-blog-post__cta {
  position: sticky; top: 100px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(11,61,52,.96), rgba(7,36,29,.98));
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(212,181,104,.25);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,.3);
}
.v2-blog-post__cta h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 19px; line-height: 1.25;
  margin: 0 0 12px; color: #fff;
}
.v2-blog-post__cta p {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin: 0 0 20px;
}
.v2-blog-post__cta .v2-btn { width: 100%; }
.v2-blog-post__cta-phone {
  display: block; margin-top: 14px;
  text-align: center;
  color: var(--gold-500);
  font-weight: 700; font-size: 17px;
  text-decoration: none;
  font-feature-settings: "tnum" 1;
}
.v2-blog-post__related {
  grid-column: 1 / -1;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.v2-blog-post__related h3 {
  font-family: var(--ks-font-display); font-weight: 700;
  font-size: 24px; margin: 0 0 24px;
}
.v2-blog-post__related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
@media (max-width: 1100px) {
  .v2-blog-feed { grid-template-columns: repeat(2, 1fr); }
  .v2-blog-post__wrap { grid-template-columns: 1fr; gap: 40px; }
  .v2-blog-post__cta { position: relative; top: 0; }
}
@media (max-width: 720px) {
  .v2-blog-feed { grid-template-columns: 1fr; }
  .v2-blog-post__related-grid { grid-template-columns: 1fr; }
  .v2-blog-post__title { font-size: 28px; }
  .v2-blog-post__body { font-size: 16px; }
  .v2-blog-post__body p:first-child { font-size: 17px; }
}

/* ═══════════════════ 404 PAGE ═══════════════════ */
.v2-404-hero {
  width: 100%;
  background: #0b1813;
  display: block;
  line-height: 0;
}
.v2-404-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: cover;
  object-position: center;
}
.v2-404-actions {
  background: linear-gradient(180deg, #0b1813 0%, #0d2a22 100%);
  padding: 56px 0 72px;
  border-top: 1px solid rgba(212,181,104,.18);
}
.v2-404-actions__row {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: center;
  margin-bottom: 36px;
}
.v2-404-actions__quick {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  justify-content: center; align-items: baseline;
  padding-top: 28px;
  border-top: 1px dashed rgba(212,181,104,.22);
  font-size: 14px;
}
.v2-404-actions__label {
  color: rgba(255,255,255,.5);
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  margin-right: 6px;
}
.v2-404-actions__quick a {
  color: var(--gold-500);
  text-decoration: none;
  border-bottom: 1px dotted rgba(212,181,104,.4);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.v2-404-actions__quick a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
@media (max-width: 720px) {
  .v2-404-hero__img { max-height: none; }
  .v2-404-actions { padding: 40px 0 56px; }
  .v2-404-actions__row { flex-direction: column; align-items: stretch; }
  .v2-404-actions__row .v2-btn { width: 100%; justify-content: center; }
}
