/* ============================================================
   НОВОСФЕРА v2.0 — Design System & Custom Styles
   UIkit 3 Overrides + Brand Components
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --color-deep-ocean: #0A3A3A;
  --color-deep-ocean-light: #0e4a4a;
  --color-pearl: #FBFBFB;
  --color-gold: #AF9159;
  --color-gold-light: #c4a86e;
  --color-gold-dark: #957a47;
  --color-active-teal: #1D7874;
  --color-charcoal: #121212;
  --color-border-light: rgba(18, 18, 18, 0.08);
  --color-border-gold: rgba(175, 145, 89, 0.3);

  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --glow-gold: 0 0 30px rgba(175, 145, 89, 0.25);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: var(--color-charcoal);
  background-color: var(--color-pearl);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.tag-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tag-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.tag-label--gold { color: var(--color-gold); }
.tag-label--teal { color: var(--color-active-teal); }
.tag-label--pearl { color: var(--color-pearl); }

h1, .h1 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h2, .h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

h3, .h3 {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
  font-weight: var(--fw-medium);
}

.body-text { font-size: 1rem; line-height: 1.7; }
.body-text p + p { margin-top: 1.25em; }

/* ============================================================
   4. SECTION COLOURS
   ============================================================ */
.section--dark {
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,120,116,0.3) 30%, rgba(29,120,116,0.4) 50%, rgba(29,120,116,0.3) 70%, transparent);
  margin: 0;
}

/* Grain texture overlay */
.grain-overlay { position: relative; }
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.grain-overlay > * { position: relative; z-index: 2; }

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10, 58, 58, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(175, 145, 89, 0.1);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 58, 58, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none !important;
}

.header-logo img { width: 38px; height: 38px; }

.header-logo-text {
  color: var(--color-pearl);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a,
.header-nav a:hover { text-decoration: none !important; }

.header-nav a {
  color: rgba(251,251,251,0.7);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.header-nav a:hover,
.header-nav a.active { color: var(--color-pearl); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.uk-button { line-height: inherit; }

a.uk-button-primary,
a.uk-button-primary:hover,
button.uk-button-primary { text-decoration: none !important; }

.uk-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 28px;
  background: var(--color-gold);
  color: var(--color-deep-ocean);
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.uk-button-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.uk-button-primary:hover {
  background: var(--color-gold-light);
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
  color: var(--color-deep-ocean);
}

.uk-button-primary:hover::before { opacity: 1; }
.uk-button-primary:active { transform: translateY(0); }

/* Header compact button */
.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid rgba(175, 145, 89, 0.7);
  color: var(--color-gold);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--color-gold);
  color: var(--color-deep-ocean);
  border-color: var(--color-gold);
  box-shadow: var(--glow-gold);
}

/* Secondary button (outline on dark) */
.uk-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 28px;
  background: none;
  border: 2px solid rgba(251,251,251,0.35);
  border-radius: var(--radius-sm);
  color: rgba(251,251,251,0.85);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none !important;
}

.uk-button-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.arrow-down {
  display: inline-block;
  transition: transform var(--transition-base);
}

.uk-button-secondary:hover .arrow-down {
  transform: translateY(3px);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 0;
}

.hero-content h1 {
  color: var(--color-pearl);
  margin-bottom: 28px;
}

.hero-content .lead {
  color: rgba(251,251,251,0.88);
  margin-bottom: 44px;
  max-width: 580px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
}

.scroll-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* Hero micro-metrics */
.hero-metrics {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(175,145,89,0.15);
}

.hero-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(175,145,89,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-metric-icon svg {
  width: 14px;
  height: 14px;
}

.hero-metric span {
  font-size: 0.78rem;
  color: rgba(251,251,251,0.55);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-metrics {
    flex-direction: column;
    gap: 16px;
  }
  .scroll-indicator { display: none; }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .hero-actions .uk-button-primary,
  .hero-actions .uk-button-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   8. OPENNESS SECTION (Block 2)
   ============================================================ */
.openness-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.openness-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.openness-content h2 {
  margin-bottom: 28px;
}

.openness-content .body-text {
  color: rgba(18,18,18,0.75);
}

.openness-accent {
  font-weight: var(--fw-semibold);
  color: var(--color-active-teal);
  font-size: 1.1rem;
  margin-top: 1.5em;
}

/* ============================================================
   9. RECOGNITION CARDS (Block 3: Segments)
   ============================================================ */
.recognition-section {
  padding: 100px 0 100px;
}

.recognition-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.recognition-card:hover {
  border-color: rgba(175,145,89,0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.recognition-card h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.recognition-block {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
}

.recognition-block--identify {
  background: rgba(29,120,116,0.06);
  border-left: 3px solid var(--color-active-teal);
  color: rgba(18,18,18,0.8);
}

.recognition-block--solution {
  background: rgba(175,145,89,0.06);
  border-left: 3px solid var(--color-gold);
  color: rgba(18,18,18,0.8);
}

.recognition-block-label {
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.recognition-block--identify .recognition-block-label {
  color: var(--color-active-teal);
}

.recognition-block--solution .recognition-block-label {
  color: var(--color-gold);
}

/* ============================================================
   10. TRIANGLE SECTION (Block 4)
   ============================================================ */
.triangle-section {
  padding: 100px 0 80px;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
  position: relative;
  overflow: hidden;
}

/* Triangle SVG container */
.triangle-visual {
  max-width: 520px;
  margin: 0 auto 60px;
  position: relative;
}

.triangle-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Triangle line — draw-on effect via stroke-dasharray */
.triangle-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.triangle-line--left   { transition-delay: 0.05s; }
.triangle-line--right  { transition-delay: 0.35s; }
.triangle-line--bottom { transition-delay: 0.65s; }

/* Animated — lines fully drawn */
.triangle-visual.animated .triangle-line {
  stroke-dashoffset: 0;
}

/* Median lines (decorative) */
.triangle-median {
  stroke: var(--color-gold);
  stroke-width: 0.4;
  fill: none;
  opacity: 0;
  transition: opacity 0.6s ease 1.2s;
}

.triangle-visual.animated .triangle-median {
  opacity: 0.12;
}

/* Inscribed circle */
.triangle-incircle {
  stroke: var(--color-gold);
  stroke-width: 0.5;
  fill: none;
  opacity: 0;
  transition: opacity 0.6s ease 1.2s;
}

.triangle-visual.animated .triangle-incircle {
  opacity: 0.08;
}

/* Vertex glow dots */
.triangle-vertex {
  fill: var(--color-gold);
  opacity: 0;
  transition: opacity 0.4s ease 0.9s;
}

.triangle-visual.animated .triangle-vertex {
  opacity: 1;
}

/* Center logo + text */
.triangle-center {
  opacity: 0;
  transition: opacity 0.5s ease 1.0s;
  transform-origin: center;
}

.triangle-visual.animated .triangle-center {
  opacity: 1;
}

/* Side labels (rotated) */
.triangle-label {
  fill: var(--color-pearl);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.triangle-label--left  { transition-delay: 0.15s; }
.triangle-label--right { transition-delay: 0.45s; }
.triangle-label--bottom { transition-delay: 0.75s; }

.triangle-visual.animated .triangle-label {
  opacity: 0.85;
}

/* Vertex glow animation */
@keyframes vertexPulse {
  0%, 100% { r: 4; opacity: 0.8; }
  50% { r: 6; opacity: 1; }
}

.triangle-visual.animated .triangle-vertex {
  animation: vertexPulse 3s ease-in-out infinite;
}

/* Glow filter behind vertices */
.vertex-glow {
  opacity: 0;
  transition: opacity 0.4s ease 0.9s;
}

.triangle-visual.animated .vertex-glow {
  opacity: 0.5;
}

/* Pillar cards beneath triangle */
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(175,145,89,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  border-color: rgba(175,145,89,0.35);
  background: rgba(255,255,255,0.06);
}

.pillar-card-num {
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 14px;
}

.pillar-card h3 {
  color: var(--color-pearl);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.pillar-card-sub {
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pillar-card p {
  color: rgba(251,251,251,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .pillar-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   11. HONESTY SECTION (Block 5)
   ============================================================ */
.honesty-section {
  padding: 100px 0;
}

.honesty-content {
  max-width: 720px;
  margin: 0 auto;
}

.honesty-content h2 {
  margin-bottom: 28px;
}

.honesty-content .body-text {
  color: rgba(18,18,18,0.75);
}

.honesty-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.honesty-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(18,18,18,0.75);
}

.honesty-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 2px;
  background: var(--color-active-teal);
  border-radius: 1px;
}

.honesty-accent {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--fw-semibold);
  color: var(--color-charcoal);
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgb(247, 252, 251); /* непрозрачный — перекрывает canvas */
  border: 1px solid rgba(29,120,116,0.14);
  line-height: 1.5;
  position: relative;
  z-index: 2; /* выше canvas (z-index: 0) */
}

/* ============================================================
   12. WEEK INVITATION (Block 6)
   ============================================================ */
.week-section {
  padding: 100px 0;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.week-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 960px) {
  .week-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.week-text-col .lead {
  color: rgba(251,251,251,0.72);
  margin-top: 20px;
}

/* Benefits checklist */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(251,251,251,0.82);
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(175,145,89,0.12);
  border: 1.5px solid rgba(175,145,89,0.4);
}

.benefits-list li::after {
  content: '\2713';
  position: absolute;
  left: 4px;
  top: 16px;
  font-size: 0.7rem;
  color: var(--color-gold);
  line-height: 20px;
}

/* Guarantees */
.guarantees {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(175,145,89,0.2);
}

.guarantees-list {
  list-style: none;
  padding: 0;
}

.guarantees-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(251,251,251,0.6);
}

.guarantees-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.week-accent {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: var(--fw-medium);
  color: rgba(251,251,251,0.85);
  margin-top: 32px;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   13. REGISTRATION SECTION v2.2 — Wide form card layout
   ============================================================ */
.registration-section {
  padding: 100px 0 80px;
  background: var(--color-surface);
}

/* Центрированный заголовок */
.registration-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.registration-header h2 {
  margin: 12px 0 20px;
}

.registration-header .lead {
  color: rgba(18,18,18,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Широкая карточка формы */
.registration-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-card);
}

.registration-form-card h4 {
  font-size: 1.65rem;
  font-weight: var(--fw-semibold);
  color: var(--color-charcoal);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: center;
}

/* Строка из двух полей */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .registration-form-card {
    padding: 36px 24px;
  }
  .registration-form-card h4 {
    font-size: 1.35rem;
  }
  .form-hint {
    font-size: 0.6rem !important;
  }
  .form-submit-btn {
    font-size: 0.72rem !important;
    padding: 16px 16px !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .btn-text-desktop { display: none !important; }
  .btn-text-mobile  { display: inline !important; }
}

/* Чекбоксы */
.form-checkboxes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

/* Строка на всю ширину */
.form-row--single {
  grid-template-columns: 1fr;
}

/* Кнопка submit */
.form-submit {
  margin-top: 32px;
  text-align: center;
}

.form-submit-btn {
  width: 100%;
  max-width: 440px;
  padding: 18px 32px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.06em;
}

.btn-text-mobile { display: none; }


.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 960px) {
  .registration-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.registration-text h3 {
  margin-bottom: 20px;
}

.registration-text .body-text {
  color: rgba(18,18,18,0.7);
}

.registration-highlight {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(29,120,116,0.05);
  border-left: 3px solid var(--color-active-teal);
  border-radius: 0 12px 12px 0;
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Form */
.registration-form-wrapper {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.registration-form-wrapper h4 {
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 28px;
  color: var(--color-charcoal);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18,18,18,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-pearl);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(18,18,18,0.35);
}

/* Длинный placeholder — уменьшен шрифт */
#reg-contact-handle::placeholder {
  font-size: 0.78rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-active-teal);
  box-shadow: 0 0 0 3px rgba(29,120,116,0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D7874' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(18,18,18,0.6);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 8px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-active-teal);
}

.form-checkbox--legal span {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
}

.form-checkbox--legal span a {
  color: var(--color-active-teal);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox--legal span a:hover {
  color: var(--color-charcoal);
}

.form-legal {
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(18,18,18,0.4);
  text-align: center;
  line-height: 1.5;
}

.form-legal a {
  color: var(--color-active-teal);
  text-decoration: underline;
}

/* ============================================================
   14. PRE-FOOTER
   ============================================================ */
.prefooter {
  padding: 80px 0;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
  text-align: center;
}

.prefooter h2 {
  color: var(--color-gold);
  margin-bottom: 28px;
}

.prefooter-heading {
  color: var(--color-pearl) !important;
}

.prefooter-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
  margin: 0 auto 32px;
  border-radius: 1px;
}

.prefooter .lead {
  color: rgba(251,251,251,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* FAQ Bridge (between Block 6 and Block 7 on index) */
.faq-bridge {
  text-align: center;
  padding: 48px 20px;
  background: linear-gradient(135deg, rgba(10,58,58,0.05) 0%, rgba(29,120,116,0.08) 100%);
  border-top: 1px solid rgba(29,120,116,0.1);
  border-bottom: 1px solid rgba(29,120,116,0.1);
}

.faq-bridge p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: rgba(18,18,18,0.7);
  font-weight: var(--fw-medium);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-bridge a {
  color: var(--color-active-teal);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(29,120,116,0.3);
  transition: all var(--transition-base);
  padding-bottom: 1px;
}

.faq-bridge a:hover {
  color: var(--color-deep-ocean);
  border-bottom-color: var(--color-deep-ocean);
}

/* Nav Login link */
.nav-login {
  color: rgba(251,251,251,0.85) !important;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium) !important;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: color var(--transition-base);
}

.nav-login:hover {
  color: var(--color-pearl) !important;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background-color: #071e1e;
  color: rgba(251,251,251,0.6);
  padding: 48px 0 24px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-brand-name img { width: 30px; height: 30px; }
.footer-brand-name span {
  color: var(--color-pearl);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(251,251,251,0.45);
}

.footer-col h4 {
  color: rgba(251,251,251,0.85);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(251,251,251,0.5);
  margin-bottom: 10px;
  transition: color var(--transition-base);
  text-decoration: none;
}

.footer-col a:hover { color: var(--color-gold); }

.footer-requisites {
  margin-top: 8px;
  margin-bottom: 28px;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(251,251,251,0.1);
}

.footer-requisites-title {
  color: rgba(251,251,251,0.88);
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-requisites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 48px;
}

@media (min-width: 960px) {
  .footer-requisites-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

.footer-req-company {
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--color-pearl);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.35;
}

.footer-req-dl {
  margin: 0;
}

.footer-req-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 18px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(251,251,251,0.06);
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-req-row:last-child {
  border-bottom: none;
}

.footer-req-row--block {
  grid-template-columns: 1fr;
  gap: 6px;
}

.footer-req-row dt {
  margin: 0;
  color: rgba(251,251,251,0.38);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.footer-req-row dd {
  margin: 0;
  color: rgba(251,251,251,0.72);
  text-align: right;
  word-break: break-word;
}

.footer-req-row--block dd {
  text-align: left;
  max-width: 36em;
}

.footer-req-row dd a {
  color: rgba(175, 145, 89, 0.9);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-req-row dd a:hover {
  color: var(--color-gold-light);
}

.footer-req-note {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  color: rgba(251,251,251,0.38);
  font-weight: var(--fw-regular);
}

@media (max-width: 480px) {
  .footer-req-row:not(.footer-req-row--block) {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-req-row:not(.footer-req-row--block) dd {
    text-align: left;
  }

  .footer-req-row dt {
    white-space: normal;
  }
}

.footer-legal {
  border-top: 1px solid rgba(251,251,251,0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(251,251,251,0.35);
  transition: color var(--transition-base);
  text-decoration: none;
}

.footer-legal-links a:hover { color: rgba(251,251,251,0.7); }

/* ============================================================
   15b. LEGAL DOCUMENT PAGES
   ============================================================ */
body.legal-doc-page {
  background: linear-gradient(180deg, #eef8f8 0%, var(--color-pearl) 240px);
}

.legal-hero {
  padding-top: 100px;
  padding-bottom: 28px;
  background: linear-gradient(
    135deg,
    rgba(10, 58, 58, 0.06) 0%,
    rgba(29, 120, 116, 0.08) 45%,
    rgba(175, 145, 89, 0.07) 100%
  );
  border-bottom: 1px solid var(--color-border-light);
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.legal-breadcrumb-link {
  color: rgba(18, 18, 18, 0.45);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.legal-breadcrumb-link:hover {
  color: var(--color-active-teal);
}

.legal-breadcrumb-link.is-active {
  color: var(--color-active-teal);
  font-weight: var(--fw-semibold);
  border-bottom-color: rgba(29, 120, 116, 0.35);
}

.legal-breadcrumb-sep {
  color: rgba(18, 18, 18, 0.22);
  user-select: none;
}

.legal-doc-title {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-doc-lead {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.55);
  font-weight: var(--fw-medium);
  max-width: 40em;
  line-height: 1.5;
}

.legal-doc-main {
  padding-top: 36px;
  padding-bottom: 80px;
}

.legal-doc {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
}

.legal-doc .legal-p {
  margin: 0 0 1em;
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(18, 18, 18, 0.84);
  text-align: justify;
  hyphens: auto;
}

.legal-doc .legal-heading {
  margin: 1.4em 0 0.65em;
  font-weight: var(--fw-semibold);
  color: var(--color-deep-ocean);
  line-height: 1.35;
}

.legal-doc .legal-heading:first-child {
  margin-top: 0;
}

.legal-doc h2.legal-heading {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.legal-doc h3.legal-heading {
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .legal-doc .legal-p {
    text-align: left;
    hyphens: none;
  }
}

/* ============================================================
   16. MOBILE MENU
   ============================================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

/* Periodic orbit animation — top bar flies around and lands at bottom */
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-pearl);
  border-radius: 2px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Periodic lift-drop on top bar — draws attention to burger menu */
.mobile-menu-toggle span:first-child {
  animation: burgerLift 6s ease-in-out 3s infinite;
}

@keyframes burgerLift {
  0%, 16.7%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-5px);
  }
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -310px;
  width: 300px;
  height: 100vh;
  background: var(--color-deep-ocean);
  z-index: 1001;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right var(--transition-base);
  border-left: 1px solid rgba(175,145,89,0.1);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  color: rgba(251,251,251,0.7);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-base);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--color-pearl); }

.mobile-nav-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 16px 12px;
  background: var(--color-gold);
  color: var(--color-deep-ocean) !important;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-bold);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  box-sizing: border-box;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .btn-header { display: none; }
  .header-actions .nav-login { display: none; }
}

/* Mobile typography improvements */
@media (max-width: 640px) {
  .body-text {
    font-size: 1.06rem;
    font-weight: var(--fw-medium);
    line-height: 1.75;
  }

  .lead {
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    font-weight: var(--fw-medium);
  }

  .openness-content .body-text {
    color: rgba(18,18,18,0.82);
  }

  .recognition-block {
    font-size: 0.96rem;
  }

  .guarantees-list li {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .faq-bridge p {
    font-size: 1.05rem;
  }

  /* Hero micro-metrics — larger on mobile */
  .hero-metric span {
    font-size: 0.92rem;
    color: rgba(251,251,251,0.7);
  }

  .hero-metric-icon {
    width: 36px;
    height: 36px;
  }

  .hero-metric-icon svg {
    width: 16px;
    height: 16px;
  }

  /* FAQ accordion — larger text on mobile */
  .faq-question {
    font-size: 1.12rem;
    padding: 22px 0;
  }

  .faq-answer p {
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(18,18,18,0.75);
  }

  /* Pillar cards (Три опоры) — larger on mobile */
  .pillar-card h3 {
    font-size: 1.25rem;
  }

  .pillar-card-sub {
    font-size: 0.82rem;
  }

  .pillar-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .pillar-card-num {
    font-size: 0.72rem;
  }
}

/* ============================================================
   17. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal);
  transition-delay: calc(var(--stagger-index, 0) * 0.12s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}

/* ============================================================
   18. VALUES PAGE
   ============================================================ */
.values-hero {
  padding: 140px 0 80px;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.values-hero h1 {
  margin-bottom: 20px;
}

.values-hero .lead {
  color: rgba(251,251,251,0.75);
  max-width: 600px;
}

.values-text-section {
  padding: 80px 0;
}

.values-text-content {
  max-width: 720px;
  margin: 0 auto;
}

.values-text-content h2 {
  margin-bottom: 24px;
}

.values-text-content .body-text {
  color: rgba(18,18,18,0.75);
}

/* Sticky layout for principles */
.values-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.values-split-left {
  position: sticky;
  top: 100px;
}

@media (max-width: 768px) {
  .values-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .values-split-left { position: static; }
}

/* Founders cards */
.founders-section {
  padding: 80px 0 100px;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.founder-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(175,145,89,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.founder-card:hover {
  border-color: rgba(175,145,89,0.3);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  filter: grayscale(15%);
  transition: filter var(--transition-base);
}

.founder-card:hover img {
  filter: grayscale(0%);
}

.founder-card h3 {
  color: var(--color-pearl);
  margin-bottom: 4px;
}

.founder-card .founder-role {
  font-size: 0.78rem;
  color: var(--color-gold);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.founder-card p {
  color: rgba(251,251,251,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   19. FAQ PAGE
   ============================================================ */
.faq-hero {
  padding: 140px 0 80px;
  background-color: var(--color-deep-ocean);
  color: var(--color-pearl);
}

.faq-hero h1 { margin-bottom: 20px; }
.faq-hero .lead {
  color: rgba(251,251,251,0.72);
  max-width: 560px;
}

.faq-section {
  padding: 60px 0 100px;
}

/* Accordion styling */
.faq-item {
  border-bottom: 1px solid rgba(18,18,18,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 1.1rem;
  color: var(--color-charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition-base);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--color-active-teal);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(18,18,18,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--color-active-teal);
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-active-teal);
  border-color: var(--color-active-teal);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(18,18,18,0.7);
  max-width: 680px;
}

/* ============================================================
   20. SCHEDULE CARD (Week section)
   ============================================================ */
.schedule-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(175,145,89,0.2);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  margin-bottom: 8px;
}

.schedule-card-title {
  color: var(--color-gold) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px !important;
}

.schedule-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.schedule-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(251,251,251,0.75);
  font-weight: var(--fw-medium);
}

.schedule-items {
  border-top: 1px solid rgba(175,145,89,0.12);
  padding-top: 16px;
}

.schedule-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(251,251,251,0.65);
  line-height: 1.5;
}

.schedule-time {
  flex-shrink: 0;
  min-width: 70px;
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   21. DECORATIVE QUOTES
   ============================================================ */
.decorative-quote {
  font-size: 3rem;
  line-height: 0;
  vertical-align: middle;
  opacity: 0.15;
  font-weight: var(--fw-bold);
  color: var(--color-active-teal);
  margin: 0 4px;
}

.decorative-quote--close {
  /* already styled by base class */
}

/* ============================================================
   22. CARD ICONS (recognition cards)
   ============================================================ */
.card-icon {
  flex-shrink: 0;
}

/* ============================================================
   23. FOUNDER IMAGE FIX
   ============================================================ */
.founder-card img {
  object-position: top center !important;
}

/* ============================================================
   24. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 48px; }
.mb-s { margin-bottom: 16px; }
.mb-m { margin-bottom: 32px; }
.mb-l { margin-bottom: 48px; }

/* ============================================================
   21. BREATHING ANIMATIONS (orbit dots — from v1 SVGs)
   ============================================================ */
@keyframes orbitBreathe1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.32; }
  50% { transform: translate(3px, -2px); opacity: 0.5; }
}
@keyframes orbitBreathe2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.32; }
  50% { transform: translate(-2px, 3px); opacity: 0.48; }
}

/* ============================================================
   25. OPENNESS DECO (background SVG element in block 2)
   ============================================================ */
.openness-section {
  position: relative;
  overflow: hidden;
}

.openness-deco {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.openness-deco-svg {
  width: 100%;
  height: auto;
  display: block;
}

.openness-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .openness-deco {
    width: 70%;
    right: -60px;
    opacity: 0.4;
  }
}

/* ============================================================
   26. VALUES & FAQ HERO — исправление контрастности заголовков
   ============================================================ */
.values-hero h1 {
  color: var(--color-gold);
}

.values-hero .lead {
  color: rgba(251,251,251,0.85);
}

.faq-hero h1 {
  color: var(--color-gold);
}

/* ============================================================
   27. FAQ HERO "Прямые ответы" — контраст
   ============================================================ */
.faq-hero .lead {
  color: rgba(251,251,251,0.85);
}

/* ============================================================
   28. HONESTY SECTION DECORATIVES
   ============================================================ */
.honesty-section {
  position: relative;
  overflow: hidden;
}

/* Neural background canvas — sits behind all content */
.neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Content sits above canvas */
.honesty-section .uk-container,
.openness-section .uk-container {
  position: relative;
  z-index: 1;
}

/* Large editorial quote SVG — top-left background */
.honesty-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.honesty-deco-quote {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 180px;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
}

/* Ambient constellation dots — right side */
.honesty-deco-dots {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 180px;
  height: auto;
  pointer-events: none;
}

/* Vertical editorial accent line */
.honesty-accent-line {
  position: absolute;
  top: 80px;
  left: calc((100% - 720px) / 2 - 32px);
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-active-teal), transparent);
  border-radius: 2px;
  z-index: 1;
}

@media (max-width: 960px) {
  .honesty-accent-line { display: none; }
  .honesty-deco-dots { width: 100px; opacity: 0.6; }
  .honesty-deco-quote { width: 140px; opacity: 0.5; }
}

/* Content sits above deco */
.honesty-section .uk-container {
  position: relative;
  z-index: 1;
}
