/* ═══════════════════════════════════════════════
   GLOBAL STYLES — чистый CSS
   ═══════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --radius: 1rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.235 0.028 254);
  --muted-foreground: oklch(0.53 0.024 254);
  --brand: oklch(0.363 0.111 252.4);
  --brand-foreground: oklch(0.99 0.002 250);
  --brand-deep: oklch(0.276 0.084 252.4);
  --azure: oklch(0.606 0.132 239.6);
  --emerald: oklch(0.679 0.146 161.5);
  --surface: oklch(0.976 0.004 250);
  --hairline: oklch(0.905 0.009 250);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  font-feature-settings: "cv11", "ss01", "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

/* ─── Layout Helpers ─── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-7 { gap: 28px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.gap-14 { gap: 56px; }
.gap-px { gap: 1px; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; top: 0; z-index: 50; }
.w-full { width: 100%; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.h-full { height: 100%; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.object-cover { object-fit: cover; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.self-start { align-self: flex-start; }
.col-span-2 { grid-column: span 2; }

/* ─── Colors ─── */
.text-muted { color: var(--muted-foreground); }
.text-brand { color: var(--brand); }
.text-azure { color: var(--azure); }
.text-emerald { color: var(--emerald); }
.text-foreground { color: var(--foreground); }
.text-brand-inverse { color: var(--brand-foreground); }
.text-brand-deep { color: var(--brand-deep); }

.bg-background { background-color: var(--background); }
.bg-surface { background-color: var(--surface); }
.bg-brand { background-color: var(--brand); }
.bg-brand-deep { background-color: var(--brand-deep); }
.bg-brand-inverse { background-color: var(--brand-foreground); }
.bg-hairline { background-color: var(--hairline); }

.border-hairline { border-color: var(--hairline); }
.border-brand { border-color: var(--brand); }

/* ─── Typography ─── */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azure);
}

.display-tight {
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
}

/* ─── Spacing ─── */
.mt-2 { margin-top: 8px; }
.mt-2\.5 { margin-top: 10px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-7 { margin-top: 28px; }
.mt-8 { margin-top: 32px; }
.mt-9 { margin-top: 36px; }
.mt-14 { margin-top: 56px; }
.mt-auto { margin-top: auto; }

.px-6 { padding-left: 24px; padding-right: 24px; }
.px-7 { padding-left: 28px; padding-right: 28px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.pt-4 { padding-top: 16px; }
.pt-16 { padding-top: 64px; }
.pb-16 { padding-bottom: 64px; }
.p-6 { padding: 24px; }
.p-7 { padding: 28px; }
.p-8 { padding: 32px; }
.pl-6 { padding-left: 24px; }
.pl-7 { padding-left: 28px; }
.pr-6 { padding-right: 24px; }
.space-y-px > * + * { margin-top: 1px; }
.space-y-2\.5 > * + * { margin-top: 10px; }

/* ─── Borders ─── */
.border { border: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-t { border-top: 1px solid; }
.border-r { border-right: 1px solid; }
.border-l { border-left: 1px solid; }
.border-b-2 { border-bottom: 2px solid; }
.border-l-2 { border-left: 2px solid; }
.border-r-2 { border-right: 2px solid; }
.border-t-2 { border-top: 2px solid; }

/* ─── Transitions ─── */
.transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
.transition-opacity { transition: opacity 0.3s; }
.transition-transform { transition: transform 0.3s; }

/* ─── Border radius utilities ─── */
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: calc(var(--radius) + 4px); }

/* ═══════════════════════════════════════════════
   SITE HEADER
   ═══════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgb(255 255 255 / 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header__top {
  display: none;
  border-bottom: 1px solid var(--hairline);
}

@media (min-width: 1024px) {
  .site-header__top { display: block; }
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 13px;
  color: var(--muted-foreground);
}

.site-header__top-left,
.site-header__top-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  transition: color 0.3s;
}

.site-header__top-link:hover { color: var(--brand); }

.site-header__top-link[type="button"] {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  line-height: inherit;
}

.site-header__top-lang {
  border-left: 1px solid var(--hairline);
  padding-left: 28px;
  font-weight: 500;
  color: var(--foreground);
}

.site-header__main {
  border-bottom: 1px solid var(--hairline);
}

.site-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.site-header__logo { flex-shrink: 0; }

.site-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1280px) {
  .site-header__nav { display: flex; }
}

.site-header__nav-link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(12 12 14 / 0.8);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.site-header__nav-link:hover { color: var(--brand); }

.site-header__dropdown-wrap { position: relative; }

.site-header__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 256px;
  border: 1px solid var(--hairline);
  background-color: var(--background);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  box-shadow: 0 16px 40px -24px oklch(0.363 0.111 252.4 / 0.45);
}

.site-header__dropdown-wrap:hover .site-header__dropdown,
.site-header__dropdown-wrap:focus-within .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--muted-foreground);
  transition: color 0.3s, background-color 0.3s;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
}

.site-header__dropdown-item:last-child { border-bottom: none; }
.site-header__dropdown-item:hover {
  background-color: var(--surface);
  color: var(--brand);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__cta {
  display: none;
}

@media (min-width: 768px) {
  .site-header__cta { display: inline-block; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.btn--brand {
  background-color: var(--brand);
  color: var(--brand-foreground);
}

.btn--brand:hover { background-color: var(--brand-deep); }

.btn--outline {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--foreground);
  transition: border-color 0.3s, color 0.3s;
}

.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn--ghost {
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.25);
  color: var(--brand-foreground);
}

.btn--ghost:hover { border-color: rgb(255 255 255 / 0.6); }

.btn--inverse {
  background-color: var(--brand-foreground);
  color: var(--brand-deep);
}

.btn--inverse:hover { opacity: 0.9; }

.site-header__hamburger {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  background: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1280px) {
  .site-header__hamburger { display: none; }
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--hairline);
  background-color: var(--background);
}

.mobile-menu.is-open { display: block; }

@media (min-width: 1280px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu__inner {
  padding: 16px 24px;
}

.mobile-menu__section {
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
}

.mobile-menu__section:last-child { border-bottom: none; }

.mobile-menu__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}

.mobile-menu__sublist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.mobile-menu__sublink {
  font-size: 13.5px;
  color: var(--muted-foreground);
}

.mobile-menu__cta {
  display: block;
  margin-top: 16px;
  background-color: var(--brand);
  color: var(--brand-foreground);
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero__grid {
  display: grid;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 64px;
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

.hero__title {
  margin-top: 24px;
  font-size: 38px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
  color: var(--brand);
}

@media (min-width: 640px) {
  .hero__title { font-size: 52px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 60px; }
}

.hero__text {
  margin-top: 28px;
  max-width: 576px;
  font-size: 16.5px;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__img-wrap { position: relative; }

.hero__img-container {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-wrap { position: relative; }

/* ─── Stats ─── */


.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(5, 1fr); }
}

.stat-item {
  padding: 32px 24px;
  border-top: 1px solid var(--hairline);
}

/* left border for right column — mobile (2-col) even items in right column */
.stat-item:nth-child(even) {
  border-left: 1px solid var(--hairline);
}

.stat-item--span-2 {
  grid-column: span 2;
  border-left: none;
}

@media (min-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(5, 1fr); }
  .stat-item:nth-child(even) { border-left: none; }
  .stat-item:nth-child(n+2) { border-left: 1px solid var(--hairline); }
  .stat-item--span-2 { grid-column: span 1; border-left: 1px solid var(--hairline); }
}

.stat-value {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.stat-label {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.25;
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════ */

.section {
}

.section--no-border {
  border-bottom: none;
}

.section__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .section__inner { padding-top: 96px; padding-bottom: 96px; }
}

.section__head { max-width: 672px; }

.section__title {
  margin-top: 20px;
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section__title { font-size: 38px; }
}

/* ─── Benefits Grid ─── */
.benefits-grid {
  display: grid;
  margin-top: 56px;
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  padding: 28px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.benefit-card:hover { background-color: var(--surface); }

.benefit-card__icon {
  width: 24px;
  height: 24px;
  color: var(--azure);
  transition: color 0.3s;
}

.benefit-card:hover .benefit-card__icon { color: var(--brand); }

.benefit-card__title {
  margin-top: 24px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.benefit-card__desc {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */

.about {
  background-color: var(--background);
}

.about__grid {
  display: grid;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.about__title {
  margin-top: 20px;
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .about__title { font-size: 38px; }
}

.about__text {
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.about__text + .about__text { margin-top: 16px; }

.about__list {
  margin-top: 36px;
  border-top: 1px solid var(--hairline);
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.about__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

.about__list-text {
  font-size: 14.5px;
  line-height: 1.625;
  color: var(--foreground);
}

.about__img-wrap { position: relative; }

.about__img-container {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}

.about__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__corner {
  display: none;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 64px;
  height: 64px;
  border-top: 2px solid var(--emerald);
  border-right: 2px solid var(--emerald);
}

@media (min-width: 1024px) {
  .about__corner { display: block; }
}

/* ═══════════════════════════════════════════════
   DIRECTIONS SECTION
   ═══════════════════════════════════════════════ */

.direction-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.direction-card__link:hover { color: var(--brand); }

.direction-card__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.direction-card__link:hover .direction-card__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   DIRECTIONS — VALUES GRID (golden-eagle style)
   ═══════════════════════════════════════════════ */

.dir-section { background-color: var(--surface); border-bottom: none; }

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 56px;
}

.dir-card {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--hairline);
  border-bottom: 2px solid var(--hairline);
  padding: 2.36rem 0;
  position: relative;
  transition: background .25s, padding .25s;
}

.dir-card:hover { background: transparent; padding-left: 0; }

.dir-card .value__icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: background .25s, border-color .25s;
}

.dir-card .value__icon svg {
  width: 27px;
  height: 27px;
  stroke: var(--foreground);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}

.dir-card:hover .value__icon {
  background: var(--brand);
  border-color: var(--brand);
}

.dir-card:hover .value__icon svg { stroke: #fff; }

.dir-card .value__idx {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  font-weight: 600;
  margin-bottom: 0.86rem;
}

.dir-card .value__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--brand);
  margin-bottom: 0.55rem;
}

.dir-card .value__text {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.dir-card .direction-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  text-decoration: none;
  color: inherit;
}

.dir-card .direction-card__link .circle-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.dir-card:hover .direction-card__link .circle-icon {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .dir-grid { grid-template-columns: 1fr; }
  .dir-card .value__icon { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════
   CTA BANNER — REALPROM STYLE
   ═══════════════════════════════════════════════ */

.cta-banner {
  position: relative;
  background-color: #0a0a12;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.65);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  gap: 48px;
  align-items: center;
  color: var(--brand-foreground);
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .cta-banner__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.cta-banner__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.cta-banner__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--brand-foreground);
}

.cta-banner__text {
  font-size: 15.5px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

.cta-banner__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-btn {
  width: 100%;
  max-width: 340px;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
}

.cta-banner__phone-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner__phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s;
}

.cta-banner__phone:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════
   NEWS CARDS
   ═══════════════════════════════════════════════ */

/* Carousel */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel__controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-end;
  margin-top: 2.75rem;
}
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 12px;
  height: 12px;
  background: var(--hairline);
  cursor: pointer;
}
.carousel__dot.is-active { background: var(--brand); }
.carousel__arrows { display: flex; gap: 0.6rem; }
.carousel__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--hairline);
  background: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: 0.2s;
}
.carousel__arrow svg { width: 18px; height: 18px; stroke: currentColor; }
.carousel__arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background-color: var(--background);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.news-card__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: var(--surface);
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-card__img img { transform: scale(1.04); }

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 28px;
}

.news-card__tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--azure);
}

.news-card__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--foreground);
}

.news-card__desc {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-foreground);
}

.news-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
}

.news-card__date { color: var(--muted-foreground); }

.news-card__link {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.news-card:hover .news-card__link { color: var(--brand); }

/* ═══════════════════════════════════════════════
   ASSOCIATION SECTION (pgs-style grid)
   ═══════════════════════════════════════════════ */

.assoc-sec {
  background-color: var(--surface);
  border-bottom: none;
}

.assoc-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.assoc-title {
  margin-top: 20px;
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .assoc-title { font-size: 38px; }
}

/* ═══════════════════════════════════════════════
   ASSOC GRID & CARDS (По Final plan.md)
   ═══════════════════════════════════════════════ */

/* Сетка для внутренних страниц */
.assoc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .assoc-grid { grid-template-columns: 1fr; }
}

/* Базовый UI-компонент карточки assoc-card для сетки */
.assoc-card {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  min-height: 260px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.assoc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--brand);
}

.assoc-card-feat {
  background: var(--brand-deep);
  color: var(--brand-foreground);
  border-color: var(--brand-deep);
  width: 100%;
}

.assoc-card-wide {
  width: 100%;
}

/* Изолированная 5-колоночная сетка для главной страницы (.assoc-sec) */
.assoc-sec .assoc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.assoc-sec .assoc-card {
  width: calc((100% - 64px) / 5);
  min-height: 380px;
}

.assoc-sec .assoc-card-feat,
.assoc-sec .assoc-card-wide {
  width: calc((100% - 64px) / 5 * 2 + 16px);
}

@media (max-width: 1000px) {
  .assoc-sec .assoc-card,
  .assoc-sec .assoc-card-feat,
  .assoc-sec .assoc-card-wide {
    width: calc((100% - 16px) / 2);
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .assoc-sec .assoc-card,
  .assoc-sec .assoc-card-feat,
  .assoc-sec .assoc-card-wide {
    width: 100%;
  }
}

.assoc-card-feat .assoc-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.assoc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.assoc-tag {
  font-size: 11px;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.assoc-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.assoc-card-feat .assoc-num {
  color: rgba(255, 255, 255, 0.4);
}

.assoc-card-title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--foreground);
}

.assoc-card-feat .assoc-card-title {
  color: var(--brand-foreground);
}

.assoc-card-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-foreground);
  flex: 1;
}

.assoc-card-feat .assoc-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.assoc-feat-img {
  margin-top: 20px;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
}

.assoc-feat-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.assoc-card-wide .assoc-feat-img {
  height: 180px;
}

.assoc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.assoc-card:hover .assoc-card-link { color: var(--brand); }

.assoc-card-feat .assoc-card-link { color: rgba(255, 255, 255, 0.9); }
.assoc-card-feat:hover .assoc-card-link { color: #fff; }

.assoc-card-link .circle-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.assoc-card-feat .assoc-card-link .circle-icon {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ─── Shimmer ─── */
.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-100%);
  z-index: 10;
  pointer-events: none;
}

.news-card:hover::after {
  transform: translateX(100%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid var(--hairline);
  background-color: var(--surface);
}

.site-footer__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .site-footer__inner { padding-top: 80px; padding-bottom: 80px; }
}

.site-footer__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; }
}

.site-footer__col-title { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--azure); }

.site-footer__links { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.site-footer__link {
  font-size: 13.5px;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.site-footer__link:hover { color: var(--brand); }

.site-footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--muted-foreground); }

.site-footer__contact a { transition: color 0.3s; }
.site-footer__contact a:hover { color: var(--brand); }

.site-footer__bottom {
  border-top: 1px solid var(--hairline);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12.5px;
  color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════
   REVEAL SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.21, 0.6, 0.35, 1),
              transform 0.8s cubic-bezier(0.21, 0.6, 0.35, 1),
              filter 0.8s ease;
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.21, 0.6, 0.35, 1),
              transform 0.6s cubic-bezier(0.21, 0.6, 0.35, 1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   DIRECTIONS — HAILIN PROCESS STYLE
   ═══════════════════════════════════════════════ */

.directions-grid-2 {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .directions-grid-2 {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }
}

.directions-text {
  position: sticky;
  top: 120px;
}

.directions-subtitle {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.625;
  color: var(--muted-foreground);
  max-width: 420px;
}

.dir-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}

.dir-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.dir-num {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--azure);
  width: 56px;
  flex-shrink: 0;
}

.dir-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.dir-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Carousel responsive */
@media (max-width: 900px) {
  .news-card { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 560px) {
  .news-card { flex: 0 0 100%; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES — BREADCRUMBS, HERO & COMPONENTS
   ═══════════════════════════════════════════════ */

/* Хлебные крошки */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted-foreground);
  margin-bottom: 20px;
}

.breadcrumb-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--brand);
}

.breadcrumb-separator {
  color: var(--hairline);
  font-size: 12px;
}

.breadcrumb-current {
  color: var(--brand);
  font-weight: 500;
}

/* Hero внутренних страниц — точная копия .hero с главной страницы */
.page-hero {
  position: relative;
  background-color: var(--background);
  border-bottom: 1px solid var(--hairline);
}

.page-hero__grid {
  display: grid;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-hero__grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 64px;
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

.page-hero__title {
  margin-top: 24px;
  font-size: 38px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 600;
  color: var(--brand);
}

@media (min-width: 640px) {
  .page-hero__title { font-size: 52px; }
}

@media (min-width: 1024px) {
  .page-hero__title { font-size: 60px; }
}

.page-hero__sub {
  margin-top: 28px;
  max-width: 576px;
  font-size: 16.5px;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.page-hero__sub + .page-hero__sub {
  margin-top: 10px;
}

.page-hero__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.page-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Контентные карточки и сетки */
.grid-2 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.grid-4 { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.content-card {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.content-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px oklch(0.363 0.111 252.4 / 0.12);
}

.content-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.015em;
}

.content-card__desc {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Таблицы данных */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--background);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.05);
}

.data-table, table.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.data-table th, table.table th {
  background-color: var(--brand-deep);
  color: var(--brand-foreground);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  border-bottom: none;
  white-space: nowrap;
}

.data-table td, table.table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  color: var(--foreground);
  font-size: 14px;
}

.data-table tr:last-child td, table.table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td, table.table tr:hover td {
  background-color: var(--surface);
}

table.table tbody tr:nth-child(even) td {
  background-color: oklch(0.976 0.004 250 / 0.4);
}


/* Элементы форм */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: var(--font-sans);
  background-color: var(--background);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) - 4px);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(0.363 0.111 252.4 / 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 500;
  background-color: var(--surface);
  color: var(--brand);
  border: 1px solid var(--hairline);
}

.badge--emerald {
  background-color: oklch(0.679 0.146 161.5 / 0.1);
  color: oklch(0.4 0.146 161.5);
  border-color: oklch(0.679 0.146 161.5 / 0.2);
}

.badge--amber {
  background-color: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}

.badge--rose {
  background-color: #fff1f2;
  color: #be123c;
  border-color: #fecdd3;
}

/* Макет с боковым меню (Сайдбар) */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Статичный контейнер без hover-подъёма */
.content-card--static {
  box-shadow: none !important;
  transform: none !important;
  border-color: var(--hairline) !important;
}

/* Инфо-блоки без иконок */
.notice-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background-color: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--foreground);
  line-height: 1.6;
}

.notice-box--amber {
  border-left-color: #d97706;
  background-color: #fffbeb;
  color: #92400e;
}

.notice-box--rose {
  border-left-color: #e11d48;
  background-color: #fff1f2;
  color: #881337;
}


/* Дополнительные шрифтовые и отступные утилиты */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.08em; }

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.p-4 { padding: 16px; }
.w-9 { width: 36px; }
.h-9 { height: 36px; }
.top-28 { top: 110px; }
.border-l-4 { border-left-width: 4px; }
.border-l-brand { border-left-color: var(--brand); }

/* Сайдбар навигация */
.sidebar-nav-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--muted-foreground);
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.sidebar-nav-item:hover {
  background-color: var(--surface);
  color: var(--brand);
}

.sidebar-nav-item.is-active {
  background-color: var(--surface);
  color: var(--brand);
  font-weight: 600;
}

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 48px; }
.p-3 { padding: 12px; }
.text-center { text-align: center; }
.text-rose-600 { color: #e11d48; }

.hero { position: relative; }
.stats { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.value { position: relative; }
.value__body { flex: 1; display: flex; flex-direction: column; }
.menu-icon, .close-icon { display: block; }

/* Дополнительные классы утилит для полного покрытия HTML */
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 12px; }
.mb-8 { margin-bottom: 32px; }
.mt-1 { margin-top: 4px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
.py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.hover\:underline:hover { text-decoration: underline; }
.text-lg { font-size: 18px; }
.text-emerald-600 { color: #059669; }

.stats__item { flex: 1; min-width: 140px; }
.stats__value { font-size: 28px; font-weight: 700; color: var(--brand); line-height: 1.2; }
.stats__label { font-size: 13px; color: var(--muted-foreground); margin-top: 4px; }

.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 768px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

.notice-box--amber {
  border-left-color: #d97706;
  background-color: #fffbeb;
  color: #92400e;
}

.news-card__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.news-card__text { font-size: 14px; color: var(--muted-foreground); margin-bottom: 16px; flex: 1; }

.flex-shrink-0 { flex-shrink: 0; }
.justify-end { justify-content: flex-end; }
.leading-relaxed { line-height: 1.625; }
.inline-block { display: inline-block; }

/* ═══════════════════════════════════════════════
   НОВЫЕ КОМПОНЕНТЫ (Final plan ШАГ 1)
   ═══════════════════════════════════════════════ */

/* ─── .btn--lg ─── */
.btn--lg { padding: 14px 28px; font-size: 14px; }

/* ─── .section--surface ─── */
.section--surface { background-color: var(--surface); }

/* ─── .filter-bar ─── */
.filter-bar {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.filter-bar__row {
  display: grid;
  gap: 16px;
  align-items: end;
}
@media (min-width: 768px) {
  .filter-bar__row--3 { grid-template-columns: 1fr 1fr 1fr auto; }
  .filter-bar__row--2 { grid-template-columns: 1fr auto; }
}

/* ─── .timeline ─── */
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before {
  content: ""; position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 1px; background: var(--hairline);
}
.timeline-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--azure); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding-top: 2px; position: relative; z-index: 1;
}
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand); border: 2px solid var(--background);
  box-shadow: 0 0 0 2px var(--brand);
}
.timeline-title {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--foreground); margin-bottom: 8px;
}
.timeline-desc {
  font-size: 14px; line-height: 1.625; color: var(--muted-foreground);
}

/* ─── .member-card ─── */
.member-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px; border: 1px solid var(--hairline);
  border-radius: var(--radius); background: var(--background);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.member-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px -8px oklch(0.363 0.111 252.4 / 0.1);
}
.member-card__abbr {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) - 4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--brand);
  letter-spacing: -0.03em;
}
.member-card__name {
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--foreground);
}
.member-card__meta {
  margin-top: 4px; font-size: 13px; color: var(--muted-foreground);
}

/* ─── .contact-row ─── */
.contact-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--hairline);
}
.contact-row:last-child { border-bottom: none; }
.contact-row__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) - 4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.contact-row__icon i, .contact-row__icon svg { width: 18px; height: 18px; }
.contact-row__label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 600;
  color: var(--muted-foreground); margin-bottom: 4px;
}
.contact-row__value {
  font-size: 16px; font-weight: 600; color: var(--foreground);
}
.contact-row__value a { color: var(--brand); }
.contact-row__value a:hover { opacity: 0.8; }

/* ─── .cta-inner ─── */
.cta-inner {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: grid; gap: 32px; align-items: center;
}
@media (min-width: 768px) {
  .cta-inner { grid-template-columns: 1fr auto; }
}
.cta-inner__eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--azure); margin-bottom: 12px;
}
.cta-inner__title {
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 600;
  letter-spacing: -0.03em; color: var(--foreground);
}
.cta-inner__text {
  margin-top: 8px; font-size: 14.5px;
  line-height: 1.6; color: var(--muted-foreground);
}

/* ─── .event-card ─── */
.event-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px oklch(0.363 0.111 252.4 / 0.1);
}
.event-card__date {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.event-card__day {
  font-size: 32px; font-weight: 600; letter-spacing: -0.04em;
  line-height: 1; color: var(--brand);
}
.event-card__month {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted-foreground); margin-top: 4px;
}
.event-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card__title {
  font-size: 16px; font-weight: 600; color: var(--foreground);
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.event-card__desc { font-size: 13.5px; color: var(--muted-foreground); line-height: 1.5; }
.event-card__location {
  margin-top: 16px; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--azure);
}
.event-card__btn-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

/* ─── .pub-item ─── */
.pub-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--hairline);
}
.pub-item:last-child { border-bottom: none; }
.pub-item__type {
  flex-shrink: 0; min-width: 80px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--azure);
  padding-top: 3px;
}
.pub-item__title {
  font-size: 16px; font-weight: 500; color: var(--foreground);
  line-height: 1.35; flex: 1;
}
.pub-item__meta { font-size: 13px; color: var(--muted-foreground); margin-top: 4px; }

/* ─── .milestones-grid ─── */
.milestones-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .milestones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.milestone-card {
  padding: 32px;
  background: var(--background);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.milestone-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px oklch(0.363 0.111 252.4 / 0.1);
}
.milestone-year {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--brand);
  margin-bottom: 20px;
  line-height: 1;
}
.milestone-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 12px;
}
.milestone-desc {
  font-size: 14px;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* ─── .initiatives-list ─── */
.initiatives-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.initiative-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.2s;
}
.initiative-item:hover {
  border-color: var(--brand);
}
.initiative-item__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 6px;
}
.initiative-item__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted-foreground);
}
.status-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  white-space: nowrap;
}
.status-badge--pending {
  background: oklch(0.96 0.04 80 / 0.5);
  color: oklch(0.6 0.1 80);
  border: 1px solid oklch(0.85 0.05 80 / 0.5);
}
.status-badge--approved {
  background: oklch(0.96 0.04 140 / 0.5);
  color: oklch(0.45 0.12 140);
  border: 1px solid oklch(0.85 0.05 140 / 0.5);
}
@media (max-width: 640px) {
  .initiative-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ─── .price-dynamics ─── */
.price-dynamics__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 24px;
}
.price-dynamics__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 576px) {
  .price-dynamics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .price-dynamics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .price-dynamics__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.price-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px oklch(0.363 0.111 252.4 / 0.1);
}
.price-card--current {
  border-color: var(--brand);
  background: oklch(0.363 0.111 252.4 / 0.03);
}
.price-card__month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azure);
  margin-bottom: 8px;
}
.price-card__value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 4px;
}
.price-card__change {
  font-size: 12px;
  font-weight: 500;
}
.price-card__change--neutral {
  color: var(--muted-foreground);
}
.price-card__change--up {
  color: oklch(0.55 0.15 140);
}
.price-card__change--down {
  color: oklch(0.55 0.15 20);
}


