@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/* header */

.aurelius-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(180deg, #0b1220 0%, #0d1528 60%, #0f1a2f 100%);
  box-shadow: 0 10px 28px rgba(5, 10, 20, 0.5);
  padding: clamp(12px, 2.2vw, 18px) 0;
}
.aurelius-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0) 0%, rgba(199,162,75,0.9) 50%, rgba(199,162,75,0) 100%);
  transform: scaleX(0.6);
  transform-origin: center;
  opacity: 0.9;
  animation: gildedSweep 2.4s ease-in-out infinite;
  pointer-events: none;
}

.c-suite-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  animation: headerReveal 800ms ease-out;
}

.brand-signet {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}
.brand-signet:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(199,162,75,0.6), 0 6px 16px rgba(199,162,75,0.15);
  background: rgba(255, 255, 255, 0.09);
}
.brand-signet__logo {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.42);
}
.brand-signet__name {
  color: #e7edf7;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  white-space: nowrap;
}

.nav-orchestrator .nav-ledger {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .nav-orchestrator .nav-ledger {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
  }
}

.nav-ledger__item {
  position: relative;
}

.nav-ledger__anchor {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #d8deea;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-radius: 999px;
  transition: color 300ms ease, transform 300ms ease, box-shadow 300ms ease, background-position 500ms ease;
  background-image: linear-gradient(90deg, rgba(199,162,75,0.2), rgba(199,162,75,0));
  background-size: 200% 100%;
  background-position: 100% 0;
}
.nav-ledger__anchor::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.85), rgba(199,162,75,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 350ms ease;
}
.nav-ledger__anchor:hover {
  color: #0d1424;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(199,162,75,0.25);
  background-position: 0 0;
  background-color: rgba(231, 226, 217, 0.85);
}
.nav-ledger__anchor:hover::after {
  transform: scaleX(1);
}
.nav-ledger__anchor:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(199,162,75,0.55);
}

.nav-switcher {
  display: none;
}
@media (max-width: 1199.98px) {
  .nav-switcher {
    display: flex;
    align-items: center;
  }
}

.burger {
  width: 34px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 250ms ease;
}
.burger:hover { opacity: 0.85; }
.burger::before,
.burger::after,
.burger span {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e9e6de, #c7a24b);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease;
}
.burger.is-open::before {
  transform: translateY(10.5px) rotate(45deg);
}
.burger.is-open::after {
  transform: translateY(-10.5px) rotate(-45deg);
}
.burger.is-open span {
  opacity: 0;
  transform: translateX(-14px);
}
@media (min-width: 1200px) {
  .burger { display: none; }
}

.premier-portable-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #0f1a2f 0%, #0b1220 100%);
  box-shadow: 0 18px 30px rgba(5, 10, 20, 0.6);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 500ms ease, opacity 400ms ease;
  z-index: 1200;
}
.premier-portable-panel.is-open {
  display: block;
  max-height: 520px;
  opacity: 1;
}

.mobile-ledger {
  list-style: none;
  margin: 0;
  padding: clamp(18px, 5vw, 28px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3.5vw, 22px);
}

.mobile-ledger__item {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
}
.premier-portable-panel.is-open .mobile-ledger__item {
  transform: translateY(0);
  opacity: 1;
}
.premier-portable-panel.is-open .mobile-ledger__item:nth-child(1) { transition-delay: 80ms; }
.premier-portable-panel.is-open .mobile-ledger__item:nth-child(2) { transition-delay: 160ms; }
.premier-portable-panel.is-open .mobile-ledger__item:nth-child(3) { transition-delay: 240ms; }

.mobile-nav-connection {
  text-decoration: none;
  color: #e7edf7;
  font-size: clamp(18px, 4.2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 12px 26px;
  border-radius: 16px;
  position: relative;
  transition: color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.mobile-nav-connection::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(120px 120px at center, rgba(199,162,75,0.22), rgba(199,162,75,0));
  opacity: 0;
  transition: opacity 400ms ease;
}
.mobile-nav-connection:hover {
  color: #0d1424;
  background: rgba(231, 226, 217, 0.85);
  box-shadow: 0 10px 22px rgba(199,162,75,0.25);
}
.mobile-nav-connection:hover::before { opacity: 1; }

@keyframes gildedSweep {
  0% { transform: scaleX(0.4); opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.4); opacity: 0.6; }
}
@keyframes headerReveal {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Размеры для мобильных, читаемость и аккуратность */
@media (max-width: 768px) {
  .c-suite-grid { gap: 12px; }
  .brand-signet__logo { height: 40px; }
  .brand-signet__name { font-size: 18px; }
}


/* --------------------hero---------------------- */

.atlas-hero-executive {
  position: relative;
  z-index: 1;
  padding: clamp(120px, 17vh, 180px) 0 clamp(70px, 12vh, 130px);
  background: radial-gradient(130% 90% at 10% 0%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.atlas-hero-executive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.lexor-hero-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}
@media (min-width: 992px) {
  .lexor-hero-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 7vw, 84px);
  }
}

.lexor-briefing {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 18px;
  padding: clamp(18px, 3.2vw, 32px) clamp(18px, 3vw, 30px);
  box-shadow: 0 20px 40px rgba(5,10,20,0.35);
  max-width: 760px;
  margin: 0 auto;
  transform: translateY(12px);
  opacity: 0;
  animation: lexorFadeSlide 700ms ease-out 120ms forwards;
}
@media (min-width: 992px) {
  .lexor-briefing {
    max-width: 48%;
    margin: 0;
  }
}

.lexor-briefing__head {
  display: grid;
  gap: 10px;
}

.lexor-title {
  margin: 0;
  font-size: clamp(30px, 5.4vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.lexor-title-accent {
  display: block;
  width: clamp(80px, 12vw, 160px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.95), rgba(199,162,75,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: accentSweep 900ms ease-out 280ms forwards;
}

.lexor-subtext {
  margin: clamp(14px, 2vw, 18px) 0 clamp(22px, 3vw, 28px);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.75;
  color: #cfd7e6;
  text-wrap: balance;
}

.lexor-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lexor-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 14px) clamp(26px, 3.4vw, 36px);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 17px);
  letter-spacing: 0.06em;
  color: #0f1527;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  box-shadow: 0 8px 22px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.lexor-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
  animation: ctaSheen 3.2s ease-in-out infinite;
}
.lexor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(199,162,75,0.45), inset 0 0 0 1px rgba(15,21,39,0.12);
}
.lexor-cta:active {
  transform: translateY(0);
}

.lexor-visual-frame {
  position: relative;
  max-width: 100%;
  margin: 0;
  transform-style: preserve-3d;
  perspective: 800px;
  opacity: 0;
  animation: lexorFadeSlide 700ms ease-out 220ms forwards;
}
@media (min-width: 992px) {
  .lexor-visual-frame {
    max-width: 48%;
  }
}

.lexor-visual-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(199,162,75,0.28);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  transform: rotateY(-8deg) translateZ(0);
  transition: transform 500ms ease, box-shadow 400ms ease, filter 400ms ease;
  filter: saturate(1.02) contrast(1.06);
}
.lexor-visual-frame:hover .lexor-visual-img {
  transform: rotateY(0deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
}

.lexor-ambient-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(40px);
  transform: translateZ(0);
  pointer-events: none;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.lexor-ambient-orb--a {
  left: -160px;
  top: -120px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.65), rgba(199,162,75,0));
}
.lexor-ambient-orb--b {
  right: -180px;
  bottom: -180px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1.2s;
}

.lexor-gradient-streak {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.8;
  transform: translateY(0);
  animation: streakPulse 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lexorFadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes accentSweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes ctaSheen {
  0% { left: -40%; }
  45% { left: 140%; }
  100% { left: 140%; }
}
@keyframes orbDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(14px, -18px); }
}
@keyframes streakPulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .lexor-briefing { padding: 18px; }
  .lexor-title { font-size: clamp(26px, 7vw, 36px); }
  .lexor-subtext { font-size: clamp(15px, 3.2vw, 17px); }
  .lexor-cta { padding: 12px 24px; font-size: 15px; }
}

/* Слои относительно мобильного меню шапки */
.atlas-hero-executive { z-index: 1; }


/* ----------------------stats-section---------------------------- */

.valorum-stats-suite {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 12vh, 120px) 0;
  background: radial-gradient(120% 90% at 10% 0%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.valorum-stats-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.valorum-stats-header {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 48px);
  opacity: 0;
  transform: translateY(14px);
  animation: valorum-reveal 700ms ease-out forwards;
}
.valorum-stats-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.valorum-stats-sub {
  margin-top: 10px;
  color: #cfd7e6;
  font-size: clamp(14px, 2vw, 16px);
}

.valorum-stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(16px, 3.2vw, 28px);
}
@media (min-width: 640px) {
  .valorum-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .valorum-stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.valorum-metric-card {
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  box-shadow: 0 18px 36px rgba(5,10,20,0.35);
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: valorum-reveal 700ms ease-out forwards;
}
.valorum-metric-card:nth-child(1) { animation-delay: 120ms; }
.valorum-metric-card:nth-child(2) { animation-delay: 220ms; }
.valorum-metric-card:nth-child(3) { animation-delay: 320ms; }
.valorum-metric-card:nth-child(4) { animation-delay: 420ms; }

.valorum-metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px 120px at -10% -10%, rgba(199,162,75,0.18), rgba(199,162,75,0));
  opacity: 0;
  transition: opacity 400ms ease;
}
.valorum-metric-card:hover::after { opacity: 1; }

.valorum-metric-crest {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0e8d7, #c7a24b);
  color: #0f1527;
  box-shadow: 0 10px 20px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  transform: translateZ(0);
}
.valorum-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.valorum-metric-body {
  margin-top: 16px;
}

.valorum-figure {
  display: block;
  font-size: clamp(36px, 5.8vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #eaeff8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
  position: relative;
}
.valorum-figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.95), rgba(199,162,75,0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 400ms ease;
}
.valorum-metric-card:hover .valorum-figure::after { transform: scaleX(1); }

.valorum-caption {
  margin: 18px 0 0;
  color: #cbd6e6;
  font-size: clamp(14px, 2.1vw, 16px);
  line-height: 1.6;
}

.valorum-ambient-a {
  position: absolute;
  left: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.65), rgba(199,162,75,0));
  pointer-events: none;
  animation: valorum-orb 14s ease-in-out infinite alternate;
}
.valorum-ambient-b {
  position: absolute;
  right: -220px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(40px);
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  pointer-events: none;
  animation: valorum-orb 16s ease-in-out infinite alternate;
  animation-delay: 1.2s;
}
.valorum-bottom-glint {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.8;
  animation: valorum-streak 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes valorum-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes valorum-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(14px, -18px); }
}
@keyframes valorum-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-2px); }
}

@media (hover:hover) and (pointer:fine) {
  .valorum-metric-card {
    transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
  }
  .valorum-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(0,0,0,0.45);
    border-color: rgba(199,162,75,0.45);
  }
}

@media (max-width: 768px) {
  .valorum-stats-title { font-size: clamp(24px, 7vw, 32px); }
  .valorum-figure { font-size: clamp(32px, 9vw, 44px); }
  .valorum-caption { font-size: 15px; }
}

/* Слой ниже мобильного меню шапки */
.valorum-stats-suite { z-index: 1; }


/* ----------------------stats-section---------------------------- */

/* ----------------------refined-info-section---------------------------- */

.meridian-about-chamber {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 14vh, 140px) 0;
  background: radial-gradient(120% 90% at 12% 5%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.meridian-about-chamber::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.meridian-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 1024px) {
  .meridian-layout {
    grid-template-columns: minmax(280px, 34%) 1fr;
    gap: clamp(40px, 6vw, 84px);
  }
}

.meridian-crest {
  position: relative;
  margin: 0;
  min-height: 220px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translateY(16px);
  opacity: 0;
  animation: meridian-reveal 700ms ease-out 140ms forwards;
}
.meridian-crest__halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
  filter: blur(38px);
  opacity: 0.22;
  transform: translateZ(0);
}
.meridian-crest__shield {
  position: relative;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 22px;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  box-shadow: 0 28px 60px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  display: grid;
  place-items: center;
  transform: translateZ(0);
  overflow: hidden;
}
.meridian-crest__shield::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(160px 60px at -20% -30%, rgba(255,255,255,0.5), rgba(255,255,255,0));
  opacity: 0.6;
  transition: transform 800ms ease;
}
.meridian-crest:hover .meridian-crest__shield::after {
  transform: translateX(12%);
}
.meridian-crest__icon {
  width: 56%;
  height: 56%;
  color: #0f1527;
}

.meridian-brief {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(5,10,20,0.35);
  padding: clamp(20px, 3.4vw, 34px) clamp(20px, 3.4vw, 34px);
  transform: translateY(16px);
  opacity: 0;
  animation: meridian-reveal 700ms ease-out 240ms forwards;
}

.meridian-head {
  display: grid;
  gap: 10px;
}
.meridian-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.meridian-title__accent {
  display: block;
  width: clamp(90px, 12vw, 160px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.95), rgba(199,162,75,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: meridian-accent 900ms ease-out 420ms forwards;
}

.meridian-lede {
  margin: clamp(14px, 2vw, 18px) 0 clamp(18px, 3vw, 26px);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.8;
  color: #cfd7e6;
  text-wrap: balance;
}
.meridian-highlight {
  font-weight: 800;
  color: #e9dfc9;
  background-image: linear-gradient(180deg, rgba(199,162,75,0.28), rgba(199,162,75,0));
  padding: 0 4px;
  border-radius: 6px;
}

.meridian-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.6vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .meridian-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.meridian-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: clamp(12px, 2vw, 16px);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,162,75,0.18);
  transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.meridian-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
  border-color: rgba(199,162,75,0.45);
}

.meridian-point__glyph {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0e8d7, #c7a24b);
  color: #0f1527;
  box-shadow: 0 10px 20px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
}
.meridian-glyph { width: 22px; height: 22px; display: block; }

.meridian-point__title {
  margin: 2px 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #eaeff8;
  letter-spacing: 0.02em;
  white-space: wrap;
}
.meridian-point__text {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #cbd6e6;
  line-height: 1.6;
  white-space: wrap;
}

.meridian-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: meridian-orb-drift 16s ease-in-out infinite alternate;
}
.meridian-orb--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.meridian-orb--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}

.meridian-bottom-stroke {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: meridian-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meridian-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes meridian-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes meridian-orb-drift {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes meridian-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .meridian-title { font-size: clamp(24px, 7vw, 32px); }
  .meridian-lede { font-size: clamp(15px, 3.2vw, 17px); }
}

/* Слой ниже мобильного меню шапки */
.meridian-about-chamber { z-index: 1; }


/* ----------------------refined-info-section---------------------------- */

/* ----------------------services---------------------------- */

.orion-services-forge {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 14vh, 140px) 0;
  background: radial-gradient(120% 90% at 12% 5%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.orion-services-forge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.orion-header {
  text-align: center;
  margin-bottom: clamp(26px, 5vw, 54px);
  opacity: 0;
  transform: translateY(16px);
  animation: orion-reveal 700ms ease-out forwards;
}
.orion-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.orion-sub {
  margin-top: 10px;
  color: #cfd7e6;
  font-size: clamp(14px, 2vw, 16px);
}

.orion-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.2vw, 28px);
}
@media (min-width: 768px) {
  .orion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.orion-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  box-shadow: 0 18px 36px rgba(5,10,20,0.35);
  padding: clamp(18px, 3.2vw, 26px);
  overflow: hidden;
  transform: translateY(14px);
  opacity: 0;
  animation: orion-reveal 700ms ease-out forwards;
}
.orion-card:nth-child(1) { animation-delay: 120ms; }
.orion-card:nth-child(2) { animation-delay: 220ms; }
.orion-card:nth-child(3) { animation-delay: 320ms; }

.orion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px 110px at -10% -10%, rgba(199,162,75,0.18), rgba(199,162,75,0));
  opacity: 0;
  transition: opacity 380ms ease;
}
.orion-card:hover::after { opacity: 1; }

.orion-card__crest {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  color: #0f1527;
  box-shadow: 0 12px 24px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  transform: translateZ(0);
}
.orion-icon { width: 28px; height: 28px; display: block; }

.orion-card__body { margin-top: 16px; }

.orion-card__title {
  margin: 2px 0 6px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eaeff8;
}
.orion-card__text {
  margin: 0;
  font-size: clamp(14px, 2.1vw, 16px);
  color: #cbd6e6;
  line-height: 1.7;
}

@media (hover:hover) and (pointer:fine) {
  .orion-card {
    transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
  }
  .orion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(0,0,0,0.45);
    border-color: rgba(199,162,75,0.45);
  }
}

.orion-ambient {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: orion-orb 16s ease-in-out infinite alternate;
}
.orion-ambient--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.orion-ambient--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}

.orion-bottom-glint {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: orion-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orion-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes orion-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes orion-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .orion-title { font-size: clamp(24px, 7vw, 32px); }
  .orion-card__title { font-size: clamp(16px, 5.2vw, 20px); }
  .orion-card__text { font-size: clamp(14px, 4vw, 16px); }
}


/* -----------------------help------------------------ */

.helix-assist-lobby {
  position: relative;
  padding: clamp(84px, 14vh, 140px) 0;
  background: radial-gradient(120% 90% at 12% 6%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}


.helix-head {
  text-align: center;
  margin-bottom: clamp(28px, 6vw, 56px);
  opacity: 0;
  transform: translateY(16px);
  animation: helix-reveal 720ms ease-out forwards;
}
.helix-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.helix-sub {
  margin-top: 10px;
  color: #cfd7e6;
  font-size: clamp(14px, 2vw, 16px);
}

.helix-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.2vw, 28px);
}
@media (min-width: 768px) {
  .helix-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .helix-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.helix-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  box-shadow: 0 18px 36px rgba(5,10,20,0.35);
  padding: clamp(18px, 3.2vw, 26px);
  overflow: hidden;
  transform: translateY(14px);
  opacity: 0;
  animation: helix-reveal 720ms ease-out forwards;
}
.helix-card:nth-child(1) { animation-delay: 120ms; }
.helix-card:nth-child(2) { animation-delay: 220ms; }
.helix-card:nth-child(3) { animation-delay: 320ms; }
.helix-card:nth-child(4) { animation-delay: 420ms; }


.helix-card:hover::after { opacity: 1; }

.helix-card__figure {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px 0;
}
.helix-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  color: #0f1527;
  box-shadow: 0 12px 24px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  transform: translateZ(0);
}
.helix-icon { width: 28px; height: 28px; display: block; }

.helix-card__title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eaeff8;
}

.helix-card__text {
  margin: 10px 0 18px;
  font-size: clamp(14px, 2.1vw, 16px);
  color: #cbd6e6;
  line-height: 1.7;
}

.helix-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 1.8vw, 14px) clamp(22px, 3.2vw, 28px);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 17px);
  letter-spacing: 0.06em;
  color: #0f1527;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  box-shadow: 0 8px 22px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.helix-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
  animation: helix-sheen-move 3.2s ease-in-out infinite;
}
.helix-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(199,162,75,0.45), inset 0 0 0 1px rgba(15,21,39,0.12);
}
.helix-cta__chev { width: 20px; height: 20px; }

.helix-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: helix-orb-float 16s ease-in-out infinite alternate;
}
.helix-orb--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.helix-orb--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}

.helix-sheen {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: helix-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes helix-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes helix-sheen-move {
  0% { left: -40%; }
  45% { left: 140%; }
  100% { left: 140%; }
}
@keyframes helix-orb-float {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes helix-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 768px) {
  .helix-title { font-size: clamp(24px, 7vw, 32px); }
  .helix-card__title { font-size: clamp(16px, 5.2vw, 20px); }
  .helix-card__text { font-size: clamp(14px, 4vw, 16px); }
}

/* Слой ниже мобильного меню шапки */
.helix-assist-lobby { z-index: 1; }


/* ----------------------noble-commitment-section---------------------------- */

.aegis-pledge-pavilion {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 13vh, 138px) 0;
  background: radial-gradient(120% 90% at 12% 5%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.aegis-pledge-pavilion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.aegis-pledge-doc {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(5,10,20,0.35);
  padding: clamp(22px, 3.6vw, 36px) clamp(20px, 3.4vw, 34px);
  opacity: 0;
  transform: translateY(18px);
  animation: aegis-reveal 720ms ease-out 120ms forwards;
}

.aegis-pledge-head {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: clamp(14px, 2.6vw, 22px);
}
.aegis-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.aegis-title-accent {
  display: block;
  width: clamp(90px, 12vw, 160px);
  height: 4px;
  border-radius: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.95), rgba(199,162,75,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: aegis-accent 880ms ease-out 360ms forwards;
}

.aegis-lede {
  margin: clamp(12px, 2vw, 18px) 0 clamp(18px, 3vw, 26px);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.85;
  color: #cfd7e6;
  text-wrap: balance;
}
.aegis-mark {
  background: linear-gradient(180deg, rgba(199,162,75,0.28), rgba(199,162,75,0));
  color: #efe7d3;
  padding: 0 6px;
  border-radius: 6px;
  font-weight: 800;
}

.aegis-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.6vw, 18px);
}
@media (min-width: 768px) {
  .aegis-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.aegis-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: clamp(12px, 2vw, 16px);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,162,75,0.18);
  transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
@media (hover:hover) and (pointer:fine) {
  .aegis-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45);
    border-color: rgba(199,162,75,0.45);
  }
}

.aegis-pillar__crest {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  color: #0f1527;
  box-shadow: 0 12px 24px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
}
.aegis-icon { width: 24px; height: 24px; display: block; }

.aegis-pillar__title {
  margin: 2px 0 4px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 900;
  color: #eaeff8;
  letter-spacing: 0.02em;
}
.aegis-pillar__text {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #cbd6e6;
  line-height: 1.6;
}

.aegis-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: aegis-orb-drift 16s ease-in-out infinite alternate;
}
.aegis-orb--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.aegis-orb--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}

.aegis-bottom-glint {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: aegis-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aegis-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aegis-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes aegis-orb-drift {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes aegis-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .aegis-title { font-size: clamp(24px, 7vw, 32px); }
  .aegis-lede { font-size: clamp(15px, 3.2vw, 17px); }
}

/* Слой ниже мобильного меню шапки */
.aegis-pledge-pavilion { z-index: 1; }


/* ----------------------noble-commitment-section---------------------------- */

/* ----------------------join, form---------------------------- */

.cadenza-contact-lounge {
  position: relative;
  z-index: 1;
  padding: clamp(88px, 15vh, 148px) 0;
  background: radial-gradient(120% 90% at 12% 6%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.cadenza-contact-lounge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.cadenza-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 1024px) {
  .cadenza-shell {
    grid-template-columns: minmax(320px, 44%) 1fr;
    gap: clamp(40px, 6vw, 84px);
  }
}

.cadenza-brief {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(5,10,20,0.35);
  padding: clamp(22px, 3.6vw, 36px);
  opacity: 0;
  transform: translateY(18px);
  animation: cadenza-reveal 720ms ease-out 140ms forwards;
}

.cadenza-head { text-align: left; }
.cadenza-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f8;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.cadenza-sub {
  margin: 10px 0 0;
  color: #cfd7e6;
  font-size: clamp(14px, 2vw, 16px);
}
.cadenza-accent {
  display: block;
  width: clamp(90px, 12vw, 160px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.95), rgba(199,162,75,0));
  transform-origin: left center;
  transform: scaleX(0);
  margin-top: 12px;
  animation: cadenza-accent 900ms ease-out 360ms forwards;
}

.cadenza-facts {
  list-style: none;
  margin: clamp(16px, 3vw, 22px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 2.6vw, 18px);
}
.cadenza-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: clamp(12px, 2vw, 16px);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,162,75,0.18);
  transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
@media (hover:hover) and (pointer:fine) {
  .cadenza-fact:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45);
    border-color: rgba(199,162,75,0.45);
  }
}
.cadenza-glyph {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  color: #0f1527;
  box-shadow: 0 12px 24px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
}
.cadenza-icon { width: 26px; height: 26px; display: block; }
.cadenza-fact__title {
  margin: 2px 0 4px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 900;
  color: #eaeff8;
  letter-spacing: 0.02em;
}
.cadenza-fact__text {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #cbd6e6;
  line-height: 1.6;
}
.cadenza-link {
  color: #e7d6b0;
  text-decoration: none;
  border-bottom: 1px dotted rgba(231,214,176,0.6);
  transition: color 220ms ease, border-color 220ms ease;
}
.cadenza-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.8);
}

.cadenza-legal { margin-top: clamp(14px, 2.6vw, 22px); }
.cadenza-legal__title {
  margin: 0 0 6px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 900;
  color: #eaeff8;
}
.cadenza-legal__text {
  margin: 0;
  color: #cbd6e6;
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.7;
}

.cadenza-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(5,10,20,0.35);
  padding: clamp(22px, 3.6vw, 36px);
  display: grid;
  gap: clamp(14px, 2.6vw, 22px);
  opacity: 0;
  transform: translateY(18px);
  animation: cadenza-reveal 720ms ease-out 220ms forwards;
}

.cadenza-field { display: grid; gap: 8px; }
.cadenza-label {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  color: #eef2f8;
}
.cadenza-input,
.cadenza-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(199,162,75,0.22);
  background: rgba(15,21,39,0.5);
  color: #e5e9f2;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}
.cadenza-input::placeholder,
.cadenza-textarea::placeholder { color: #a9b4c6; }
.cadenza-input:focus,
.cadenza-textarea:focus {
  outline: none;
  border-color: #c7a24b;
  box-shadow: 0 0 0 4px rgba(199,162,75,0.22);
  background: rgba(15,21,39,0.65);
}
.cadenza-textarea { resize: vertical; min-height: 120px; }

.cadenza-consent {
  margin: 0;
  text-align: center;
  color: #c0cbe0;
  font-size: clamp(13px, 1.7vw, 15px);
}

.cadenza-submit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 1.8vw, 14px) clamp(24px, 3.2vw, 30px);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #0f1527;
  background: linear-gradient(180deg, #f0e8d7 0%, #d9bf7a 60%, #c7a24b 100%);
  box-shadow: 0 8px 22px rgba(199,162,75,0.35), inset 0 0 0 1px rgba(15,21,39,0.08);
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  overflow: hidden;
}
.cadenza-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
  animation: cadenza-sheen 3.2s ease-in-out infinite;
}
.cadenza-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(199,162,75,0.45), inset 0 0 0 1px rgba(15,21,39,0.12); }
.cadenza-submit__chev { width: 20px; height: 20px; }

.cadenza-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: cadenza-orb 16s ease-in-out infinite alternate;
}
.cadenza-orb--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.cadenza-orb--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}
.cadenza-bottom-glint {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: cadenza-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cadenza-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cadenza-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes cadenza-sheen {
  0% { left: -40%; }
  45% { left: 140%; }
  100% { left: 140%; }
}
@keyframes cadenza-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes cadenza-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Мобильные правки и читаемость */
@media (max-width: 768px) {
  .cadenza-title { font-size: clamp(24px, 7vw, 32px); }
  .cadenza-label { font-size: 15px; }
  .cadenza-input, .cadenza-textarea { font-size: 15px; }
}

/* Слой ниже мобильного меню хедера */
.cadenza-contact-lounge { z-index: 1; }


/* --------------------------footer--------------------------- */

.veritas-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.veritas-footer-forum {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 10vh, 96px) 0;
  background: radial-gradient(120% 90% at 12% 6%, #0b1220 0%, #0f1a31 55%, #0a1326 100%);
  overflow: hidden;
}
.veritas-footer-forum::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.veritas-nav {
  max-width: 980px;
  margin: 0 auto clamp(18px, 4vw, 30px);
  transform: translateY(12px);
  opacity: 0;
  animation: veritas-reveal 680ms ease-out forwards;
}
.veritas-nav__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(12px, 2.4vw, 18px);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 680px) {
  .veritas-nav__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .veritas-nav__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.veritas-nav__item {
  transform: translateY(8px);
  opacity: 0;
  animation: veritas-reveal 700ms ease-out forwards;
}
.veritas-nav__item:nth-child(1) { animation-delay: 120ms; }
.veritas-nav__item:nth-child(2) { animation-delay: 200ms; }
.veritas-nav__item:nth-child(3) { animation-delay: 280ms; }
.veritas-nav__item:nth-child(4) { animation-delay: 360ms; }

.veritas-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #e9eefa;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  box-shadow: 0 12px 24px rgba(5,10,20,0.35);
  transition: transform 240ms ease, box-shadow 260ms ease, background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}
.veritas-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
  background: rgba(231,226,217,0.1);
  color: #0f1527;
  border-color: rgba(199,162,75,0.45);
}
.veritas-nav__icon {
  width: 20px;
  height: 20px;
  color: #c7a24b;
  transition: transform 300ms ease, color 300ms ease;
}
.veritas-nav__link:hover .veritas-nav__icon {
  transform: translateX(2px);
  color: #a7812f;
}

.veritas-legal {
  max-width: 1100px;
  margin: clamp(22px, 4vw, 36px) auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,162,75,0.22);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(5,10,20,0.35);
  padding: clamp(18px, 3.6vw, 30px);
  transform: translateY(12px);
  opacity: 0;
  animation: veritas-reveal 680ms ease-out 220ms forwards;
}
.veritas-legal__title {
  margin: 0 0 10px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 900;
  color: #eef2f8;
  letter-spacing: 0.02em;
}
.veritas-legal__copy { display: grid; gap: clamp(10px, 2vw, 16px); }

.veritas-para {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
  color: #cbd6e6;
}
.veritas-strong {
  color: #f3f5fb;
  font-weight: 900;
}

.veritas-copyright {
  margin: clamp(18px, 3.6vw, 26px) 0 0;
  text-align: center;
  font-size: clamp(13px, 1.8vw, 15px);
  color: #c0cbe0;
  transform: translateY(10px);
  opacity: 0;
  animation: veritas-reveal 680ms ease-out 360ms forwards;
}

.veritas-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: veritas-orb-drift 16s ease-in-out infinite alternate;
}
.veritas-orb--gold {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(199,162,75,0.55), rgba(199,162,75,0));
}
.veritas-orb--blue {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(84,132,255,0.45), rgba(84,132,255,0));
  animation-delay: 1s;
}

.veritas-bottom-glint {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  animation: veritas-streak 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes veritas-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes veritas-orb-drift {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes veritas-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Мобильная читаемость и сетка */
@media (max-width: 768px) {
  .veritas-footer-forum { padding: clamp(40px, 9vh, 72px) 0; }
  .veritas-para { font-size: clamp(13px, 3.7vw, 15px); }
  .veritas-nav__link { padding: 12px; }
}

/* Подвал ниже мобильного меню шапки */
.veritas-footer-forum { z-index: 1; }


/* -------------------------cookie------------------------------- */

.elegant-cookie-notice {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  max-width: clamp(300px, 35vw, 400px);
  width: 90%;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(60px);
  animation: cookieSlideUp 0.8s ease-out forwards;
  transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
  box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
  padding: clamp(20px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prestige-cookie-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
  position: relative;
}

.prestige-cookie-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #d4af37);
  margin: 10px auto 0;
  transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
  width: 80px;
}

.sophisticated-cookie-text {
  font-size: clamp(13px, 1.6vw, 14px);
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noble-cookie-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-accept-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.luxury-reject-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: #e8edf3;
  color: #001f3f;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
  background: #d0d4d8;
}

.luxury-reject-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-reject-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes cookieSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-cookie-notice {
    max-width: 90%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  .prestige-cookie-heading {
    font-size: clamp(16px, 2vw, 18px);
  }
  .sophisticated-cookie-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }
  .luxury-accept-button,
  .luxury-reject-button {
    padding: 8px 20px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* -------------------------pages--------------------------- */

.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 32px;
  text-align: center;
  color: #2a2a4e;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.policy-content p:hover {
  color: #2a2a4e;
}

.policy-content h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 16px;
  color: #2a2a4e;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.policy-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.policy-content h2:hover::after {
  width: 100px;
}

.policy-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.policy-content li:hover {
  transform: translateX(5px);
}

.policy-content a {
  color: #4da8ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.policy-content a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.policy-content a:hover {
  color: #2a2a4e;
}

.policy-content a:hover::after {
  width: 100%;
}

.policy-action-btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
  background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
  color: #ffffff;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .policy-heading {
    font-size: clamp(24px, 6vw, 32px);
  }
  .policy-content {
    font-size: 14px;
  }
  .policy-content h2 {
    font-size: 20px;
  }
  .policy-action-btn {
    padding: 10px 0;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .policy-section {
    padding: 30px 0;
  }
  .policy-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .policy-content {
    font-size: 13px;
  }
  .policy-content h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .policy-content ul {
    margin-left: 15px;
  }
  .policy-content li {
    margin-bottom: 8px;
  }
  .policy-action-btn {
    max-width: 160px;
    margin-top: 20px;
    padding: 8px 0;
  }
}
